| Class | Description |
|---|---|
| SqlAddJar |
Add Jar command to add jar into the classloader.
|
| SqlAddPartitions |
ALTER TABLE DDL to add partitions to a table.
|
| SqlAddPartitions.AlterTableAddPartitionContext |
Alter table add partition context.
|
| SqlAlterDatabase |
ALTER Database DDL sql call.
|
| SqlAlterFunction |
Alter Function Sql Call.
|
| SqlAlterTable |
Abstract class to describe statements like ALTER TABLE [IF EXISTS] [[catalogName.]
dataBasesName].tableName ...
|
| SqlAlterTable.AlterTableContext |
Alter table context.
|
| SqlAlterTableAdd |
SqlNode to describe ALTER TABLE [IF EXISTS] table_name ADD column/constraint/watermark clause.
|
| SqlAlterTableAddConstraint |
ALTER TABLE [IF EXISTS] [catalog_name.][db_name.]table_name ADD [CONSTRAINT constraint_name]
(PRIMARY KEY | UNIQUE) (column, ...) [[NOT] ENFORCED].
|
| SqlAlterTableCompact |
ALTER TABLE [IF EXISTS] [[catalogName.] dataBasesName].tableName [PARTITION partition_spec]
COMPACT.
|
| SqlAlterTableDropColumn |
SqlNode to describe ALTER TABLE [IF EXISTS] table_name DROP column clause.
|
| SqlAlterTableDropConstraint |
ALTER TABLE [IF EXISTS] [catalog_name.][db_name.]table_name DROP CONSTRAINT constraint_name.
|
| SqlAlterTableDropPrimaryKey |
ALTER TABLE [IF EXISTS] [catalog_name.][db_name.]table_name DROP PRIMARY KEY.
|
| SqlAlterTableDropWatermark |
SqlNode to describe ALTER TABLE [IF EXISTS] table_name DROP watermark clause.
|
| SqlAlterTableModify |
SqlNode to describe ALTER TABLE [IF EXISTS] table_name MODIFY column/constraint/watermark clause.
|
| SqlAlterTableOptions |
ALTER TABLE [IF EXISTS] [[catalogName.] dataBasesName].tableName SET ( name=value [,
name=value]*).
|
| SqlAlterTableRename |
ALTER TABLE [IF EXISTS] [[catalogName.] dataBasesName].tableName RENAME TO [[catalogName.]
dataBasesName].newTableName.
|
| SqlAlterTableRenameColumn |
ALTER TABLE [IF EXISTS] [[catalogName.] dataBasesName].tableName RENAME originColumnName TO
newColumnName.
|
| SqlAlterTableReset |
ALTER TABLE [IF EXISTS] [[catalogName.] dataBasesName].tableName RESET ( 'key1' [, 'key2']*).
|
| SqlAlterTableSchema |
Abstract class to describe statements which are used to alter table schema.
|
| 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.
|
| SqlAnalyzeTable |
ANALYZE TABLE to compute the statistics for a given table.
|
| SqlCompilePlan |
AST node for
COMPILE PLAN 'planfile' [IF NOT EXISTS] FOR [DML]. |
| 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.
|
| SqlCreateTableAs |
SqlNode to describe the CREATE TABLE AS syntax. |
| SqlCreateTableLike |
SqlNode to describe the CREATE TABLE LIKE syntax. |
| 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.
|
| SqlDropPartitions.AlterTableDropPartitionsContext |
Alter table add partition context.
|
| SqlDropTable |
DROP TABLE DDL sql call.
|
| SqlDropView |
DROP VIEW DDL sql call.
|
| SqlRemoveJar |
REMOVE JAR sql call to remove jar from the classloader.
|
| SqlReplaceTableAs |
SqlNode to describe the [CREATE OR] REPLACE TABLE AS (RTAS) syntax. |
| SqlReset |
SQL call for "RESET" and "RESET 'key'".
|
| SqlSet |
SQL call for "SET" and "SET 'key' = 'value'".
|
| SqlStopJob |
The command to stop a flink job.
|
| 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–2024 The Apache Software Foundation. All rights reserved.