RESOLVED - BATCH-705: TradeJobFunctionalTests might fail since verification queries don't have ORDER clause

applied patch
This commit is contained in:
robokaso
2008-07-03 07:24:11 +00:00
parent b2e66532f9
commit b480460efe

View File

@@ -35,8 +35,8 @@ import org.springframework.jdbc.core.RowCallbackHandler;
public class TradeJobFunctionalTests extends AbstractValidatingBatchLauncherTests {
private static final String GET_TRADES = "SELECT isin, quantity, price, customer FROM trade";
private static final String GET_CUSTOMERS = "SELECT name, credit FROM customer";
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 order by NAME";
private List customers;
private List trades;