[#430] Add support for the Firebird database - Fixed GREATEST(), LEAST()

This commit is contained in:
Lukas Eder 2012-08-19 14:05:34 +02:00
parent d2d7c5e79f
commit b32a18e6a0
2 changed files with 2 additions and 0 deletions

View File

@ -71,6 +71,7 @@ class Greatest<T> extends AbstractFunction<T> {
case ASE:
case DERBY:
case FIREBIRD:
case SQLSERVER:
case SYBASE: {
Field<T> first = (Field<T>) getArguments()[0];

View File

@ -70,6 +70,7 @@ class Least<T> extends AbstractFunction<T> {
case ASE:
case DERBY:
case FIREBIRD:
case SQLSERVER:
case SYBASE: {
Field<T> first = (Field<T>) getArguments()[0];