OmniSciDB
a5dc49c757
|
Public Attributes | |
RENAME_TABLE | |
RENAME_COLUMN | |
ADD_COLUMN | |
ALTER_COLUMN | |
DROP_COLUMN | |
ALTER_OPTIONS | |
ALTER TABLE DDL syntax variants:
SET OPTIONS: ALTER TABLE
SET (<option> =
[, ... ] ) ] RENAME TABLE ALTER TABLE
TO <new_table> RENAME COLUMN: ALTER TABLE
<column> to <new_column> ADD COLUMN: ALTER TABLE
[COLUMN] <column> <type> [NOT NULL] [ENCODING <encodingSpec>]; ALTER TABLE
(<column> <type> [NOT NULL] [ENCODING <encodingSpec>], ...); ALTER TABLE
(<column> <type> DEFAULT
); DROP COLUMN: ALTER TABLE
COLUMN <column_1>[, <column_2>, ...]; ALTER COLUMN: ALTER TABLE
[COLUMN] <column> [SET DATA] TYPE <type> [NOT NULL] [ENCODING <encodingSpec>]
Definition at line 74 of file SqlAlterTable.java.
com.mapd.parser.extension.ddl.SqlAlterTable.AlterType.ADD_COLUMN |
Definition at line 77 of file SqlAlterTable.java.
Referenced by com.mapd.parser.extension.ddl.SqlAlterTable.Builder.addColumnList().
com.mapd.parser.extension.ddl.SqlAlterTable.AlterType.ALTER_COLUMN |
Definition at line 78 of file SqlAlterTable.java.
Referenced by com.mapd.parser.extension.ddl.SqlAlterTable.Builder.addAlterColumnList().
com.mapd.parser.extension.ddl.SqlAlterTable.AlterType.ALTER_OPTIONS |
Definition at line 80 of file SqlAlterTable.java.
Referenced by com.mapd.parser.extension.ddl.SqlAlterTable.Builder.alterOptions().
com.mapd.parser.extension.ddl.SqlAlterTable.AlterType.DROP_COLUMN |
Definition at line 79 of file SqlAlterTable.java.
Referenced by com.mapd.parser.extension.ddl.SqlAlterTable.Builder.dropColumn().
com.mapd.parser.extension.ddl.SqlAlterTable.AlterType.RENAME_COLUMN |
Definition at line 76 of file SqlAlterTable.java.
Referenced by com.mapd.parser.extension.ddl.SqlAlterTable.Builder.alterColumnName().
com.mapd.parser.extension.ddl.SqlAlterTable.AlterType.RENAME_TABLE |
Definition at line 75 of file SqlAlterTable.java.
Referenced by com.mapd.parser.extension.ddl.SqlAlterTable.Builder.alterTableName().