Class SqlShowProcedureConverter
- java.lang.Object
-
- org.apache.flink.table.planner.operations.converters.AbstractSqlShowConverter<SqlShowProcedures>
-
- org.apache.flink.table.planner.operations.converters.SqlShowProcedureConverter
-
- All Implemented Interfaces:
SqlNodeConverter<SqlShowProcedures>
public class SqlShowProcedureConverter extends AbstractSqlShowConverter<SqlShowProcedures>
A converter forSqlShowProcedures
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.flink.table.planner.operations.converters.SqlNodeConverter
SqlNodeConverter.ConvertContext
-
-
Constructor Summary
Constructors Constructor Description SqlShowProcedureConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Operation
convertSqlNode(SqlShowProcedures sqlShowProcedures, SqlNodeConverter.ConvertContext context)
Convert the given validatedSqlNode
into anOperation
.Operation
getOperation(SqlShowProcedures sqlShowCall, String catalogName, String databaseName, String prep, ShowLikeOperator likeOp)
Operation
getOperationWithoutPrep(SqlShowProcedures sqlShowCall, String catalogName, String databaseName, ShowLikeOperator likeOp)
-
Methods inherited from class org.apache.flink.table.planner.operations.converters.AbstractSqlShowConverter
convertShowOperation, getLikeOp
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.table.planner.operations.converters.SqlNodeConverter
supportedSqlKinds
-
-
-
-
Method Detail
-
getOperationWithoutPrep
public Operation getOperationWithoutPrep(SqlShowProcedures sqlShowCall, @Nullable String catalogName, @Nullable String databaseName, @Nullable ShowLikeOperator likeOp)
- Specified by:
getOperationWithoutPrep
in classAbstractSqlShowConverter<SqlShowProcedures>
-
getOperation
public Operation getOperation(SqlShowProcedures sqlShowCall, @Nullable String catalogName, @Nullable String databaseName, String prep, @Nullable ShowLikeOperator likeOp)
- Specified by:
getOperation
in classAbstractSqlShowConverter<SqlShowProcedures>
-
convertSqlNode
public Operation convertSqlNode(SqlShowProcedures sqlShowProcedures, SqlNodeConverter.ConvertContext context)
Description copied from interface:SqlNodeConverter
Convert the given validatedSqlNode
into anOperation
.- Specified by:
convertSqlNode
in interfaceSqlNodeConverter<SqlShowProcedures>
- Specified by:
convertSqlNode
in classAbstractSqlShowConverter<SqlShowProcedures>
- Parameters:
sqlShowProcedures
- a validatedSqlNode
.context
- the utilities and context information to convert
-
-