Package org.hibernate.sql.ast.tree.cte
Class CteTable
- java.lang.Object
-
- org.hibernate.sql.ast.tree.cte.CteTable
-
public class CteTable extends Object
Describes the table definition for the CTE - its name amd its columns
-
-
Constructor Summary
Constructors Constructor Description CteTable(String cteName, List<CteColumn> cteColumns, SessionFactoryImplementor sessionFactory)
CteTable(String cteName, EntityMappingType entityDescriptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<CteColumn>
getCteColumns()
String
getTableExpression()
CteTable
withName(String name)
-
-
-
Constructor Detail
-
CteTable
public CteTable(String cteName, EntityMappingType entityDescriptor)
-
CteTable
public CteTable(String cteName, List<CteColumn> cteColumns, SessionFactoryImplementor sessionFactory)
-
-