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