OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SqlValidateSystem.java
Go to the documentation of this file.
1 package com.mapd.parser.extension.ddl;
2 
3 import com.google.gson.annotations.Expose;
5 
6 import org.apache.calcite.sql.SqlKind;
8 import org.apache.calcite.sql.SqlSpecialOperator;
9 import org.apache.calcite.sql.parser.SqlParserPos;
10 
14 public class SqlValidateSystem extends SqlCustomDdl {
15  private static final SqlOperator OPERATOR =
16  new SqlSpecialOperator("VALIDATE_SYSTEM", SqlKind.OTHER_DDL);
17 
18  @Expose
19  private String type;
20  @Expose
22 
24  final SqlParserPos pos, final String type, HeavyDBOptionsMap withOptions) {
25  super(OPERATOR, pos);
26  this.type = type;
27  this.options = withOptions;
28  }
29 }
SqlValidateSystem(final SqlParserPos pos, final String type, HeavyDBOptionsMap withOptions)