OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SqlShowCreateTable.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 SqlShowCreateTable extends SqlCustomDdl {
17  private static final SqlOperator OPERATOR =
18  new SqlSpecialOperator("SHOW_CREATE_TABLE", SqlKind.OTHER_DDL);
19 
20  @Expose
21  private String tableName;
22 
23  public SqlShowCreateTable(final SqlParserPos pos, final String tableName) {
24  super(OPERATOR, pos);
25  this.tableName = tableName;
26  }
27 }
SqlShowCreateTable(final SqlParserPos pos, final String tableName)