Class AlterTableStatement.Raw
- java.lang.Object
-
- org.apache.cassandra.cql3.CQLStatement.Raw
-
- org.apache.cassandra.cql3.statements.schema.AlterTableStatement.Raw
-
- Enclosing class:
- AlterTableStatement
public static final class AlterTableStatement.Raw extends CQLStatement.Raw
-
-
Field Summary
Fields Modifier and Type Field Description TableAttributesattrs-
Fields inherited from class org.apache.cassandra.cql3.CQLStatement.Raw
bindVariables
-
-
Constructor Summary
Constructors Constructor Description Raw(QualifiedName name, boolean ifTableExists)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(ColumnIdentifier name, CQL3Type.Raw type, boolean isStatic)voidalter(ColumnIdentifier name, CQL3Type.Raw type)voidattrs()voiddrop(ColumnIdentifier name)voiddropCompactStorage()voidifColumnExists(boolean ifExists)voidifColumnNotExists(boolean ifNotExists)AlterTableStatementprepare(ClientState state)voidrename(ColumnIdentifier from, ColumnIdentifier to)voidtimestamp(long timestamp)-
Methods inherited from class org.apache.cassandra.cql3.CQLStatement.Raw
setBindVariables
-
-
-
-
Field Detail
-
attrs
public final TableAttributes attrs
-
-
Constructor Detail
-
Raw
public Raw(QualifiedName name, boolean ifTableExists)
-
-
Method Detail
-
prepare
public AlterTableStatement prepare(ClientState state)
- Specified by:
preparein classCQLStatement.Raw
-
alter
public void alter(ColumnIdentifier name, CQL3Type.Raw type)
-
add
public void add(ColumnIdentifier name, CQL3Type.Raw type, boolean isStatic)
-
drop
public void drop(ColumnIdentifier name)
-
ifColumnNotExists
public void ifColumnNotExists(boolean ifNotExists)
-
ifColumnExists
public void ifColumnExists(boolean ifExists)
-
dropCompactStorage
public void dropCompactStorage()
-
timestamp
public void timestamp(long timestamp)
-
rename
public void rename(ColumnIdentifier from, ColumnIdentifier to)
-
attrs
public void attrs()
-
-