RESOLVED - BATCH-705: TradeJobFunctionalTests might fail since verification queries don't have ORDER clause
applied patch
This commit is contained in:
@@ -35,8 +35,8 @@ import org.springframework.jdbc.core.RowCallbackHandler;
|
|||||||
|
|
||||||
public class TradeJobFunctionalTests extends AbstractValidatingBatchLauncherTests {
|
public class TradeJobFunctionalTests extends AbstractValidatingBatchLauncherTests {
|
||||||
|
|
||||||
private static final String GET_TRADES = "SELECT isin, quantity, price, customer FROM trade";
|
private static final String GET_TRADES = "select ISIN, QUANTITY, PRICE, CUSTOMER from TRADE order by ISIN";
|
||||||
private static final String GET_CUSTOMERS = "SELECT name, credit FROM customer";
|
private static final String GET_CUSTOMERS = "select NAME, CREDIT from CUSTOMER order by NAME";
|
||||||
|
|
||||||
private List customers;
|
private List customers;
|
||||||
private List trades;
|
private List trades;
|
||||||
|
|||||||
Reference in New Issue
Block a user