Package com.arcadedb.query.sql.parser
Class RebuildIndexStatement
- java.lang.Object
-
- com.arcadedb.query.sql.parser.SimpleNode
-
- com.arcadedb.query.sql.parser.Statement
-
- com.arcadedb.query.sql.parser.DDLStatement
-
- com.arcadedb.query.sql.parser.RebuildIndexStatement
-
- All Implemented Interfaces:
Node
public class RebuildIndexStatement extends DDLStatement
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
all
protected Expression
key
protected Identifier
name
protected Map<Expression,Expression>
settings
protected Expression
value
-
Fields inherited from class com.arcadedb.query.sql.parser.Statement
CUSTOM_STRICT_SQL, limit, originalStatement, originalStatementAsString, timeout
-
Fields inherited from class com.arcadedb.query.sql.parser.SimpleNode
cachedStringForm, children
-
-
Constructor Summary
Constructors Constructor Description RebuildIndexStatement(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RebuildIndexStatement
copy()
boolean
equals(Object o)
ResultSet
executeDDL(CommandContext context)
int
hashCode()
void
toString(Map<String,Object> params, StringBuilder builder)
-
Methods inherited from class com.arcadedb.query.sql.parser.DDLStatement
createExecutionPlan, execute, execute
-
Methods inherited from class com.arcadedb.query.sql.parser.Statement
createExecutionPlanNoCache, execute, execute, execute, execute, execute, execute, executionPlanCanBeCached, getLimit, getOriginalStatement, getTimeout, isDDL, isIdempotent, refersToParent, setLimit, setOriginalStatement, setTimeout, toString, validate
-
Methods inherited from class com.arcadedb.query.sql.parser.SimpleNode
getCacheableElements, getIdentityElements, getValue, isCacheable, jjtAddChild, jjtClose, jjtGetChild, jjtGetFirstToken, jjtGetLastToken, jjtGetNumChildren, jjtGetParent, jjtGetValue, jjtOpen, jjtSetFirstToken, jjtSetLastToken, jjtSetParent, jjtSetValue, toString
-
-
-
-
Field Detail
-
all
protected boolean all
-
name
protected Identifier name
-
key
protected Expression key
-
value
protected Expression value
-
settings
protected final Map<Expression,Expression> settings
-
-
Method Detail
-
executeDDL
public ResultSet executeDDL(CommandContext context)
- Specified by:
executeDDL
in classDDLStatement
-
toString
public void toString(Map<String,Object> params, StringBuilder builder)
-
copy
public RebuildIndexStatement copy()
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classSimpleNode
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classSimpleNode
-
-