HHH-13574 SybaseASE does not support PARTITION BY

(cherry picked from commit cfd7db36c60b49ea773b3a1a34f062b91c0881c8)
This commit is contained in:
Andrea Boriero 2019-08-14 09:29:20 +01:00 committed by Gail Badner
parent 677b73d8e1
commit e60defd402

View File

@ -431,4 +431,9 @@ protected SqlTypeDescriptor getSqlTypeDescriptorOverride(int sqlCode) {
public boolean supportsLockTimeouts() { public boolean supportsLockTimeouts() {
return false; return false;
} }
@Override
public boolean supportsPartitionBy() {
return false;
}
} }