From 0e8eea250b611b4254f6d478cf9a6bfff9661457 Mon Sep 17 00:00:00 2001
From: Igor Motov
Date: Wed, 9 May 2018 14:10:28 -0400
Subject: [PATCH] SQL: Add support for SYS GEOMETRY_COLUMNS
Adds support for SYS GEOMETRY_COLUMNS, which returns the same
information as `SELECT * FROM GEOMETRY_COLUMNS` command in the standard
implementation.
Relates #29872
---
x-pack/plugin/sql/src/main/antlr/SqlBase.g4 | 4 +
.../plugin/sql/src/main/antlr/SqlBase.tokens | 242 +--
.../sql/src/main/antlr/SqlBaseLexer.tokens | 240 +--
.../xpack/sql/parser/CommandBuilder.java | 8 +-
.../xpack/sql/parser/SqlBaseBaseListener.java | 17 +-
.../xpack/sql/parser/SqlBaseBaseVisitor.java | 12 +-
.../xpack/sql/parser/SqlBaseLexer.java | 618 +++----
.../xpack/sql/parser/SqlBaseListener.java | 17 +-
.../xpack/sql/parser/SqlBaseParser.java | 1483 +++++++++--------
.../xpack/sql/parser/SqlBaseVisitor.java | 12 +-
.../command/sys/SysGeometryColumns.java | 144 ++
.../command/sys/SysGeometryColumnsTests.java | 34 +
.../xpack/qa/sql/geo/GeoCsvSpecTestCase.java | 2 +-
13 files changed, 1573 insertions(+), 1260 deletions(-)
create mode 100644 x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/plan/logical/command/sys/SysGeometryColumns.java
create mode 100644 x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/plan/logical/command/sys/SysGeometryColumnsTests.java
diff --git a/x-pack/plugin/sql/src/main/antlr/SqlBase.g4 b/x-pack/plugin/sql/src/main/antlr/SqlBase.g4
index ea0b7da161c1e..e354810a0a5ee 100644
--- a/x-pack/plugin/sql/src/main/antlr/SqlBase.g4
+++ b/x-pack/plugin/sql/src/main/antlr/SqlBase.g4
@@ -62,6 +62,9 @@ statement
| SYS COLUMNS (CATALOG cluster=string)?
(TABLE LIKE? indexPattern=pattern)?
(LIKE? columnPattern=pattern)? #sysColumns
+ | SYS GEOMETRY_COLUMNS (CATALOG cluster=string)?
+ (TABLE LIKE? indexPattern=pattern)?
+ (LIKE? columnPattern=pattern)? #sysGeometryColumns
| SYS TYPES #sysTypes
| SYS TABLE TYPES #sysTableTypes
;
@@ -310,6 +313,7 @@ FORMAT: 'FORMAT';
FROM: 'FROM';
FULL: 'FULL';
FUNCTIONS: 'FUNCTIONS';
+GEOMETRY_COLUMNS: 'GEOMETRY_COLUMNS';
GRAPHVIZ: 'GRAPHVIZ';
GROUP: 'GROUP';
HAVING: 'HAVING';
diff --git a/x-pack/plugin/sql/src/main/antlr/SqlBase.tokens b/x-pack/plugin/sql/src/main/antlr/SqlBase.tokens
index 87cf9a4809d4a..2cdba3377d8ec 100644
--- a/x-pack/plugin/sql/src/main/antlr/SqlBase.tokens
+++ b/x-pack/plugin/sql/src/main/antlr/SqlBase.tokens
@@ -29,73 +29,74 @@ FORMAT=28
FROM=29
FULL=30
FUNCTIONS=31
-GRAPHVIZ=32
-GROUP=33
-HAVING=34
-IN=35
-INNER=36
-IS=37
-JOIN=38
-LEFT=39
-LIKE=40
-LIMIT=41
-MAPPED=42
-MATCH=43
-NATURAL=44
-NOT=45
-NULL=46
-ON=47
-OPTIMIZED=48
-OR=49
-ORDER=50
-OUTER=51
-PARSED=52
-PHYSICAL=53
-PLAN=54
-RIGHT=55
-RLIKE=56
-QUERY=57
-SCHEMAS=58
-SELECT=59
-SHOW=60
-SYS=61
-TABLE=62
-TABLES=63
-TEXT=64
-TRUE=65
-TYPE=66
-TYPES=67
-USING=68
-VERIFY=69
-WHERE=70
-WITH=71
-EQ=72
-NEQ=73
-LT=74
-LTE=75
-GT=76
-GTE=77
-PLUS=78
-MINUS=79
-ASTERISK=80
-SLASH=81
-PERCENT=82
-CONCAT=83
-DOT=84
-PARAM=85
-STRING=86
-INTEGER_VALUE=87
-DECIMAL_VALUE=88
-IDENTIFIER=89
-DIGIT_IDENTIFIER=90
-TABLE_IDENTIFIER=91
-QUOTED_IDENTIFIER=92
-BACKQUOTED_IDENTIFIER=93
-SIMPLE_COMMENT=94
-BRACKETED_COMMENT=95
-WS=96
-UNRECOGNIZED=97
-DELIMITER=98
+GEOMETRY_COLUMNS=32
+GRAPHVIZ=33
+GROUP=34
+HAVING=35
+IN=36
+INNER=37
+IS=38
+JOIN=39
+LEFT=40
+LIKE=41
+LIMIT=42
+MAPPED=43
+MATCH=44
+NATURAL=45
+NOT=46
+NULL=47
+ON=48
+OPTIMIZED=49
+OR=50
+ORDER=51
+OUTER=52
+PARSED=53
+PHYSICAL=54
+PLAN=55
+RIGHT=56
+RLIKE=57
+QUERY=58
+SCHEMAS=59
+SELECT=60
+SHOW=61
+SYS=62
+TABLE=63
+TABLES=64
+TEXT=65
+TRUE=66
+TYPE=67
+TYPES=68
+USING=69
+VERIFY=70
+WHERE=71
+WITH=72
+EQ=73
+NEQ=74
+LT=75
+LTE=76
+GT=77
+GTE=78
+PLUS=79
+MINUS=80
+ASTERISK=81
+SLASH=82
+PERCENT=83
+CONCAT=84
+DOT=85
+PARAM=86
+STRING=87
+INTEGER_VALUE=88
+DECIMAL_VALUE=89
+IDENTIFIER=90
+DIGIT_IDENTIFIER=91
+TABLE_IDENTIFIER=92
+QUOTED_IDENTIFIER=93
+BACKQUOTED_IDENTIFIER=94
+SIMPLE_COMMENT=95
+BRACKETED_COMMENT=96
+WS=97
+UNRECOGNIZED=98
+DELIMITER=99
'('=1
')'=2
','=3
@@ -127,56 +128,57 @@ DELIMITER=98
'FROM'=29
'FULL'=30
'FUNCTIONS'=31
-'GRAPHVIZ'=32
-'GROUP'=33
-'HAVING'=34
-'IN'=35
-'INNER'=36
-'IS'=37
-'JOIN'=38
-'LEFT'=39
-'LIKE'=40
-'LIMIT'=41
-'MAPPED'=42
-'MATCH'=43
-'NATURAL'=44
-'NOT'=45
-'NULL'=46
-'ON'=47
-'OPTIMIZED'=48
-'OR'=49
-'ORDER'=50
-'OUTER'=51
-'PARSED'=52
-'PHYSICAL'=53
-'PLAN'=54
-'RIGHT'=55
-'RLIKE'=56
-'QUERY'=57
-'SCHEMAS'=58
-'SELECT'=59
-'SHOW'=60
-'SYS'=61
-'TABLE'=62
-'TABLES'=63
-'TEXT'=64
-'TRUE'=65
-'TYPE'=66
-'TYPES'=67
-'USING'=68
-'VERIFY'=69
-'WHERE'=70
-'WITH'=71
-'='=72
-'<'=74
-'<='=75
-'>'=76
-'>='=77
-'+'=78
-'-'=79
-'*'=80
-'/'=81
-'%'=82
-'||'=83
-'.'=84
-'?'=85
+'GEOMETRY_COLUMNS'=32
+'GRAPHVIZ'=33
+'GROUP'=34
+'HAVING'=35
+'IN'=36
+'INNER'=37
+'IS'=38
+'JOIN'=39
+'LEFT'=40
+'LIKE'=41
+'LIMIT'=42
+'MAPPED'=43
+'MATCH'=44
+'NATURAL'=45
+'NOT'=46
+'NULL'=47
+'ON'=48
+'OPTIMIZED'=49
+'OR'=50
+'ORDER'=51
+'OUTER'=52
+'PARSED'=53
+'PHYSICAL'=54
+'PLAN'=55
+'RIGHT'=56
+'RLIKE'=57
+'QUERY'=58
+'SCHEMAS'=59
+'SELECT'=60
+'SHOW'=61
+'SYS'=62
+'TABLE'=63
+'TABLES'=64
+'TEXT'=65
+'TRUE'=66
+'TYPE'=67
+'TYPES'=68
+'USING'=69
+'VERIFY'=70
+'WHERE'=71
+'WITH'=72
+'='=73
+'<'=75
+'<='=76
+'>'=77
+'>='=78
+'+'=79
+'-'=80
+'*'=81
+'/'=82
+'%'=83
+'||'=84
+'.'=85
+'?'=86
diff --git a/x-pack/plugin/sql/src/main/antlr/SqlBaseLexer.tokens b/x-pack/plugin/sql/src/main/antlr/SqlBaseLexer.tokens
index a687a9215ecb5..60badee8ebc60 100644
--- a/x-pack/plugin/sql/src/main/antlr/SqlBaseLexer.tokens
+++ b/x-pack/plugin/sql/src/main/antlr/SqlBaseLexer.tokens
@@ -29,72 +29,73 @@ FORMAT=28
FROM=29
FULL=30
FUNCTIONS=31
-GRAPHVIZ=32
-GROUP=33
-HAVING=34
-IN=35
-INNER=36
-IS=37
-JOIN=38
-LEFT=39
-LIKE=40
-LIMIT=41
-MAPPED=42
-MATCH=43
-NATURAL=44
-NOT=45
-NULL=46
-ON=47
-OPTIMIZED=48
-OR=49
-ORDER=50
-OUTER=51
-PARSED=52
-PHYSICAL=53
-PLAN=54
-RIGHT=55
-RLIKE=56
-QUERY=57
-SCHEMAS=58
-SELECT=59
-SHOW=60
-SYS=61
-TABLE=62
-TABLES=63
-TEXT=64
-TRUE=65
-TYPE=66
-TYPES=67
-USING=68
-VERIFY=69
-WHERE=70
-WITH=71
-EQ=72
-NEQ=73
-LT=74
-LTE=75
-GT=76
-GTE=77
-PLUS=78
-MINUS=79
-ASTERISK=80
-SLASH=81
-PERCENT=82
-CONCAT=83
-DOT=84
-PARAM=85
-STRING=86
-INTEGER_VALUE=87
-DECIMAL_VALUE=88
-IDENTIFIER=89
-DIGIT_IDENTIFIER=90
-TABLE_IDENTIFIER=91
-QUOTED_IDENTIFIER=92
-BACKQUOTED_IDENTIFIER=93
-SIMPLE_COMMENT=94
-BRACKETED_COMMENT=95
-WS=96
-UNRECOGNIZED=97
+GEOMETRY_COLUMNS=32
+GRAPHVIZ=33
+GROUP=34
+HAVING=35
+IN=36
+INNER=37
+IS=38
+JOIN=39
+LEFT=40
+LIKE=41
+LIMIT=42
+MAPPED=43
+MATCH=44
+NATURAL=45
+NOT=46
+NULL=47
+ON=48
+OPTIMIZED=49
+OR=50
+ORDER=51
+OUTER=52
+PARSED=53
+PHYSICAL=54
+PLAN=55
+RIGHT=56
+RLIKE=57
+QUERY=58
+SCHEMAS=59
+SELECT=60
+SHOW=61
+SYS=62
+TABLE=63
+TABLES=64
+TEXT=65
+TRUE=66
+TYPE=67
+TYPES=68
+USING=69
+VERIFY=70
+WHERE=71
+WITH=72
+EQ=73
+NEQ=74
+LT=75
+LTE=76
+GT=77
+GTE=78
+PLUS=79
+MINUS=80
+ASTERISK=81
+SLASH=82
+PERCENT=83
+CONCAT=84
+DOT=85
+PARAM=86
+STRING=87
+INTEGER_VALUE=88
+DECIMAL_VALUE=89
+IDENTIFIER=90
+DIGIT_IDENTIFIER=91
+TABLE_IDENTIFIER=92
+QUOTED_IDENTIFIER=93
+BACKQUOTED_IDENTIFIER=94
+SIMPLE_COMMENT=95
+BRACKETED_COMMENT=96
+WS=97
+UNRECOGNIZED=98
'('=1
')'=2
','=3
@@ -126,56 +127,57 @@ UNRECOGNIZED=97
'FROM'=29
'FULL'=30
'FUNCTIONS'=31
-'GRAPHVIZ'=32
-'GROUP'=33
-'HAVING'=34
-'IN'=35
-'INNER'=36
-'IS'=37
-'JOIN'=38
-'LEFT'=39
-'LIKE'=40
-'LIMIT'=41
-'MAPPED'=42
-'MATCH'=43
-'NATURAL'=44
-'NOT'=45
-'NULL'=46
-'ON'=47
-'OPTIMIZED'=48
-'OR'=49
-'ORDER'=50
-'OUTER'=51
-'PARSED'=52
-'PHYSICAL'=53
-'PLAN'=54
-'RIGHT'=55
-'RLIKE'=56
-'QUERY'=57
-'SCHEMAS'=58
-'SELECT'=59
-'SHOW'=60
-'SYS'=61
-'TABLE'=62
-'TABLES'=63
-'TEXT'=64
-'TRUE'=65
-'TYPE'=66
-'TYPES'=67
-'USING'=68
-'VERIFY'=69
-'WHERE'=70
-'WITH'=71
-'='=72
-'<'=74
-'<='=75
-'>'=76
-'>='=77
-'+'=78
-'-'=79
-'*'=80
-'/'=81
-'%'=82
-'||'=83
-'.'=84
-'?'=85
+'GEOMETRY_COLUMNS'=32
+'GRAPHVIZ'=33
+'GROUP'=34
+'HAVING'=35
+'IN'=36
+'INNER'=37
+'IS'=38
+'JOIN'=39
+'LEFT'=40
+'LIKE'=41
+'LIMIT'=42
+'MAPPED'=43
+'MATCH'=44
+'NATURAL'=45
+'NOT'=46
+'NULL'=47
+'ON'=48
+'OPTIMIZED'=49
+'OR'=50
+'ORDER'=51
+'OUTER'=52
+'PARSED'=53
+'PHYSICAL'=54
+'PLAN'=55
+'RIGHT'=56
+'RLIKE'=57
+'QUERY'=58
+'SCHEMAS'=59
+'SELECT'=60
+'SHOW'=61
+'SYS'=62
+'TABLE'=63
+'TABLES'=64
+'TEXT'=65
+'TRUE'=66
+'TYPE'=67
+'TYPES'=68
+'USING'=69
+'VERIFY'=70
+'WHERE'=71
+'WITH'=72
+'='=73
+'<'=75
+'<='=76
+'>'=77
+'>='=78
+'+'=79
+'-'=80
+'*'=81
+'/'=82
+'%'=83
+'||'=84
+'.'=85
+'?'=86
diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/CommandBuilder.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/CommandBuilder.java
index fb08d08fcb926..7e5ce052dddbe 100644
--- a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/CommandBuilder.java
+++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/CommandBuilder.java
@@ -30,6 +30,7 @@
import org.elasticsearch.xpack.sql.plan.logical.command.ShowTables;
import org.elasticsearch.xpack.sql.plan.logical.command.sys.SysCatalogs;
import org.elasticsearch.xpack.sql.plan.logical.command.sys.SysColumns;
+import org.elasticsearch.xpack.sql.plan.logical.command.sys.SysGeometryColumns;
import org.elasticsearch.xpack.sql.plan.logical.command.sys.SysTableTypes;
import org.elasticsearch.xpack.sql.plan.logical.command.sys.SysTables;
import org.elasticsearch.xpack.sql.plan.logical.command.sys.SysTypes;
@@ -174,6 +175,11 @@ public Object visitSysColumns(SysColumnsContext ctx) {
return new SysColumns(loc, string(ctx.cluster), visitPattern(ctx.indexPattern), visitPattern(ctx.columnPattern));
}
+ @Override
+ public Object visitSysGeometryColumns(SqlBaseParser.SysGeometryColumnsContext ctx) {
+ return new SysGeometryColumns(source(ctx), string(ctx.cluster), visitPattern(ctx.indexPattern), visitPattern(ctx.columnPattern));
+ }
+
@Override
public SysTypes visitSysTypes(SysTypesContext ctx) {
return new SysTypes(source(ctx));
@@ -183,4 +189,4 @@ public SysTypes visitSysTypes(SysTypesContext ctx) {
public Object visitSysTableTypes(SysTableTypesContext ctx) {
return new SysTableTypes(source(ctx));
}
-}
\ No newline at end of file
+}
diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseBaseListener.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseBaseListener.java
index 4e80e8db9bb52..bf0f39daec0bd 100644
--- a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseBaseListener.java
+++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseBaseListener.java
@@ -1,8 +1,3 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
// ANTLR GENERATED CODE: DO NOT EDIT
package org.elasticsearch.xpack.sql.parser;
@@ -160,6 +155,18 @@ class SqlBaseBaseListener implements SqlBaseListener {
* The default implementation does nothing.
*/
@Override public void exitSysColumns(SqlBaseParser.SysColumnsContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterSysGeometryColumns(SqlBaseParser.SysGeometryColumnsContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitSysGeometryColumns(SqlBaseParser.SysGeometryColumnsContext ctx) { }
/**
* {@inheritDoc}
*
diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseBaseVisitor.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseBaseVisitor.java
index 1adb0a423c7f2..feb4becbd7315 100644
--- a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseBaseVisitor.java
+++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseBaseVisitor.java
@@ -1,8 +1,3 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
// ANTLR GENERATED CODE: DO NOT EDIT
package org.elasticsearch.xpack.sql.parser;
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
@@ -100,6 +95,13 @@ class SqlBaseBaseVisitor extends AbstractParseTreeVisitor implements SqlBa
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitSysColumns(SqlBaseParser.SysColumnsContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitSysGeometryColumns(SqlBaseParser.SysGeometryColumnsContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseLexer.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseLexer.java
index 1367b98a89982..b9b661da0eff5 100644
--- a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseLexer.java
+++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseLexer.java
@@ -1,8 +1,3 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
// ANTLR GENERATED CODE: DO NOT EDIT
package org.elasticsearch.xpack.sql.parser;
import org.antlr.v4.runtime.Lexer;
@@ -26,16 +21,17 @@ class SqlBaseLexer extends Lexer {
AS=10, ASC=11, BETWEEN=12, BY=13, CAST=14, CATALOG=15, CATALOGS=16, COLUMNS=17,
DEBUG=18, DESC=19, DESCRIBE=20, DISTINCT=21, ESCAPE=22, EXECUTABLE=23,
EXISTS=24, EXPLAIN=25, EXTRACT=26, FALSE=27, FORMAT=28, FROM=29, FULL=30,
- FUNCTIONS=31, GRAPHVIZ=32, GROUP=33, HAVING=34, IN=35, INNER=36, IS=37,
- JOIN=38, LEFT=39, LIKE=40, LIMIT=41, MAPPED=42, MATCH=43, NATURAL=44,
- NOT=45, NULL=46, ON=47, OPTIMIZED=48, OR=49, ORDER=50, OUTER=51, PARSED=52,
- PHYSICAL=53, PLAN=54, RIGHT=55, RLIKE=56, QUERY=57, SCHEMAS=58, SELECT=59,
- SHOW=60, SYS=61, TABLE=62, TABLES=63, TEXT=64, TRUE=65, TYPE=66, TYPES=67,
- USING=68, VERIFY=69, WHERE=70, WITH=71, EQ=72, NEQ=73, LT=74, LTE=75,
- GT=76, GTE=77, PLUS=78, MINUS=79, ASTERISK=80, SLASH=81, PERCENT=82, CONCAT=83,
- DOT=84, PARAM=85, STRING=86, INTEGER_VALUE=87, DECIMAL_VALUE=88, IDENTIFIER=89,
- DIGIT_IDENTIFIER=90, TABLE_IDENTIFIER=91, QUOTED_IDENTIFIER=92, BACKQUOTED_IDENTIFIER=93,
- SIMPLE_COMMENT=94, BRACKETED_COMMENT=95, WS=96, UNRECOGNIZED=97;
+ FUNCTIONS=31, GEOMETRY_COLUMNS=32, GRAPHVIZ=33, GROUP=34, HAVING=35, IN=36,
+ INNER=37, IS=38, JOIN=39, LEFT=40, LIKE=41, LIMIT=42, MAPPED=43, MATCH=44,
+ NATURAL=45, NOT=46, NULL=47, ON=48, OPTIMIZED=49, OR=50, ORDER=51, OUTER=52,
+ PARSED=53, PHYSICAL=54, PLAN=55, RIGHT=56, RLIKE=57, QUERY=58, SCHEMAS=59,
+ SELECT=60, SHOW=61, SYS=62, TABLE=63, TABLES=64, TEXT=65, TRUE=66, TYPE=67,
+ TYPES=68, USING=69, VERIFY=70, WHERE=71, WITH=72, EQ=73, NEQ=74, LT=75,
+ LTE=76, GT=77, GTE=78, PLUS=79, MINUS=80, ASTERISK=81, SLASH=82, PERCENT=83,
+ CONCAT=84, DOT=85, PARAM=86, STRING=87, INTEGER_VALUE=88, DECIMAL_VALUE=89,
+ IDENTIFIER=90, DIGIT_IDENTIFIER=91, TABLE_IDENTIFIER=92, QUOTED_IDENTIFIER=93,
+ BACKQUOTED_IDENTIFIER=94, SIMPLE_COMMENT=95, BRACKETED_COMMENT=96, WS=97,
+ UNRECOGNIZED=98;
public static String[] modeNames = {
"DEFAULT_MODE"
};
@@ -45,16 +41,16 @@ class SqlBaseLexer extends Lexer {
"AS", "ASC", "BETWEEN", "BY", "CAST", "CATALOG", "CATALOGS", "COLUMNS",
"DEBUG", "DESC", "DESCRIBE", "DISTINCT", "ESCAPE", "EXECUTABLE", "EXISTS",
"EXPLAIN", "EXTRACT", "FALSE", "FORMAT", "FROM", "FULL", "FUNCTIONS",
- "GRAPHVIZ", "GROUP", "HAVING", "IN", "INNER", "IS", "JOIN", "LEFT", "LIKE",
- "LIMIT", "MAPPED", "MATCH", "NATURAL", "NOT", "NULL", "ON", "OPTIMIZED",
- "OR", "ORDER", "OUTER", "PARSED", "PHYSICAL", "PLAN", "RIGHT", "RLIKE",
- "QUERY", "SCHEMAS", "SELECT", "SHOW", "SYS", "TABLE", "TABLES", "TEXT",
- "TRUE", "TYPE", "TYPES", "USING", "VERIFY", "WHERE", "WITH", "EQ", "NEQ",
- "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT",
- "CONCAT", "DOT", "PARAM", "STRING", "INTEGER_VALUE", "DECIMAL_VALUE",
- "IDENTIFIER", "DIGIT_IDENTIFIER", "TABLE_IDENTIFIER", "QUOTED_IDENTIFIER",
- "BACKQUOTED_IDENTIFIER", "EXPONENT", "DIGIT", "LETTER", "SIMPLE_COMMENT",
- "BRACKETED_COMMENT", "WS", "UNRECOGNIZED"
+ "GEOMETRY_COLUMNS", "GRAPHVIZ", "GROUP", "HAVING", "IN", "INNER", "IS",
+ "JOIN", "LEFT", "LIKE", "LIMIT", "MAPPED", "MATCH", "NATURAL", "NOT",
+ "NULL", "ON", "OPTIMIZED", "OR", "ORDER", "OUTER", "PARSED", "PHYSICAL",
+ "PLAN", "RIGHT", "RLIKE", "QUERY", "SCHEMAS", "SELECT", "SHOW", "SYS",
+ "TABLE", "TABLES", "TEXT", "TRUE", "TYPE", "TYPES", "USING", "VERIFY",
+ "WHERE", "WITH", "EQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS",
+ "ASTERISK", "SLASH", "PERCENT", "CONCAT", "DOT", "PARAM", "STRING", "INTEGER_VALUE",
+ "DECIMAL_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "TABLE_IDENTIFIER",
+ "QUOTED_IDENTIFIER", "BACKQUOTED_IDENTIFIER", "EXPONENT", "DIGIT", "LETTER",
+ "SIMPLE_COMMENT", "BRACKETED_COMMENT", "WS", "UNRECOGNIZED"
};
private static final String[] _LITERAL_NAMES = {
@@ -62,30 +58,30 @@ class SqlBaseLexer extends Lexer {
"'AND'", "'ANY'", "'AS'", "'ASC'", "'BETWEEN'", "'BY'", "'CAST'", "'CATALOG'",
"'CATALOGS'", "'COLUMNS'", "'DEBUG'", "'DESC'", "'DESCRIBE'", "'DISTINCT'",
"'ESCAPE'", "'EXECUTABLE'", "'EXISTS'", "'EXPLAIN'", "'EXTRACT'", "'FALSE'",
- "'FORMAT'", "'FROM'", "'FULL'", "'FUNCTIONS'", "'GRAPHVIZ'", "'GROUP'",
- "'HAVING'", "'IN'", "'INNER'", "'IS'", "'JOIN'", "'LEFT'", "'LIKE'", "'LIMIT'",
- "'MAPPED'", "'MATCH'", "'NATURAL'", "'NOT'", "'NULL'", "'ON'", "'OPTIMIZED'",
- "'OR'", "'ORDER'", "'OUTER'", "'PARSED'", "'PHYSICAL'", "'PLAN'", "'RIGHT'",
- "'RLIKE'", "'QUERY'", "'SCHEMAS'", "'SELECT'", "'SHOW'", "'SYS'", "'TABLE'",
- "'TABLES'", "'TEXT'", "'TRUE'", "'TYPE'", "'TYPES'", "'USING'", "'VERIFY'",
- "'WHERE'", "'WITH'", "'='", null, "'<'", "'<='", "'>'", "'>='", "'+'",
- "'-'", "'*'", "'/'", "'%'", "'||'", "'.'", "'?'"
+ "'FORMAT'", "'FROM'", "'FULL'", "'FUNCTIONS'", "'GEOMETRY_COLUMNS'", "'GRAPHVIZ'",
+ "'GROUP'", "'HAVING'", "'IN'", "'INNER'", "'IS'", "'JOIN'", "'LEFT'",
+ "'LIKE'", "'LIMIT'", "'MAPPED'", "'MATCH'", "'NATURAL'", "'NOT'", "'NULL'",
+ "'ON'", "'OPTIMIZED'", "'OR'", "'ORDER'", "'OUTER'", "'PARSED'", "'PHYSICAL'",
+ "'PLAN'", "'RIGHT'", "'RLIKE'", "'QUERY'", "'SCHEMAS'", "'SELECT'", "'SHOW'",
+ "'SYS'", "'TABLE'", "'TABLES'", "'TEXT'", "'TRUE'", "'TYPE'", "'TYPES'",
+ "'USING'", "'VERIFY'", "'WHERE'", "'WITH'", "'='", null, "'<'", "'<='",
+ "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'||'", "'.'", "'?'"
};
private static final String[] _SYMBOLIC_NAMES = {
null, null, null, null, null, "ALL", "ANALYZE", "ANALYZED", "AND", "ANY",
"AS", "ASC", "BETWEEN", "BY", "CAST", "CATALOG", "CATALOGS", "COLUMNS",
"DEBUG", "DESC", "DESCRIBE", "DISTINCT", "ESCAPE", "EXECUTABLE", "EXISTS",
"EXPLAIN", "EXTRACT", "FALSE", "FORMAT", "FROM", "FULL", "FUNCTIONS",
- "GRAPHVIZ", "GROUP", "HAVING", "IN", "INNER", "IS", "JOIN", "LEFT", "LIKE",
- "LIMIT", "MAPPED", "MATCH", "NATURAL", "NOT", "NULL", "ON", "OPTIMIZED",
- "OR", "ORDER", "OUTER", "PARSED", "PHYSICAL", "PLAN", "RIGHT", "RLIKE",
- "QUERY", "SCHEMAS", "SELECT", "SHOW", "SYS", "TABLE", "TABLES", "TEXT",
- "TRUE", "TYPE", "TYPES", "USING", "VERIFY", "WHERE", "WITH", "EQ", "NEQ",
- "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT",
- "CONCAT", "DOT", "PARAM", "STRING", "INTEGER_VALUE", "DECIMAL_VALUE",
- "IDENTIFIER", "DIGIT_IDENTIFIER", "TABLE_IDENTIFIER", "QUOTED_IDENTIFIER",
- "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", "BRACKETED_COMMENT", "WS",
- "UNRECOGNIZED"
+ "GEOMETRY_COLUMNS", "GRAPHVIZ", "GROUP", "HAVING", "IN", "INNER", "IS",
+ "JOIN", "LEFT", "LIKE", "LIMIT", "MAPPED", "MATCH", "NATURAL", "NOT",
+ "NULL", "ON", "OPTIMIZED", "OR", "ORDER", "OUTER", "PARSED", "PHYSICAL",
+ "PLAN", "RIGHT", "RLIKE", "QUERY", "SCHEMAS", "SELECT", "SHOW", "SYS",
+ "TABLE", "TABLES", "TEXT", "TRUE", "TYPE", "TYPES", "USING", "VERIFY",
+ "WHERE", "WITH", "EQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS",
+ "ASTERISK", "SLASH", "PERCENT", "CONCAT", "DOT", "PARAM", "STRING", "INTEGER_VALUE",
+ "DECIMAL_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "TABLE_IDENTIFIER",
+ "QUOTED_IDENTIFIER", "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", "BRACKETED_COMMENT",
+ "WS", "UNRECOGNIZED"
};
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
@@ -142,7 +138,7 @@ public SqlBaseLexer(CharStream input) {
public ATN getATN() { return _ATN; }
public static final String _serializedATN =
- "\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\2c\u033b\b\1\4\2\t"+
+ "\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\2d\u034e\b\1\4\2\t"+
"\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+
"\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
@@ -153,276 +149,282 @@ public SqlBaseLexer(CharStream input) {
"\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+
"\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+
"\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_\4"+
- "`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6"+
- "\3\6\3\6\3\6\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\b\3"+
- "\b\3\b\3\b\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\f\3\f\3\f"+
- "\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\17\3\17\3\17\3\17"+
- "\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21"+
- "\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23"+
- "\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25"+
- "\3\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27"+
- "\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30"+
- "\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\32"+
- "\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34"+
- "\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36"+
- "\3\36\3\36\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3!\3"+
- "!\3!\3!\3!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3#\3#\3"+
- "$\3$\3$\3%\3%\3%\3%\3%\3%\3&\3&\3&\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3("+
- "\3)\3)\3)\3)\3)\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3,\3,\3,\3,\3,"+
- "\3,\3-\3-\3-\3-\3-\3-\3-\3-\3.\3.\3.\3.\3/\3/\3/\3/\3/\3\60\3\60\3\60"+
- "\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\62\3\62\3\62\3\63"+
- "\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\64\3\64\3\65\3\65\3\65"+
- "\3\65\3\65\3\65\3\65\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\67"+
- "\3\67\3\67\3\67\3\67\38\38\38\38\38\38\39\39\39\39\39\39\3:\3:\3:\3:\3"+
- ":\3:\3;\3;\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3<\3<\3<\3=\3=\3=\3=\3=\3>\3"+
- ">\3>\3>\3?\3?\3?\3?\3?\3?\3@\3@\3@\3@\3@\3@\3@\3A\3A\3A\3A\3A\3B\3B\3"+
- "B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3F\3F\3F\3"+
- "F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3I\3I\3J\3J\3J\3J\3J\3J\3"+
- "J\5J\u027b\nJ\3K\3K\3L\3L\3L\3M\3M\3N\3N\3N\3O\3O\3P\3P\3Q\3Q\3R\3R\3"+
- "S\3S\3T\3T\3T\3U\3U\3V\3V\3W\3W\3W\3W\7W\u029c\nW\fW\16W\u029f\13W\3W"+
- "\3W\3X\6X\u02a4\nX\rX\16X\u02a5\3Y\6Y\u02a9\nY\rY\16Y\u02aa\3Y\3Y\7Y\u02af"+
- "\nY\fY\16Y\u02b2\13Y\3Y\3Y\6Y\u02b6\nY\rY\16Y\u02b7\3Y\6Y\u02bb\nY\rY"+
- "\16Y\u02bc\3Y\3Y\7Y\u02c1\nY\fY\16Y\u02c4\13Y\5Y\u02c6\nY\3Y\3Y\3Y\3Y"+
- "\6Y\u02cc\nY\rY\16Y\u02cd\3Y\3Y\5Y\u02d2\nY\3Z\3Z\5Z\u02d6\nZ\3Z\3Z\3"+
- "Z\7Z\u02db\nZ\fZ\16Z\u02de\13Z\3[\3[\3[\3[\6[\u02e4\n[\r[\16[\u02e5\3"+
- "\\\3\\\3\\\3\\\6\\\u02ec\n\\\r\\\16\\\u02ed\3]\3]\3]\3]\7]\u02f4\n]\f"+
- "]\16]\u02f7\13]\3]\3]\3^\3^\3^\3^\7^\u02ff\n^\f^\16^\u0302\13^\3^\3^\3"+
- "_\3_\5_\u0308\n_\3_\6_\u030b\n_\r_\16_\u030c\3`\3`\3a\3a\3b\3b\3b\3b\7"+
- "b\u0317\nb\fb\16b\u031a\13b\3b\5b\u031d\nb\3b\5b\u0320\nb\3b\3b\3c\3c"+
- "\3c\3c\3c\7c\u0329\nc\fc\16c\u032c\13c\3c\3c\3c\3c\3c\3d\6d\u0334\nd\r"+
- "d\16d\u0335\3d\3d\3e\3e\3\u032a\2f\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n"+
- "\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30"+
- "/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.["+
- "/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083"+
- "C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097"+
- "M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00ab"+
- "W\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd\2\u00bf"+
- "\2\u00c1\2\u00c3`\u00c5a\u00c7b\u00c9c\3\2\f\3\2))\4\2BBaa\5\2<\3>\3>\3>\3>\3?\3?\3?\3?\3"+
+ "@\3@\3@\3@\3@\3@\3A\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3"+
+ "D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3"+
+ "G\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3J\3J\3K\3K\3K\3K\3K\3K\3K\5K\u028e"+
+ "\nK\3L\3L\3M\3M\3M\3N\3N\3O\3O\3O\3P\3P\3Q\3Q\3R\3R\3S\3S\3T\3T\3U\3U"+
+ "\3U\3V\3V\3W\3W\3X\3X\3X\3X\7X\u02af\nX\fX\16X\u02b2\13X\3X\3X\3Y\6Y\u02b7"+
+ "\nY\rY\16Y\u02b8\3Z\6Z\u02bc\nZ\rZ\16Z\u02bd\3Z\3Z\7Z\u02c2\nZ\fZ\16Z"+
+ "\u02c5\13Z\3Z\3Z\6Z\u02c9\nZ\rZ\16Z\u02ca\3Z\6Z\u02ce\nZ\rZ\16Z\u02cf"+
+ "\3Z\3Z\7Z\u02d4\nZ\fZ\16Z\u02d7\13Z\5Z\u02d9\nZ\3Z\3Z\3Z\3Z\6Z\u02df\n"+
+ "Z\rZ\16Z\u02e0\3Z\3Z\5Z\u02e5\nZ\3[\3[\5[\u02e9\n[\3[\3[\3[\7[\u02ee\n"+
+ "[\f[\16[\u02f1\13[\3\\\3\\\3\\\3\\\6\\\u02f7\n\\\r\\\16\\\u02f8\3]\3]"+
+ "\3]\3]\6]\u02ff\n]\r]\16]\u0300\3^\3^\3^\3^\7^\u0307\n^\f^\16^\u030a\13"+
+ "^\3^\3^\3_\3_\3_\3_\7_\u0312\n_\f_\16_\u0315\13_\3_\3_\3`\3`\5`\u031b"+
+ "\n`\3`\6`\u031e\n`\r`\16`\u031f\3a\3a\3b\3b\3c\3c\3c\3c\7c\u032a\nc\f"+
+ "c\16c\u032d\13c\3c\5c\u0330\nc\3c\5c\u0333\nc\3c\3c\3d\3d\3d\3d\3d\7d"+
+ "\u033c\nd\fd\16d\u033f\13d\3d\3d\3d\3d\3d\3e\6e\u0347\ne\re\16e\u0348"+
+ "\3e\3e\3f\3f\3\u033d\2g\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f"+
+ "\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63"+
+ "\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62"+
+ "c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087"+
+ "E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009b"+
+ "O\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00af"+
+ "Y\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bf\2\u00c1\2\u00c3"+
+ "\2\u00c5a\u00c7b\u00c9c\u00cbd\3\2\f\3\2))\4\2BBaa\5\2<\3\2\2\2\u017d\u017e"+
- "\7H\2\2\u017e\u017f\7W\2\2\u017f\u0180\7P\2\2\u0180\u0181\7E\2\2\u0181"+
- "\u0182\7V\2\2\u0182\u0183\7K\2\2\u0183\u0184\7Q\2\2\u0184\u0185\7P\2\2"+
- "\u0185\u0186\7U\2\2\u0186@\3\2\2\2\u0187\u0188\7I\2\2\u0188\u0189\7T\2"+
- "\2\u0189\u018a\7C\2\2\u018a\u018b\7R\2\2\u018b\u018c\7J\2\2\u018c\u018d"+
- "\7X\2\2\u018d\u018e\7K\2\2\u018e\u018f\7\\\2\2\u018fB\3\2\2\2\u0190\u0191"+
- "\7I\2\2\u0191\u0192\7T\2\2\u0192\u0193\7Q\2\2\u0193\u0194\7W\2\2\u0194"+
- "\u0195\7R\2\2\u0195D\3\2\2\2\u0196\u0197\7J\2\2\u0197\u0198\7C\2\2\u0198"+
- "\u0199\7X\2\2\u0199\u019a\7K\2\2\u019a\u019b\7P\2\2\u019b\u019c\7I\2\2"+
- "\u019cF\3\2\2\2\u019d\u019e\7K\2\2\u019e\u019f\7P\2\2\u019fH\3\2\2\2\u01a0"+
- "\u01a1\7K\2\2\u01a1\u01a2\7P\2\2\u01a2\u01a3\7P\2\2\u01a3\u01a4\7G\2\2"+
- "\u01a4\u01a5\7T\2\2\u01a5J\3\2\2\2\u01a6\u01a7\7K\2\2\u01a7\u01a8\7U\2"+
- "\2\u01a8L\3\2\2\2\u01a9\u01aa\7L\2\2\u01aa\u01ab\7Q\2\2\u01ab\u01ac\7"+
- "K\2\2\u01ac\u01ad\7P\2\2\u01adN\3\2\2\2\u01ae\u01af\7N\2\2\u01af\u01b0"+
- "\7G\2\2\u01b0\u01b1\7H\2\2\u01b1\u01b2\7V\2\2\u01b2P\3\2\2\2\u01b3\u01b4"+
- "\7N\2\2\u01b4\u01b5\7K\2\2\u01b5\u01b6\7M\2\2\u01b6\u01b7\7G\2\2\u01b7"+
- "R\3\2\2\2\u01b8\u01b9\7N\2\2\u01b9\u01ba\7K\2\2\u01ba\u01bb\7O\2\2\u01bb"+
- "\u01bc\7K\2\2\u01bc\u01bd\7V\2\2\u01bdT\3\2\2\2\u01be\u01bf\7O\2\2\u01bf"+
- "\u01c0\7C\2\2\u01c0\u01c1\7R\2\2\u01c1\u01c2\7R\2\2\u01c2\u01c3\7G\2\2"+
- "\u01c3\u01c4\7F\2\2\u01c4V\3\2\2\2\u01c5\u01c6\7O\2\2\u01c6\u01c7\7C\2"+
- "\2\u01c7\u01c8\7V\2\2\u01c8\u01c9\7E\2\2\u01c9\u01ca\7J\2\2\u01caX\3\2"+
- "\2\2\u01cb\u01cc\7P\2\2\u01cc\u01cd\7C\2\2\u01cd\u01ce\7V\2\2\u01ce\u01cf"+
- "\7W\2\2\u01cf\u01d0\7T\2\2\u01d0\u01d1\7C\2\2\u01d1\u01d2\7N\2\2\u01d2"+
- "Z\3\2\2\2\u01d3\u01d4\7P\2\2\u01d4\u01d5\7Q\2\2\u01d5\u01d6\7V\2\2\u01d6"+
- "\\\3\2\2\2\u01d7\u01d8\7P\2\2\u01d8\u01d9\7W\2\2\u01d9\u01da\7N\2\2\u01da"+
- "\u01db\7N\2\2\u01db^\3\2\2\2\u01dc\u01dd\7Q\2\2\u01dd\u01de\7P\2\2\u01de"+
- "`\3\2\2\2\u01df\u01e0\7Q\2\2\u01e0\u01e1\7R\2\2\u01e1\u01e2\7V\2\2\u01e2"+
- "\u01e3\7K\2\2\u01e3\u01e4\7O\2\2\u01e4\u01e5\7K\2\2\u01e5\u01e6\7\\\2"+
- "\2\u01e6\u01e7\7G\2\2\u01e7\u01e8\7F\2\2\u01e8b\3\2\2\2\u01e9\u01ea\7"+
- "Q\2\2\u01ea\u01eb\7T\2\2\u01ebd\3\2\2\2\u01ec\u01ed\7Q\2\2\u01ed\u01ee"+
- "\7T\2\2\u01ee\u01ef\7F\2\2\u01ef\u01f0\7G\2\2\u01f0\u01f1\7T\2\2\u01f1"+
- "f\3\2\2\2\u01f2\u01f3\7Q\2\2\u01f3\u01f4\7W\2\2\u01f4\u01f5\7V\2\2\u01f5"+
- "\u01f6\7G\2\2\u01f6\u01f7\7T\2\2\u01f7h\3\2\2\2\u01f8\u01f9\7R\2\2\u01f9"+
- "\u01fa\7C\2\2\u01fa\u01fb\7T\2\2\u01fb\u01fc\7U\2\2\u01fc\u01fd\7G\2\2"+
- "\u01fd\u01fe\7F\2\2\u01fej\3\2\2\2\u01ff\u0200\7R\2\2\u0200\u0201\7J\2"+
- "\2\u0201\u0202\7[\2\2\u0202\u0203\7U\2\2\u0203\u0204\7K\2\2\u0204\u0205"+
- "\7E\2\2\u0205\u0206\7C\2\2\u0206\u0207\7N\2\2\u0207l\3\2\2\2\u0208\u0209"+
- "\7R\2\2\u0209\u020a\7N\2\2\u020a\u020b\7C\2\2\u020b\u020c\7P\2\2\u020c"+
- "n\3\2\2\2\u020d\u020e\7T\2\2\u020e\u020f\7K\2\2\u020f\u0210\7I\2\2\u0210"+
- "\u0211\7J\2\2\u0211\u0212\7V\2\2\u0212p\3\2\2\2\u0213\u0214\7T\2\2\u0214"+
- "\u0215\7N\2\2\u0215\u0216\7K\2\2\u0216\u0217\7M\2\2\u0217\u0218\7G\2\2"+
- "\u0218r\3\2\2\2\u0219\u021a\7S\2\2\u021a\u021b\7W\2\2\u021b\u021c\7G\2"+
- "\2\u021c\u021d\7T\2\2\u021d\u021e\7[\2\2\u021et\3\2\2\2\u021f\u0220\7"+
- "U\2\2\u0220\u0221\7E\2\2\u0221\u0222\7J\2\2\u0222\u0223\7G\2\2\u0223\u0224"+
- "\7O\2\2\u0224\u0225\7C\2\2\u0225\u0226\7U\2\2\u0226v\3\2\2\2\u0227\u0228"+
- "\7U\2\2\u0228\u0229\7G\2\2\u0229\u022a\7N\2\2\u022a\u022b\7G\2\2\u022b"+
- "\u022c\7E\2\2\u022c\u022d\7V\2\2\u022dx\3\2\2\2\u022e\u022f\7U\2\2\u022f"+
- "\u0230\7J\2\2\u0230\u0231\7Q\2\2\u0231\u0232\7Y\2\2\u0232z\3\2\2\2\u0233"+
- "\u0234\7U\2\2\u0234\u0235\7[\2\2\u0235\u0236\7U\2\2\u0236|\3\2\2\2\u0237"+
- "\u0238\7V\2\2\u0238\u0239\7C\2\2\u0239\u023a\7D\2\2\u023a\u023b\7N\2\2"+
- "\u023b\u023c\7G\2\2\u023c~\3\2\2\2\u023d\u023e\7V\2\2\u023e\u023f\7C\2"+
- "\2\u023f\u0240\7D\2\2\u0240\u0241\7N\2\2\u0241\u0242\7G\2\2\u0242\u0243"+
- "\7U\2\2\u0243\u0080\3\2\2\2\u0244\u0245\7V\2\2\u0245\u0246\7G\2\2\u0246"+
- "\u0247\7Z\2\2\u0247\u0248\7V\2\2\u0248\u0082\3\2\2\2\u0249\u024a\7V\2"+
- "\2\u024a\u024b\7T\2\2\u024b\u024c\7W\2\2\u024c\u024d\7G\2\2\u024d\u0084"+
- "\3\2\2\2\u024e\u024f\7V\2\2\u024f\u0250\7[\2\2\u0250\u0251\7R\2\2\u0251"+
- "\u0252\7G\2\2\u0252\u0086\3\2\2\2\u0253\u0254\7V\2\2\u0254\u0255\7[\2"+
- "\2\u0255\u0256\7R\2\2\u0256\u0257\7G\2\2\u0257\u0258\7U\2\2\u0258\u0088"+
- "\3\2\2\2\u0259\u025a\7W\2\2\u025a\u025b\7U\2\2\u025b\u025c\7K\2\2\u025c"+
- "\u025d\7P\2\2\u025d\u025e\7I\2\2\u025e\u008a\3\2\2\2\u025f\u0260\7X\2"+
- "\2\u0260\u0261\7G\2\2\u0261\u0262\7T\2\2\u0262\u0263\7K\2\2\u0263\u0264"+
- "\7H\2\2\u0264\u0265\7[\2\2\u0265\u008c\3\2\2\2\u0266\u0267\7Y\2\2\u0267"+
- "\u0268\7J\2\2\u0268\u0269\7G\2\2\u0269\u026a\7T\2\2\u026a\u026b\7G\2\2"+
- "\u026b\u008e\3\2\2\2\u026c\u026d\7Y\2\2\u026d\u026e\7K\2\2\u026e\u026f"+
- "\7V\2\2\u026f\u0270\7J\2\2\u0270\u0090\3\2\2\2\u0271\u0272\7?\2\2\u0272"+
- "\u0092\3\2\2\2\u0273\u0274\7>\2\2\u0274\u027b\7@\2\2\u0275\u0276\7#\2"+
- "\2\u0276\u027b\7?\2\2\u0277\u0278\7>\2\2\u0278\u0279\7?\2\2\u0279\u027b"+
- "\7@\2\2\u027a\u0273\3\2\2\2\u027a\u0275\3\2\2\2\u027a\u0277\3\2\2\2\u027b"+
- "\u0094\3\2\2\2\u027c\u027d\7>\2\2\u027d\u0096\3\2\2\2\u027e\u027f\7>\2"+
- "\2\u027f\u0280\7?\2\2\u0280\u0098\3\2\2\2\u0281\u0282\7@\2\2\u0282\u009a"+
- "\3\2\2\2\u0283\u0284\7@\2\2\u0284\u0285\7?\2\2\u0285\u009c\3\2\2\2\u0286"+
- "\u0287\7-\2\2\u0287\u009e\3\2\2\2\u0288\u0289\7/\2\2\u0289\u00a0\3\2\2"+
- "\2\u028a\u028b\7,\2\2\u028b\u00a2\3\2\2\2\u028c\u028d\7\61\2\2\u028d\u00a4"+
- "\3\2\2\2\u028e\u028f\7\'\2\2\u028f\u00a6\3\2\2\2\u0290\u0291\7~\2\2\u0291"+
- "\u0292\7~\2\2\u0292\u00a8\3\2\2\2\u0293\u0294\7\60\2\2\u0294\u00aa\3\2"+
- "\2\2\u0295\u0296\7A\2\2\u0296\u00ac\3\2\2\2\u0297\u029d\7)\2\2\u0298\u029c"+
- "\n\2\2\2\u0299\u029a\7)\2\2\u029a\u029c\7)\2\2\u029b\u0298\3\2\2\2\u029b"+
- "\u0299\3\2\2\2\u029c\u029f\3\2\2\2\u029d\u029b\3\2\2\2\u029d\u029e\3\2"+
- "\2\2\u029e\u02a0\3\2\2\2\u029f\u029d\3\2\2\2\u02a0\u02a1\7)\2\2\u02a1"+
- "\u00ae\3\2\2\2\u02a2\u02a4\5\u00bf`\2\u02a3\u02a2\3\2\2\2\u02a4\u02a5"+
- "\3\2\2\2\u02a5\u02a3\3\2\2\2\u02a5\u02a6\3\2\2\2\u02a6\u00b0\3\2\2\2\u02a7"+
- "\u02a9\5\u00bf`\2\u02a8\u02a7\3\2\2\2\u02a9\u02aa\3\2\2\2\u02aa\u02a8"+
- "\3\2\2\2\u02aa\u02ab\3\2\2\2\u02ab\u02ac\3\2\2\2\u02ac\u02b0\5\u00a9U"+
- "\2\u02ad\u02af\5\u00bf`\2\u02ae\u02ad\3\2\2\2\u02af\u02b2\3\2\2\2\u02b0"+
- "\u02ae\3\2\2\2\u02b0\u02b1\3\2\2\2\u02b1\u02d2\3\2\2\2\u02b2\u02b0\3\2"+
- "\2\2\u02b3\u02b5\5\u00a9U\2\u02b4\u02b6\5\u00bf`\2\u02b5\u02b4\3\2\2\2"+
- "\u02b6\u02b7\3\2\2\2\u02b7\u02b5\3\2\2\2\u02b7\u02b8\3\2\2\2\u02b8\u02d2"+
- "\3\2\2\2\u02b9\u02bb\5\u00bf`\2\u02ba\u02b9\3\2\2\2\u02bb\u02bc\3\2\2"+
- "\2\u02bc\u02ba\3\2\2\2\u02bc\u02bd\3\2\2\2\u02bd\u02c5\3\2\2\2\u02be\u02c2"+
- "\5\u00a9U\2\u02bf\u02c1\5\u00bf`\2\u02c0\u02bf\3\2\2\2\u02c1\u02c4\3\2"+
- "\2\2\u02c2\u02c0\3\2\2\2\u02c2\u02c3\3\2\2\2\u02c3\u02c6\3\2\2\2\u02c4"+
- "\u02c2\3\2\2\2\u02c5\u02be\3\2\2\2\u02c5\u02c6\3\2\2\2\u02c6\u02c7\3\2"+
- "\2\2\u02c7\u02c8\5\u00bd_\2\u02c8\u02d2\3\2\2\2\u02c9\u02cb\5\u00a9U\2"+
- "\u02ca\u02cc\5\u00bf`\2\u02cb\u02ca\3\2\2\2\u02cc\u02cd\3\2\2\2\u02cd"+
- "\u02cb\3\2\2\2\u02cd\u02ce\3\2\2\2\u02ce\u02cf\3\2\2\2\u02cf\u02d0\5\u00bd"+
- "_\2\u02d0\u02d2\3\2\2\2\u02d1\u02a8\3\2\2\2\u02d1\u02b3\3\2\2\2\u02d1"+
- "\u02ba\3\2\2\2\u02d1\u02c9\3\2\2\2\u02d2\u00b2\3\2\2\2\u02d3\u02d6\5\u00c1"+
- "a\2\u02d4\u02d6\7a\2\2\u02d5\u02d3\3\2\2\2\u02d5\u02d4\3\2\2\2\u02d6\u02dc"+
- "\3\2\2\2\u02d7\u02db\5\u00c1a\2\u02d8\u02db\5\u00bf`\2\u02d9\u02db\t\3"+
- "\2\2\u02da\u02d7\3\2\2\2\u02da\u02d8\3\2\2\2\u02da\u02d9\3\2\2\2\u02db"+
- "\u02de\3\2\2\2\u02dc\u02da\3\2\2\2\u02dc\u02dd\3\2\2\2\u02dd\u00b4\3\2"+
- "\2\2\u02de\u02dc\3\2\2\2\u02df\u02e3\5\u00bf`\2\u02e0\u02e4\5\u00c1a\2"+
- "\u02e1\u02e4\5\u00bf`\2\u02e2\u02e4\t\4\2\2\u02e3\u02e0\3\2\2\2\u02e3"+
- "\u02e1\3\2\2\2\u02e3\u02e2\3\2\2\2\u02e4\u02e5\3\2\2\2\u02e5\u02e3\3\2"+
- "\2\2\u02e5\u02e6\3\2\2\2\u02e6\u00b6\3\2\2\2\u02e7\u02ec\5\u00c1a\2\u02e8"+
- "\u02ec\5\u00bf`\2\u02e9\u02ec\t\3\2\2\u02ea\u02ec\5\u00a1Q\2\u02eb\u02e7"+
- "\3\2\2\2\u02eb\u02e8\3\2\2\2\u02eb\u02e9\3\2\2\2\u02eb\u02ea\3\2\2\2\u02ec"+
- "\u02ed\3\2\2\2\u02ed\u02eb\3\2\2\2\u02ed\u02ee\3\2\2\2\u02ee\u00b8\3\2"+
- "\2\2\u02ef\u02f5\7$\2\2\u02f0\u02f4\n\5\2\2\u02f1\u02f2\7$\2\2\u02f2\u02f4"+
- "\7$\2\2\u02f3\u02f0\3\2\2\2\u02f3\u02f1\3\2\2\2\u02f4\u02f7\3\2\2\2\u02f5"+
- "\u02f3\3\2\2\2\u02f5\u02f6\3\2\2\2\u02f6\u02f8\3\2\2\2\u02f7\u02f5\3\2"+
- "\2\2\u02f8\u02f9\7$\2\2\u02f9\u00ba\3\2\2\2\u02fa\u0300\7b\2\2\u02fb\u02ff"+
- "\n\6\2\2\u02fc\u02fd\7b\2\2\u02fd\u02ff\7b\2\2\u02fe\u02fb\3\2\2\2\u02fe"+
- "\u02fc\3\2\2\2\u02ff\u0302\3\2\2\2\u0300\u02fe\3\2\2\2\u0300\u0301\3\2"+
- "\2\2\u0301\u0303\3\2\2\2\u0302\u0300\3\2\2\2\u0303\u0304\7b\2\2\u0304"+
- "\u00bc\3\2\2\2\u0305\u0307\7G\2\2\u0306\u0308\t\7\2\2\u0307\u0306\3\2"+
- "\2\2\u0307\u0308\3\2\2\2\u0308\u030a\3\2\2\2\u0309\u030b\5\u00bf`\2\u030a"+
- "\u0309\3\2\2\2\u030b\u030c\3\2\2\2\u030c\u030a\3\2\2\2\u030c\u030d\3\2"+
- "\2\2\u030d\u00be\3\2\2\2\u030e\u030f\t\b\2\2\u030f\u00c0\3\2\2\2\u0310"+
- "\u0311\t\t\2\2\u0311\u00c2\3\2\2\2\u0312\u0313\7/\2\2\u0313\u0314\7/\2"+
- "\2\u0314\u0318\3\2\2\2\u0315\u0317\n\n\2\2\u0316\u0315\3\2\2\2\u0317\u031a"+
- "\3\2\2\2\u0318\u0316\3\2\2\2\u0318\u0319\3\2\2\2\u0319\u031c\3\2\2\2\u031a"+
- "\u0318\3\2\2\2\u031b\u031d\7\17\2\2\u031c\u031b\3\2\2\2\u031c\u031d\3"+
- "\2\2\2\u031d\u031f\3\2\2\2\u031e\u0320\7\f\2\2\u031f\u031e\3\2\2\2\u031f"+
- "\u0320\3\2\2\2\u0320\u0321\3\2\2\2\u0321\u0322\bb\2\2\u0322\u00c4\3\2"+
- "\2\2\u0323\u0324\7\61\2\2\u0324\u0325\7,\2\2\u0325\u032a\3\2\2\2\u0326"+
- "\u0329\5\u00c5c\2\u0327\u0329\13\2\2\2\u0328\u0326\3\2\2\2\u0328\u0327"+
- "\3\2\2\2\u0329\u032c\3\2\2\2\u032a\u032b\3\2\2\2\u032a\u0328\3\2\2\2\u032b"+
- "\u032d\3\2\2\2\u032c\u032a\3\2\2\2\u032d\u032e\7,\2\2\u032e\u032f\7\61"+
- "\2\2\u032f\u0330\3\2\2\2\u0330\u0331\bc\2\2\u0331\u00c6\3\2\2\2\u0332"+
- "\u0334\t\13\2\2\u0333\u0332\3\2\2\2\u0334\u0335\3\2\2\2\u0335\u0333\3"+
- "\2\2\2\u0335\u0336\3\2\2\2\u0336\u0337\3\2\2\2\u0337\u0338\bd\2\2\u0338"+
- "\u00c8\3\2\2\2\u0339\u033a\13\2\2\2\u033a\u00ca\3\2\2\2\"\2\u027a\u029b"+
- "\u029d\u02a5\u02aa\u02b0\u02b7\u02bc\u02c2\u02c5\u02cd\u02d1\u02d5\u02da"+
- "\u02dc\u02e3\u02e5\u02eb\u02ed\u02f3\u02f5\u02fe\u0300\u0307\u030c\u0318"+
- "\u031c\u031f\u0328\u032a\u0335\3\2\3\2";
+ "\3\2\2\2\2\u00bd\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2"+
+ "\2\2\u00cb\3\2\2\2\3\u00cd\3\2\2\2\5\u00cf\3\2\2\2\7\u00d1\3\2\2\2\t\u00d3"+
+ "\3\2\2\2\13\u00d5\3\2\2\2\r\u00d9\3\2\2\2\17\u00e1\3\2\2\2\21\u00ea\3"+
+ "\2\2\2\23\u00ee\3\2\2\2\25\u00f2\3\2\2\2\27\u00f5\3\2\2\2\31\u00f9\3\2"+
+ "\2\2\33\u0101\3\2\2\2\35\u0104\3\2\2\2\37\u0109\3\2\2\2!\u0111\3\2\2\2"+
+ "#\u011a\3\2\2\2%\u0122\3\2\2\2\'\u0128\3\2\2\2)\u012d\3\2\2\2+\u0136\3"+
+ "\2\2\2-\u013f\3\2\2\2/\u0146\3\2\2\2\61\u0151\3\2\2\2\63\u0158\3\2\2\2"+
+ "\65\u0160\3\2\2\2\67\u0168\3\2\2\29\u016e\3\2\2\2;\u0175\3\2\2\2=\u017a"+
+ "\3\2\2\2?\u017f\3\2\2\2A\u0189\3\2\2\2C\u019a\3\2\2\2E\u01a3\3\2\2\2G"+
+ "\u01a9\3\2\2\2I\u01b0\3\2\2\2K\u01b3\3\2\2\2M\u01b9\3\2\2\2O\u01bc\3\2"+
+ "\2\2Q\u01c1\3\2\2\2S\u01c6\3\2\2\2U\u01cb\3\2\2\2W\u01d1\3\2\2\2Y\u01d8"+
+ "\3\2\2\2[\u01de\3\2\2\2]\u01e6\3\2\2\2_\u01ea\3\2\2\2a\u01ef\3\2\2\2c"+
+ "\u01f2\3\2\2\2e\u01fc\3\2\2\2g\u01ff\3\2\2\2i\u0205\3\2\2\2k\u020b\3\2"+
+ "\2\2m\u0212\3\2\2\2o\u021b\3\2\2\2q\u0220\3\2\2\2s\u0226\3\2\2\2u\u022c"+
+ "\3\2\2\2w\u0232\3\2\2\2y\u023a\3\2\2\2{\u0241\3\2\2\2}\u0246\3\2\2\2\177"+
+ "\u024a\3\2\2\2\u0081\u0250\3\2\2\2\u0083\u0257\3\2\2\2\u0085\u025c\3\2"+
+ "\2\2\u0087\u0261\3\2\2\2\u0089\u0266\3\2\2\2\u008b\u026c\3\2\2\2\u008d"+
+ "\u0272\3\2\2\2\u008f\u0279\3\2\2\2\u0091\u027f\3\2\2\2\u0093\u0284\3\2"+
+ "\2\2\u0095\u028d\3\2\2\2\u0097\u028f\3\2\2\2\u0099\u0291\3\2\2\2\u009b"+
+ "\u0294\3\2\2\2\u009d\u0296\3\2\2\2\u009f\u0299\3\2\2\2\u00a1\u029b\3\2"+
+ "\2\2\u00a3\u029d\3\2\2\2\u00a5\u029f\3\2\2\2\u00a7\u02a1\3\2\2\2\u00a9"+
+ "\u02a3\3\2\2\2\u00ab\u02a6\3\2\2\2\u00ad\u02a8\3\2\2\2\u00af\u02aa\3\2"+
+ "\2\2\u00b1\u02b6\3\2\2\2\u00b3\u02e4\3\2\2\2\u00b5\u02e8\3\2\2\2\u00b7"+
+ "\u02f2\3\2\2\2\u00b9\u02fe\3\2\2\2\u00bb\u0302\3\2\2\2\u00bd\u030d\3\2"+
+ "\2\2\u00bf\u0318\3\2\2\2\u00c1\u0321\3\2\2\2\u00c3\u0323\3\2\2\2\u00c5"+
+ "\u0325\3\2\2\2\u00c7\u0336\3\2\2\2\u00c9\u0346\3\2\2\2\u00cb\u034c\3\2"+
+ "\2\2\u00cd\u00ce\7*\2\2\u00ce\4\3\2\2\2\u00cf\u00d0\7+\2\2\u00d0\6\3\2"+
+ "\2\2\u00d1\u00d2\7.\2\2\u00d2\b\3\2\2\2\u00d3\u00d4\7<\2\2\u00d4\n\3\2"+
+ "\2\2\u00d5\u00d6\7C\2\2\u00d6\u00d7\7N\2\2\u00d7\u00d8\7N\2\2\u00d8\f"+
+ "\3\2\2\2\u00d9\u00da\7C\2\2\u00da\u00db\7P\2\2\u00db\u00dc\7C\2\2\u00dc"+
+ "\u00dd\7N\2\2\u00dd\u00de\7[\2\2\u00de\u00df\7\\\2\2\u00df\u00e0\7G\2"+
+ "\2\u00e0\16\3\2\2\2\u00e1\u00e2\7C\2\2\u00e2\u00e3\7P\2\2\u00e3\u00e4"+
+ "\7C\2\2\u00e4\u00e5\7N\2\2\u00e5\u00e6\7[\2\2\u00e6\u00e7\7\\\2\2\u00e7"+
+ "\u00e8\7G\2\2\u00e8\u00e9\7F\2\2\u00e9\20\3\2\2\2\u00ea\u00eb\7C\2\2\u00eb"+
+ "\u00ec\7P\2\2\u00ec\u00ed\7F\2\2\u00ed\22\3\2\2\2\u00ee\u00ef\7C\2\2\u00ef"+
+ "\u00f0\7P\2\2\u00f0\u00f1\7[\2\2\u00f1\24\3\2\2\2\u00f2\u00f3\7C\2\2\u00f3"+
+ "\u00f4\7U\2\2\u00f4\26\3\2\2\2\u00f5\u00f6\7C\2\2\u00f6\u00f7\7U\2\2\u00f7"+
+ "\u00f8\7E\2\2\u00f8\30\3\2\2\2\u00f9\u00fa\7D\2\2\u00fa\u00fb\7G\2\2\u00fb"+
+ "\u00fc\7V\2\2\u00fc\u00fd\7Y\2\2\u00fd\u00fe\7G\2\2\u00fe\u00ff\7G\2\2"+
+ "\u00ff\u0100\7P\2\2\u0100\32\3\2\2\2\u0101\u0102\7D\2\2\u0102\u0103\7"+
+ "[\2\2\u0103\34\3\2\2\2\u0104\u0105\7E\2\2\u0105\u0106\7C\2\2\u0106\u0107"+
+ "\7U\2\2\u0107\u0108\7V\2\2\u0108\36\3\2\2\2\u0109\u010a\7E\2\2\u010a\u010b"+
+ "\7C\2\2\u010b\u010c\7V\2\2\u010c\u010d\7C\2\2\u010d\u010e\7N\2\2\u010e"+
+ "\u010f\7Q\2\2\u010f\u0110\7I\2\2\u0110 \3\2\2\2\u0111\u0112\7E\2\2\u0112"+
+ "\u0113\7C\2\2\u0113\u0114\7V\2\2\u0114\u0115\7C\2\2\u0115\u0116\7N\2\2"+
+ "\u0116\u0117\7Q\2\2\u0117\u0118\7I\2\2\u0118\u0119\7U\2\2\u0119\"\3\2"+
+ "\2\2\u011a\u011b\7E\2\2\u011b\u011c\7Q\2\2\u011c\u011d\7N\2\2\u011d\u011e"+
+ "\7W\2\2\u011e\u011f\7O\2\2\u011f\u0120\7P\2\2\u0120\u0121\7U\2\2\u0121"+
+ "$\3\2\2\2\u0122\u0123\7F\2\2\u0123\u0124\7G\2\2\u0124\u0125\7D\2\2\u0125"+
+ "\u0126\7W\2\2\u0126\u0127\7I\2\2\u0127&\3\2\2\2\u0128\u0129\7F\2\2\u0129"+
+ "\u012a\7G\2\2\u012a\u012b\7U\2\2\u012b\u012c\7E\2\2\u012c(\3\2\2\2\u012d"+
+ "\u012e\7F\2\2\u012e\u012f\7G\2\2\u012f\u0130\7U\2\2\u0130\u0131\7E\2\2"+
+ "\u0131\u0132\7T\2\2\u0132\u0133\7K\2\2\u0133\u0134\7D\2\2\u0134\u0135"+
+ "\7G\2\2\u0135*\3\2\2\2\u0136\u0137\7F\2\2\u0137\u0138\7K\2\2\u0138\u0139"+
+ "\7U\2\2\u0139\u013a\7V\2\2\u013a\u013b\7K\2\2\u013b\u013c\7P\2\2\u013c"+
+ "\u013d\7E\2\2\u013d\u013e\7V\2\2\u013e,\3\2\2\2\u013f\u0140\7G\2\2\u0140"+
+ "\u0141\7U\2\2\u0141\u0142\7E\2\2\u0142\u0143\7C\2\2\u0143\u0144\7R\2\2"+
+ "\u0144\u0145\7G\2\2\u0145.\3\2\2\2\u0146\u0147\7G\2\2\u0147\u0148\7Z\2"+
+ "\2\u0148\u0149\7G\2\2\u0149\u014a\7E\2\2\u014a\u014b\7W\2\2\u014b\u014c"+
+ "\7V\2\2\u014c\u014d\7C\2\2\u014d\u014e\7D\2\2\u014e\u014f\7N\2\2\u014f"+
+ "\u0150\7G\2\2\u0150\60\3\2\2\2\u0151\u0152\7G\2\2\u0152\u0153\7Z\2\2\u0153"+
+ "\u0154\7K\2\2\u0154\u0155\7U\2\2\u0155\u0156\7V\2\2\u0156\u0157\7U\2\2"+
+ "\u0157\62\3\2\2\2\u0158\u0159\7G\2\2\u0159\u015a\7Z\2\2\u015a\u015b\7"+
+ "R\2\2\u015b\u015c\7N\2\2\u015c\u015d\7C\2\2\u015d\u015e\7K\2\2\u015e\u015f"+
+ "\7P\2\2\u015f\64\3\2\2\2\u0160\u0161\7G\2\2\u0161\u0162\7Z\2\2\u0162\u0163"+
+ "\7V\2\2\u0163\u0164\7T\2\2\u0164\u0165\7C\2\2\u0165\u0166\7E\2\2\u0166"+
+ "\u0167\7V\2\2\u0167\66\3\2\2\2\u0168\u0169\7H\2\2\u0169\u016a\7C\2\2\u016a"+
+ "\u016b\7N\2\2\u016b\u016c\7U\2\2\u016c\u016d\7G\2\2\u016d8\3\2\2\2\u016e"+
+ "\u016f\7H\2\2\u016f\u0170\7Q\2\2\u0170\u0171\7T\2\2\u0171\u0172\7O\2\2"+
+ "\u0172\u0173\7C\2\2\u0173\u0174\7V\2\2\u0174:\3\2\2\2\u0175\u0176\7H\2"+
+ "\2\u0176\u0177\7T\2\2\u0177\u0178\7Q\2\2\u0178\u0179\7O\2\2\u0179<\3\2"+
+ "\2\2\u017a\u017b\7H\2\2\u017b\u017c\7W\2\2\u017c\u017d\7N\2\2\u017d\u017e"+
+ "\7N\2\2\u017e>\3\2\2\2\u017f\u0180\7H\2\2\u0180\u0181\7W\2\2\u0181\u0182"+
+ "\7P\2\2\u0182\u0183\7E\2\2\u0183\u0184\7V\2\2\u0184\u0185\7K\2\2\u0185"+
+ "\u0186\7Q\2\2\u0186\u0187\7P\2\2\u0187\u0188\7U\2\2\u0188@\3\2\2\2\u0189"+
+ "\u018a\7I\2\2\u018a\u018b\7G\2\2\u018b\u018c\7Q\2\2\u018c\u018d\7O\2\2"+
+ "\u018d\u018e\7G\2\2\u018e\u018f\7V\2\2\u018f\u0190\7T\2\2\u0190\u0191"+
+ "\7[\2\2\u0191\u0192\7a\2\2\u0192\u0193\7E\2\2\u0193\u0194\7Q\2\2\u0194"+
+ "\u0195\7N\2\2\u0195\u0196\7W\2\2\u0196\u0197\7O\2\2\u0197\u0198\7P\2\2"+
+ "\u0198\u0199\7U\2\2\u0199B\3\2\2\2\u019a\u019b\7I\2\2\u019b\u019c\7T\2"+
+ "\2\u019c\u019d\7C\2\2\u019d\u019e\7R\2\2\u019e\u019f\7J\2\2\u019f\u01a0"+
+ "\7X\2\2\u01a0\u01a1\7K\2\2\u01a1\u01a2\7\\\2\2\u01a2D\3\2\2\2\u01a3\u01a4"+
+ "\7I\2\2\u01a4\u01a5\7T\2\2\u01a5\u01a6\7Q\2\2\u01a6\u01a7\7W\2\2\u01a7"+
+ "\u01a8\7R\2\2\u01a8F\3\2\2\2\u01a9\u01aa\7J\2\2\u01aa\u01ab\7C\2\2\u01ab"+
+ "\u01ac\7X\2\2\u01ac\u01ad\7K\2\2\u01ad\u01ae\7P\2\2\u01ae\u01af\7I\2\2"+
+ "\u01afH\3\2\2\2\u01b0\u01b1\7K\2\2\u01b1\u01b2\7P\2\2\u01b2J\3\2\2\2\u01b3"+
+ "\u01b4\7K\2\2\u01b4\u01b5\7P\2\2\u01b5\u01b6\7P\2\2\u01b6\u01b7\7G\2\2"+
+ "\u01b7\u01b8\7T\2\2\u01b8L\3\2\2\2\u01b9\u01ba\7K\2\2\u01ba\u01bb\7U\2"+
+ "\2\u01bbN\3\2\2\2\u01bc\u01bd\7L\2\2\u01bd\u01be\7Q\2\2\u01be\u01bf\7"+
+ "K\2\2\u01bf\u01c0\7P\2\2\u01c0P\3\2\2\2\u01c1\u01c2\7N\2\2\u01c2\u01c3"+
+ "\7G\2\2\u01c3\u01c4\7H\2\2\u01c4\u01c5\7V\2\2\u01c5R\3\2\2\2\u01c6\u01c7"+
+ "\7N\2\2\u01c7\u01c8\7K\2\2\u01c8\u01c9\7M\2\2\u01c9\u01ca\7G\2\2\u01ca"+
+ "T\3\2\2\2\u01cb\u01cc\7N\2\2\u01cc\u01cd\7K\2\2\u01cd\u01ce\7O\2\2\u01ce"+
+ "\u01cf\7K\2\2\u01cf\u01d0\7V\2\2\u01d0V\3\2\2\2\u01d1\u01d2\7O\2\2\u01d2"+
+ "\u01d3\7C\2\2\u01d3\u01d4\7R\2\2\u01d4\u01d5\7R\2\2\u01d5\u01d6\7G\2\2"+
+ "\u01d6\u01d7\7F\2\2\u01d7X\3\2\2\2\u01d8\u01d9\7O\2\2\u01d9\u01da\7C\2"+
+ "\2\u01da\u01db\7V\2\2\u01db\u01dc\7E\2\2\u01dc\u01dd\7J\2\2\u01ddZ\3\2"+
+ "\2\2\u01de\u01df\7P\2\2\u01df\u01e0\7C\2\2\u01e0\u01e1\7V\2\2\u01e1\u01e2"+
+ "\7W\2\2\u01e2\u01e3\7T\2\2\u01e3\u01e4\7C\2\2\u01e4\u01e5\7N\2\2\u01e5"+
+ "\\\3\2\2\2\u01e6\u01e7\7P\2\2\u01e7\u01e8\7Q\2\2\u01e8\u01e9\7V\2\2\u01e9"+
+ "^\3\2\2\2\u01ea\u01eb\7P\2\2\u01eb\u01ec\7W\2\2\u01ec\u01ed\7N\2\2\u01ed"+
+ "\u01ee\7N\2\2\u01ee`\3\2\2\2\u01ef\u01f0\7Q\2\2\u01f0\u01f1\7P\2\2\u01f1"+
+ "b\3\2\2\2\u01f2\u01f3\7Q\2\2\u01f3\u01f4\7R\2\2\u01f4\u01f5\7V\2\2\u01f5"+
+ "\u01f6\7K\2\2\u01f6\u01f7\7O\2\2\u01f7\u01f8\7K\2\2\u01f8\u01f9\7\\\2"+
+ "\2\u01f9\u01fa\7G\2\2\u01fa\u01fb\7F\2\2\u01fbd\3\2\2\2\u01fc\u01fd\7"+
+ "Q\2\2\u01fd\u01fe\7T\2\2\u01fef\3\2\2\2\u01ff\u0200\7Q\2\2\u0200\u0201"+
+ "\7T\2\2\u0201\u0202\7F\2\2\u0202\u0203\7G\2\2\u0203\u0204\7T\2\2\u0204"+
+ "h\3\2\2\2\u0205\u0206\7Q\2\2\u0206\u0207\7W\2\2\u0207\u0208\7V\2\2\u0208"+
+ "\u0209\7G\2\2\u0209\u020a\7T\2\2\u020aj\3\2\2\2\u020b\u020c\7R\2\2\u020c"+
+ "\u020d\7C\2\2\u020d\u020e\7T\2\2\u020e\u020f\7U\2\2\u020f\u0210\7G\2\2"+
+ "\u0210\u0211\7F\2\2\u0211l\3\2\2\2\u0212\u0213\7R\2\2\u0213\u0214\7J\2"+
+ "\2\u0214\u0215\7[\2\2\u0215\u0216\7U\2\2\u0216\u0217\7K\2\2\u0217\u0218"+
+ "\7E\2\2\u0218\u0219\7C\2\2\u0219\u021a\7N\2\2\u021an\3\2\2\2\u021b\u021c"+
+ "\7R\2\2\u021c\u021d\7N\2\2\u021d\u021e\7C\2\2\u021e\u021f\7P\2\2\u021f"+
+ "p\3\2\2\2\u0220\u0221\7T\2\2\u0221\u0222\7K\2\2\u0222\u0223\7I\2\2\u0223"+
+ "\u0224\7J\2\2\u0224\u0225\7V\2\2\u0225r\3\2\2\2\u0226\u0227\7T\2\2\u0227"+
+ "\u0228\7N\2\2\u0228\u0229\7K\2\2\u0229\u022a\7M\2\2\u022a\u022b\7G\2\2"+
+ "\u022bt\3\2\2\2\u022c\u022d\7S\2\2\u022d\u022e\7W\2\2\u022e\u022f\7G\2"+
+ "\2\u022f\u0230\7T\2\2\u0230\u0231\7[\2\2\u0231v\3\2\2\2\u0232\u0233\7"+
+ "U\2\2\u0233\u0234\7E\2\2\u0234\u0235\7J\2\2\u0235\u0236\7G\2\2\u0236\u0237"+
+ "\7O\2\2\u0237\u0238\7C\2\2\u0238\u0239\7U\2\2\u0239x\3\2\2\2\u023a\u023b"+
+ "\7U\2\2\u023b\u023c\7G\2\2\u023c\u023d\7N\2\2\u023d\u023e\7G\2\2\u023e"+
+ "\u023f\7E\2\2\u023f\u0240\7V\2\2\u0240z\3\2\2\2\u0241\u0242\7U\2\2\u0242"+
+ "\u0243\7J\2\2\u0243\u0244\7Q\2\2\u0244\u0245\7Y\2\2\u0245|\3\2\2\2\u0246"+
+ "\u0247\7U\2\2\u0247\u0248\7[\2\2\u0248\u0249\7U\2\2\u0249~\3\2\2\2\u024a"+
+ "\u024b\7V\2\2\u024b\u024c\7C\2\2\u024c\u024d\7D\2\2\u024d\u024e\7N\2\2"+
+ "\u024e\u024f\7G\2\2\u024f\u0080\3\2\2\2\u0250\u0251\7V\2\2\u0251\u0252"+
+ "\7C\2\2\u0252\u0253\7D\2\2\u0253\u0254\7N\2\2\u0254\u0255\7G\2\2\u0255"+
+ "\u0256\7U\2\2\u0256\u0082\3\2\2\2\u0257\u0258\7V\2\2\u0258\u0259\7G\2"+
+ "\2\u0259\u025a\7Z\2\2\u025a\u025b\7V\2\2\u025b\u0084\3\2\2\2\u025c\u025d"+
+ "\7V\2\2\u025d\u025e\7T\2\2\u025e\u025f\7W\2\2\u025f\u0260\7G\2\2\u0260"+
+ "\u0086\3\2\2\2\u0261\u0262\7V\2\2\u0262\u0263\7[\2\2\u0263\u0264\7R\2"+
+ "\2\u0264\u0265\7G\2\2\u0265\u0088\3\2\2\2\u0266\u0267\7V\2\2\u0267\u0268"+
+ "\7[\2\2\u0268\u0269\7R\2\2\u0269\u026a\7G\2\2\u026a\u026b\7U\2\2\u026b"+
+ "\u008a\3\2\2\2\u026c\u026d\7W\2\2\u026d\u026e\7U\2\2\u026e\u026f\7K\2"+
+ "\2\u026f\u0270\7P\2\2\u0270\u0271\7I\2\2\u0271\u008c\3\2\2\2\u0272\u0273"+
+ "\7X\2\2\u0273\u0274\7G\2\2\u0274\u0275\7T\2\2\u0275\u0276\7K\2\2\u0276"+
+ "\u0277\7H\2\2\u0277\u0278\7[\2\2\u0278\u008e\3\2\2\2\u0279\u027a\7Y\2"+
+ "\2\u027a\u027b\7J\2\2\u027b\u027c\7G\2\2\u027c\u027d\7T\2\2\u027d\u027e"+
+ "\7G\2\2\u027e\u0090\3\2\2\2\u027f\u0280\7Y\2\2\u0280\u0281\7K\2\2\u0281"+
+ "\u0282\7V\2\2\u0282\u0283\7J\2\2\u0283\u0092\3\2\2\2\u0284\u0285\7?\2"+
+ "\2\u0285\u0094\3\2\2\2\u0286\u0287\7>\2\2\u0287\u028e\7@\2\2\u0288\u0289"+
+ "\7#\2\2\u0289\u028e\7?\2\2\u028a\u028b\7>\2\2\u028b\u028c\7?\2\2\u028c"+
+ "\u028e\7@\2\2\u028d\u0286\3\2\2\2\u028d\u0288\3\2\2\2\u028d\u028a\3\2"+
+ "\2\2\u028e\u0096\3\2\2\2\u028f\u0290\7>\2\2\u0290\u0098\3\2\2\2\u0291"+
+ "\u0292\7>\2\2\u0292\u0293\7?\2\2\u0293\u009a\3\2\2\2\u0294\u0295\7@\2"+
+ "\2\u0295\u009c\3\2\2\2\u0296\u0297\7@\2\2\u0297\u0298\7?\2\2\u0298\u009e"+
+ "\3\2\2\2\u0299\u029a\7-\2\2\u029a\u00a0\3\2\2\2\u029b\u029c\7/\2\2\u029c"+
+ "\u00a2\3\2\2\2\u029d\u029e\7,\2\2\u029e\u00a4\3\2\2\2\u029f\u02a0\7\61"+
+ "\2\2\u02a0\u00a6\3\2\2\2\u02a1\u02a2\7\'\2\2\u02a2\u00a8\3\2\2\2\u02a3"+
+ "\u02a4\7~\2\2\u02a4\u02a5\7~\2\2\u02a5\u00aa\3\2\2\2\u02a6\u02a7\7\60"+
+ "\2\2\u02a7\u00ac\3\2\2\2\u02a8\u02a9\7A\2\2\u02a9\u00ae\3\2\2\2\u02aa"+
+ "\u02b0\7)\2\2\u02ab\u02af\n\2\2\2\u02ac\u02ad\7)\2\2\u02ad\u02af\7)\2"+
+ "\2\u02ae\u02ab\3\2\2\2\u02ae\u02ac\3\2\2\2\u02af\u02b2\3\2\2\2\u02b0\u02ae"+
+ "\3\2\2\2\u02b0\u02b1\3\2\2\2\u02b1\u02b3\3\2\2\2\u02b2\u02b0\3\2\2\2\u02b3"+
+ "\u02b4\7)\2\2\u02b4\u00b0\3\2\2\2\u02b5\u02b7\5\u00c1a\2\u02b6\u02b5\3"+
+ "\2\2\2\u02b7\u02b8\3\2\2\2\u02b8\u02b6\3\2\2\2\u02b8\u02b9\3\2\2\2\u02b9"+
+ "\u00b2\3\2\2\2\u02ba\u02bc\5\u00c1a\2\u02bb\u02ba\3\2\2\2\u02bc\u02bd"+
+ "\3\2\2\2\u02bd\u02bb\3\2\2\2\u02bd\u02be\3\2\2\2\u02be\u02bf\3\2\2\2\u02bf"+
+ "\u02c3\5\u00abV\2\u02c0\u02c2\5\u00c1a\2\u02c1\u02c0\3\2\2\2\u02c2\u02c5"+
+ "\3\2\2\2\u02c3\u02c1\3\2\2\2\u02c3\u02c4\3\2\2\2\u02c4\u02e5\3\2\2\2\u02c5"+
+ "\u02c3\3\2\2\2\u02c6\u02c8\5\u00abV\2\u02c7\u02c9\5\u00c1a\2\u02c8\u02c7"+
+ "\3\2\2\2\u02c9\u02ca\3\2\2\2\u02ca\u02c8\3\2\2\2\u02ca\u02cb\3\2\2\2\u02cb"+
+ "\u02e5\3\2\2\2\u02cc\u02ce\5\u00c1a\2\u02cd\u02cc\3\2\2\2\u02ce\u02cf"+
+ "\3\2\2\2\u02cf\u02cd\3\2\2\2\u02cf\u02d0\3\2\2\2\u02d0\u02d8\3\2\2\2\u02d1"+
+ "\u02d5\5\u00abV\2\u02d2\u02d4\5\u00c1a\2\u02d3\u02d2\3\2\2\2\u02d4\u02d7"+
+ "\3\2\2\2\u02d5\u02d3\3\2\2\2\u02d5\u02d6\3\2\2\2\u02d6\u02d9\3\2\2\2\u02d7"+
+ "\u02d5\3\2\2\2\u02d8\u02d1\3\2\2\2\u02d8\u02d9\3\2\2\2\u02d9\u02da\3\2"+
+ "\2\2\u02da\u02db\5\u00bf`\2\u02db\u02e5\3\2\2\2\u02dc\u02de\5\u00abV\2"+
+ "\u02dd\u02df\5\u00c1a\2\u02de\u02dd\3\2\2\2\u02df\u02e0\3\2\2\2\u02e0"+
+ "\u02de\3\2\2\2\u02e0\u02e1\3\2\2\2\u02e1\u02e2\3\2\2\2\u02e2\u02e3\5\u00bf"+
+ "`\2\u02e3\u02e5\3\2\2\2\u02e4\u02bb\3\2\2\2\u02e4\u02c6\3\2\2\2\u02e4"+
+ "\u02cd\3\2\2\2\u02e4\u02dc\3\2\2\2\u02e5\u00b4\3\2\2\2\u02e6\u02e9\5\u00c3"+
+ "b\2\u02e7\u02e9\7a\2\2\u02e8\u02e6\3\2\2\2\u02e8\u02e7\3\2\2\2\u02e9\u02ef"+
+ "\3\2\2\2\u02ea\u02ee\5\u00c3b\2\u02eb\u02ee\5\u00c1a\2\u02ec\u02ee\t\3"+
+ "\2\2\u02ed\u02ea\3\2\2\2\u02ed\u02eb\3\2\2\2\u02ed\u02ec\3\2\2\2\u02ee"+
+ "\u02f1\3\2\2\2\u02ef\u02ed\3\2\2\2\u02ef\u02f0\3\2\2\2\u02f0\u00b6\3\2"+
+ "\2\2\u02f1\u02ef\3\2\2\2\u02f2\u02f6\5\u00c1a\2\u02f3\u02f7\5\u00c3b\2"+
+ "\u02f4\u02f7\5\u00c1a\2\u02f5\u02f7\t\4\2\2\u02f6\u02f3\3\2\2\2\u02f6"+
+ "\u02f4\3\2\2\2\u02f6\u02f5\3\2\2\2\u02f7\u02f8\3\2\2\2\u02f8\u02f6\3\2"+
+ "\2\2\u02f8\u02f9\3\2\2\2\u02f9\u00b8\3\2\2\2\u02fa\u02ff\5\u00c3b\2\u02fb"+
+ "\u02ff\5\u00c1a\2\u02fc\u02ff\t\3\2\2\u02fd\u02ff\5\u00a3R\2\u02fe\u02fa"+
+ "\3\2\2\2\u02fe\u02fb\3\2\2\2\u02fe\u02fc\3\2\2\2\u02fe\u02fd\3\2\2\2\u02ff"+
+ "\u0300\3\2\2\2\u0300\u02fe\3\2\2\2\u0300\u0301\3\2\2\2\u0301\u00ba\3\2"+
+ "\2\2\u0302\u0308\7$\2\2\u0303\u0307\n\5\2\2\u0304\u0305\7$\2\2\u0305\u0307"+
+ "\7$\2\2\u0306\u0303\3\2\2\2\u0306\u0304\3\2\2\2\u0307\u030a\3\2\2\2\u0308"+
+ "\u0306\3\2\2\2\u0308\u0309\3\2\2\2\u0309\u030b\3\2\2\2\u030a\u0308\3\2"+
+ "\2\2\u030b\u030c\7$\2\2\u030c\u00bc\3\2\2\2\u030d\u0313\7b\2\2\u030e\u0312"+
+ "\n\6\2\2\u030f\u0310\7b\2\2\u0310\u0312\7b\2\2\u0311\u030e\3\2\2\2\u0311"+
+ "\u030f\3\2\2\2\u0312\u0315\3\2\2\2\u0313\u0311\3\2\2\2\u0313\u0314\3\2"+
+ "\2\2\u0314\u0316\3\2\2\2\u0315\u0313\3\2\2\2\u0316\u0317\7b\2\2\u0317"+
+ "\u00be\3\2\2\2\u0318\u031a\7G\2\2\u0319\u031b\t\7\2\2\u031a\u0319\3\2"+
+ "\2\2\u031a\u031b\3\2\2\2\u031b\u031d\3\2\2\2\u031c\u031e\5\u00c1a\2\u031d"+
+ "\u031c\3\2\2\2\u031e\u031f\3\2\2\2\u031f\u031d\3\2\2\2\u031f\u0320\3\2"+
+ "\2\2\u0320\u00c0\3\2\2\2\u0321\u0322\t\b\2\2\u0322\u00c2\3\2\2\2\u0323"+
+ "\u0324\t\t\2\2\u0324\u00c4\3\2\2\2\u0325\u0326\7/\2\2\u0326\u0327\7/\2"+
+ "\2\u0327\u032b\3\2\2\2\u0328\u032a\n\n\2\2\u0329\u0328\3\2\2\2\u032a\u032d"+
+ "\3\2\2\2\u032b\u0329\3\2\2\2\u032b\u032c\3\2\2\2\u032c\u032f\3\2\2\2\u032d"+
+ "\u032b\3\2\2\2\u032e\u0330\7\17\2\2\u032f\u032e\3\2\2\2\u032f\u0330\3"+
+ "\2\2\2\u0330\u0332\3\2\2\2\u0331\u0333\7\f\2\2\u0332\u0331\3\2\2\2\u0332"+
+ "\u0333\3\2\2\2\u0333\u0334\3\2\2\2\u0334\u0335\bc\2\2\u0335\u00c6\3\2"+
+ "\2\2\u0336\u0337\7\61\2\2\u0337\u0338\7,\2\2\u0338\u033d\3\2\2\2\u0339"+
+ "\u033c\5\u00c7d\2\u033a\u033c\13\2\2\2\u033b\u0339\3\2\2\2\u033b\u033a"+
+ "\3\2\2\2\u033c\u033f\3\2\2\2\u033d\u033e\3\2\2\2\u033d\u033b\3\2\2\2\u033e"+
+ "\u0340\3\2\2\2\u033f\u033d\3\2\2\2\u0340\u0341\7,\2\2\u0341\u0342\7\61"+
+ "\2\2\u0342\u0343\3\2\2\2\u0343\u0344\bd\2\2\u0344\u00c8\3\2\2\2\u0345"+
+ "\u0347\t\13\2\2\u0346\u0345\3\2\2\2\u0347\u0348\3\2\2\2\u0348\u0346\3"+
+ "\2\2\2\u0348\u0349\3\2\2\2\u0349\u034a\3\2\2\2\u034a\u034b\be\2\2\u034b"+
+ "\u00ca\3\2\2\2\u034c\u034d\13\2\2\2\u034d\u00cc\3\2\2\2\"\2\u028d\u02ae"+
+ "\u02b0\u02b8\u02bd\u02c3\u02ca\u02cf\u02d5\u02d8\u02e0\u02e4\u02e8\u02ed"+
+ "\u02ef\u02f6\u02f8\u02fe\u0300\u0306\u0308\u0311\u0313\u031a\u031f\u032b"+
+ "\u032f\u0332\u033b\u033d\u0348\3\2\3\2";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseListener.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseListener.java
index 48f6eb4a7c816..98cdca44228c4 100644
--- a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseListener.java
+++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseListener.java
@@ -1,8 +1,3 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
// ANTLR GENERATED CODE: DO NOT EDIT
package org.elasticsearch.xpack.sql.parser;
import org.antlr.v4.runtime.tree.ParseTreeListener;
@@ -152,6 +147,18 @@ interface SqlBaseListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitSysColumns(SqlBaseParser.SysColumnsContext ctx);
+ /**
+ * Enter a parse tree produced by the {@code sysGeometryColumns}
+ * labeled alternative in {@link SqlBaseParser#statement}.
+ * @param ctx the parse tree
+ */
+ void enterSysGeometryColumns(SqlBaseParser.SysGeometryColumnsContext ctx);
+ /**
+ * Exit a parse tree produced by the {@code sysGeometryColumns}
+ * labeled alternative in {@link SqlBaseParser#statement}.
+ * @param ctx the parse tree
+ */
+ void exitSysGeometryColumns(SqlBaseParser.SysGeometryColumnsContext ctx);
/**
* Enter a parse tree produced by the {@code sysTypes}
* labeled alternative in {@link SqlBaseParser#statement}.
diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseParser.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseParser.java
index e9d7ff2639954..0cf2534236b26 100644
--- a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseParser.java
+++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseParser.java
@@ -1,8 +1,3 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
// ANTLR GENERATED CODE: DO NOT EDIT
package org.elasticsearch.xpack.sql.parser;
import org.antlr.v4.runtime.atn.*;
@@ -26,16 +21,17 @@ class SqlBaseParser extends Parser {
AS=10, ASC=11, BETWEEN=12, BY=13, CAST=14, CATALOG=15, CATALOGS=16, COLUMNS=17,
DEBUG=18, DESC=19, DESCRIBE=20, DISTINCT=21, ESCAPE=22, EXECUTABLE=23,
EXISTS=24, EXPLAIN=25, EXTRACT=26, FALSE=27, FORMAT=28, FROM=29, FULL=30,
- FUNCTIONS=31, GRAPHVIZ=32, GROUP=33, HAVING=34, IN=35, INNER=36, IS=37,
- JOIN=38, LEFT=39, LIKE=40, LIMIT=41, MAPPED=42, MATCH=43, NATURAL=44,
- NOT=45, NULL=46, ON=47, OPTIMIZED=48, OR=49, ORDER=50, OUTER=51, PARSED=52,
- PHYSICAL=53, PLAN=54, RIGHT=55, RLIKE=56, QUERY=57, SCHEMAS=58, SELECT=59,
- SHOW=60, SYS=61, TABLE=62, TABLES=63, TEXT=64, TRUE=65, TYPE=66, TYPES=67,
- USING=68, VERIFY=69, WHERE=70, WITH=71, EQ=72, NEQ=73, LT=74, LTE=75,
- GT=76, GTE=77, PLUS=78, MINUS=79, ASTERISK=80, SLASH=81, PERCENT=82, CONCAT=83,
- DOT=84, PARAM=85, STRING=86, INTEGER_VALUE=87, DECIMAL_VALUE=88, IDENTIFIER=89,
- DIGIT_IDENTIFIER=90, TABLE_IDENTIFIER=91, QUOTED_IDENTIFIER=92, BACKQUOTED_IDENTIFIER=93,
- SIMPLE_COMMENT=94, BRACKETED_COMMENT=95, WS=96, UNRECOGNIZED=97, DELIMITER=98;
+ FUNCTIONS=31, GEOMETRY_COLUMNS=32, GRAPHVIZ=33, GROUP=34, HAVING=35, IN=36,
+ INNER=37, IS=38, JOIN=39, LEFT=40, LIKE=41, LIMIT=42, MAPPED=43, MATCH=44,
+ NATURAL=45, NOT=46, NULL=47, ON=48, OPTIMIZED=49, OR=50, ORDER=51, OUTER=52,
+ PARSED=53, PHYSICAL=54, PLAN=55, RIGHT=56, RLIKE=57, QUERY=58, SCHEMAS=59,
+ SELECT=60, SHOW=61, SYS=62, TABLE=63, TABLES=64, TEXT=65, TRUE=66, TYPE=67,
+ TYPES=68, USING=69, VERIFY=70, WHERE=71, WITH=72, EQ=73, NEQ=74, LT=75,
+ LTE=76, GT=77, GTE=78, PLUS=79, MINUS=80, ASTERISK=81, SLASH=82, PERCENT=83,
+ CONCAT=84, DOT=85, PARAM=86, STRING=87, INTEGER_VALUE=88, DECIMAL_VALUE=89,
+ IDENTIFIER=90, DIGIT_IDENTIFIER=91, TABLE_IDENTIFIER=92, QUOTED_IDENTIFIER=93,
+ BACKQUOTED_IDENTIFIER=94, SIMPLE_COMMENT=95, BRACKETED_COMMENT=96, WS=97,
+ UNRECOGNIZED=98, DELIMITER=99;
public static final int
RULE_singleStatement = 0, RULE_singleExpression = 1, RULE_statement = 2,
RULE_query = 3, RULE_queryNoWith = 4, RULE_queryTerm = 5, RULE_orderBy = 6,
@@ -65,30 +61,30 @@ class SqlBaseParser extends Parser {
"'AND'", "'ANY'", "'AS'", "'ASC'", "'BETWEEN'", "'BY'", "'CAST'", "'CATALOG'",
"'CATALOGS'", "'COLUMNS'", "'DEBUG'", "'DESC'", "'DESCRIBE'", "'DISTINCT'",
"'ESCAPE'", "'EXECUTABLE'", "'EXISTS'", "'EXPLAIN'", "'EXTRACT'", "'FALSE'",
- "'FORMAT'", "'FROM'", "'FULL'", "'FUNCTIONS'", "'GRAPHVIZ'", "'GROUP'",
- "'HAVING'", "'IN'", "'INNER'", "'IS'", "'JOIN'", "'LEFT'", "'LIKE'", "'LIMIT'",
- "'MAPPED'", "'MATCH'", "'NATURAL'", "'NOT'", "'NULL'", "'ON'", "'OPTIMIZED'",
- "'OR'", "'ORDER'", "'OUTER'", "'PARSED'", "'PHYSICAL'", "'PLAN'", "'RIGHT'",
- "'RLIKE'", "'QUERY'", "'SCHEMAS'", "'SELECT'", "'SHOW'", "'SYS'", "'TABLE'",
- "'TABLES'", "'TEXT'", "'TRUE'", "'TYPE'", "'TYPES'", "'USING'", "'VERIFY'",
- "'WHERE'", "'WITH'", "'='", null, "'<'", "'<='", "'>'", "'>='", "'+'",
- "'-'", "'*'", "'/'", "'%'", "'||'", "'.'", "'?'"
+ "'FORMAT'", "'FROM'", "'FULL'", "'FUNCTIONS'", "'GEOMETRY_COLUMNS'", "'GRAPHVIZ'",
+ "'GROUP'", "'HAVING'", "'IN'", "'INNER'", "'IS'", "'JOIN'", "'LEFT'",
+ "'LIKE'", "'LIMIT'", "'MAPPED'", "'MATCH'", "'NATURAL'", "'NOT'", "'NULL'",
+ "'ON'", "'OPTIMIZED'", "'OR'", "'ORDER'", "'OUTER'", "'PARSED'", "'PHYSICAL'",
+ "'PLAN'", "'RIGHT'", "'RLIKE'", "'QUERY'", "'SCHEMAS'", "'SELECT'", "'SHOW'",
+ "'SYS'", "'TABLE'", "'TABLES'", "'TEXT'", "'TRUE'", "'TYPE'", "'TYPES'",
+ "'USING'", "'VERIFY'", "'WHERE'", "'WITH'", "'='", null, "'<'", "'<='",
+ "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'||'", "'.'", "'?'"
};
private static final String[] _SYMBOLIC_NAMES = {
null, null, null, null, null, "ALL", "ANALYZE", "ANALYZED", "AND", "ANY",
"AS", "ASC", "BETWEEN", "BY", "CAST", "CATALOG", "CATALOGS", "COLUMNS",
"DEBUG", "DESC", "DESCRIBE", "DISTINCT", "ESCAPE", "EXECUTABLE", "EXISTS",
"EXPLAIN", "EXTRACT", "FALSE", "FORMAT", "FROM", "FULL", "FUNCTIONS",
- "GRAPHVIZ", "GROUP", "HAVING", "IN", "INNER", "IS", "JOIN", "LEFT", "LIKE",
- "LIMIT", "MAPPED", "MATCH", "NATURAL", "NOT", "NULL", "ON", "OPTIMIZED",
- "OR", "ORDER", "OUTER", "PARSED", "PHYSICAL", "PLAN", "RIGHT", "RLIKE",
- "QUERY", "SCHEMAS", "SELECT", "SHOW", "SYS", "TABLE", "TABLES", "TEXT",
- "TRUE", "TYPE", "TYPES", "USING", "VERIFY", "WHERE", "WITH", "EQ", "NEQ",
- "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT",
- "CONCAT", "DOT", "PARAM", "STRING", "INTEGER_VALUE", "DECIMAL_VALUE",
- "IDENTIFIER", "DIGIT_IDENTIFIER", "TABLE_IDENTIFIER", "QUOTED_IDENTIFIER",
- "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", "BRACKETED_COMMENT", "WS",
- "UNRECOGNIZED", "DELIMITER"
+ "GEOMETRY_COLUMNS", "GRAPHVIZ", "GROUP", "HAVING", "IN", "INNER", "IS",
+ "JOIN", "LEFT", "LIKE", "LIMIT", "MAPPED", "MATCH", "NATURAL", "NOT",
+ "NULL", "ON", "OPTIMIZED", "OR", "ORDER", "OUTER", "PARSED", "PHYSICAL",
+ "PLAN", "RIGHT", "RLIKE", "QUERY", "SCHEMAS", "SELECT", "SHOW", "SYS",
+ "TABLE", "TABLES", "TEXT", "TRUE", "TYPE", "TYPES", "USING", "VERIFY",
+ "WHERE", "WITH", "EQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS",
+ "ASTERISK", "SLASH", "PERCENT", "CONCAT", "DOT", "PARAM", "STRING", "INTEGER_VALUE",
+ "DECIMAL_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "TABLE_IDENTIFIER",
+ "QUOTED_IDENTIFIER", "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", "BRACKETED_COMMENT",
+ "WS", "UNRECOGNIZED", "DELIMITER"
};
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
@@ -317,24 +313,6 @@ public T accept(ParseTreeVisitor extends T> visitor) {
else return visitor.visitChildren(this);
}
}
- public static class SysCatalogsContext extends StatementContext {
- public TerminalNode SYS() { return getToken(SqlBaseParser.SYS, 0); }
- public TerminalNode CATALOGS() { return getToken(SqlBaseParser.CATALOGS, 0); }
- public SysCatalogsContext(StatementContext ctx) { copyFrom(ctx); }
- @Override
- public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).enterSysCatalogs(this);
- }
- @Override
- public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).exitSysCatalogs(this);
- }
- @Override
- public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof SqlBaseVisitor ) return ((SqlBaseVisitor extends T>)visitor).visitSysCatalogs(this);
- else return visitor.visitChildren(this);
- }
- }
public static class SysColumnsContext extends StatementContext {
public StringContext cluster;
public PatternContext indexPattern;
@@ -454,25 +432,6 @@ public T accept(ParseTreeVisitor extends T> visitor) {
else return visitor.visitChildren(this);
}
}
- public static class StatementDefaultContext extends StatementContext {
- public QueryContext query() {
- return getRuleContext(QueryContext.class,0);
- }
- public StatementDefaultContext(StatementContext ctx) { copyFrom(ctx); }
- @Override
- public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).enterStatementDefault(this);
- }
- @Override
- public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).exitStatementDefault(this);
- }
- @Override
- public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof SqlBaseVisitor ) return ((SqlBaseVisitor extends T>)visitor).visitStatementDefault(this);
- else return visitor.visitChildren(this);
- }
- }
public static class SysTablesContext extends StatementContext {
public PatternContext clusterPattern;
public PatternContext tablePattern;
@@ -511,6 +470,65 @@ public T accept(ParseTreeVisitor extends T> visitor) {
else return visitor.visitChildren(this);
}
}
+ public static class ShowTablesContext extends StatementContext {
+ public TerminalNode SHOW() { return getToken(SqlBaseParser.SHOW, 0); }
+ public TerminalNode TABLES() { return getToken(SqlBaseParser.TABLES, 0); }
+ public PatternContext pattern() {
+ return getRuleContext(PatternContext.class,0);
+ }
+ public TerminalNode LIKE() { return getToken(SqlBaseParser.LIKE, 0); }
+ public ShowTablesContext(StatementContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).enterShowTables(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).exitShowTables(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof SqlBaseVisitor ) return ((SqlBaseVisitor extends T>)visitor).visitShowTables(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+ public static class SysCatalogsContext extends StatementContext {
+ public TerminalNode SYS() { return getToken(SqlBaseParser.SYS, 0); }
+ public TerminalNode CATALOGS() { return getToken(SqlBaseParser.CATALOGS, 0); }
+ public SysCatalogsContext(StatementContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).enterSysCatalogs(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).exitSysCatalogs(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof SqlBaseVisitor ) return ((SqlBaseVisitor extends T>)visitor).visitSysCatalogs(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+ public static class StatementDefaultContext extends StatementContext {
+ public QueryContext query() {
+ return getRuleContext(QueryContext.class,0);
+ }
+ public StatementDefaultContext(StatementContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).enterStatementDefault(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).exitStatementDefault(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof SqlBaseVisitor ) return ((SqlBaseVisitor extends T>)visitor).visitStatementDefault(this);
+ else return visitor.visitChildren(this);
+ }
+ }
public static class ShowFunctionsContext extends StatementContext {
public TerminalNode SHOW() { return getToken(SqlBaseParser.SHOW, 0); }
public TerminalNode FUNCTIONS() { return getToken(SqlBaseParser.FUNCTIONS, 0); }
@@ -533,25 +551,39 @@ public T accept(ParseTreeVisitor extends T> visitor) {
else return visitor.visitChildren(this);
}
}
- public static class ShowTablesContext extends StatementContext {
- public TerminalNode SHOW() { return getToken(SqlBaseParser.SHOW, 0); }
- public TerminalNode TABLES() { return getToken(SqlBaseParser.TABLES, 0); }
- public PatternContext pattern() {
- return getRuleContext(PatternContext.class,0);
+ public static class SysGeometryColumnsContext extends StatementContext {
+ public StringContext cluster;
+ public PatternContext indexPattern;
+ public PatternContext columnPattern;
+ public TerminalNode SYS() { return getToken(SqlBaseParser.SYS, 0); }
+ public TerminalNode GEOMETRY_COLUMNS() { return getToken(SqlBaseParser.GEOMETRY_COLUMNS, 0); }
+ public TerminalNode CATALOG() { return getToken(SqlBaseParser.CATALOG, 0); }
+ public TerminalNode TABLE() { return getToken(SqlBaseParser.TABLE, 0); }
+ public StringContext string() {
+ return getRuleContext(StringContext.class,0);
}
- public TerminalNode LIKE() { return getToken(SqlBaseParser.LIKE, 0); }
- public ShowTablesContext(StatementContext ctx) { copyFrom(ctx); }
+ public List pattern() {
+ return getRuleContexts(PatternContext.class);
+ }
+ public PatternContext pattern(int i) {
+ return getRuleContext(PatternContext.class,i);
+ }
+ public List LIKE() { return getTokens(SqlBaseParser.LIKE); }
+ public TerminalNode LIKE(int i) {
+ return getToken(SqlBaseParser.LIKE, i);
+ }
+ public SysGeometryColumnsContext(StatementContext ctx) { copyFrom(ctx); }
@Override
public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).enterShowTables(this);
+ if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).enterSysGeometryColumns(this);
}
@Override
public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).exitShowTables(this);
+ if ( listener instanceof SqlBaseListener ) ((SqlBaseListener)listener).exitSysGeometryColumns(this);
}
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof SqlBaseVisitor ) return ((SqlBaseVisitor extends T>)visitor).visitShowTables(this);
+ if ( visitor instanceof SqlBaseVisitor ) return ((SqlBaseVisitor extends T>)visitor).visitSysGeometryColumns(this);
else return visitor.visitChildren(this);
}
}
@@ -604,9 +636,9 @@ public final StatementContext statement() throws RecognitionException {
enterRule(_localctx, 4, RULE_statement);
int _la;
try {
- setState(193);
+ setState(212);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) {
case 1:
_localctx = new StatementDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
@@ -763,7 +795,7 @@ public final StatementContext statement() throws RecognitionException {
match(TABLES);
setState(123);
_la = _input.LA(1);
- if (((((_la - 40)) & ~0x3f) == 0 && ((1L << (_la - 40)) & ((1L << (LIKE - 40)) | (1L << (PARAM - 40)) | (1L << (STRING - 40)))) != 0)) {
+ if (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (LIKE - 41)) | (1L << (PARAM - 41)) | (1L << (STRING - 41)))) != 0)) {
{
setState(120);
_la = _input.LA(1);
@@ -825,7 +857,7 @@ public final StatementContext statement() throws RecognitionException {
match(FUNCTIONS);
setState(137);
_la = _input.LA(1);
- if (((((_la - 40)) & ~0x3f) == 0 && ((1L << (_la - 40)) & ((1L << (LIKE - 40)) | (1L << (PARAM - 40)) | (1L << (STRING - 40)))) != 0)) {
+ if (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (LIKE - 41)) | (1L << (PARAM - 41)) | (1L << (STRING - 41)))) != 0)) {
{
setState(134);
_la = _input.LA(1);
@@ -893,7 +925,7 @@ public final StatementContext statement() throws RecognitionException {
setState(156);
_la = _input.LA(1);
- if (((((_la - 40)) & ~0x3f) == 0 && ((1L << (_la - 40)) & ((1L << (LIKE - 40)) | (1L << (PARAM - 40)) | (1L << (STRING - 40)))) != 0)) {
+ if (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (LIKE - 41)) | (1L << (PARAM - 41)) | (1L << (STRING - 41)))) != 0)) {
{
setState(153);
_la = _input.LA(1);
@@ -979,7 +1011,7 @@ public final StatementContext statement() throws RecognitionException {
setState(186);
_la = _input.LA(1);
- if (((((_la - 40)) & ~0x3f) == 0 && ((1L << (_la - 40)) & ((1L << (LIKE - 40)) | (1L << (PARAM - 40)) | (1L << (STRING - 40)))) != 0)) {
+ if (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (LIKE - 41)) | (1L << (PARAM - 41)) | (1L << (STRING - 41)))) != 0)) {
{
setState(183);
_la = _input.LA(1);
@@ -998,24 +1030,83 @@ public final StatementContext statement() throws RecognitionException {
}
break;
case 12:
- _localctx = new SysTypesContext(_localctx);
+ _localctx = new SysGeometryColumnsContext(_localctx);
enterOuterAlt(_localctx, 12);
{
setState(188);
match(SYS);
setState(189);
- match(TYPES);
+ match(GEOMETRY_COLUMNS);
+ setState(192);
+ _la = _input.LA(1);
+ if (_la==CATALOG) {
+ {
+ setState(190);
+ match(CATALOG);
+ setState(191);
+ ((SysGeometryColumnsContext)_localctx).cluster = string();
+ }
+ }
+
+ setState(199);
+ _la = _input.LA(1);
+ if (_la==TABLE) {
+ {
+ setState(194);
+ match(TABLE);
+ setState(196);
+ _la = _input.LA(1);
+ if (_la==LIKE) {
+ {
+ setState(195);
+ match(LIKE);
+ }
+ }
+
+ setState(198);
+ ((SysGeometryColumnsContext)_localctx).indexPattern = pattern();
+ }
+ }
+
+ setState(205);
+ _la = _input.LA(1);
+ if (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (LIKE - 41)) | (1L << (PARAM - 41)) | (1L << (STRING - 41)))) != 0)) {
+ {
+ setState(202);
+ _la = _input.LA(1);
+ if (_la==LIKE) {
+ {
+ setState(201);
+ match(LIKE);
+ }
+ }
+
+ setState(204);
+ ((SysGeometryColumnsContext)_localctx).columnPattern = pattern();
+ }
+ }
+
}
break;
case 13:
- _localctx = new SysTableTypesContext(_localctx);
+ _localctx = new SysTypesContext(_localctx);
enterOuterAlt(_localctx, 13);
{
- setState(190);
+ setState(207);
+ match(SYS);
+ setState(208);
+ match(TYPES);
+ }
+ break;
+ case 14:
+ _localctx = new SysTableTypesContext(_localctx);
+ enterOuterAlt(_localctx, 14);
+ {
+ setState(209);
match(SYS);
- setState(191);
+ setState(210);
match(TABLE);
- setState(192);
+ setState(211);
match(TYPES);
}
break;
@@ -1069,34 +1160,34 @@ public final QueryContext query() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(204);
+ setState(223);
_la = _input.LA(1);
if (_la==WITH) {
{
- setState(195);
+ setState(214);
match(WITH);
- setState(196);
+ setState(215);
namedQuery();
- setState(201);
+ setState(220);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(197);
+ setState(216);
match(T__2);
- setState(198);
+ setState(217);
namedQuery();
}
}
- setState(203);
+ setState(222);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(206);
+ setState(225);
queryNoWith();
}
}
@@ -1153,44 +1244,44 @@ public final QueryNoWithContext queryNoWith() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(208);
+ setState(227);
queryTerm();
- setState(219);
+ setState(238);
_la = _input.LA(1);
if (_la==ORDER) {
{
- setState(209);
+ setState(228);
match(ORDER);
- setState(210);
+ setState(229);
match(BY);
- setState(211);
+ setState(230);
orderBy();
- setState(216);
+ setState(235);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(212);
+ setState(231);
match(T__2);
- setState(213);
+ setState(232);
orderBy();
}
}
- setState(218);
+ setState(237);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(223);
+ setState(242);
_la = _input.LA(1);
if (_la==LIMIT) {
{
- setState(221);
+ setState(240);
match(LIMIT);
- setState(222);
+ setState(241);
((QueryNoWithContext)_localctx).limit = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==ALL || _la==INTEGER_VALUE) ) {
@@ -1268,13 +1359,13 @@ public final QueryTermContext queryTerm() throws RecognitionException {
QueryTermContext _localctx = new QueryTermContext(_ctx, getState());
enterRule(_localctx, 10, RULE_queryTerm);
try {
- setState(230);
+ setState(249);
switch (_input.LA(1)) {
case SELECT:
_localctx = new QueryPrimaryDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(225);
+ setState(244);
querySpecification();
}
break;
@@ -1282,11 +1373,11 @@ public final QueryTermContext queryTerm() throws RecognitionException {
_localctx = new SubqueryContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(226);
+ setState(245);
match(T__0);
- setState(227);
+ setState(246);
queryNoWith();
- setState(228);
+ setState(247);
match(T__1);
}
break;
@@ -1338,13 +1429,13 @@ public final OrderByContext orderBy() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(232);
+ setState(251);
expression();
- setState(234);
+ setState(253);
_la = _input.LA(1);
if (_la==ASC || _la==DESC) {
{
- setState(233);
+ setState(252);
((OrderByContext)_localctx).ordering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==ASC || _la==DESC) ) {
@@ -1423,75 +1514,75 @@ public final QuerySpecificationContext querySpecification() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(236);
+ setState(255);
match(SELECT);
- setState(238);
+ setState(257);
_la = _input.LA(1);
if (_la==ALL || _la==DISTINCT) {
{
- setState(237);
+ setState(256);
setQuantifier();
}
}
- setState(240);
+ setState(259);
selectItem();
- setState(245);
+ setState(264);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(241);
+ setState(260);
match(T__2);
- setState(242);
+ setState(261);
selectItem();
}
}
- setState(247);
+ setState(266);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(249);
+ setState(268);
_la = _input.LA(1);
if (_la==FROM) {
{
- setState(248);
+ setState(267);
fromClause();
}
}
- setState(253);
+ setState(272);
_la = _input.LA(1);
if (_la==WHERE) {
{
- setState(251);
+ setState(270);
match(WHERE);
- setState(252);
+ setState(271);
((QuerySpecificationContext)_localctx).where = booleanExpression(0);
}
}
- setState(258);
+ setState(277);
_la = _input.LA(1);
if (_la==GROUP) {
{
- setState(255);
+ setState(274);
match(GROUP);
- setState(256);
+ setState(275);
match(BY);
- setState(257);
+ setState(276);
groupBy();
}
}
- setState(262);
+ setState(281);
_la = _input.LA(1);
if (_la==HAVING) {
{
- setState(260);
+ setState(279);
match(HAVING);
- setState(261);
+ setState(280);
((QuerySpecificationContext)_localctx).having = booleanExpression(0);
}
}
@@ -1543,23 +1634,23 @@ public final FromClauseContext fromClause() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(264);
+ setState(283);
match(FROM);
- setState(265);
+ setState(284);
relation();
- setState(270);
+ setState(289);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(266);
+ setState(285);
match(T__2);
- setState(267);
+ setState(286);
relation();
}
}
- setState(272);
+ setState(291);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -1612,30 +1703,30 @@ public final GroupByContext groupBy() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(274);
+ setState(293);
_la = _input.LA(1);
if (_la==ALL || _la==DISTINCT) {
{
- setState(273);
+ setState(292);
setQuantifier();
}
}
- setState(276);
+ setState(295);
groupingElement();
- setState(281);
+ setState(300);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(277);
+ setState(296);
match(T__2);
- setState(278);
+ setState(297);
groupingElement();
}
}
- setState(283);
+ setState(302);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -1690,7 +1781,7 @@ public final GroupingElementContext groupingElement() throws RecognitionExceptio
_localctx = new SingleGroupingSetContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(284);
+ setState(303);
groupingExpressions();
}
}
@@ -1736,47 +1827,47 @@ public final GroupingExpressionsContext groupingExpressions() throws Recognition
enterRule(_localctx, 22, RULE_groupingExpressions);
int _la;
try {
- setState(299);
+ setState(318);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(286);
+ setState(305);
match(T__0);
- setState(295);
+ setState(314);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << ANALYZE) | (1L << ANALYZED) | (1L << CAST) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXISTS) | (1L << EXPLAIN) | (1L << EXTRACT) | (1L << FALSE) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << MATCH) | (1L << NOT) | (1L << NULL) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS) | (1L << TABLES))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TEXT - 64)) | (1L << (TRUE - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (PLUS - 64)) | (1L << (MINUS - 64)) | (1L << (ASTERISK - 64)) | (1L << (PARAM - 64)) | (1L << (STRING - 64)) | (1L << (INTEGER_VALUE - 64)) | (1L << (DECIMAL_VALUE - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << ANALYZE) | (1L << ANALYZED) | (1L << CAST) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXISTS) | (1L << EXPLAIN) | (1L << EXTRACT) | (1L << FALSE) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << MATCH) | (1L << NOT) | (1L << NULL) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TABLES - 64)) | (1L << (TEXT - 64)) | (1L << (TRUE - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (PLUS - 64)) | (1L << (MINUS - 64)) | (1L << (ASTERISK - 64)) | (1L << (PARAM - 64)) | (1L << (STRING - 64)) | (1L << (INTEGER_VALUE - 64)) | (1L << (DECIMAL_VALUE - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
{
- setState(287);
+ setState(306);
expression();
- setState(292);
+ setState(311);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(288);
+ setState(307);
match(T__2);
- setState(289);
+ setState(308);
expression();
}
}
- setState(294);
+ setState(313);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(297);
+ setState(316);
match(T__1);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(298);
+ setState(317);
expression();
}
break;
@@ -1827,15 +1918,15 @@ public final NamedQueryContext namedQuery() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(301);
+ setState(320);
((NamedQueryContext)_localctx).name = identifier();
- setState(302);
+ setState(321);
match(AS);
- setState(303);
+ setState(322);
match(T__0);
- setState(304);
+ setState(323);
queryNoWith();
- setState(305);
+ setState(324);
match(T__1);
}
}
@@ -1879,7 +1970,7 @@ public final SetQuantifierContext setQuantifier() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(307);
+ setState(326);
_la = _input.LA(1);
if ( !(_la==ALL || _la==DISTINCT) ) {
_errHandler.recoverInline(this);
@@ -1942,22 +2033,22 @@ public final SelectItemContext selectItem() throws RecognitionException {
_localctx = new SelectExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(309);
+ setState(328);
expression();
- setState(314);
+ setState(333);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << AS) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS) | (1L << TABLES))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << AS) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TABLES - 64)) | (1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
{
- setState(311);
+ setState(330);
_la = _input.LA(1);
if (_la==AS) {
{
- setState(310);
+ setState(329);
match(AS);
}
}
- setState(313);
+ setState(332);
identifier();
}
}
@@ -2011,19 +2102,19 @@ public final RelationContext relation() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(316);
+ setState(335);
relationPrimary();
- setState(320);
+ setState(339);
_errHandler.sync(this);
_la = _input.LA(1);
while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << FULL) | (1L << INNER) | (1L << JOIN) | (1L << LEFT) | (1L << NATURAL) | (1L << RIGHT))) != 0)) {
{
{
- setState(317);
+ setState(336);
joinRelation();
}
}
- setState(322);
+ setState(341);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -2077,7 +2168,7 @@ public final JoinRelationContext joinRelation() throws RecognitionException {
enterRule(_localctx, 32, RULE_joinRelation);
int _la;
try {
- setState(334);
+ setState(353);
switch (_input.LA(1)) {
case FULL:
case INNER:
@@ -2087,18 +2178,18 @@ public final JoinRelationContext joinRelation() throws RecognitionException {
enterOuterAlt(_localctx, 1);
{
{
- setState(323);
+ setState(342);
joinType();
}
- setState(324);
+ setState(343);
match(JOIN);
- setState(325);
+ setState(344);
((JoinRelationContext)_localctx).right = relationPrimary();
- setState(327);
+ setState(346);
_la = _input.LA(1);
if (_la==ON || _la==USING) {
{
- setState(326);
+ setState(345);
joinCriteria();
}
}
@@ -2108,13 +2199,13 @@ public final JoinRelationContext joinRelation() throws RecognitionException {
case NATURAL:
enterOuterAlt(_localctx, 2);
{
- setState(329);
+ setState(348);
match(NATURAL);
- setState(330);
+ setState(349);
joinType();
- setState(331);
+ setState(350);
match(JOIN);
- setState(332);
+ setState(351);
((JoinRelationContext)_localctx).right = relationPrimary();
}
break;
@@ -2163,17 +2254,17 @@ public final JoinTypeContext joinType() throws RecognitionException {
enterRule(_localctx, 34, RULE_joinType);
int _la;
try {
- setState(351);
+ setState(370);
switch (_input.LA(1)) {
case INNER:
case JOIN:
enterOuterAlt(_localctx, 1);
{
- setState(337);
+ setState(356);
_la = _input.LA(1);
if (_la==INNER) {
{
- setState(336);
+ setState(355);
match(INNER);
}
}
@@ -2183,13 +2274,13 @@ public final JoinTypeContext joinType() throws RecognitionException {
case LEFT:
enterOuterAlt(_localctx, 2);
{
- setState(339);
+ setState(358);
match(LEFT);
- setState(341);
+ setState(360);
_la = _input.LA(1);
if (_la==OUTER) {
{
- setState(340);
+ setState(359);
match(OUTER);
}
}
@@ -2199,13 +2290,13 @@ public final JoinTypeContext joinType() throws RecognitionException {
case RIGHT:
enterOuterAlt(_localctx, 3);
{
- setState(343);
+ setState(362);
match(RIGHT);
- setState(345);
+ setState(364);
_la = _input.LA(1);
if (_la==OUTER) {
{
- setState(344);
+ setState(363);
match(OUTER);
}
}
@@ -2215,13 +2306,13 @@ public final JoinTypeContext joinType() throws RecognitionException {
case FULL:
enterOuterAlt(_localctx, 4);
{
- setState(347);
+ setState(366);
match(FULL);
- setState(349);
+ setState(368);
_la = _input.LA(1);
if (_la==OUTER) {
{
- setState(348);
+ setState(367);
match(OUTER);
}
}
@@ -2279,43 +2370,43 @@ public final JoinCriteriaContext joinCriteria() throws RecognitionException {
enterRule(_localctx, 36, RULE_joinCriteria);
int _la;
try {
- setState(367);
+ setState(386);
switch (_input.LA(1)) {
case ON:
enterOuterAlt(_localctx, 1);
{
- setState(353);
+ setState(372);
match(ON);
- setState(354);
+ setState(373);
booleanExpression(0);
}
break;
case USING:
enterOuterAlt(_localctx, 2);
{
- setState(355);
+ setState(374);
match(USING);
- setState(356);
+ setState(375);
match(T__0);
- setState(357);
+ setState(376);
identifier();
- setState(362);
+ setState(381);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(358);
+ setState(377);
match(T__2);
- setState(359);
+ setState(378);
identifier();
}
}
- setState(364);
+ setState(383);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(365);
+ setState(384);
match(T__1);
}
break;
@@ -2420,29 +2511,29 @@ public final RelationPrimaryContext relationPrimary() throws RecognitionExceptio
enterRule(_localctx, 38, RULE_relationPrimary);
int _la;
try {
- setState(394);
+ setState(413);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
case 1:
_localctx = new TableNameContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(369);
+ setState(388);
tableIdentifier();
- setState(374);
+ setState(393);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << AS) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS) | (1L << TABLES))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << AS) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TABLES - 64)) | (1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
{
- setState(371);
+ setState(390);
_la = _input.LA(1);
if (_la==AS) {
{
- setState(370);
+ setState(389);
match(AS);
}
}
- setState(373);
+ setState(392);
qualifiedName();
}
}
@@ -2453,26 +2544,26 @@ public final RelationPrimaryContext relationPrimary() throws RecognitionExceptio
_localctx = new AliasedQueryContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(376);
+ setState(395);
match(T__0);
- setState(377);
+ setState(396);
queryNoWith();
- setState(378);
+ setState(397);
match(T__1);
- setState(383);
+ setState(402);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << AS) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS) | (1L << TABLES))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << AS) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TABLES - 64)) | (1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
{
- setState(380);
+ setState(399);
_la = _input.LA(1);
if (_la==AS) {
{
- setState(379);
+ setState(398);
match(AS);
}
}
- setState(382);
+ setState(401);
qualifiedName();
}
}
@@ -2483,26 +2574,26 @@ public final RelationPrimaryContext relationPrimary() throws RecognitionExceptio
_localctx = new AliasedRelationContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(385);
+ setState(404);
match(T__0);
- setState(386);
+ setState(405);
relation();
- setState(387);
+ setState(406);
match(T__1);
- setState(392);
+ setState(411);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << AS) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS) | (1L << TABLES))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << AS) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TABLES - 64)) | (1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
{
- setState(389);
+ setState(408);
_la = _input.LA(1);
if (_la==AS) {
{
- setState(388);
+ setState(407);
match(AS);
}
}
- setState(391);
+ setState(410);
qualifiedName();
}
}
@@ -2551,7 +2642,7 @@ public final ExpressionContext expression() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(396);
+ setState(415);
booleanExpression(0);
}
}
@@ -2760,18 +2851,18 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(447);
+ setState(466);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
case 1:
{
_localctx = new LogicalNotContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(399);
+ setState(418);
match(NOT);
- setState(400);
+ setState(419);
booleanExpression(8);
}
break;
@@ -2780,13 +2871,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new ExistsContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(401);
+ setState(420);
match(EXISTS);
- setState(402);
+ setState(421);
match(T__0);
- setState(403);
+ setState(422);
query();
- setState(404);
+ setState(423);
match(T__1);
}
break;
@@ -2795,29 +2886,29 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new StringQueryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(406);
+ setState(425);
match(QUERY);
- setState(407);
+ setState(426);
match(T__0);
- setState(408);
+ setState(427);
((StringQueryContext)_localctx).queryString = string();
- setState(413);
+ setState(432);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(409);
+ setState(428);
match(T__2);
- setState(410);
+ setState(429);
((StringQueryContext)_localctx).options = string();
}
}
- setState(415);
+ setState(434);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(416);
+ setState(435);
match(T__1);
}
break;
@@ -2826,33 +2917,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new MatchQueryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(418);
+ setState(437);
match(MATCH);
- setState(419);
+ setState(438);
match(T__0);
- setState(420);
+ setState(439);
((MatchQueryContext)_localctx).singleField = qualifiedName();
- setState(421);
+ setState(440);
match(T__2);
- setState(422);
+ setState(441);
((MatchQueryContext)_localctx).queryString = string();
- setState(427);
+ setState(446);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(423);
+ setState(442);
match(T__2);
- setState(424);
+ setState(443);
((MatchQueryContext)_localctx).options = string();
}
}
- setState(429);
+ setState(448);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(430);
+ setState(449);
match(T__1);
}
break;
@@ -2861,33 +2952,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new MultiMatchQueryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(432);
+ setState(451);
match(MATCH);
- setState(433);
+ setState(452);
match(T__0);
- setState(434);
+ setState(453);
((MultiMatchQueryContext)_localctx).multiFields = string();
- setState(435);
+ setState(454);
match(T__2);
- setState(436);
+ setState(455);
((MultiMatchQueryContext)_localctx).queryString = string();
- setState(441);
+ setState(460);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(437);
+ setState(456);
match(T__2);
- setState(438);
+ setState(457);
((MultiMatchQueryContext)_localctx).options = string();
}
}
- setState(443);
+ setState(462);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(444);
+ setState(463);
match(T__1);
}
break;
@@ -2896,33 +2987,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new BooleanDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(446);
+ setState(465);
predicated();
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(457);
+ setState(476);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,65,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,70,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(455);
+ setState(474);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) {
case 1:
{
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(449);
+ setState(468);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(450);
+ setState(469);
((LogicalBinaryContext)_localctx).operator = match(AND);
- setState(451);
+ setState(470);
((LogicalBinaryContext)_localctx).right = booleanExpression(3);
}
break;
@@ -2931,20 +3022,20 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(452);
+ setState(471);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(453);
+ setState(472);
((LogicalBinaryContext)_localctx).operator = match(OR);
- setState(454);
+ setState(473);
((LogicalBinaryContext)_localctx).right = booleanExpression(2);
}
break;
}
}
}
- setState(459);
+ setState(478);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,65,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,70,_ctx);
}
}
}
@@ -2991,14 +3082,14 @@ public final PredicatedContext predicated() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(460);
+ setState(479);
valueExpression(0);
- setState(462);
+ setState(481);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) {
case 1:
{
- setState(461);
+ setState(480);
predicate();
}
break;
@@ -3074,142 +3165,142 @@ public final PredicateContext predicate() throws RecognitionException {
enterRule(_localctx, 46, RULE_predicate);
int _la;
try {
- setState(510);
+ setState(529);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,79,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(465);
+ setState(484);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(464);
+ setState(483);
match(NOT);
}
}
- setState(467);
+ setState(486);
((PredicateContext)_localctx).kind = match(BETWEEN);
- setState(468);
+ setState(487);
((PredicateContext)_localctx).lower = valueExpression(0);
- setState(469);
+ setState(488);
match(AND);
- setState(470);
+ setState(489);
((PredicateContext)_localctx).upper = valueExpression(0);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(473);
+ setState(492);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(472);
+ setState(491);
match(NOT);
}
}
- setState(475);
+ setState(494);
((PredicateContext)_localctx).kind = match(IN);
- setState(476);
+ setState(495);
match(T__0);
- setState(477);
+ setState(496);
expression();
- setState(482);
+ setState(501);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(478);
+ setState(497);
match(T__2);
- setState(479);
+ setState(498);
expression();
}
}
- setState(484);
+ setState(503);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(485);
+ setState(504);
match(T__1);
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(488);
+ setState(507);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(487);
+ setState(506);
match(NOT);
}
}
- setState(490);
+ setState(509);
((PredicateContext)_localctx).kind = match(IN);
- setState(491);
+ setState(510);
match(T__0);
- setState(492);
+ setState(511);
query();
- setState(493);
+ setState(512);
match(T__1);
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(496);
+ setState(515);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(495);
+ setState(514);
match(NOT);
}
}
- setState(498);
+ setState(517);
((PredicateContext)_localctx).kind = match(LIKE);
- setState(499);
+ setState(518);
pattern();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(501);
+ setState(520);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(500);
+ setState(519);
match(NOT);
}
}
- setState(503);
+ setState(522);
((PredicateContext)_localctx).kind = match(RLIKE);
- setState(504);
+ setState(523);
((PredicateContext)_localctx).regex = string();
}
break;
case 6:
enterOuterAlt(_localctx, 6);
{
- setState(505);
+ setState(524);
match(IS);
- setState(507);
+ setState(526);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(506);
+ setState(525);
match(NOT);
}
}
- setState(509);
+ setState(528);
((PredicateContext)_localctx).kind = match(NULL);
}
break;
@@ -3261,16 +3352,16 @@ public final PatternContext pattern() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(512);
+ setState(531);
((PatternContext)_localctx).value = string();
- setState(515);
+ setState(534);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,80,_ctx) ) {
case 1:
{
- setState(513);
+ setState(532);
match(ESCAPE);
- setState(514);
+ setState(533);
((PatternContext)_localctx).escape = string();
}
break;
@@ -3414,7 +3505,7 @@ private ValueExpressionContext valueExpression(int _p) throws RecognitionExcepti
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(521);
+ setState(540);
switch (_input.LA(1)) {
case T__0:
case ANALYZE:
@@ -3461,7 +3552,7 @@ private ValueExpressionContext valueExpression(int _p) throws RecognitionExcepti
_ctx = _localctx;
_prevctx = _localctx;
- setState(518);
+ setState(537);
primaryExpression();
}
break;
@@ -3471,7 +3562,7 @@ private ValueExpressionContext valueExpression(int _p) throws RecognitionExcepti
_localctx = new ArithmeticUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(519);
+ setState(538);
((ArithmeticUnaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -3479,7 +3570,7 @@ private ValueExpressionContext valueExpression(int _p) throws RecognitionExcepti
} else {
consume();
}
- setState(520);
+ setState(539);
valueExpression(4);
}
break;
@@ -3487,33 +3578,33 @@ private ValueExpressionContext valueExpression(int _p) throws RecognitionExcepti
throw new NoViableAltException(this);
}
_ctx.stop = _input.LT(-1);
- setState(535);
+ setState(554);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,78,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,83,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(533);
+ setState(552);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,77,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,82,_ctx) ) {
case 1:
{
_localctx = new ArithmeticBinaryContext(new ValueExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_valueExpression);
- setState(523);
+ setState(542);
if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)");
- setState(524);
+ setState(543);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
- if ( !(((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (ASTERISK - 80)) | (1L << (SLASH - 80)) | (1L << (PERCENT - 80)))) != 0)) ) {
+ if ( !(((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & ((1L << (ASTERISK - 81)) | (1L << (SLASH - 81)) | (1L << (PERCENT - 81)))) != 0)) ) {
((ArithmeticBinaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this);
} else {
consume();
}
- setState(525);
+ setState(544);
((ArithmeticBinaryContext)_localctx).right = valueExpression(4);
}
break;
@@ -3522,9 +3613,9 @@ private ValueExpressionContext valueExpression(int _p) throws RecognitionExcepti
_localctx = new ArithmeticBinaryContext(new ValueExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_valueExpression);
- setState(526);
+ setState(545);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(527);
+ setState(546);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -3532,7 +3623,7 @@ private ValueExpressionContext valueExpression(int _p) throws RecognitionExcepti
} else {
consume();
}
- setState(528);
+ setState(547);
((ArithmeticBinaryContext)_localctx).right = valueExpression(3);
}
break;
@@ -3541,20 +3632,20 @@ private ValueExpressionContext valueExpression(int _p) throws RecognitionExcepti
_localctx = new ComparisonContext(new ValueExpressionContext(_parentctx, _parentState));
((ComparisonContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_valueExpression);
- setState(529);
+ setState(548);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(530);
+ setState(549);
comparisonOperator();
- setState(531);
+ setState(550);
((ComparisonContext)_localctx).right = valueExpression(2);
}
break;
}
}
}
- setState(537);
+ setState(556);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,78,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,83,_ctx);
}
}
}
@@ -3779,24 +3870,24 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
enterRule(_localctx, 52, RULE_primaryExpression);
int _la;
try {
- setState(587);
+ setState(606);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,88,_ctx) ) {
case 1:
_localctx = new CastContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(538);
+ setState(557);
match(CAST);
- setState(539);
+ setState(558);
match(T__0);
- setState(540);
+ setState(559);
expression();
- setState(541);
+ setState(560);
match(AS);
- setState(542);
+ setState(561);
dataType();
- setState(543);
+ setState(562);
match(T__1);
}
break;
@@ -3804,17 +3895,17 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
_localctx = new ExtractContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(545);
+ setState(564);
match(EXTRACT);
- setState(546);
+ setState(565);
match(T__0);
- setState(547);
+ setState(566);
((ExtractContext)_localctx).field = identifier();
- setState(548);
+ setState(567);
match(FROM);
- setState(549);
+ setState(568);
valueExpression(0);
- setState(550);
+ setState(569);
match(T__1);
}
break;
@@ -3822,7 +3913,7 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
_localctx = new ConstantDefaultContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(552);
+ setState(571);
constant();
}
break;
@@ -3830,7 +3921,7 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
_localctx = new StarContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(553);
+ setState(572);
match(ASTERISK);
}
break;
@@ -3838,18 +3929,18 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
_localctx = new StarContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(557);
+ setState(576);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS) | (1L << TABLES))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TABLES - 64)) | (1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
{
- setState(554);
+ setState(573);
qualifiedName();
- setState(555);
+ setState(574);
match(DOT);
}
}
- setState(559);
+ setState(578);
match(ASTERISK);
}
break;
@@ -3857,45 +3948,45 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
_localctx = new FunctionCallContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(560);
+ setState(579);
identifier();
- setState(561);
+ setState(580);
match(T__0);
- setState(573);
+ setState(592);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << ALL) | (1L << ANALYZE) | (1L << ANALYZED) | (1L << CAST) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << DISTINCT) | (1L << EXECUTABLE) | (1L << EXISTS) | (1L << EXPLAIN) | (1L << EXTRACT) | (1L << FALSE) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << MATCH) | (1L << NOT) | (1L << NULL) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS) | (1L << TABLES))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TEXT - 64)) | (1L << (TRUE - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (PLUS - 64)) | (1L << (MINUS - 64)) | (1L << (ASTERISK - 64)) | (1L << (PARAM - 64)) | (1L << (STRING - 64)) | (1L << (INTEGER_VALUE - 64)) | (1L << (DECIMAL_VALUE - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << ALL) | (1L << ANALYZE) | (1L << ANALYZED) | (1L << CAST) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << DISTINCT) | (1L << EXECUTABLE) | (1L << EXISTS) | (1L << EXPLAIN) | (1L << EXTRACT) | (1L << FALSE) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << MATCH) | (1L << NOT) | (1L << NULL) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TABLES - 64)) | (1L << (TEXT - 64)) | (1L << (TRUE - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (PLUS - 64)) | (1L << (MINUS - 64)) | (1L << (ASTERISK - 64)) | (1L << (PARAM - 64)) | (1L << (STRING - 64)) | (1L << (INTEGER_VALUE - 64)) | (1L << (DECIMAL_VALUE - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
{
- setState(563);
+ setState(582);
_la = _input.LA(1);
if (_la==ALL || _la==DISTINCT) {
{
- setState(562);
+ setState(581);
setQuantifier();
}
}
- setState(565);
+ setState(584);
expression();
- setState(570);
+ setState(589);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__2) {
{
{
- setState(566);
+ setState(585);
match(T__2);
- setState(567);
+ setState(586);
expression();
}
}
- setState(572);
+ setState(591);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(575);
+ setState(594);
match(T__1);
}
break;
@@ -3903,11 +3994,11 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
_localctx = new SubqueryExpressionContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(577);
+ setState(596);
match(T__0);
- setState(578);
+ setState(597);
query();
- setState(579);
+ setState(598);
match(T__1);
}
break;
@@ -3915,7 +4006,7 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
_localctx = new ColumnReferenceContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(581);
+ setState(600);
identifier();
}
break;
@@ -3923,7 +4014,7 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
_localctx = new DereferenceContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(582);
+ setState(601);
qualifiedName();
}
break;
@@ -3931,11 +4022,11 @@ public final PrimaryExpressionContext primaryExpression() throws RecognitionExce
_localctx = new ParenthesizedExpressionContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(583);
+ setState(602);
match(T__0);
- setState(584);
+ setState(603);
expression();
- setState(585);
+ setState(604);
match(T__1);
}
break;
@@ -4061,13 +4152,13 @@ public final ConstantContext constant() throws RecognitionException {
enterRule(_localctx, 54, RULE_constant);
try {
int _alt;
- setState(598);
+ setState(617);
switch (_input.LA(1)) {
case NULL:
_localctx = new NullLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(589);
+ setState(608);
match(NULL);
}
break;
@@ -4076,7 +4167,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new NumericLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(590);
+ setState(609);
number();
}
break;
@@ -4085,7 +4176,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanLiteralContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(591);
+ setState(610);
booleanValue();
}
break;
@@ -4093,7 +4184,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringLiteralContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(593);
+ setState(612);
_errHandler.sync(this);
_alt = 1;
do {
@@ -4101,7 +4192,7 @@ public final ConstantContext constant() throws RecognitionException {
case 1:
{
{
- setState(592);
+ setState(611);
match(STRING);
}
}
@@ -4109,9 +4200,9 @@ public final ConstantContext constant() throws RecognitionException {
default:
throw new NoViableAltException(this);
}
- setState(595);
+ setState(614);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,84,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,89,_ctx);
} while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER );
}
break;
@@ -4119,7 +4210,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new ParamLiteralContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(597);
+ setState(616);
match(PARAM);
}
break;
@@ -4171,9 +4262,9 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(600);
+ setState(619);
_la = _input.LA(1);
- if ( !(((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & ((1L << (EQ - 72)) | (1L << (NEQ - 72)) | (1L << (LT - 72)) | (1L << (LTE - 72)) | (1L << (GT - 72)) | (1L << (GTE - 72)))) != 0)) ) {
+ if ( !(((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (EQ - 73)) | (1L << (NEQ - 73)) | (1L << (LT - 73)) | (1L << (LTE - 73)) | (1L << (GT - 73)) | (1L << (GTE - 73)))) != 0)) ) {
_errHandler.recoverInline(this);
} else {
consume();
@@ -4220,7 +4311,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(602);
+ setState(621);
_la = _input.LA(1);
if ( !(_la==FALSE || _la==TRUE) ) {
_errHandler.recoverInline(this);
@@ -4278,7 +4369,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new PrimitiveDataTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(604);
+ setState(623);
identifier();
}
}
@@ -4330,25 +4421,25 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(611);
+ setState(630);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,86,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,91,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(606);
+ setState(625);
identifier();
- setState(607);
+ setState(626);
match(DOT);
}
}
}
- setState(613);
+ setState(632);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,86,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,91,_ctx);
}
- setState(614);
+ setState(633);
identifier();
}
}
@@ -4393,13 +4484,13 @@ public final IdentifierContext identifier() throws RecognitionException {
IdentifierContext _localctx = new IdentifierContext(_ctx, getState());
enterRule(_localctx, 64, RULE_identifier);
try {
- setState(618);
+ setState(637);
switch (_input.LA(1)) {
case QUOTED_IDENTIFIER:
case BACKQUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(616);
+ setState(635);
quoteIdentifier();
}
break;
@@ -4432,7 +4523,7 @@ public final IdentifierContext identifier() throws RecognitionException {
case DIGIT_IDENTIFIER:
enterOuterAlt(_localctx, 2);
{
- setState(617);
+ setState(636);
unquoteIdentifier();
}
break;
@@ -4485,43 +4576,43 @@ public final TableIdentifierContext tableIdentifier() throws RecognitionExceptio
enterRule(_localctx, 66, RULE_tableIdentifier);
int _la;
try {
- setState(632);
+ setState(651);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,90,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,95,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(623);
+ setState(642);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS) | (1L << TABLES))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TABLES - 64)) | (1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)) | (1L << (IDENTIFIER - 64)) | (1L << (DIGIT_IDENTIFIER - 64)) | (1L << (QUOTED_IDENTIFIER - 64)) | (1L << (BACKQUOTED_IDENTIFIER - 64)))) != 0)) {
{
- setState(620);
+ setState(639);
((TableIdentifierContext)_localctx).catalog = identifier();
- setState(621);
+ setState(640);
match(T__3);
}
}
- setState(625);
+ setState(644);
match(TABLE_IDENTIFIER);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(629);
+ setState(648);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,89,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,94,_ctx) ) {
case 1:
{
- setState(626);
+ setState(645);
((TableIdentifierContext)_localctx).catalog = identifier();
- setState(627);
+ setState(646);
match(T__3);
}
break;
}
- setState(631);
+ setState(650);
((TableIdentifierContext)_localctx).name = identifier();
}
break;
@@ -4588,13 +4679,13 @@ public final QuoteIdentifierContext quoteIdentifier() throws RecognitionExceptio
QuoteIdentifierContext _localctx = new QuoteIdentifierContext(_ctx, getState());
enterRule(_localctx, 68, RULE_quoteIdentifier);
try {
- setState(636);
+ setState(655);
switch (_input.LA(1)) {
case QUOTED_IDENTIFIER:
_localctx = new QuotedIdentifierContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(634);
+ setState(653);
match(QUOTED_IDENTIFIER);
}
break;
@@ -4602,7 +4693,7 @@ public final QuoteIdentifierContext quoteIdentifier() throws RecognitionExceptio
_localctx = new BackQuotedIdentifierContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(635);
+ setState(654);
match(BACKQUOTED_IDENTIFIER);
}
break;
@@ -4674,13 +4765,13 @@ public final UnquoteIdentifierContext unquoteIdentifier() throws RecognitionExce
UnquoteIdentifierContext _localctx = new UnquoteIdentifierContext(_ctx, getState());
enterRule(_localctx, 70, RULE_unquoteIdentifier);
try {
- setState(641);
+ setState(660);
switch (_input.LA(1)) {
case IDENTIFIER:
_localctx = new UnquotedIdentifierContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(638);
+ setState(657);
match(IDENTIFIER);
}
break;
@@ -4712,7 +4803,7 @@ public final UnquoteIdentifierContext unquoteIdentifier() throws RecognitionExce
_localctx = new UnquotedIdentifierContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(639);
+ setState(658);
nonReserved();
}
break;
@@ -4720,7 +4811,7 @@ public final UnquoteIdentifierContext unquoteIdentifier() throws RecognitionExce
_localctx = new DigitIdentifierContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(640);
+ setState(659);
match(DIGIT_IDENTIFIER);
}
break;
@@ -4789,13 +4880,13 @@ public final NumberContext number() throws RecognitionException {
NumberContext _localctx = new NumberContext(_ctx, getState());
enterRule(_localctx, 72, RULE_number);
try {
- setState(645);
+ setState(664);
switch (_input.LA(1)) {
case DECIMAL_VALUE:
_localctx = new DecimalLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(643);
+ setState(662);
match(DECIMAL_VALUE);
}
break;
@@ -4803,7 +4894,7 @@ public final NumberContext number() throws RecognitionException {
_localctx = new IntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(644);
+ setState(663);
match(INTEGER_VALUE);
}
break;
@@ -4851,7 +4942,7 @@ public final StringContext string() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(647);
+ setState(666);
_la = _input.LA(1);
if ( !(_la==PARAM || _la==STRING) ) {
_errHandler.recoverInline(this);
@@ -4923,9 +5014,9 @@ public final NonReservedContext nonReserved() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(649);
+ setState(668);
_la = _input.LA(1);
- if ( !(((((_la - 6)) & ~0x3f) == 0 && ((1L << (_la - 6)) & ((1L << (ANALYZE - 6)) | (1L << (ANALYZED - 6)) | (1L << (CATALOGS - 6)) | (1L << (COLUMNS - 6)) | (1L << (DEBUG - 6)) | (1L << (EXECUTABLE - 6)) | (1L << (EXPLAIN - 6)) | (1L << (FORMAT - 6)) | (1L << (FUNCTIONS - 6)) | (1L << (GRAPHVIZ - 6)) | (1L << (MAPPED - 6)) | (1L << (OPTIMIZED - 6)) | (1L << (PARSED - 6)) | (1L << (PHYSICAL - 6)) | (1L << (PLAN - 6)) | (1L << (RLIKE - 6)) | (1L << (QUERY - 6)) | (1L << (SCHEMAS - 6)) | (1L << (SHOW - 6)) | (1L << (SYS - 6)) | (1L << (TABLES - 6)) | (1L << (TEXT - 6)) | (1L << (TYPE - 6)) | (1L << (TYPES - 6)) | (1L << (VERIFY - 6)))) != 0)) ) {
+ if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ANALYZE) | (1L << ANALYZED) | (1L << CATALOGS) | (1L << COLUMNS) | (1L << DEBUG) | (1L << EXECUTABLE) | (1L << EXPLAIN) | (1L << FORMAT) | (1L << FUNCTIONS) | (1L << GRAPHVIZ) | (1L << MAPPED) | (1L << OPTIMIZED) | (1L << PARSED) | (1L << PHYSICAL) | (1L << PLAN) | (1L << RLIKE) | (1L << QUERY) | (1L << SCHEMAS) | (1L << SHOW) | (1L << SYS))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (TABLES - 64)) | (1L << (TEXT - 64)) | (1L << (TYPE - 64)) | (1L << (TYPES - 64)) | (1L << (VERIFY - 64)))) != 0)) ) {
_errHandler.recoverInline(this);
} else {
consume();
@@ -4974,7 +5065,7 @@ private boolean valueExpression_sempred(ValueExpressionContext _localctx, int pr
}
public static final String _serializedATN =
- "\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\3d\u028e\4\2\t\2\4"+
+ "\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\3e\u02a1\4\2\t\2\4"+
"\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t"+
"\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
@@ -4987,253 +5078,263 @@ private boolean valueExpression_sempred(ValueExpressionContext _localctx, int pr
"\5\4\u0096\n\4\3\4\5\4\u0099\n\4\3\4\5\4\u009c\n\4\3\4\5\4\u009f\n\4\3"+
"\4\3\4\3\4\3\4\7\4\u00a5\n\4\f\4\16\4\u00a8\13\4\5\4\u00aa\n\4\3\4\3\4"+
"\3\4\3\4\5\4\u00b0\n\4\3\4\3\4\5\4\u00b4\n\4\3\4\5\4\u00b7\n\4\3\4\5\4"+
- "\u00ba\n\4\3\4\5\4\u00bd\n\4\3\4\3\4\3\4\3\4\3\4\5\4\u00c4\n\4\3\5\3\5"+
- "\3\5\3\5\7\5\u00ca\n\5\f\5\16\5\u00cd\13\5\5\5\u00cf\n\5\3\5\3\5\3\6\3"+
- "\6\3\6\3\6\3\6\3\6\7\6\u00d9\n\6\f\6\16\6\u00dc\13\6\5\6\u00de\n\6\3\6"+
- "\3\6\5\6\u00e2\n\6\3\7\3\7\3\7\3\7\3\7\5\7\u00e9\n\7\3\b\3\b\5\b\u00ed"+
- "\n\b\3\t\3\t\5\t\u00f1\n\t\3\t\3\t\3\t\7\t\u00f6\n\t\f\t\16\t\u00f9\13"+
- "\t\3\t\5\t\u00fc\n\t\3\t\3\t\5\t\u0100\n\t\3\t\3\t\3\t\5\t\u0105\n\t\3"+
- "\t\3\t\5\t\u0109\n\t\3\n\3\n\3\n\3\n\7\n\u010f\n\n\f\n\16\n\u0112\13\n"+
- "\3\13\5\13\u0115\n\13\3\13\3\13\3\13\7\13\u011a\n\13\f\13\16\13\u011d"+
- "\13\13\3\f\3\f\3\r\3\r\3\r\3\r\7\r\u0125\n\r\f\r\16\r\u0128\13\r\5\r\u012a"+
- "\n\r\3\r\3\r\5\r\u012e\n\r\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\20"+
- "\3\20\5\20\u013a\n\20\3\20\5\20\u013d\n\20\3\21\3\21\7\21\u0141\n\21\f"+
- "\21\16\21\u0144\13\21\3\22\3\22\3\22\3\22\5\22\u014a\n\22\3\22\3\22\3"+
- "\22\3\22\3\22\5\22\u0151\n\22\3\23\5\23\u0154\n\23\3\23\3\23\5\23\u0158"+
- "\n\23\3\23\3\23\5\23\u015c\n\23\3\23\3\23\5\23\u0160\n\23\5\23\u0162\n"+
- "\23\3\24\3\24\3\24\3\24\3\24\3\24\3\24\7\24\u016b\n\24\f\24\16\24\u016e"+
- "\13\24\3\24\3\24\5\24\u0172\n\24\3\25\3\25\5\25\u0176\n\25\3\25\5\25\u0179"+
- "\n\25\3\25\3\25\3\25\3\25\5\25\u017f\n\25\3\25\5\25\u0182\n\25\3\25\3"+
- "\25\3\25\3\25\5\25\u0188\n\25\3\25\5\25\u018b\n\25\5\25\u018d\n\25\3\26"+
- "\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27"+
- "\7\27\u019e\n\27\f\27\16\27\u01a1\13\27\3\27\3\27\3\27\3\27\3\27\3\27"+
- "\3\27\3\27\3\27\7\27\u01ac\n\27\f\27\16\27\u01af\13\27\3\27\3\27\3\27"+
- "\3\27\3\27\3\27\3\27\3\27\3\27\7\27\u01ba\n\27\f\27\16\27\u01bd\13\27"+
- "\3\27\3\27\3\27\5\27\u01c2\n\27\3\27\3\27\3\27\3\27\3\27\3\27\7\27\u01ca"+
- "\n\27\f\27\16\27\u01cd\13\27\3\30\3\30\5\30\u01d1\n\30\3\31\5\31\u01d4"+
- "\n\31\3\31\3\31\3\31\3\31\3\31\3\31\5\31\u01dc\n\31\3\31\3\31\3\31\3\31"+
- "\3\31\7\31\u01e3\n\31\f\31\16\31\u01e6\13\31\3\31\3\31\3\31\5\31\u01eb"+
- "\n\31\3\31\3\31\3\31\3\31\3\31\3\31\5\31\u01f3\n\31\3\31\3\31\3\31\5\31"+
- "\u01f8\n\31\3\31\3\31\3\31\3\31\5\31\u01fe\n\31\3\31\5\31\u0201\n\31\3"+
- "\32\3\32\3\32\5\32\u0206\n\32\3\33\3\33\3\33\3\33\5\33\u020c\n\33\3\33"+
- "\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\7\33\u0218\n\33\f\33\16"+
- "\33\u021b\13\33\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+
- "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\5\34\u0230\n\34\3\34\3\34\3\34"+
- "\3\34\5\34\u0236\n\34\3\34\3\34\3\34\7\34\u023b\n\34\f\34\16\34\u023e"+
- "\13\34\5\34\u0240\n\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+
- "\34\3\34\3\34\5\34\u024e\n\34\3\35\3\35\3\35\3\35\6\35\u0254\n\35\r\35"+
- "\16\35\u0255\3\35\5\35\u0259\n\35\3\36\3\36\3\37\3\37\3 \3 \3!\3!\3!\7"+
- "!\u0264\n!\f!\16!\u0267\13!\3!\3!\3\"\3\"\5\"\u026d\n\"\3#\3#\3#\5#\u0272"+
- "\n#\3#\3#\3#\3#\5#\u0278\n#\3#\5#\u027b\n#\3$\3$\5$\u027f\n$\3%\3%\3%"+
- "\5%\u0284\n%\3&\3&\5&\u0288\n&\3\'\3\'\3(\3(\3(\2\4,\64)\2\4\6\b\n\f\16"+
- "\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLN\2\20\b\2\7\7"+
- "\t\t\31\31,,\62\62\66\66\4\2\"\"BB\4\2\t\t\62\62\4\2\37\37%%\3\2\25\26"+
- "\4\2\7\7YY\4\2\r\r\25\25\4\2\7\7\27\27\3\2PQ\3\2RT\3\2JO\4\2\35\35CC\3"+
- "\2WX\20\2\b\t\22\24\31\31\33\33\36\36!\",,\62\62\668:<>?ABDEGG\u02e8\2"+
- "P\3\2\2\2\4S\3\2\2\2\6\u00c3\3\2\2\2\b\u00ce\3\2\2\2\n\u00d2\3\2\2\2\f"+
- "\u00e8\3\2\2\2\16\u00ea\3\2\2\2\20\u00ee\3\2\2\2\22\u010a\3\2\2\2\24\u0114"+
- "\3\2\2\2\26\u011e\3\2\2\2\30\u012d\3\2\2\2\32\u012f\3\2\2\2\34\u0135\3"+
- "\2\2\2\36\u0137\3\2\2\2 \u013e\3\2\2\2\"\u0150\3\2\2\2$\u0161\3\2\2\2"+
- "&\u0171\3\2\2\2(\u018c\3\2\2\2*\u018e\3\2\2\2,\u01c1\3\2\2\2.\u01ce\3"+
- "\2\2\2\60\u0200\3\2\2\2\62\u0202\3\2\2\2\64\u020b\3\2\2\2\66\u024d\3\2"+
- "\2\28\u0258\3\2\2\2:\u025a\3\2\2\2<\u025c\3\2\2\2>\u025e\3\2\2\2@\u0265"+
- "\3\2\2\2B\u026c\3\2\2\2D\u027a\3\2\2\2F\u027e\3\2\2\2H\u0283\3\2\2\2J"+
- "\u0287\3\2\2\2L\u0289\3\2\2\2N\u028b\3\2\2\2PQ\5\6\4\2QR\7\2\2\3R\3\3"+
- "\2\2\2ST\5*\26\2TU\7\2\2\3U\5\3\2\2\2V\u00c4\5\b\5\2We\7\33\2\2Xa\7\3"+
- "\2\2YZ\78\2\2Z`\t\2\2\2[\\\7\36\2\2\\`\t\3\2\2]^\7G\2\2^`\5<\37\2_Y\3"+
- "\2\2\2_[\3\2\2\2_]\3\2\2\2`c\3\2\2\2a_\3\2\2\2ab\3\2\2\2bd\3\2\2\2ca\3"+
- "\2\2\2df\7\4\2\2eX\3\2\2\2ef\3\2\2\2fg\3\2\2\2g\u00c4\5\6\4\2ht\7\24\2"+
- "\2ip\7\3\2\2jk\78\2\2ko\t\4\2\2lm\7\36\2\2mo\t\3\2\2nj\3\2\2\2nl\3\2\2"+
- "\2or\3\2\2\2pn\3\2\2\2pq\3\2\2\2qs\3\2\2\2rp\3\2\2\2su\7\4\2\2ti\3\2\2"+
- "\2tu\3\2\2\2uv\3\2\2\2v\u00c4\5\6\4\2wx\7>\2\2x}\7A\2\2y{\7*\2\2zy\3\2"+
- "\2\2z{\3\2\2\2{|\3\2\2\2|~\5\62\32\2}z\3\2\2\2}~\3\2\2\2~\u00c4\3\2\2"+
- "\2\177\u0080\7>\2\2\u0080\u0081\7\23\2\2\u0081\u0082\t\5\2\2\u0082\u00c4"+
- "\5D#\2\u0083\u0084\t\6\2\2\u0084\u00c4\5D#\2\u0085\u0086\7>\2\2\u0086"+
- "\u008b\7!\2\2\u0087\u0089\7*\2\2\u0088\u0087\3\2\2\2\u0088\u0089\3\2\2"+
- "\2\u0089\u008a\3\2\2\2\u008a\u008c\5\62\32\2\u008b\u0088\3\2\2\2\u008b"+
- "\u008c\3\2\2\2\u008c\u00c4\3\2\2\2\u008d\u008e\7>\2\2\u008e\u00c4\7<\2"+
- "\2\u008f\u0090\7?\2\2\u0090\u00c4\7\22\2\2\u0091\u0092\7?\2\2\u0092\u0098"+
- "\7A\2\2\u0093\u0095\7\21\2\2\u0094\u0096\7*\2\2\u0095\u0094\3\2\2\2\u0095"+
- "\u0096\3\2\2\2\u0096\u0097\3\2\2\2\u0097\u0099\5\62\32\2\u0098\u0093\3"+
- "\2\2\2\u0098\u0099\3\2\2\2\u0099\u009e\3\2\2\2\u009a\u009c\7*\2\2\u009b"+
- "\u009a\3\2\2\2\u009b\u009c\3\2\2\2\u009c\u009d\3\2\2\2\u009d\u009f\5\62"+
- "\32\2\u009e\u009b\3\2\2\2\u009e\u009f\3\2\2\2\u009f\u00a9\3\2\2\2\u00a0"+
- "\u00a1\7D\2\2\u00a1\u00a6\5L\'\2\u00a2\u00a3\7\5\2\2\u00a3\u00a5\5L\'"+
- "\2\u00a4\u00a2\3\2\2\2\u00a5\u00a8\3\2\2\2\u00a6\u00a4\3\2\2\2\u00a6\u00a7"+
- "\3\2\2\2\u00a7\u00aa\3\2\2\2\u00a8\u00a6\3\2\2\2\u00a9\u00a0\3\2\2\2\u00a9"+
- "\u00aa\3\2\2\2\u00aa\u00c4\3\2\2\2\u00ab\u00ac\7?\2\2\u00ac\u00af\7\23"+
- "\2\2\u00ad\u00ae\7\21\2\2\u00ae\u00b0\5L\'\2\u00af\u00ad\3\2\2\2\u00af"+
- "\u00b0\3\2\2\2\u00b0\u00b6\3\2\2\2\u00b1\u00b3\7@\2\2\u00b2\u00b4\7*\2"+
- "\2\u00b3\u00b2\3\2\2\2\u00b3\u00b4\3\2\2\2\u00b4\u00b5\3\2\2\2\u00b5\u00b7"+
- "\5\62\32\2\u00b6\u00b1\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\u00bc\3\2\2\2"+
- "\u00b8\u00ba\7*\2\2\u00b9\u00b8\3\2\2\2\u00b9\u00ba\3\2\2\2\u00ba\u00bb"+
- "\3\2\2\2\u00bb\u00bd\5\62\32\2\u00bc\u00b9\3\2\2\2\u00bc\u00bd\3\2\2\2"+
- "\u00bd\u00c4\3\2\2\2\u00be\u00bf\7?\2\2\u00bf\u00c4\7E\2\2\u00c0\u00c1"+
- "\7?\2\2\u00c1\u00c2\7@\2\2\u00c2\u00c4\7E\2\2\u00c3V\3\2\2\2\u00c3W\3"+
- "\2\2\2\u00c3h\3\2\2\2\u00c3w\3\2\2\2\u00c3\177\3\2\2\2\u00c3\u0083\3\2"+
- "\2\2\u00c3\u0085\3\2\2\2\u00c3\u008d\3\2\2\2\u00c3\u008f\3\2\2\2\u00c3"+
- "\u0091\3\2\2\2\u00c3\u00ab\3\2\2\2\u00c3\u00be\3\2\2\2\u00c3\u00c0\3\2"+
- "\2\2\u00c4\7\3\2\2\2\u00c5\u00c6\7I\2\2\u00c6\u00cb\5\32\16\2\u00c7\u00c8"+
- "\7\5\2\2\u00c8\u00ca\5\32\16\2\u00c9\u00c7\3\2\2\2\u00ca\u00cd\3\2\2\2"+
- "\u00cb\u00c9\3\2\2\2\u00cb\u00cc\3\2\2\2\u00cc\u00cf\3\2\2\2\u00cd\u00cb"+
- "\3\2\2\2\u00ce\u00c5\3\2\2\2\u00ce\u00cf\3\2\2\2\u00cf\u00d0\3\2\2\2\u00d0"+
- "\u00d1\5\n\6\2\u00d1\t\3\2\2\2\u00d2\u00dd\5\f\7\2\u00d3\u00d4\7\64\2"+
- "\2\u00d4\u00d5\7\17\2\2\u00d5\u00da\5\16\b\2\u00d6\u00d7\7\5\2\2\u00d7"+
- "\u00d9\5\16\b\2\u00d8\u00d6\3\2\2\2\u00d9\u00dc\3\2\2\2\u00da\u00d8\3"+
- "\2\2\2\u00da\u00db\3\2\2\2\u00db\u00de\3\2\2\2\u00dc\u00da\3\2\2\2\u00dd"+
- "\u00d3\3\2\2\2\u00dd\u00de\3\2\2\2\u00de\u00e1\3\2\2\2\u00df\u00e0\7+"+
- "\2\2\u00e0\u00e2\t\7\2\2\u00e1\u00df\3\2\2\2\u00e1\u00e2\3\2\2\2\u00e2"+
- "\13\3\2\2\2\u00e3\u00e9\5\20\t\2\u00e4\u00e5\7\3\2\2\u00e5\u00e6\5\n\6"+
- "\2\u00e6\u00e7\7\4\2\2\u00e7\u00e9\3\2\2\2\u00e8\u00e3\3\2\2\2\u00e8\u00e4"+
- "\3\2\2\2\u00e9\r\3\2\2\2\u00ea\u00ec\5*\26\2\u00eb\u00ed\t\b\2\2\u00ec"+
- "\u00eb\3\2\2\2\u00ec\u00ed\3\2\2\2\u00ed\17\3\2\2\2\u00ee\u00f0\7=\2\2"+
- "\u00ef\u00f1\5\34\17\2\u00f0\u00ef\3\2\2\2\u00f0\u00f1\3\2\2\2\u00f1\u00f2"+
- "\3\2\2\2\u00f2\u00f7\5\36\20\2\u00f3\u00f4\7\5\2\2\u00f4\u00f6\5\36\20"+
- "\2\u00f5\u00f3\3\2\2\2\u00f6\u00f9\3\2\2\2\u00f7\u00f5\3\2\2\2\u00f7\u00f8"+
- "\3\2\2\2\u00f8\u00fb\3\2\2\2\u00f9\u00f7\3\2\2\2\u00fa\u00fc\5\22\n\2"+
- "\u00fb\u00fa\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc\u00ff\3\2\2\2\u00fd\u00fe"+
- "\7H\2\2\u00fe\u0100\5,\27\2\u00ff\u00fd\3\2\2\2\u00ff\u0100\3\2\2\2\u0100"+
- "\u0104\3\2\2\2\u0101\u0102\7#\2\2\u0102\u0103\7\17\2\2\u0103\u0105\5\24"+
- "\13\2\u0104\u0101\3\2\2\2\u0104\u0105\3\2\2\2\u0105\u0108\3\2\2\2\u0106"+
- "\u0107\7$\2\2\u0107\u0109\5,\27\2\u0108\u0106\3\2\2\2\u0108\u0109\3\2"+
- "\2\2\u0109\21\3\2\2\2\u010a\u010b\7\37\2\2\u010b\u0110\5 \21\2\u010c\u010d"+
- "\7\5\2\2\u010d\u010f\5 \21\2\u010e\u010c\3\2\2\2\u010f\u0112\3\2\2\2\u0110"+
- "\u010e\3\2\2\2\u0110\u0111\3\2\2\2\u0111\23\3\2\2\2\u0112\u0110\3\2\2"+
- "\2\u0113\u0115\5\34\17\2\u0114\u0113\3\2\2\2\u0114\u0115\3\2\2\2\u0115"+
- "\u0116\3\2\2\2\u0116\u011b\5\26\f\2\u0117\u0118\7\5\2\2\u0118\u011a\5"+
- "\26\f\2\u0119\u0117\3\2\2\2\u011a\u011d\3\2\2\2\u011b\u0119\3\2\2\2\u011b"+
- "\u011c\3\2\2\2\u011c\25\3\2\2\2\u011d\u011b\3\2\2\2\u011e\u011f\5\30\r"+
- "\2\u011f\27\3\2\2\2\u0120\u0129\7\3\2\2\u0121\u0126\5*\26\2\u0122\u0123"+
- "\7\5\2\2\u0123\u0125\5*\26\2\u0124\u0122\3\2\2\2\u0125\u0128\3\2\2\2\u0126"+
- "\u0124\3\2\2\2\u0126\u0127\3\2\2\2\u0127\u012a\3\2\2\2\u0128\u0126\3\2"+
- "\2\2\u0129\u0121\3\2\2\2\u0129\u012a\3\2\2\2\u012a\u012b\3\2\2\2\u012b"+
- "\u012e\7\4\2\2\u012c\u012e\5*\26\2\u012d\u0120\3\2\2\2\u012d\u012c\3\2"+
- "\2\2\u012e\31\3\2\2\2\u012f\u0130\5B\"\2\u0130\u0131\7\f\2\2\u0131\u0132"+
- "\7\3\2\2\u0132\u0133\5\n\6\2\u0133\u0134\7\4\2\2\u0134\33\3\2\2\2\u0135"+
- "\u0136\t\t\2\2\u0136\35\3\2\2\2\u0137\u013c\5*\26\2\u0138\u013a\7\f\2"+
- "\2\u0139\u0138\3\2\2\2\u0139\u013a\3\2\2\2\u013a\u013b\3\2\2\2\u013b\u013d"+
- "\5B\"\2\u013c\u0139\3\2\2\2\u013c\u013d\3\2\2\2\u013d\37\3\2\2\2\u013e"+
- "\u0142\5(\25\2\u013f\u0141\5\"\22\2\u0140\u013f\3\2\2\2\u0141\u0144\3"+
- "\2\2\2\u0142\u0140\3\2\2\2\u0142\u0143\3\2\2\2\u0143!\3\2\2\2\u0144\u0142"+
- "\3\2\2\2\u0145\u0146\5$\23\2\u0146\u0147\7(\2\2\u0147\u0149\5(\25\2\u0148"+
- "\u014a\5&\24\2\u0149\u0148\3\2\2\2\u0149\u014a\3\2\2\2\u014a\u0151\3\2"+
- "\2\2\u014b\u014c\7.\2\2\u014c\u014d\5$\23\2\u014d\u014e\7(\2\2\u014e\u014f"+
- "\5(\25\2\u014f\u0151\3\2\2\2\u0150\u0145\3\2\2\2\u0150\u014b\3\2\2\2\u0151"+
- "#\3\2\2\2\u0152\u0154\7&\2\2\u0153\u0152\3\2\2\2\u0153\u0154\3\2\2\2\u0154"+
- "\u0162\3\2\2\2\u0155\u0157\7)\2\2\u0156\u0158\7\65\2\2\u0157\u0156\3\2"+
- "\2\2\u0157\u0158\3\2\2\2\u0158\u0162\3\2\2\2\u0159\u015b\79\2\2\u015a"+
- "\u015c\7\65\2\2\u015b\u015a\3\2\2\2\u015b\u015c\3\2\2\2\u015c\u0162\3"+
- "\2\2\2\u015d\u015f\7 \2\2\u015e\u0160\7\65\2\2\u015f\u015e\3\2\2\2\u015f"+
- "\u0160\3\2\2\2\u0160\u0162\3\2\2\2\u0161\u0153\3\2\2\2\u0161\u0155\3\2"+
- "\2\2\u0161\u0159\3\2\2\2\u0161\u015d\3\2\2\2\u0162%\3\2\2\2\u0163\u0164"+
- "\7\61\2\2\u0164\u0172\5,\27\2\u0165\u0166\7F\2\2\u0166\u0167\7\3\2\2\u0167"+
- "\u016c\5B\"\2\u0168\u0169\7\5\2\2\u0169\u016b\5B\"\2\u016a\u0168\3\2\2"+
- "\2\u016b\u016e\3\2\2\2\u016c\u016a\3\2\2\2\u016c\u016d\3\2\2\2\u016d\u016f"+
- "\3\2\2\2\u016e\u016c\3\2\2\2\u016f\u0170\7\4\2\2\u0170\u0172\3\2\2\2\u0171"+
- "\u0163\3\2\2\2\u0171\u0165\3\2\2\2\u0172\'\3\2\2\2\u0173\u0178\5D#\2\u0174"+
- "\u0176\7\f\2\2\u0175\u0174\3\2\2\2\u0175\u0176\3\2\2\2\u0176\u0177\3\2"+
- "\2\2\u0177\u0179\5@!\2\u0178\u0175\3\2\2\2\u0178\u0179\3\2\2\2\u0179\u018d"+
- "\3\2\2\2\u017a\u017b\7\3\2\2\u017b\u017c\5\n\6\2\u017c\u0181\7\4\2\2\u017d"+
- "\u017f\7\f\2\2\u017e\u017d\3\2\2\2\u017e\u017f\3\2\2\2\u017f\u0180\3\2"+
- "\2\2\u0180\u0182\5@!\2\u0181\u017e\3\2\2\2\u0181\u0182\3\2\2\2\u0182\u018d"+
- "\3\2\2\2\u0183\u0184\7\3\2\2\u0184\u0185\5 \21\2\u0185\u018a\7\4\2\2\u0186"+
- "\u0188\7\f\2\2\u0187\u0186\3\2\2\2\u0187\u0188\3\2\2\2\u0188\u0189\3\2"+
- "\2\2\u0189\u018b\5@!\2\u018a\u0187\3\2\2\2\u018a\u018b\3\2\2\2\u018b\u018d"+
- "\3\2\2\2\u018c\u0173\3\2\2\2\u018c\u017a\3\2\2\2\u018c\u0183\3\2\2\2\u018d"+
- ")\3\2\2\2\u018e\u018f\5,\27\2\u018f+\3\2\2\2\u0190\u0191\b\27\1\2\u0191"+
- "\u0192\7/\2\2\u0192\u01c2\5,\27\n\u0193\u0194\7\32\2\2\u0194\u0195\7\3"+
- "\2\2\u0195\u0196\5\b\5\2\u0196\u0197\7\4\2\2\u0197\u01c2\3\2\2\2\u0198"+
- "\u0199\7;\2\2\u0199\u019a\7\3\2\2\u019a\u019f\5L\'\2\u019b\u019c\7\5\2"+
- "\2\u019c\u019e\5L\'\2\u019d\u019b\3\2\2\2\u019e\u01a1\3\2\2\2\u019f\u019d"+
- "\3\2\2\2\u019f\u01a0\3\2\2\2\u01a0\u01a2\3\2\2\2\u01a1\u019f\3\2\2\2\u01a2"+
- "\u01a3\7\4\2\2\u01a3\u01c2\3\2\2\2\u01a4\u01a5\7-\2\2\u01a5\u01a6\7\3"+
- "\2\2\u01a6\u01a7\5@!\2\u01a7\u01a8\7\5\2\2\u01a8\u01ad\5L\'\2\u01a9\u01aa"+
- "\7\5\2\2\u01aa\u01ac\5L\'\2\u01ab\u01a9\3\2\2\2\u01ac\u01af\3\2\2\2\u01ad"+
- "\u01ab\3\2\2\2\u01ad\u01ae\3\2\2\2\u01ae\u01b0\3\2\2\2\u01af\u01ad\3\2"+
- "\2\2\u01b0\u01b1\7\4\2\2\u01b1\u01c2\3\2\2\2\u01b2\u01b3\7-\2\2\u01b3"+
- "\u01b4\7\3\2\2\u01b4\u01b5\5L\'\2\u01b5\u01b6\7\5\2\2\u01b6\u01bb\5L\'"+
- "\2\u01b7\u01b8\7\5\2\2\u01b8\u01ba\5L\'\2\u01b9\u01b7\3\2\2\2\u01ba\u01bd"+
- "\3\2\2\2\u01bb\u01b9\3\2\2\2\u01bb\u01bc\3\2\2\2\u01bc\u01be\3\2\2\2\u01bd"+
- "\u01bb\3\2\2\2\u01be\u01bf\7\4\2\2\u01bf\u01c2\3\2\2\2\u01c0\u01c2\5."+
- "\30\2\u01c1\u0190\3\2\2\2\u01c1\u0193\3\2\2\2\u01c1\u0198\3\2\2\2\u01c1"+
- "\u01a4\3\2\2\2\u01c1\u01b2\3\2\2\2\u01c1\u01c0\3\2\2\2\u01c2\u01cb\3\2"+
- "\2\2\u01c3\u01c4\f\4\2\2\u01c4\u01c5\7\n\2\2\u01c5\u01ca\5,\27\5\u01c6"+
- "\u01c7\f\3\2\2\u01c7\u01c8\7\63\2\2\u01c8\u01ca\5,\27\4\u01c9\u01c3\3"+
- "\2\2\2\u01c9\u01c6\3\2\2\2\u01ca\u01cd\3\2\2\2\u01cb\u01c9\3\2\2\2\u01cb"+
- "\u01cc\3\2\2\2\u01cc-\3\2\2\2\u01cd\u01cb\3\2\2\2\u01ce\u01d0\5\64\33"+
- "\2\u01cf\u01d1\5\60\31\2\u01d0\u01cf\3\2\2\2\u01d0\u01d1\3\2\2\2\u01d1"+
- "/\3\2\2\2\u01d2\u01d4\7/\2\2\u01d3\u01d2\3\2\2\2\u01d3\u01d4\3\2\2\2\u01d4"+
- "\u01d5\3\2\2\2\u01d5\u01d6\7\16\2\2\u01d6\u01d7\5\64\33\2\u01d7\u01d8"+
- "\7\n\2\2\u01d8\u01d9\5\64\33\2\u01d9\u0201\3\2\2\2\u01da\u01dc\7/\2\2"+
- "\u01db\u01da\3\2\2\2\u01db\u01dc\3\2\2\2\u01dc\u01dd\3\2\2\2\u01dd\u01de"+
- "\7%\2\2\u01de\u01df\7\3\2\2\u01df\u01e4\5*\26\2\u01e0\u01e1\7\5\2\2\u01e1"+
- "\u01e3\5*\26\2\u01e2\u01e0\3\2\2\2\u01e3\u01e6\3\2\2\2\u01e4\u01e2\3\2"+
- "\2\2\u01e4\u01e5\3\2\2\2\u01e5\u01e7\3\2\2\2\u01e6\u01e4\3\2\2\2\u01e7"+
- "\u01e8\7\4\2\2\u01e8\u0201\3\2\2\2\u01e9\u01eb\7/\2\2\u01ea\u01e9\3\2"+
- "\2\2\u01ea\u01eb\3\2\2\2\u01eb\u01ec\3\2\2\2\u01ec\u01ed\7%\2\2\u01ed"+
- "\u01ee\7\3\2\2\u01ee\u01ef\5\b\5\2\u01ef\u01f0\7\4\2\2\u01f0\u0201\3\2"+
- "\2\2\u01f1\u01f3\7/\2\2\u01f2\u01f1\3\2\2\2\u01f2\u01f3\3\2\2\2\u01f3"+
- "\u01f4\3\2\2\2\u01f4\u01f5\7*\2\2\u01f5\u0201\5\62\32\2\u01f6\u01f8\7"+
- "/\2\2\u01f7\u01f6\3\2\2\2\u01f7\u01f8\3\2\2\2\u01f8\u01f9\3\2\2\2\u01f9"+
- "\u01fa\7:\2\2\u01fa\u0201\5L\'\2\u01fb\u01fd\7\'\2\2\u01fc\u01fe\7/\2"+
- "\2\u01fd\u01fc\3\2\2\2\u01fd\u01fe\3\2\2\2\u01fe\u01ff\3\2\2\2\u01ff\u0201"+
- "\7\60\2\2\u0200\u01d3\3\2\2\2\u0200\u01db\3\2\2\2\u0200\u01ea\3\2\2\2"+
- "\u0200\u01f2\3\2\2\2\u0200\u01f7\3\2\2\2\u0200\u01fb\3\2\2\2\u0201\61"+
- "\3\2\2\2\u0202\u0205\5L\'\2\u0203\u0204\7\30\2\2\u0204\u0206\5L\'\2\u0205"+
- "\u0203\3\2\2\2\u0205\u0206\3\2\2\2\u0206\63\3\2\2\2\u0207\u0208\b\33\1"+
- "\2\u0208\u020c\5\66\34\2\u0209\u020a\t\n\2\2\u020a\u020c\5\64\33\6\u020b"+
- "\u0207\3\2\2\2\u020b\u0209\3\2\2\2\u020c\u0219\3\2\2\2\u020d\u020e\f\5"+
- "\2\2\u020e\u020f\t\13\2\2\u020f\u0218\5\64\33\6\u0210\u0211\f\4\2\2\u0211"+
- "\u0212\t\n\2\2\u0212\u0218\5\64\33\5\u0213\u0214\f\3\2\2\u0214\u0215\5"+
- ":\36\2\u0215\u0216\5\64\33\4\u0216\u0218\3\2\2\2\u0217\u020d\3\2\2\2\u0217"+
- "\u0210\3\2\2\2\u0217\u0213\3\2\2\2\u0218\u021b\3\2\2\2\u0219\u0217\3\2"+
- "\2\2\u0219\u021a\3\2\2\2\u021a\65\3\2\2\2\u021b\u0219\3\2\2\2\u021c\u021d"+
- "\7\20\2\2\u021d\u021e\7\3\2\2\u021e\u021f\5*\26\2\u021f\u0220\7\f\2\2"+
- "\u0220\u0221\5> \2\u0221\u0222\7\4\2\2\u0222\u024e\3\2\2\2\u0223\u0224"+
- "\7\34\2\2\u0224\u0225\7\3\2\2\u0225\u0226\5B\"\2\u0226\u0227\7\37\2\2"+
- "\u0227\u0228\5\64\33\2\u0228\u0229\7\4\2\2\u0229\u024e\3\2\2\2\u022a\u024e"+
- "\58\35\2\u022b\u024e\7R\2\2\u022c\u022d\5@!\2\u022d\u022e\7V\2\2\u022e"+
- "\u0230\3\2\2\2\u022f\u022c\3\2\2\2\u022f\u0230\3\2\2\2\u0230\u0231\3\2"+
- "\2\2\u0231\u024e\7R\2\2\u0232\u0233\5B\"\2\u0233\u023f\7\3\2\2\u0234\u0236"+
- "\5\34\17\2\u0235\u0234\3\2\2\2\u0235\u0236\3\2\2\2\u0236\u0237\3\2\2\2"+
- "\u0237\u023c\5*\26\2\u0238\u0239\7\5\2\2\u0239\u023b\5*\26\2\u023a\u0238"+
- "\3\2\2\2\u023b\u023e\3\2\2\2\u023c\u023a\3\2\2\2\u023c\u023d\3\2\2\2\u023d"+
- "\u0240\3\2\2\2\u023e\u023c\3\2\2\2\u023f\u0235\3\2\2\2\u023f\u0240\3\2"+
- "\2\2\u0240\u0241\3\2\2\2\u0241\u0242\7\4\2\2\u0242\u024e\3\2\2\2\u0243"+
- "\u0244\7\3\2\2\u0244\u0245\5\b\5\2\u0245\u0246\7\4\2\2\u0246\u024e\3\2"+
- "\2\2\u0247\u024e\5B\"\2\u0248\u024e\5@!\2\u0249\u024a\7\3\2\2\u024a\u024b"+
- "\5*\26\2\u024b\u024c\7\4\2\2\u024c\u024e\3\2\2\2\u024d\u021c\3\2\2\2\u024d"+
- "\u0223\3\2\2\2\u024d\u022a\3\2\2\2\u024d\u022b\3\2\2\2\u024d\u022f\3\2"+
- "\2\2\u024d\u0232\3\2\2\2\u024d\u0243\3\2\2\2\u024d\u0247\3\2\2\2\u024d"+
- "\u0248\3\2\2\2\u024d\u0249\3\2\2\2\u024e\67\3\2\2\2\u024f\u0259\7\60\2"+
- "\2\u0250\u0259\5J&\2\u0251\u0259\5<\37\2\u0252\u0254\7X\2\2\u0253\u0252"+
- "\3\2\2\2\u0254\u0255\3\2\2\2\u0255\u0253\3\2\2\2\u0255\u0256\3\2\2\2\u0256"+
- "\u0259\3\2\2\2\u0257\u0259\7W\2\2\u0258\u024f\3\2\2\2\u0258\u0250\3\2"+
- "\2\2\u0258\u0251\3\2\2\2\u0258\u0253\3\2\2\2\u0258\u0257\3\2\2\2\u0259"+
- "9\3\2\2\2\u025a\u025b\t\f\2\2\u025b;\3\2\2\2\u025c\u025d\t\r\2\2\u025d"+
- "=\3\2\2\2\u025e\u025f\5B\"\2\u025f?\3\2\2\2\u0260\u0261\5B\"\2\u0261\u0262"+
- "\7V\2\2\u0262\u0264\3\2\2\2\u0263\u0260\3\2\2\2\u0264\u0267\3\2\2\2\u0265"+
- "\u0263\3\2\2\2\u0265\u0266\3\2\2\2\u0266\u0268\3\2\2\2\u0267\u0265\3\2"+
- "\2\2\u0268\u0269\5B\"\2\u0269A\3\2\2\2\u026a\u026d\5F$\2\u026b\u026d\5"+
- "H%\2\u026c\u026a\3\2\2\2\u026c\u026b\3\2\2\2\u026dC\3\2\2\2\u026e\u026f"+
- "\5B\"\2\u026f\u0270\7\6\2\2\u0270\u0272\3\2\2\2\u0271\u026e\3\2\2\2\u0271"+
- "\u0272\3\2\2\2\u0272\u0273\3\2\2\2\u0273\u027b\7]\2\2\u0274\u0275\5B\""+
- "\2\u0275\u0276\7\6\2\2\u0276\u0278\3\2\2\2\u0277\u0274\3\2\2\2\u0277\u0278"+
- "\3\2\2\2\u0278\u0279\3\2\2\2\u0279\u027b\5B\"\2\u027a\u0271\3\2\2\2\u027a"+
- "\u0277\3\2\2\2\u027bE\3\2\2\2\u027c\u027f\7^\2\2\u027d\u027f\7_\2\2\u027e"+
- "\u027c\3\2\2\2\u027e\u027d\3\2\2\2\u027fG\3\2\2\2\u0280\u0284\7[\2\2\u0281"+
- "\u0284\5N(\2\u0282\u0284\7\\\2\2\u0283\u0280\3\2\2\2\u0283\u0281\3\2\2"+
- "\2\u0283\u0282\3\2\2\2\u0284I\3\2\2\2\u0285\u0288\7Z\2\2\u0286\u0288\7"+
- "Y\2\2\u0287\u0285\3\2\2\2\u0287\u0286\3\2\2\2\u0288K\3\2\2\2\u0289\u028a"+
- "\t\16\2\2\u028aM\3\2\2\2\u028b\u028c\t\17\2\2\u028cO\3\2\2\2`_aenptz}"+
- "\u0088\u008b\u0095\u0098\u009b\u009e\u00a6\u00a9\u00af\u00b3\u00b6\u00b9"+
- "\u00bc\u00c3\u00cb\u00ce\u00da\u00dd\u00e1\u00e8\u00ec\u00f0\u00f7\u00fb"+
- "\u00ff\u0104\u0108\u0110\u0114\u011b\u0126\u0129\u012d\u0139\u013c\u0142"+
- "\u0149\u0150\u0153\u0157\u015b\u015f\u0161\u016c\u0171\u0175\u0178\u017e"+
- "\u0181\u0187\u018a\u018c\u019f\u01ad\u01bb\u01c1\u01c9\u01cb\u01d0\u01d3"+
- "\u01db\u01e4\u01ea\u01f2\u01f7\u01fd\u0200\u0205\u020b\u0217\u0219\u022f"+
- "\u0235\u023c\u023f\u024d\u0255\u0258\u0265\u026c\u0271\u0277\u027a\u027e"+
- "\u0283\u0287";
+ "\u00ba\n\4\3\4\5\4\u00bd\n\4\3\4\3\4\3\4\3\4\5\4\u00c3\n\4\3\4\3\4\5\4"+
+ "\u00c7\n\4\3\4\5\4\u00ca\n\4\3\4\5\4\u00cd\n\4\3\4\5\4\u00d0\n\4\3\4\3"+
+ "\4\3\4\3\4\3\4\5\4\u00d7\n\4\3\5\3\5\3\5\3\5\7\5\u00dd\n\5\f\5\16\5\u00e0"+
+ "\13\5\5\5\u00e2\n\5\3\5\3\5\3\6\3\6\3\6\3\6\3\6\3\6\7\6\u00ec\n\6\f\6"+
+ "\16\6\u00ef\13\6\5\6\u00f1\n\6\3\6\3\6\5\6\u00f5\n\6\3\7\3\7\3\7\3\7\3"+
+ "\7\5\7\u00fc\n\7\3\b\3\b\5\b\u0100\n\b\3\t\3\t\5\t\u0104\n\t\3\t\3\t\3"+
+ "\t\7\t\u0109\n\t\f\t\16\t\u010c\13\t\3\t\5\t\u010f\n\t\3\t\3\t\5\t\u0113"+
+ "\n\t\3\t\3\t\3\t\5\t\u0118\n\t\3\t\3\t\5\t\u011c\n\t\3\n\3\n\3\n\3\n\7"+
+ "\n\u0122\n\n\f\n\16\n\u0125\13\n\3\13\5\13\u0128\n\13\3\13\3\13\3\13\7"+
+ "\13\u012d\n\13\f\13\16\13\u0130\13\13\3\f\3\f\3\r\3\r\3\r\3\r\7\r\u0138"+
+ "\n\r\f\r\16\r\u013b\13\r\5\r\u013d\n\r\3\r\3\r\5\r\u0141\n\r\3\16\3\16"+
+ "\3\16\3\16\3\16\3\16\3\17\3\17\3\20\3\20\5\20\u014d\n\20\3\20\5\20\u0150"+
+ "\n\20\3\21\3\21\7\21\u0154\n\21\f\21\16\21\u0157\13\21\3\22\3\22\3\22"+
+ "\3\22\5\22\u015d\n\22\3\22\3\22\3\22\3\22\3\22\5\22\u0164\n\22\3\23\5"+
+ "\23\u0167\n\23\3\23\3\23\5\23\u016b\n\23\3\23\3\23\5\23\u016f\n\23\3\23"+
+ "\3\23\5\23\u0173\n\23\5\23\u0175\n\23\3\24\3\24\3\24\3\24\3\24\3\24\3"+
+ "\24\7\24\u017e\n\24\f\24\16\24\u0181\13\24\3\24\3\24\5\24\u0185\n\24\3"+
+ "\25\3\25\5\25\u0189\n\25\3\25\5\25\u018c\n\25\3\25\3\25\3\25\3\25\5\25"+
+ "\u0192\n\25\3\25\5\25\u0195\n\25\3\25\3\25\3\25\3\25\5\25\u019b\n\25\3"+
+ "\25\5\25\u019e\n\25\5\25\u01a0\n\25\3\26\3\26\3\27\3\27\3\27\3\27\3\27"+
+ "\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\7\27\u01b1\n\27\f\27\16\27\u01b4"+
+ "\13\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\7\27\u01bf\n\27\f"+
+ "\27\16\27\u01c2\13\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\7\27"+
+ "\u01cd\n\27\f\27\16\27\u01d0\13\27\3\27\3\27\3\27\5\27\u01d5\n\27\3\27"+
+ "\3\27\3\27\3\27\3\27\3\27\7\27\u01dd\n\27\f\27\16\27\u01e0\13\27\3\30"+
+ "\3\30\5\30\u01e4\n\30\3\31\5\31\u01e7\n\31\3\31\3\31\3\31\3\31\3\31\3"+
+ "\31\5\31\u01ef\n\31\3\31\3\31\3\31\3\31\3\31\7\31\u01f6\n\31\f\31\16\31"+
+ "\u01f9\13\31\3\31\3\31\3\31\5\31\u01fe\n\31\3\31\3\31\3\31\3\31\3\31\3"+
+ "\31\5\31\u0206\n\31\3\31\3\31\3\31\5\31\u020b\n\31\3\31\3\31\3\31\3\31"+
+ "\5\31\u0211\n\31\3\31\5\31\u0214\n\31\3\32\3\32\3\32\5\32\u0219\n\32\3"+
+ "\33\3\33\3\33\3\33\5\33\u021f\n\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33"+
+ "\3\33\3\33\3\33\7\33\u022b\n\33\f\33\16\33\u022e\13\33\3\34\3\34\3\34"+
+ "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+
+ "\3\34\3\34\5\34\u0243\n\34\3\34\3\34\3\34\3\34\5\34\u0249\n\34\3\34\3"+
+ "\34\3\34\7\34\u024e\n\34\f\34\16\34\u0251\13\34\5\34\u0253\n\34\3\34\3"+
+ "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\5\34\u0261\n\34"+
+ "\3\35\3\35\3\35\3\35\6\35\u0267\n\35\r\35\16\35\u0268\3\35\5\35\u026c"+
+ "\n\35\3\36\3\36\3\37\3\37\3 \3 \3!\3!\3!\7!\u0277\n!\f!\16!\u027a\13!"+
+ "\3!\3!\3\"\3\"\5\"\u0280\n\"\3#\3#\3#\5#\u0285\n#\3#\3#\3#\3#\5#\u028b"+
+ "\n#\3#\5#\u028e\n#\3$\3$\5$\u0292\n$\3%\3%\3%\5%\u0297\n%\3&\3&\5&\u029b"+
+ "\n&\3\'\3\'\3(\3(\3(\2\4,\64)\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 "+
+ "\"$&(*,.\60\62\64\668:<>@BDFHJLN\2\20\b\2\7\7\t\t\31\31--\63\63\67\67"+
+ "\4\2##CC\4\2\t\t\63\63\4\2\37\37&&\3\2\25\26\4\2\7\7ZZ\4\2\r\r\25\25\4"+
+ "\2\7\7\27\27\3\2QR\3\2SU\3\2KP\4\2\35\35DD\3\2XY\21\2\b\t\22\24\31\31"+
+ "\33\33\36\36!!##--\63\63\679;=?@BCEFHH\u0301\2P\3\2\2\2\4S\3\2\2\2\6\u00d6"+
+ "\3\2\2\2\b\u00e1\3\2\2\2\n\u00e5\3\2\2\2\f\u00fb\3\2\2\2\16\u00fd\3\2"+
+ "\2\2\20\u0101\3\2\2\2\22\u011d\3\2\2\2\24\u0127\3\2\2\2\26\u0131\3\2\2"+
+ "\2\30\u0140\3\2\2\2\32\u0142\3\2\2\2\34\u0148\3\2\2\2\36\u014a\3\2\2\2"+
+ " \u0151\3\2\2\2\"\u0163\3\2\2\2$\u0174\3\2\2\2&\u0184\3\2\2\2(\u019f\3"+
+ "\2\2\2*\u01a1\3\2\2\2,\u01d4\3\2\2\2.\u01e1\3\2\2\2\60\u0213\3\2\2\2\62"+
+ "\u0215\3\2\2\2\64\u021e\3\2\2\2\66\u0260\3\2\2\28\u026b\3\2\2\2:\u026d"+
+ "\3\2\2\2<\u026f\3\2\2\2>\u0271\3\2\2\2@\u0278\3\2\2\2B\u027f\3\2\2\2D"+
+ "\u028d\3\2\2\2F\u0291\3\2\2\2H\u0296\3\2\2\2J\u029a\3\2\2\2L\u029c\3\2"+
+ "\2\2N\u029e\3\2\2\2PQ\5\6\4\2QR\7\2\2\3R\3\3\2\2\2ST\5*\26\2TU\7\2\2\3"+
+ "U\5\3\2\2\2V\u00d7\5\b\5\2We\7\33\2\2Xa\7\3\2\2YZ\79\2\2Z`\t\2\2\2[\\"+
+ "\7\36\2\2\\`\t\3\2\2]^\7H\2\2^`\5<\37\2_Y\3\2\2\2_[\3\2\2\2_]\3\2\2\2"+
+ "`c\3\2\2\2a_\3\2\2\2ab\3\2\2\2bd\3\2\2\2ca\3\2\2\2df\7\4\2\2eX\3\2\2\2"+
+ "ef\3\2\2\2fg\3\2\2\2g\u00d7\5\6\4\2ht\7\24\2\2ip\7\3\2\2jk\79\2\2ko\t"+
+ "\4\2\2lm\7\36\2\2mo\t\3\2\2nj\3\2\2\2nl\3\2\2\2or\3\2\2\2pn\3\2\2\2pq"+
+ "\3\2\2\2qs\3\2\2\2rp\3\2\2\2su\7\4\2\2ti\3\2\2\2tu\3\2\2\2uv\3\2\2\2v"+
+ "\u00d7\5\6\4\2wx\7?\2\2x}\7B\2\2y{\7+\2\2zy\3\2\2\2z{\3\2\2\2{|\3\2\2"+
+ "\2|~\5\62\32\2}z\3\2\2\2}~\3\2\2\2~\u00d7\3\2\2\2\177\u0080\7?\2\2\u0080"+
+ "\u0081\7\23\2\2\u0081\u0082\t\5\2\2\u0082\u00d7\5D#\2\u0083\u0084\t\6"+
+ "\2\2\u0084\u00d7\5D#\2\u0085\u0086\7?\2\2\u0086\u008b\7!\2\2\u0087\u0089"+
+ "\7+\2\2\u0088\u0087\3\2\2\2\u0088\u0089\3\2\2\2\u0089\u008a\3\2\2\2\u008a"+
+ "\u008c\5\62\32\2\u008b\u0088\3\2\2\2\u008b\u008c\3\2\2\2\u008c\u00d7\3"+
+ "\2\2\2\u008d\u008e\7?\2\2\u008e\u00d7\7=\2\2\u008f\u0090\7@\2\2\u0090"+
+ "\u00d7\7\22\2\2\u0091\u0092\7@\2\2\u0092\u0098\7B\2\2\u0093\u0095\7\21"+
+ "\2\2\u0094\u0096\7+\2\2\u0095\u0094\3\2\2\2\u0095\u0096\3\2\2\2\u0096"+
+ "\u0097\3\2\2\2\u0097\u0099\5\62\32\2\u0098\u0093\3\2\2\2\u0098\u0099\3"+
+ "\2\2\2\u0099\u009e\3\2\2\2\u009a\u009c\7+\2\2\u009b\u009a\3\2\2\2\u009b"+
+ "\u009c\3\2\2\2\u009c\u009d\3\2\2\2\u009d\u009f\5\62\32\2\u009e\u009b\3"+
+ "\2\2\2\u009e\u009f\3\2\2\2\u009f\u00a9\3\2\2\2\u00a0\u00a1\7E\2\2\u00a1"+
+ "\u00a6\5L\'\2\u00a2\u00a3\7\5\2\2\u00a3\u00a5\5L\'\2\u00a4\u00a2\3\2\2"+
+ "\2\u00a5\u00a8\3\2\2\2\u00a6\u00a4\3\2\2\2\u00a6\u00a7\3\2\2\2\u00a7\u00aa"+
+ "\3\2\2\2\u00a8\u00a6\3\2\2\2\u00a9\u00a0\3\2\2\2\u00a9\u00aa\3\2\2\2\u00aa"+
+ "\u00d7\3\2\2\2\u00ab\u00ac\7@\2\2\u00ac\u00af\7\23\2\2\u00ad\u00ae\7\21"+
+ "\2\2\u00ae\u00b0\5L\'\2\u00af\u00ad\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0"+
+ "\u00b6\3\2\2\2\u00b1\u00b3\7A\2\2\u00b2\u00b4\7+\2\2\u00b3\u00b2\3\2\2"+
+ "\2\u00b3\u00b4\3\2\2\2\u00b4\u00b5\3\2\2\2\u00b5\u00b7\5\62\32\2\u00b6"+
+ "\u00b1\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\u00bc\3\2\2\2\u00b8\u00ba\7+"+
+ "\2\2\u00b9\u00b8\3\2\2\2\u00b9\u00ba\3\2\2\2\u00ba\u00bb\3\2\2\2\u00bb"+
+ "\u00bd\5\62\32\2\u00bc\u00b9\3\2\2\2\u00bc\u00bd\3\2\2\2\u00bd\u00d7\3"+
+ "\2\2\2\u00be\u00bf\7@\2\2\u00bf\u00c2\7\"\2\2\u00c0\u00c1\7\21\2\2\u00c1"+
+ "\u00c3\5L\'\2\u00c2\u00c0\3\2\2\2\u00c2\u00c3\3\2\2\2\u00c3\u00c9\3\2"+
+ "\2\2\u00c4\u00c6\7A\2\2\u00c5\u00c7\7+\2\2\u00c6\u00c5\3\2\2\2\u00c6\u00c7"+
+ "\3\2\2\2\u00c7\u00c8\3\2\2\2\u00c8\u00ca\5\62\32\2\u00c9\u00c4\3\2\2\2"+
+ "\u00c9\u00ca\3\2\2\2\u00ca\u00cf\3\2\2\2\u00cb\u00cd\7+\2\2\u00cc\u00cb"+
+ "\3\2\2\2\u00cc\u00cd\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\u00d0\5\62\32\2"+
+ "\u00cf\u00cc\3\2\2\2\u00cf\u00d0\3\2\2\2\u00d0\u00d7\3\2\2\2\u00d1\u00d2"+
+ "\7@\2\2\u00d2\u00d7\7F\2\2\u00d3\u00d4\7@\2\2\u00d4\u00d5\7A\2\2\u00d5"+
+ "\u00d7\7F\2\2\u00d6V\3\2\2\2\u00d6W\3\2\2\2\u00d6h\3\2\2\2\u00d6w\3\2"+
+ "\2\2\u00d6\177\3\2\2\2\u00d6\u0083\3\2\2\2\u00d6\u0085\3\2\2\2\u00d6\u008d"+
+ "\3\2\2\2\u00d6\u008f\3\2\2\2\u00d6\u0091\3\2\2\2\u00d6\u00ab\3\2\2\2\u00d6"+
+ "\u00be\3\2\2\2\u00d6\u00d1\3\2\2\2\u00d6\u00d3\3\2\2\2\u00d7\7\3\2\2\2"+
+ "\u00d8\u00d9\7J\2\2\u00d9\u00de\5\32\16\2\u00da\u00db\7\5\2\2\u00db\u00dd"+
+ "\5\32\16\2\u00dc\u00da\3\2\2\2\u00dd\u00e0\3\2\2\2\u00de\u00dc\3\2\2\2"+
+ "\u00de\u00df\3\2\2\2\u00df\u00e2\3\2\2\2\u00e0\u00de\3\2\2\2\u00e1\u00d8"+
+ "\3\2\2\2\u00e1\u00e2\3\2\2\2\u00e2\u00e3\3\2\2\2\u00e3\u00e4\5\n\6\2\u00e4"+
+ "\t\3\2\2\2\u00e5\u00f0\5\f\7\2\u00e6\u00e7\7\65\2\2\u00e7\u00e8\7\17\2"+
+ "\2\u00e8\u00ed\5\16\b\2\u00e9\u00ea\7\5\2\2\u00ea\u00ec\5\16\b\2\u00eb"+
+ "\u00e9\3\2\2\2\u00ec\u00ef\3\2\2\2\u00ed\u00eb\3\2\2\2\u00ed\u00ee\3\2"+
+ "\2\2\u00ee\u00f1\3\2\2\2\u00ef\u00ed\3\2\2\2\u00f0\u00e6\3\2\2\2\u00f0"+
+ "\u00f1\3\2\2\2\u00f1\u00f4\3\2\2\2\u00f2\u00f3\7,\2\2\u00f3\u00f5\t\7"+
+ "\2\2\u00f4\u00f2\3\2\2\2\u00f4\u00f5\3\2\2\2\u00f5\13\3\2\2\2\u00f6\u00fc"+
+ "\5\20\t\2\u00f7\u00f8\7\3\2\2\u00f8\u00f9\5\n\6\2\u00f9\u00fa\7\4\2\2"+
+ "\u00fa\u00fc\3\2\2\2\u00fb\u00f6\3\2\2\2\u00fb\u00f7\3\2\2\2\u00fc\r\3"+
+ "\2\2\2\u00fd\u00ff\5*\26\2\u00fe\u0100\t\b\2\2\u00ff\u00fe\3\2\2\2\u00ff"+
+ "\u0100\3\2\2\2\u0100\17\3\2\2\2\u0101\u0103\7>\2\2\u0102\u0104\5\34\17"+
+ "\2\u0103\u0102\3\2\2\2\u0103\u0104\3\2\2\2\u0104\u0105\3\2\2\2\u0105\u010a"+
+ "\5\36\20\2\u0106\u0107\7\5\2\2\u0107\u0109\5\36\20\2\u0108\u0106\3\2\2"+
+ "\2\u0109\u010c\3\2\2\2\u010a\u0108\3\2\2\2\u010a\u010b\3\2\2\2\u010b\u010e"+
+ "\3\2\2\2\u010c\u010a\3\2\2\2\u010d\u010f\5\22\n\2\u010e\u010d\3\2\2\2"+
+ "\u010e\u010f\3\2\2\2\u010f\u0112\3\2\2\2\u0110\u0111\7I\2\2\u0111\u0113"+
+ "\5,\27\2\u0112\u0110\3\2\2\2\u0112\u0113\3\2\2\2\u0113\u0117\3\2\2\2\u0114"+
+ "\u0115\7$\2\2\u0115\u0116\7\17\2\2\u0116\u0118\5\24\13\2\u0117\u0114\3"+
+ "\2\2\2\u0117\u0118\3\2\2\2\u0118\u011b\3\2\2\2\u0119\u011a\7%\2\2\u011a"+
+ "\u011c\5,\27\2\u011b\u0119\3\2\2\2\u011b\u011c\3\2\2\2\u011c\21\3\2\2"+
+ "\2\u011d\u011e\7\37\2\2\u011e\u0123\5 \21\2\u011f\u0120\7\5\2\2\u0120"+
+ "\u0122\5 \21\2\u0121\u011f\3\2\2\2\u0122\u0125\3\2\2\2\u0123\u0121\3\2"+
+ "\2\2\u0123\u0124\3\2\2\2\u0124\23\3\2\2\2\u0125\u0123\3\2\2\2\u0126\u0128"+
+ "\5\34\17\2\u0127\u0126\3\2\2\2\u0127\u0128\3\2\2\2\u0128\u0129\3\2\2\2"+
+ "\u0129\u012e\5\26\f\2\u012a\u012b\7\5\2\2\u012b\u012d\5\26\f\2\u012c\u012a"+
+ "\3\2\2\2\u012d\u0130\3\2\2\2\u012e\u012c\3\2\2\2\u012e\u012f\3\2\2\2\u012f"+
+ "\25\3\2\2\2\u0130\u012e\3\2\2\2\u0131\u0132\5\30\r\2\u0132\27\3\2\2\2"+
+ "\u0133\u013c\7\3\2\2\u0134\u0139\5*\26\2\u0135\u0136\7\5\2\2\u0136\u0138"+
+ "\5*\26\2\u0137\u0135\3\2\2\2\u0138\u013b\3\2\2\2\u0139\u0137\3\2\2\2\u0139"+
+ "\u013a\3\2\2\2\u013a\u013d\3\2\2\2\u013b\u0139\3\2\2\2\u013c\u0134\3\2"+
+ "\2\2\u013c\u013d\3\2\2\2\u013d\u013e\3\2\2\2\u013e\u0141\7\4\2\2\u013f"+
+ "\u0141\5*\26\2\u0140\u0133\3\2\2\2\u0140\u013f\3\2\2\2\u0141\31\3\2\2"+
+ "\2\u0142\u0143\5B\"\2\u0143\u0144\7\f\2\2\u0144\u0145\7\3\2\2\u0145\u0146"+
+ "\5\n\6\2\u0146\u0147\7\4\2\2\u0147\33\3\2\2\2\u0148\u0149\t\t\2\2\u0149"+
+ "\35\3\2\2\2\u014a\u014f\5*\26\2\u014b\u014d\7\f\2\2\u014c\u014b\3\2\2"+
+ "\2\u014c\u014d\3\2\2\2\u014d\u014e\3\2\2\2\u014e\u0150\5B\"\2\u014f\u014c"+
+ "\3\2\2\2\u014f\u0150\3\2\2\2\u0150\37\3\2\2\2\u0151\u0155\5(\25\2\u0152"+
+ "\u0154\5\"\22\2\u0153\u0152\3\2\2\2\u0154\u0157\3\2\2\2\u0155\u0153\3"+
+ "\2\2\2\u0155\u0156\3\2\2\2\u0156!\3\2\2\2\u0157\u0155\3\2\2\2\u0158\u0159"+
+ "\5$\23\2\u0159\u015a\7)\2\2\u015a\u015c\5(\25\2\u015b\u015d\5&\24\2\u015c"+
+ "\u015b\3\2\2\2\u015c\u015d\3\2\2\2\u015d\u0164\3\2\2\2\u015e\u015f\7/"+
+ "\2\2\u015f\u0160\5$\23\2\u0160\u0161\7)\2\2\u0161\u0162\5(\25\2\u0162"+
+ "\u0164\3\2\2\2\u0163\u0158\3\2\2\2\u0163\u015e\3\2\2\2\u0164#\3\2\2\2"+
+ "\u0165\u0167\7\'\2\2\u0166\u0165\3\2\2\2\u0166\u0167\3\2\2\2\u0167\u0175"+
+ "\3\2\2\2\u0168\u016a\7*\2\2\u0169\u016b\7\66\2\2\u016a\u0169\3\2\2\2\u016a"+
+ "\u016b\3\2\2\2\u016b\u0175\3\2\2\2\u016c\u016e\7:\2\2\u016d\u016f\7\66"+
+ "\2\2\u016e\u016d\3\2\2\2\u016e\u016f\3\2\2\2\u016f\u0175\3\2\2\2\u0170"+
+ "\u0172\7 \2\2\u0171\u0173\7\66\2\2\u0172\u0171\3\2\2\2\u0172\u0173\3\2"+
+ "\2\2\u0173\u0175\3\2\2\2\u0174\u0166\3\2\2\2\u0174\u0168\3\2\2\2\u0174"+
+ "\u016c\3\2\2\2\u0174\u0170\3\2\2\2\u0175%\3\2\2\2\u0176\u0177\7\62\2\2"+
+ "\u0177\u0185\5,\27\2\u0178\u0179\7G\2\2\u0179\u017a\7\3\2\2\u017a\u017f"+
+ "\5B\"\2\u017b\u017c\7\5\2\2\u017c\u017e\5B\"\2\u017d\u017b\3\2\2\2\u017e"+
+ "\u0181\3\2\2\2\u017f\u017d\3\2\2\2\u017f\u0180\3\2\2\2\u0180\u0182\3\2"+
+ "\2\2\u0181\u017f\3\2\2\2\u0182\u0183\7\4\2\2\u0183\u0185\3\2\2\2\u0184"+
+ "\u0176\3\2\2\2\u0184\u0178\3\2\2\2\u0185\'\3\2\2\2\u0186\u018b\5D#\2\u0187"+
+ "\u0189\7\f\2\2\u0188\u0187\3\2\2\2\u0188\u0189\3\2\2\2\u0189\u018a\3\2"+
+ "\2\2\u018a\u018c\5@!\2\u018b\u0188\3\2\2\2\u018b\u018c\3\2\2\2\u018c\u01a0"+
+ "\3\2\2\2\u018d\u018e\7\3\2\2\u018e\u018f\5\n\6\2\u018f\u0194\7\4\2\2\u0190"+
+ "\u0192\7\f\2\2\u0191\u0190\3\2\2\2\u0191\u0192\3\2\2\2\u0192\u0193\3\2"+
+ "\2\2\u0193\u0195\5@!\2\u0194\u0191\3\2\2\2\u0194\u0195\3\2\2\2\u0195\u01a0"+
+ "\3\2\2\2\u0196\u0197\7\3\2\2\u0197\u0198\5 \21\2\u0198\u019d\7\4\2\2\u0199"+
+ "\u019b\7\f\2\2\u019a\u0199\3\2\2\2\u019a\u019b\3\2\2\2\u019b\u019c\3\2"+
+ "\2\2\u019c\u019e\5@!\2\u019d\u019a\3\2\2\2\u019d\u019e\3\2\2\2\u019e\u01a0"+
+ "\3\2\2\2\u019f\u0186\3\2\2\2\u019f\u018d\3\2\2\2\u019f\u0196\3\2\2\2\u01a0"+
+ ")\3\2\2\2\u01a1\u01a2\5,\27\2\u01a2+\3\2\2\2\u01a3\u01a4\b\27\1\2\u01a4"+
+ "\u01a5\7\60\2\2\u01a5\u01d5\5,\27\n\u01a6\u01a7\7\32\2\2\u01a7\u01a8\7"+
+ "\3\2\2\u01a8\u01a9\5\b\5\2\u01a9\u01aa\7\4\2\2\u01aa\u01d5\3\2\2\2\u01ab"+
+ "\u01ac\7<\2\2\u01ac\u01ad\7\3\2\2\u01ad\u01b2\5L\'\2\u01ae\u01af\7\5\2"+
+ "\2\u01af\u01b1\5L\'\2\u01b0\u01ae\3\2\2\2\u01b1\u01b4\3\2\2\2\u01b2\u01b0"+
+ "\3\2\2\2\u01b2\u01b3\3\2\2\2\u01b3\u01b5\3\2\2\2\u01b4\u01b2\3\2\2\2\u01b5"+
+ "\u01b6\7\4\2\2\u01b6\u01d5\3\2\2\2\u01b7\u01b8\7.\2\2\u01b8\u01b9\7\3"+
+ "\2\2\u01b9\u01ba\5@!\2\u01ba\u01bb\7\5\2\2\u01bb\u01c0\5L\'\2\u01bc\u01bd"+
+ "\7\5\2\2\u01bd\u01bf\5L\'\2\u01be\u01bc\3\2\2\2\u01bf\u01c2\3\2\2\2\u01c0"+
+ "\u01be\3\2\2\2\u01c0\u01c1\3\2\2\2\u01c1\u01c3\3\2\2\2\u01c2\u01c0\3\2"+
+ "\2\2\u01c3\u01c4\7\4\2\2\u01c4\u01d5\3\2\2\2\u01c5\u01c6\7.\2\2\u01c6"+
+ "\u01c7\7\3\2\2\u01c7\u01c8\5L\'\2\u01c8\u01c9\7\5\2\2\u01c9\u01ce\5L\'"+
+ "\2\u01ca\u01cb\7\5\2\2\u01cb\u01cd\5L\'\2\u01cc\u01ca\3\2\2\2\u01cd\u01d0"+
+ "\3\2\2\2\u01ce\u01cc\3\2\2\2\u01ce\u01cf\3\2\2\2\u01cf\u01d1\3\2\2\2\u01d0"+
+ "\u01ce\3\2\2\2\u01d1\u01d2\7\4\2\2\u01d2\u01d5\3\2\2\2\u01d3\u01d5\5."+
+ "\30\2\u01d4\u01a3\3\2\2\2\u01d4\u01a6\3\2\2\2\u01d4\u01ab\3\2\2\2\u01d4"+
+ "\u01b7\3\2\2\2\u01d4\u01c5\3\2\2\2\u01d4\u01d3\3\2\2\2\u01d5\u01de\3\2"+
+ "\2\2\u01d6\u01d7\f\4\2\2\u01d7\u01d8\7\n\2\2\u01d8\u01dd\5,\27\5\u01d9"+
+ "\u01da\f\3\2\2\u01da\u01db\7\64\2\2\u01db\u01dd\5,\27\4\u01dc\u01d6\3"+
+ "\2\2\2\u01dc\u01d9\3\2\2\2\u01dd\u01e0\3\2\2\2\u01de\u01dc\3\2\2\2\u01de"+
+ "\u01df\3\2\2\2\u01df-\3\2\2\2\u01e0\u01de\3\2\2\2\u01e1\u01e3\5\64\33"+
+ "\2\u01e2\u01e4\5\60\31\2\u01e3\u01e2\3\2\2\2\u01e3\u01e4\3\2\2\2\u01e4"+
+ "/\3\2\2\2\u01e5\u01e7\7\60\2\2\u01e6\u01e5\3\2\2\2\u01e6\u01e7\3\2\2\2"+
+ "\u01e7\u01e8\3\2\2\2\u01e8\u01e9\7\16\2\2\u01e9\u01ea\5\64\33\2\u01ea"+
+ "\u01eb\7\n\2\2\u01eb\u01ec\5\64\33\2\u01ec\u0214\3\2\2\2\u01ed\u01ef\7"+
+ "\60\2\2\u01ee\u01ed\3\2\2\2\u01ee\u01ef\3\2\2\2\u01ef\u01f0\3\2\2\2\u01f0"+
+ "\u01f1\7&\2\2\u01f1\u01f2\7\3\2\2\u01f2\u01f7\5*\26\2\u01f3\u01f4\7\5"+
+ "\2\2\u01f4\u01f6\5*\26\2\u01f5\u01f3\3\2\2\2\u01f6\u01f9\3\2\2\2\u01f7"+
+ "\u01f5\3\2\2\2\u01f7\u01f8\3\2\2\2\u01f8\u01fa\3\2\2\2\u01f9\u01f7\3\2"+
+ "\2\2\u01fa\u01fb\7\4\2\2\u01fb\u0214\3\2\2\2\u01fc\u01fe\7\60\2\2\u01fd"+
+ "\u01fc\3\2\2\2\u01fd\u01fe\3\2\2\2\u01fe\u01ff\3\2\2\2\u01ff\u0200\7&"+
+ "\2\2\u0200\u0201\7\3\2\2\u0201\u0202\5\b\5\2\u0202\u0203\7\4\2\2\u0203"+
+ "\u0214\3\2\2\2\u0204\u0206\7\60\2\2\u0205\u0204\3\2\2\2\u0205\u0206\3"+
+ "\2\2\2\u0206\u0207\3\2\2\2\u0207\u0208\7+\2\2\u0208\u0214\5\62\32\2\u0209"+
+ "\u020b\7\60\2\2\u020a\u0209\3\2\2\2\u020a\u020b\3\2\2\2\u020b\u020c\3"+
+ "\2\2\2\u020c\u020d\7;\2\2\u020d\u0214\5L\'\2\u020e\u0210\7(\2\2\u020f"+
+ "\u0211\7\60\2\2\u0210\u020f\3\2\2\2\u0210\u0211\3\2\2\2\u0211\u0212\3"+
+ "\2\2\2\u0212\u0214\7\61\2\2\u0213\u01e6\3\2\2\2\u0213\u01ee\3\2\2\2\u0213"+
+ "\u01fd\3\2\2\2\u0213\u0205\3\2\2\2\u0213\u020a\3\2\2\2\u0213\u020e\3\2"+
+ "\2\2\u0214\61\3\2\2\2\u0215\u0218\5L\'\2\u0216\u0217\7\30\2\2\u0217\u0219"+
+ "\5L\'\2\u0218\u0216\3\2\2\2\u0218\u0219\3\2\2\2\u0219\63\3\2\2\2\u021a"+
+ "\u021b\b\33\1\2\u021b\u021f\5\66\34\2\u021c\u021d\t\n\2\2\u021d\u021f"+
+ "\5\64\33\6\u021e\u021a\3\2\2\2\u021e\u021c\3\2\2\2\u021f\u022c\3\2\2\2"+
+ "\u0220\u0221\f\5\2\2\u0221\u0222\t\13\2\2\u0222\u022b\5\64\33\6\u0223"+
+ "\u0224\f\4\2\2\u0224\u0225\t\n\2\2\u0225\u022b\5\64\33\5\u0226\u0227\f"+
+ "\3\2\2\u0227\u0228\5:\36\2\u0228\u0229\5\64\33\4\u0229\u022b\3\2\2\2\u022a"+
+ "\u0220\3\2\2\2\u022a\u0223\3\2\2\2\u022a\u0226\3\2\2\2\u022b\u022e\3\2"+
+ "\2\2\u022c\u022a\3\2\2\2\u022c\u022d\3\2\2\2\u022d\65\3\2\2\2\u022e\u022c"+
+ "\3\2\2\2\u022f\u0230\7\20\2\2\u0230\u0231\7\3\2\2\u0231\u0232\5*\26\2"+
+ "\u0232\u0233\7\f\2\2\u0233\u0234\5> \2\u0234\u0235\7\4\2\2\u0235\u0261"+
+ "\3\2\2\2\u0236\u0237\7\34\2\2\u0237\u0238\7\3\2\2\u0238\u0239\5B\"\2\u0239"+
+ "\u023a\7\37\2\2\u023a\u023b\5\64\33\2\u023b\u023c\7\4\2\2\u023c\u0261"+
+ "\3\2\2\2\u023d\u0261\58\35\2\u023e\u0261\7S\2\2\u023f\u0240\5@!\2\u0240"+
+ "\u0241\7W\2\2\u0241\u0243\3\2\2\2\u0242\u023f\3\2\2\2\u0242\u0243\3\2"+
+ "\2\2\u0243\u0244\3\2\2\2\u0244\u0261\7S\2\2\u0245\u0246\5B\"\2\u0246\u0252"+
+ "\7\3\2\2\u0247\u0249\5\34\17\2\u0248\u0247\3\2\2\2\u0248\u0249\3\2\2\2"+
+ "\u0249\u024a\3\2\2\2\u024a\u024f\5*\26\2\u024b\u024c\7\5\2\2\u024c\u024e"+
+ "\5*\26\2\u024d\u024b\3\2\2\2\u024e\u0251\3\2\2\2\u024f\u024d\3\2\2\2\u024f"+
+ "\u0250\3\2\2\2\u0250\u0253\3\2\2\2\u0251\u024f\3\2\2\2\u0252\u0248\3\2"+
+ "\2\2\u0252\u0253\3\2\2\2\u0253\u0254\3\2\2\2\u0254\u0255\7\4\2\2\u0255"+
+ "\u0261\3\2\2\2\u0256\u0257\7\3\2\2\u0257\u0258\5\b\5\2\u0258\u0259\7\4"+
+ "\2\2\u0259\u0261\3\2\2\2\u025a\u0261\5B\"\2\u025b\u0261\5@!\2\u025c\u025d"+
+ "\7\3\2\2\u025d\u025e\5*\26\2\u025e\u025f\7\4\2\2\u025f\u0261\3\2\2\2\u0260"+
+ "\u022f\3\2\2\2\u0260\u0236\3\2\2\2\u0260\u023d\3\2\2\2\u0260\u023e\3\2"+
+ "\2\2\u0260\u0242\3\2\2\2\u0260\u0245\3\2\2\2\u0260\u0256\3\2\2\2\u0260"+
+ "\u025a\3\2\2\2\u0260\u025b\3\2\2\2\u0260\u025c\3\2\2\2\u0261\67\3\2\2"+
+ "\2\u0262\u026c\7\61\2\2\u0263\u026c\5J&\2\u0264\u026c\5<\37\2\u0265\u0267"+
+ "\7Y\2\2\u0266\u0265\3\2\2\2\u0267\u0268\3\2\2\2\u0268\u0266\3\2\2\2\u0268"+
+ "\u0269\3\2\2\2\u0269\u026c\3\2\2\2\u026a\u026c\7X\2\2\u026b\u0262\3\2"+
+ "\2\2\u026b\u0263\3\2\2\2\u026b\u0264\3\2\2\2\u026b\u0266\3\2\2\2\u026b"+
+ "\u026a\3\2\2\2\u026c9\3\2\2\2\u026d\u026e\t\f\2\2\u026e;\3\2\2\2\u026f"+
+ "\u0270\t\r\2\2\u0270=\3\2\2\2\u0271\u0272\5B\"\2\u0272?\3\2\2\2\u0273"+
+ "\u0274\5B\"\2\u0274\u0275\7W\2\2\u0275\u0277\3\2\2\2\u0276\u0273\3\2\2"+
+ "\2\u0277\u027a\3\2\2\2\u0278\u0276\3\2\2\2\u0278\u0279\3\2\2\2\u0279\u027b"+
+ "\3\2\2\2\u027a\u0278\3\2\2\2\u027b\u027c\5B\"\2\u027cA\3\2\2\2\u027d\u0280"+
+ "\5F$\2\u027e\u0280\5H%\2\u027f\u027d\3\2\2\2\u027f\u027e\3\2\2\2\u0280"+
+ "C\3\2\2\2\u0281\u0282\5B\"\2\u0282\u0283\7\6\2\2\u0283\u0285\3\2\2\2\u0284"+
+ "\u0281\3\2\2\2\u0284\u0285\3\2\2\2\u0285\u0286\3\2\2\2\u0286\u028e\7^"+
+ "\2\2\u0287\u0288\5B\"\2\u0288\u0289\7\6\2\2\u0289\u028b\3\2\2\2\u028a"+
+ "\u0287\3\2\2\2\u028a\u028b\3\2\2\2\u028b\u028c\3\2\2\2\u028c\u028e\5B"+
+ "\"\2\u028d\u0284\3\2\2\2\u028d\u028a\3\2\2\2\u028eE\3\2\2\2\u028f\u0292"+
+ "\7_\2\2\u0290\u0292\7`\2\2\u0291\u028f\3\2\2\2\u0291\u0290\3\2\2\2\u0292"+
+ "G\3\2\2\2\u0293\u0297\7\\\2\2\u0294\u0297\5N(\2\u0295\u0297\7]\2\2\u0296"+
+ "\u0293\3\2\2\2\u0296\u0294\3\2\2\2\u0296\u0295\3\2\2\2\u0297I\3\2\2\2"+
+ "\u0298\u029b\7[\2\2\u0299\u029b\7Z\2\2\u029a\u0298\3\2\2\2\u029a\u0299"+
+ "\3\2\2\2\u029bK\3\2\2\2\u029c\u029d\t\16\2\2\u029dM\3\2\2\2\u029e\u029f"+
+ "\t\17\2\2\u029fO\3\2\2\2e_aenptz}\u0088\u008b\u0095\u0098\u009b\u009e"+
+ "\u00a6\u00a9\u00af\u00b3\u00b6\u00b9\u00bc\u00c2\u00c6\u00c9\u00cc\u00cf"+
+ "\u00d6\u00de\u00e1\u00ed\u00f0\u00f4\u00fb\u00ff\u0103\u010a\u010e\u0112"+
+ "\u0117\u011b\u0123\u0127\u012e\u0139\u013c\u0140\u014c\u014f\u0155\u015c"+
+ "\u0163\u0166\u016a\u016e\u0172\u0174\u017f\u0184\u0188\u018b\u0191\u0194"+
+ "\u019a\u019d\u019f\u01b2\u01c0\u01ce\u01d4\u01dc\u01de\u01e3\u01e6\u01ee"+
+ "\u01f7\u01fd\u0205\u020a\u0210\u0213\u0218\u021e\u022a\u022c\u0242\u0248"+
+ "\u024f\u0252\u0260\u0268\u026b\u0278\u027f\u0284\u028a\u028d\u0291\u0296"+
+ "\u029a";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseVisitor.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseVisitor.java
index 35ce6cd0029d6..f13c636a2d8df 100644
--- a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseVisitor.java
+++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/parser/SqlBaseVisitor.java
@@ -1,8 +1,3 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
// ANTLR GENERATED CODE: DO NOT EDIT
package org.elasticsearch.xpack.sql.parser;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
@@ -97,6 +92,13 @@ interface SqlBaseVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitSysColumns(SqlBaseParser.SysColumnsContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code sysGeometryColumns}
+ * labeled alternative in {@link SqlBaseParser#statement}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitSysGeometryColumns(SqlBaseParser.SysGeometryColumnsContext ctx);
/**
* Visit a parse tree produced by the {@code sysTypes}
* labeled alternative in {@link SqlBaseParser#statement}.
diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/plan/logical/command/sys/SysGeometryColumns.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/plan/logical/command/sys/SysGeometryColumns.java
new file mode 100644
index 0000000000000..5c3e2bc32fdbb
--- /dev/null
+++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/plan/logical/command/sys/SysGeometryColumns.java
@@ -0,0 +1,144 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+package org.elasticsearch.xpack.sql.plan.logical.command.sys;
+
+import org.elasticsearch.action.ActionListener;
+import org.elasticsearch.common.Strings;
+import org.elasticsearch.xpack.sql.analysis.index.EsIndex;
+import org.elasticsearch.xpack.sql.expression.Attribute;
+import org.elasticsearch.xpack.sql.expression.regex.LikePattern;
+import org.elasticsearch.xpack.sql.plan.logical.command.Command;
+import org.elasticsearch.xpack.sql.session.Rows;
+import org.elasticsearch.xpack.sql.session.SchemaRowSet;
+import org.elasticsearch.xpack.sql.session.SqlSession;
+import org.elasticsearch.xpack.sql.tree.Location;
+import org.elasticsearch.xpack.sql.tree.NodeInfo;
+import org.elasticsearch.xpack.sql.type.DataType;
+import org.elasticsearch.xpack.sql.type.EsField;
+
+import java.sql.DatabaseMetaData;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Locale;
+import java.util.Map;
+import java.util.Objects;
+import java.util.regex.Pattern;
+
+import static java.util.Arrays.asList;
+import static org.elasticsearch.xpack.sql.type.DataType.GEO_SHAPE;
+import static org.elasticsearch.xpack.sql.type.DataType.INTEGER;
+import static org.elasticsearch.xpack.sql.type.DataType.SHORT;
+
+/**
+ * System command designed to be used by JDBC / ODBC for column metadata, such as
+ * {@link DatabaseMetaData#getColumns(String, String, String, String)}.
+ */
+public class SysGeometryColumns extends Command {
+
+ private final String catalog;
+ private final LikePattern indexPattern;
+ private final LikePattern columnPattern;
+
+ public SysGeometryColumns(Location location, String catalog, LikePattern indexPattern, LikePattern columnPattern) {
+ super(location);
+ this.catalog = catalog;
+ this.indexPattern = indexPattern;
+ this.columnPattern = columnPattern;
+ }
+
+ @Override
+ protected NodeInfo info() {
+ return NodeInfo.create(this, SysGeometryColumns::new, catalog, indexPattern, columnPattern);
+ }
+
+ @Override
+ public List output() {
+ return asList(keyword("F_TABLE_CATALOG"), // Cluster name
+ keyword("F_TABLE_SCHEMA"), // Always null - not supported
+ keyword("F_TABLE_NAME"), // Index name
+ keyword("F_GEOMETRY_COLUMN"), // Geo field name
+ field("STORAGE_TYPE", INTEGER), // Always 1 for now
+ field("GEOMETRY_TYPE", INTEGER), // 0 - for geoshapes or 1 - for geopoints
+ field("COORD_DIMENSION", INTEGER), // Always 2
+ field("SRID", INTEGER), // Always 0 (the ID of the Spatial Reference System)
+ keyword("TYPE") // GEOMETRY for geoshapes, POINT for geopoints
+ );
+ }
+
+ @Override
+ public void execute(SqlSession session, ActionListener listener) {
+ String cluster = session.indexResolver().clusterName();
+
+ // bail-out early if the catalog is present but differs
+ if (Strings.hasText(catalog) && !cluster.equals(catalog)) {
+ listener.onResponse(Rows.empty(output()));
+ return;
+ }
+
+ String index = indexPattern != null ? indexPattern.asIndexNameWildcard() : "*";
+ String regex = indexPattern != null ? indexPattern.asJavaRegex() : null;
+
+ Pattern columnMatcher = columnPattern != null ? Pattern.compile(columnPattern.asJavaRegex()) : null;
+
+ session.indexResolver().resolveAsSeparateMappings(index, regex, ActionListener.wrap(esIndices -> {
+ List> rows = new ArrayList<>();
+ for (EsIndex esIndex : esIndices) {
+ fillInRows(cluster, esIndex.name(), esIndex.mapping(), null, rows, columnMatcher);
+ }
+
+ listener.onResponse(Rows.of(output(), rows));
+ }, listener::onFailure));
+ }
+
+ static void fillInRows(String clusterName, String indexName, Map mapping, String prefix, List> rows,
+ Pattern columnMatcher) {
+ int pos = 0;
+ for (Map.Entry entry : mapping.entrySet()) {
+ pos++; // JDBC is 1-based so we start with 1 here
+
+ String name = entry.getKey();
+ name = prefix != null ? prefix + "." + name : name;
+ EsField field = entry.getValue();
+ DataType type = field.getDataType();
+ if ((columnMatcher == null || columnMatcher.matcher(name).matches()) && type == GEO_SHAPE) {
+ rows.add(asList(clusterName, // catalog
+ null, // schema is not supported
+ indexName, // table name
+ name, // column name
+ 1, // storage type
+ 0, // geometry type (only geoshapes are supported at the moment)
+ 2, // dimension
+ 0, // srid,
+ "GEOMETRY" // type name
+ ));
+ }
+ if (field.getProperties() != null) {
+ fillInRows(clusterName, indexName, field.getProperties(), name, rows, columnMatcher);
+ }
+ }
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(catalog, indexPattern, columnPattern);
+ }
+
+ @Override
+ public boolean equals(Object obj) {
+ if (this == obj) {
+ return true;
+ }
+
+ if (obj == null || getClass() != obj.getClass()) {
+ return false;
+ }
+
+ SysGeometryColumns other = (SysGeometryColumns) obj;
+ return Objects.equals(catalog, other.catalog)
+ && Objects.equals(indexPattern, other.indexPattern)
+ && Objects.equals(columnPattern, other.columnPattern);
+ }
+}
diff --git a/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/plan/logical/command/sys/SysGeometryColumnsTests.java b/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/plan/logical/command/sys/SysGeometryColumnsTests.java
new file mode 100644
index 0000000000000..1ad4108f1bfd2
--- /dev/null
+++ b/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/plan/logical/command/sys/SysGeometryColumnsTests.java
@@ -0,0 +1,34 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+package org.elasticsearch.xpack.sql.plan.logical.command.sys;
+
+import org.elasticsearch.test.ESTestCase;
+import org.elasticsearch.xpack.sql.type.TypesTests;
+
+import java.sql.Types;
+import java.util.ArrayList;
+import java.util.List;
+
+public class SysGeometryColumnsTests extends ESTestCase {
+
+ public void testSysGeometryColumns() {
+ List> rows = new ArrayList<>();
+ SysGeometryColumns.fillInRows("test", "index", TypesTests.loadMapping("mapping-basic.json", true), null, rows, null);
+ assertEquals(1, rows.size());
+ assertEquals(9, rows.get(0).size());
+
+ List> row = rows.get(0);
+ assertEquals("test", row.get(0));
+ assertEquals("index", row.get(2));
+ assertEquals("site", row.get(3));
+ assertEquals(1, row.get(4));
+ assertEquals(0, row.get(5));
+ assertEquals(2, row.get(6));
+ assertEquals(0, row.get(7));
+ assertEquals("GEOMETRY", row.get(8));
+
+ }
+}
diff --git a/x-pack/qa/sql/src/main/java/org/elasticsearch/xpack/qa/sql/geo/GeoCsvSpecTestCase.java b/x-pack/qa/sql/src/main/java/org/elasticsearch/xpack/qa/sql/geo/GeoCsvSpecTestCase.java
index 73ff9f4f4205f..6e5f210d2d497 100644
--- a/x-pack/qa/sql/src/main/java/org/elasticsearch/xpack/qa/sql/geo/GeoCsvSpecTestCase.java
+++ b/x-pack/qa/sql/src/main/java/org/elasticsearch/xpack/qa/sql/geo/GeoCsvSpecTestCase.java
@@ -51,7 +51,7 @@ public void setupTestGeoDataIfNeeded() throws Exception {
}
@Override
- protected final void doTest() throws Throwable {
+ protected final void doTest() throws Exception {
try (Connection csv = csvConnection(testCase.expectedResults);
Connection es = esJdbc()) {