Package org.hibernate.dialect
Interface FunctionalDependencyAnalysisSupport
-
- All Known Implementing Classes:
FunctionalDependencyAnalysisSupportImpl
public interface FunctionalDependencyAnalysisSupport
Dialect support information for primary key functional dependency analysis withinGROUP BY
andORDER BY
clauses.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
supportsAnalysis()
Supports primary key functional dependency analysisboolean
supportsConstants()
Also supports functional dependency analysis for constant values other than table columnsboolean
supportsTableGroups()
Supports functional dependency analysis through joined tables and result sets (e.g.
-
-
-
Method Detail
-
supportsAnalysis
boolean supportsAnalysis()
Supports primary key functional dependency analysis
-
supportsTableGroups
boolean supportsTableGroups()
Supports functional dependency analysis through joined tables and result sets (e.g. unions)
-
supportsConstants
boolean supportsConstants()
Also supports functional dependency analysis for constant values other than table columns
-
-