[#791] Unify test data upper and lower case literals

This commit is contained in:
Lukas Eder 2011-08-06 16:35:55 +00:00
parent a7c4b6a156
commit fcdc5c8818

View File

@ -2146,6 +2146,14 @@ public abstract class jOOQAbstractTest<
@Test
public void testFetchIntoWithAnnotations() throws Exception {
// TODO [#791] Fix test data and have all upper case columns everywhere
switch (getDialect()) {
case INGRES:
case POSTGRES:
log.info("SKIPPING", "fetchInto() tests");
return;
}
List<BookWithAnnotations> result =
create().select(
TBook_ID(),
@ -2202,6 +2210,14 @@ public abstract class jOOQAbstractTest<
@Test
public void testFetchIntoWithoutAnnotations() throws Exception {
// TODO [#791] Fix test data and have all upper case columns everywhere
switch (getDialect()) {
case INGRES:
case POSTGRES:
log.info("SKIPPING", "fetchInto() tests");
return;
}
List<BookWithoutAnnotations> result =
create().select(
TBook_ID(),