Package org.sqlite.parser.ast
Class CreateIndex
java.lang.Object
org.sqlite.parser.ast.CreateIndex
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal List<SortedColumn>
final QualifiedName
final boolean
final String
final boolean
final Expr
-
Constructor Summary
ConstructorsConstructorDescriptionCreateIndex
(boolean unique, boolean ifNotExists, QualifiedName idxName, String tblName, List<SortedColumn> columns, Expr whereClause) -
Method Summary
-
Field Details
-
unique
public final boolean unique -
ifNotExists
public final boolean ifNotExists -
idxName
-
tblName
-
columns
-
whereClause
-
-
Constructor Details
-
CreateIndex
public CreateIndex(boolean unique, boolean ifNotExists, QualifiedName idxName, String tblName, List<SortedColumn> columns, Expr whereClause)
-
-
Method Details
-
toSql
- Specified by:
toSql
in interfaceToSql
- Throws:
IOException
-