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 TableAttributes
attrs
-
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 void
add(ColumnIdentifier name, CQL3Type.Raw type, boolean isStatic, ColumnMask.Raw mask)
void
alter(ColumnIdentifier name, CQL3Type.Raw type)
void
attrs()
void
drop(ColumnIdentifier name)
void
dropCompactStorage()
void
ifColumnExists(boolean ifExists)
void
ifColumnNotExists(boolean ifNotExists)
void
mask(ColumnIdentifier name, ColumnMask.Raw mask)
AlterTableStatement
prepare(ClientState state)
void
rename(ColumnIdentifier from, ColumnIdentifier to)
void
timestamp(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:
prepare
in classCQLStatement.Raw
-
alter
public void alter(ColumnIdentifier name, CQL3Type.Raw type)
-
mask
public void mask(ColumnIdentifier name, ColumnMask.Raw mask)
-
add
public void add(ColumnIdentifier name, CQL3Type.Raw type, boolean isStatic, @Nullable ColumnMask.Raw mask)
-
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()
-
-