Spring Projects Issues
Spring Projects Issues
**[Andy Wilkinson](https://jira.spring.io/secure/ViewProfile.jspa?name=awilkinson)** commented This is still failing with 3.0.3.RELEASE: ``` java.lang.AssertionError: expected: but was: at org.junit.Assert.fail(Assert.java:88) at org.junit.Assert.failNotEquals(Assert.java:743) at org.junit.Assert.assertEquals(Assert.java:118) at org.junit.Assert.assertEquals(Assert.java:555) at org.junit.Assert.assertEquals(Assert.java:542) at org.springframework.batch.core.step.item.FaultTolerantStepFactoryBeanRollbackTests.testMultithreadedSkipInWriter(FaultTolerantStepFactoryBeanRollbackTests.java:554) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at...
**[Andy Wilkinson](https://jira.spring.io/secure/ViewProfile.jspa?name=awilkinson)** commented And still failing with 3.0.4.RELEASE: ``` java.lang.AssertionError: expected: but was: at org.junit.Assert.fail(Assert.java:88) at org.junit.Assert.failNotEquals(Assert.java:743) at org.junit.Assert.assertEquals(Assert.java:118) at org.junit.Assert.assertEquals(Assert.java:555) at org.junit.Assert.assertEquals(Assert.java:542) at org.springframework.batch.core.step.item.FaultTolerantStepFactoryBeanRollbackTests.testMultithreadedSkipInWriter(FaultTolerantStepFactoryBeanRollbackTests.java:554) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)...
**[Basavaraj](https://jira.spring.io/secure/ViewProfile.jspa?name=basavarajdhanashetti)** commented HI, I also came across same problem. One more to point out is SqlPagingQueryProviderFactoryBean doesn't fetch data when selectClause property has any joined table columns. example: \ Thanks,...
**[hari iyer](https://jira.spring.io/secure/ViewProfile.jspa?name=iyerha)** commented Hi, My problem is that my sort column name is quoted (bad design, but I am stuck with it). While MySQL jdbc driver is happy with quoted...
**[Michael Minella](https://jira.spring.io/secure/ViewProfile.jspa?name=mminella)** commented In the attached exception, the SQL statement doesn't specify which table `EMPLOYEE_ID` is coming from and your configuration doesn't have an alias on it. Have you tried...
**[Niraj Gadgilwar](https://jira.spring.io/secure/ViewProfile.jspa?name=gadginir)** commented Yes. I have tried it using alias too. But it got failed. EMPLOYEE_ID column is present in both table. My actual query was a bit different than...
**[Siddharth Sharma](https://jira.spring.io/secure/ViewProfile.jspa?name=ssharma)** commented Fix for 3.0.8 : https://github.com/spring-projects/spring-batch/pull/453
**[Bridger Howell](https://jira.spring.io/secure/ViewProfile.jspa?name=bhowell)** commented Looks to me like [BATCH-2478](https://jira.spring.io/browse/BATCH-2478) and [BATCH-2467](https://jira.spring.io/browse/BATCH-2467) are near duplicates of this issue.
**[Mahmoud Ben Hassine](https://jira.spring.io/secure/ViewProfile.jspa?name=mbenhassine)** commented @ [Niraj Gadgilwar](https://jira.spring.io/secure/ViewProfile.jspa?name=gadginir) The query in the attached file contains two `WHERE` keywords: ```sql SELECT M.* FROM MASTER AS M JOIN RELEASE AS R ON M.EMPLOYEE_ID...
**[Simon Baslé](https://jira.spring.io/secure/ViewProfile.jspa?name=simonbasle)** commented As confirmed on StackOverflow, the view-based findAll is more performant when using async API internally (see [DATACOUCH-228](https://jira.spring.io/browse/DATACOUCH-228)). Putting this into backlog as there could come a point...