public interface AlterDseTableStart extends AlterDseTableWithOptions, AlterDseTableAddColumn, AlterDseTableDropColumn, AlterDseTableRenameColumn, DseTableGraphOptions<BuildableQuery>
| Modifier and Type | Method and Description |
|---|---|
BuildableQuery |
alterColumn(com.datastax.oss.driver.api.core.CqlIdentifier columnName,
com.datastax.oss.driver.api.core.type.DataType dataType)
Completes ALTER TABLE specifying the the type of a column should be changed.
|
default BuildableQuery |
alterColumn(String columnName,
com.datastax.oss.driver.api.core.type.DataType dataType)
Shortcut for
alterColumn(CqlIdentifier.fromCql(columnName,dataType). |
BuildableQuery |
dropCompactStorage()
Completes ALTER TABLE specifying that compact storage should be removed from the table.
|
default BuildableQuery |
withoutEdgeLabel()
Removes the anonymous edge label from this table.
|
BuildableQuery |
withoutEdgeLabel(com.datastax.oss.driver.api.core.CqlIdentifier edgeLabelId)
Removes the named edge label from this table.
|
default BuildableQuery |
withoutEdgeLabel(String edgeLabelName)
Shortcut for
withoutEdgeLabel(CqlIdentifier.fromCql(edgeLabelName)). |
default BuildableQuery |
withoutVertexLabel()
Removes the anonymous vertex label from this table.
|
BuildableQuery |
withoutVertexLabel(com.datastax.oss.driver.api.core.CqlIdentifier vertexLabelId)
Removes the named vertex label from this table.
|
default BuildableQuery |
withoutVertexLabel(String vertexLabelName)
|
withBloomFilterFpChance, withCaching, withCDC, withComment, withCompaction, withCompression, withCompression, withDcLocalReadRepairChance, withDefaultTimeToLiveSeconds, withDeflateCompression, withDeflateCompression, withGcGraceSeconds, withLZ4Compression, withLZ4Compression, withMaxIndexInterval, withMemtableFlushPeriodInMs, withMinIndexInterval, withNoCompression, withReadRepairChance, withSnappyCompression, withSnappyCompression, withSpeculativeRetrygetOptions, withOptionaddColumn, addColumn, addStaticColumn, addStaticColumndropColumn, dropColumn, dropColumns, dropColumnsrenameColumn, renameColumnwithEdgeLabel, withEdgeLabel, withEdgeLabel, withVertexLabel, withVertexLabel, withVertexLabel@NonNull BuildableQuery dropCompactStorage()
@NonNull BuildableQuery alterColumn(@NonNull com.datastax.oss.driver.api.core.CqlIdentifier columnName, @NonNull com.datastax.oss.driver.api.core.type.DataType dataType)
To create the data type, use the constants and static methods in DataTypes, or
SchemaBuilder.udt(CqlIdentifier, boolean).
@NonNull default BuildableQuery alterColumn(@NonNull String columnName, @NonNull com.datastax.oss.driver.api.core.type.DataType dataType)
alterColumn(CqlIdentifier.fromCql(columnName,dataType).@NonNull BuildableQuery withoutVertexLabel(@Nullable com.datastax.oss.driver.api.core.CqlIdentifier vertexLabelId)
@NonNull default BuildableQuery withoutVertexLabel(@NonNull String vertexLabelName)
@NonNull default BuildableQuery withoutVertexLabel()
This is a shortcut for withoutVertexLabel(null).
@NonNull BuildableQuery withoutEdgeLabel(@Nullable com.datastax.oss.driver.api.core.CqlIdentifier edgeLabelId)
@NonNull default BuildableQuery withoutEdgeLabel(@NonNull String edgeLabelName)
withoutEdgeLabel(CqlIdentifier.fromCql(edgeLabelName)).@NonNull default BuildableQuery withoutEdgeLabel()
This is a shortcut for withoutEdgeLabel(null).
Copyright © 2017–2022. All rights reserved.