Don't default to HSQLDB behaviour

This commit is contained in:
lukaseder 2014-12-30 12:28:50 +01:00
parent 04919ac592
commit 4db5b1809e

View File

@ -1086,9 +1086,12 @@ public abstract class AbstractDatabase implements Database {
/* [pro] xx
xxxx xxxxx
xx [/pro] */
default:
return dataType.endsWith("ARRAY");
// TODO: Is there any more robust way to recognise these?
// For instance, there could be a UDT that is called this way
return dataType.endsWith(" ARRAY");
}
return false;
}
protected static final String fetchedSize(List<?> fetched, List<?> included) {