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