HHH-14937 SybaseASE15 supports schemas and catalogs
This commit is contained in:
parent
35f374aac7
commit
f604e8fa33
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue