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 @@ -124,8 +124,8 @@ filter_rule: filter_chain logical_op filter_chain
124124 }
125125 | filter_rule logical_op filter_chain
126126 {
127- $$ = reduceFilter($1 , $2 , $3 )
128- yylex.(*Lexer).rule = $$
127+ $$ = reduceFilter($1 , $2 , $3 )
128+ yylex.(*Lexer).rule = $$
129129 }
130130 ;
131131
@@ -182,15 +182,15 @@ exists_expr: identifier
182182 ;
183183
184184identifier: T_IDENTIFIER
185- {
186- column, err := url.QueryUnescape($1 )
187- if err != nil {
188- // Something went wrong, so just panic and filter.Parse will try to recover from this.
189- panic (err)
190- }
191-
192- $$ = column
193- }
185+ {
186+ column, err := url.QueryUnescape($1 )
187+ if err != nil {
188+ // Something went wrong, so just panic and filter.Parse will try to recover from this.
189+ panic (err)
190+ }
191+
192+ $$ = column
193+ }
194194 ;
195195
196196optional_negation: /* empty */ { $$ = " " }
You can’t perform that action at this time.
0 commit comments