OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SqlShowTableFunctions.java
Go to the documentation of this file.
1 package com.mapd.parser.extension.ddl;
2 
3 import com.google.gson.annotations.Expose;
4 
5 import org.apache.calcite.sql.SqlKind;
7 import org.apache.calcite.sql.SqlSpecialOperator;
8 import org.apache.calcite.sql.parser.SqlParserPos;
9 
10 import java.util.List;
11 
16 public class SqlShowTableFunctions extends SqlCustomDdl {
17  private static final SqlOperator OPERATOR =
18  new SqlSpecialOperator("SHOW_TABLE_FUNCTIONS", SqlKind.OTHER_DDL);
19 
20  @Expose
21  private List<String> tfNames;
22 
23  public SqlShowTableFunctions(final SqlParserPos pos, final List<String> tfNames) {
24  super(OPERATOR, pos);
25  this.tfNames = tfNames;
26  }
27 }
SqlShowTableFunctions(final SqlParserPos pos, final List< String > tfNames)