[#1049] Optimise GREATEST() and LEAST() simulations for Sybase, ASE, SQL Server, Derby

This commit is contained in:
Lukas Eder 2012-01-07 18:46:46 +00:00
parent cb1c62fbac
commit 1631acf38b

View File

@ -67,6 +67,7 @@ class Greatest<T> extends AbstractFunction<T> {
switch (configuration.getDialect()) {
// This implementation has O(2^n) complexity. Better implementations
// are very welcome
// [#1049] TODO Fix this!
case ASE:
case DERBY: