Class | Description |
---|---|
SqlAddJar |
Add Jar command to add jar into the classloader.
|
SqlAddPartitions |
ALTER TABLE DDL to add partitions to a table.
|
SqlAddReplaceColumns |
ALTER DDL to ADD or REPLACE columns for a table.
|
SqlAlterDatabase |
ALTER Database DDL sql call.
|
SqlAlterFunction |
Alter Function Sql Call.
|
SqlAlterTable |
Abstract class to describe statements like ALTER TABLE [[catalogName.] dataBasesName].tableName
...
|
SqlAlterTableAddConstraint |
ALTER TABLE [catalog_name.][db_name.]table_name ADD [CONSTRAINT constraint_name] (PRIMARY KEY |
UNIQUE) (column, ...) [[NOT] ENFORCED].
|
SqlAlterTableDropConstraint |
ALTER TABLE [catalog_name.][db_name.]table_name DROP CONSTRAINT constraint_name.
|
SqlAlterTableOptions |
ALTER TABLE [[catalogName.] dataBasesName].tableName SET ( name=value [, name=value]*).
|
SqlAlterTableRename |
ALTER TABLE [[catalogName.] dataBasesName].tableName RENAME TO [[catalogName.]
dataBasesName].newTableName.
|
SqlAlterTableReset |
ALTER TABLE [[catalogName.] dataBasesName].tableName RESET ( 'key1' [, 'key2']*).
|
SqlAlterView |
Abstract class to describe ALTER VIEW statements.
|
SqlAlterViewAs |
ALTER DDL to change a view's query.
|
SqlAlterViewProperties |
ALTER DDL to change properties of a view.
|
SqlAlterViewRename |
ALTER DDL to rename a view.
|
SqlChangeColumn |
ALTER DDL to CHANGE a column for a table.
|
SqlCreateCatalog |
CREATE CATALOG DDL sql call.
|
SqlCreateDatabase |
CREATE Database DDL sql call.
|
SqlCreateFunction |
CREATE FUNCTION DDL sql call.
|
SqlCreateTable |
CREATE TABLE DDL sql call.
|
SqlCreateTable.TableCreationContext |
Table creation context.
|
SqlCreateView |
CREATE VIEW DDL sql call.
|
SqlDropCatalog |
DROP CATALOG DDL sql call.
|
SqlDropDatabase |
DROP DATABASE DDL sql call.
|
SqlDropFunction |
DROP FUNCTION DDL sql call.
|
SqlDropPartitions |
ALTER TABLE DDL to drop partitions of a table.
|
SqlDropTable |
DROP TABLE DDL sql call.
|
SqlDropView |
DROP VIEW DDL sql call.
|
SqlRemoveJar |
REMOVE JAR sql call to remove jar from the classloader.
|
SqlReset |
SQL call for "RESET" and "RESET 'key'".
|
SqlSet |
SQL call for "SET" and "SET 'key' = 'value'".
|
SqlTableColumn |
Table column of a CREATE TABLE DDL.
|
SqlTableColumn.SqlComputedColumn |
A column derived from an expression.
|
SqlTableColumn.SqlMetadataColumn |
A column derived from metadata.
|
SqlTableColumn.SqlRegularColumn |
A regular, physical column.
|
SqlTableLike |
A
LIKE clause in a CREATE TABLE statement. |
SqlTableLike.SqlTableLikeOption |
A pair of
SqlTableLike.MergingStrategy and SqlTableLike.FeatureOption . |
SqlTableOption |
Table options of a DDL, a key-value pair with both key and value as string literal.
|
SqlUseCatalog |
USE CATALOG sql call.
|
SqlUseDatabase |
USE [catalog.]database sql call.
|
SqlUseModules |
USE MODULES sql call.
|
SqlWatermark |
Watermark statement in CREATE TABLE DDL, e.g.
|
Enum | Description |
---|---|
SqlTableLike.FeatureOption |
A feature of a table descriptor that will be merged into the new table.
|
SqlTableLike.MergingStrategy |
A strategy that describes how the features of the parent source table should be merged with
the features of the newly created table.
|
Copyright © 2014–2023 The Apache Software Foundation. All rights reserved.