HHH-14937 SybaseASE15 supports schemas and catalogs

This commit is contained in:
Marius Klein 2021-11-23 11:09:42 +01:00 committed by Christian Beikov
parent 35f374aac7
commit f604e8fa33
1 changed files with 6 additions and 0 deletions

View File

@ -12,6 +12,7 @@ import org.hibernate.dialect.function.AnsiTrimEmulationFunction;
import org.hibernate.dialect.function.NoArgSQLFunction;
import org.hibernate.dialect.function.SQLFunctionTemplate;
import org.hibernate.dialect.function.VarArgsSQLFunction;
import org.hibernate.engine.jdbc.env.spi.NameQualifierSupport;
import org.hibernate.type.StandardBasicTypes;
import org.hibernate.type.descriptor.sql.SqlTypeDescriptor;
import org.hibernate.type.descriptor.sql.TinyIntTypeDescriptor;
@ -436,4 +437,9 @@ public class SybaseASE15Dialect extends SybaseDialect {
public boolean supportsPartitionBy() {
return false;
}
@Override
public NameQualifierSupport getNameQualifierSupport() {
return NameQualifierSupport.BOTH;
}
}