[#791] Unify test data upper and lower case literals
This commit is contained in:
parent
a7c4b6a156
commit
fcdc5c8818
@ -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(),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user