File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ filter_rule: filter_chain logical_op filter_chain
126126 }
127127 | filter_rule logical_op filter_chain
128128 {
129- $$ = reduceFilter($1 , $2 , $3 )
130- yylex.(*Lexer).rule = $$
129+ $$ = reduceFilter($1 , $2 , $3 )
130+ yylex.(*Lexer).rule = $$
131131 }
132132 ;
133133
@@ -184,15 +184,15 @@ exists_expr: identifier
184184 ;
185185
186186identifier: T_IDENTIFIER
187- {
188- column, err := url.QueryUnescape($1 )
189- if err != nil {
190- // Something went wrong, so just panic and filter.Parse will try to recover from this.
191- panic (err)
192- }
193-
194- $$ = column
195- }
187+ {
188+ column, err := url.QueryUnescape($1 )
189+ if err != nil {
190+ // Something went wrong, so just panic and filter.Parse will try to recover from this.
191+ panic (err)
192+ }
193+
194+ $$ = column
195+ }
196196 ;
197197
198198optional_negation: /* empty */ { $$ = " " }
You can’t perform that action at this time.
0 commit comments