OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SqlShowRuntimeTableFunctions.java
Go to the documentation of this file.
1 package com.mapd.parser.extension.ddl;
2 
3 import org.apache.calcite.sql.SqlKind;
5 import org.apache.calcite.sql.SqlSpecialOperator;
6 import org.apache.calcite.sql.parser.SqlParserPos;
7 
14  private static final SqlOperator OPERATOR =
15  new SqlSpecialOperator("SHOW_RUNTIME_TABLE_FUNCTIONS", SqlKind.OTHER_DDL);
16 
17  public SqlShowRuntimeTableFunctions(final SqlParserPos pos) {
18  super(OPERATOR, pos);
19  }
20 }