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 8800ab8 commit 8a14ecdCopy full SHA for 8a14ecd
ppl-spark-integration/src/main/antlr4/OpenSearchPPLParser.g4
@@ -181,16 +181,16 @@ lookupPair
181
;
182
183
fillnullCommand
184
- : FILLNULL ( fillNullWithTheSameValue )
185
- | (fillNullWithFieldVariousValues)
+ : FILLNULL (fillNullWithTheSameValue
+ | fillNullWithFieldVariousValues)
186
187
188
fillNullWithTheSameValue
189
- : VALUE EQUAL nullReplacement nullableField*
+ : VALUE EQUAL nullReplacement nullableField (COMMA nullableField)*
190
191
192
fillNullWithFieldVariousValues
193
- : nullableField EQUAL nullReplacement (COMMA nullableField EQUAL nullReplacement)*
+ : FIELDS nullableField EQUAL nullReplacement (COMMA nullableField EQUAL nullReplacement)*
194
195
196
0 commit comments