We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d546fc8 commit 1b00c47Copy full SHA for 1b00c47
x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
@@ -108,18 +108,21 @@ indexPatternAndMetadataFields:
108
;
109
110
indexPattern
111
- : (clusterString COLON)? indexString
112
- | indexString (CAST_OP selectorString)?
+ : clusterString COLON unquotedIndexString
+ | unquotedIndexString CAST_OP selectorString
113
+ | indexString
114
115
116
clusterString
117
: UNQUOTED_SOURCE
- | QUOTED_STRING
118
119
120
selectorString
121
122
+ ;
123
+
124
+unquotedIndexString
125
+ : UNQUOTED_SOURCE
126
127
128
indexString
0 commit comments