Uses of Class
com.datastax.astra.client.tables.commands.AlterTableAddColumns
Package
Description
Command Definitions for operating on Tables.
-
Uses of AlterTableAddColumns in com.datastax.astra.client.tables.commands
Modifier and TypeMethodDescriptionAlterTableAddColumns.addColumn
(String name, ColumnTypes type) Adds a column with the specified name and type to the table.AlterTableAddColumns.addColumnBoolean
(String name) Adds a column with the BOOLEAN type.AlterTableAddColumns.addColumnInt
(String name) Adds a column with the INT type.AlterTableAddColumns.addColumnList
(String name, ColumnTypes valueType) Adds a column with the LIST type, where the list items are of the specified value type.AlterTableAddColumns.addColumnMap
(String name, ColumnTypes keyType, ColumnTypes valueType) Adds a column with the MAP type, where the keys and values are of the specified types.AlterTableAddColumns.addColumnSet
(String name, ColumnTypes valueType) Adds a column with the SET type, where the set items are of the specified value type.AlterTableAddColumns.addColumnText
(String name) Adds a column with the TEXT type.AlterTableAddColumns.addColumnVector
(String name, ColumnDefinitionVector cdv) Adds a column defined by aColumnDefinitionVector
.