HHH-13574 SybaseASE does not support PARTITION BY

(cherry picked from commit cfd7db36c6)
This commit is contained in:
Andrea Boriero 2019-08-14 09:29:20 +01:00 committed by Gail Badner
parent 677b73d8e1
commit e60defd402
1 changed files with 5 additions and 0 deletions

View File

@ -431,4 +431,9 @@ public class SybaseASE15Dialect extends SybaseDialect {
public boolean supportsLockTimeouts() {
return false;
}
@Override
public boolean supportsPartitionBy() {
return false;
}
}