AddColumn(NodeLocation location,
QualifiedName name,
ColumnDefinition column,
boolean tableExists,
boolean columnNotExists) |
AddColumn(QualifiedName name,
ColumnDefinition column,
boolean tableExists,
boolean columnNotExists) |
AllColumns(NodeLocation location,
QualifiedName prefix) |
AllColumns(QualifiedName prefix) |
AlterFunction(NodeLocation location,
QualifiedName functionName,
Optional<List<String>> parameterTypes,
AlterRoutineCharacteristics characteristics) |
AlterFunction(QualifiedName functionName,
Optional<List<String>> parameterTypes,
AlterRoutineCharacteristics characteristics) |
Analyze(NodeLocation location,
QualifiedName tableName,
List<Property> properties) |
Analyze(QualifiedName tableName,
List<Property> properties) |
Call(NodeLocation location,
QualifiedName name,
List<CallArgument> arguments) |
Call(Optional<NodeLocation> location,
QualifiedName name,
List<CallArgument> arguments) |
Call(QualifiedName name,
List<CallArgument> arguments) |
CreateFunction(NodeLocation location,
boolean replace,
boolean temporary,
QualifiedName functionName,
List<SqlParameterDeclaration> parameters,
String returnType,
Optional<String> comment,
RoutineCharacteristics characteristics,
RoutineBody body) |
CreateFunction(QualifiedName functionName,
boolean replace,
boolean temporary,
List<SqlParameterDeclaration> parameters,
String returnType,
Optional<String> comment,
RoutineCharacteristics characteristics,
RoutineBody body) |
CreateMaterializedView(Optional<NodeLocation> location,
QualifiedName name,
Query query,
boolean notExists,
List<Property> properties,
Optional<String> comment) |
CreateMaterializedView(QualifiedName name,
Query query,
boolean notExists,
List<Property> properties,
Optional<String> comment) |
CreateSchema(NodeLocation location,
QualifiedName schemaName,
boolean notExists,
List<Property> properties) |
CreateSchema(QualifiedName schemaName,
boolean notExists,
List<Property> properties) |
CreateTable(NodeLocation location,
QualifiedName name,
List<TableElement> elements,
boolean notExists,
List<Property> properties,
Optional<String> comment) |
CreateTable(QualifiedName name,
List<TableElement> elements,
boolean notExists,
List<Property> properties,
Optional<String> comment) |
CreateTableAsSelect(NodeLocation location,
QualifiedName name,
Query query,
boolean notExists,
List<Property> properties,
boolean withData,
Optional<List<Identifier>> columnAliases,
Optional<String> comment) |
CreateTableAsSelect(QualifiedName name,
Query query,
boolean notExists,
List<Property> properties,
boolean withData,
Optional<List<Identifier>> columnAliases,
Optional<String> comment) |
CreateType(QualifiedName typeName,
com.google.common.collect.ImmutableList<String> parameterNames,
com.google.common.collect.ImmutableList<String> parameterTypes) |
CreateType(QualifiedName typeName,
String distinctType) |
CreateView(NodeLocation location,
QualifiedName name,
Query query,
boolean replace,
Optional<CreateView.Security> security) |
CreateView(QualifiedName name,
Query query,
boolean replace,
Optional<CreateView.Security> security) |
DropColumn(NodeLocation location,
QualifiedName table,
Identifier column,
boolean tableExists,
boolean columnExists) |
DropColumn(QualifiedName table,
Identifier column,
boolean tableExists,
boolean columnExists) |
DropFunction(NodeLocation location,
QualifiedName functionName,
Optional<List<String>> parameterTypes,
boolean temporary,
boolean exists) |
DropFunction(QualifiedName functionName,
Optional<List<String>> parameterTypes,
boolean temporary,
boolean exists) |
DropMaterializedView(Optional<NodeLocation> location,
QualifiedName name,
boolean exists) |
DropSchema(NodeLocation location,
QualifiedName schemaName,
boolean exists,
boolean cascade) |
DropSchema(QualifiedName schemaName,
boolean exists,
boolean cascade) |
DropTable(NodeLocation location,
QualifiedName tableName,
boolean exists) |
DropTable(QualifiedName tableName,
boolean exists) |
DropView(NodeLocation location,
QualifiedName name,
boolean exists) |
DropView(QualifiedName name,
boolean exists) |
FunctionCall(NodeLocation location,
QualifiedName name,
List<Expression> arguments) |
FunctionCall(NodeLocation location,
QualifiedName name,
Optional<Window> window,
Optional<Expression> filter,
Optional<OrderBy> orderBy,
boolean distinct,
boolean ignoreNulls,
List<Expression> arguments) |
FunctionCall(NodeLocation location,
QualifiedName name,
Optional<Window> window,
Optional<Expression> filter,
Optional<OrderBy> orderBy,
boolean distinct,
List<Expression> arguments) |
FunctionCall(QualifiedName name,
boolean distinct,
List<Expression> arguments) |
FunctionCall(QualifiedName name,
boolean distinct,
List<Expression> arguments,
Optional<Expression> filter) |
FunctionCall(QualifiedName name,
List<Expression> arguments) |
FunctionCall(QualifiedName name,
Optional<Window> window,
boolean distinct,
boolean ignoreNulls,
List<Expression> arguments) |
FunctionCall(QualifiedName name,
Optional<Window> window,
Optional<Expression> filter,
Optional<OrderBy> orderBy,
boolean distinct,
boolean ignoreNulls,
List<Expression> arguments) |
FunctionCall(QualifiedName name,
Optional<Window> window,
Optional<Expression> filter,
Optional<OrderBy> orderBy,
boolean distinct,
List<Expression> arguments) |
Grant(NodeLocation location,
Optional<List<String>> privileges,
boolean table,
QualifiedName tableName,
PrincipalSpecification grantee,
boolean withGrantOption) |
Grant(Optional<List<String>> privileges,
boolean table,
QualifiedName tableName,
PrincipalSpecification grantee,
boolean withGrantOption) |
Insert(QualifiedName target,
Optional<List<Identifier>> columns,
Query query) |
LikeClause(NodeLocation location,
QualifiedName tableName,
Optional<LikeClause.PropertiesOption> propertiesOption) |
LikeClause(QualifiedName tableName,
Optional<LikeClause.PropertiesOption> propertiesOption) |
RenameColumn(NodeLocation location,
QualifiedName table,
Identifier source,
Identifier target,
boolean tableExists,
boolean columnExists) |
RenameColumn(QualifiedName table,
Identifier source,
Identifier target,
boolean tableExists,
boolean columnExists) |
RenameSchema(NodeLocation location,
QualifiedName source,
Identifier target) |
RenameSchema(QualifiedName source,
Identifier target) |
RenameTable(NodeLocation location,
QualifiedName source,
QualifiedName target,
boolean exists) |
RenameTable(QualifiedName source,
QualifiedName target,
boolean exists) |
ResetSession(NodeLocation location,
QualifiedName name) |
ResetSession(QualifiedName name) |
Revoke(boolean grantOptionFor,
Optional<List<String>> privileges,
boolean table,
QualifiedName tableName,
PrincipalSpecification grantee) |
Revoke(NodeLocation location,
boolean grantOptionFor,
Optional<List<String>> privileges,
boolean table,
QualifiedName tableName,
PrincipalSpecification grantee) |
SetSession(NodeLocation location,
QualifiedName name,
Expression value) |
SetSession(QualifiedName name,
Expression value) |
ShowColumns(NodeLocation location,
QualifiedName table) |
ShowColumns(QualifiedName table) |
ShowCreate(NodeLocation location,
ShowCreate.Type type,
QualifiedName name) |
ShowCreate(ShowCreate.Type type,
QualifiedName name) |
ShowCreateFunction(NodeLocation location,
QualifiedName name,
Optional<List<String>> parameterTypes) |
ShowCreateFunction(QualifiedName name,
Optional<List<String>> parameterTypes) |
Table(NodeLocation location,
QualifiedName name) |
Table(QualifiedName name) |
TruncateTable(NodeLocation location,
QualifiedName tableName) |
TruncateTable(QualifiedName tableName) |