OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SqlShowRuntimeFunctions.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 
12 public class SqlShowRuntimeFunctions extends SqlCustomDdl {
13  private static final SqlOperator OPERATOR =
14  new SqlSpecialOperator("SHOW_RUNTIME_FUNCTIONS", SqlKind.OTHER_DDL);
15 
16  public SqlShowRuntimeFunctions(final SqlParserPos pos) {
17  super(OPERATOR, pos);
18  }
19 }