Package org.apache.calcite.server
Interface DdlExecutor
- All Known Implementing Classes:
DdlExecutorImpl
,MockDdlExecutor
,ServerDdlExecutor
public interface DdlExecutor
Executes DDL commands.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final DdlExecutor
DDL executor that cannot handle any DDL. -
Method Summary
Modifier and TypeMethodDescriptionvoid
executeDdl
(CalcitePrepare.Context context, SqlNode node) Executes a DDL statement.
-
Field Details
-
USELESS
DDL executor that cannot handle any DDL.
-
-
Method Details
-
executeDdl
Executes a DDL statement.The statement identified itself as DDL in the
CalcitePrepare.ParseResult.kind()
field.
-