1111 *
1212 *
1313 * IDENTIFICATION
14- * $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.686 2009/10/14 22:14:22 tgl Exp $
14+ * $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.687 2009/11/04 23:15:08 tgl Exp $
1515 *
1616 * HISTORY
1717 * AUTHORDATEMAJOR EVENT
@@ -8607,7 +8607,7 @@ a_expr:c_expr{ $$ = $1; }
86078607n->agg_distinct =FALSE ;
86088608n->func_variadic =FALSE ;
86098609n->over =NULL ;
8610- n->location =@4 ;
8610+ n->location =@2 ;
86118611$$ = (Node *) makeSimpleA_Expr(AEXPR_OP," ~~" ,$1 , (Node *) n,@2 );
86128612}
86138613| a_expr NOT LIKE a_expr
@@ -8621,7 +8621,7 @@ a_expr:c_expr{ $$ = $1; }
86218621n->agg_distinct =FALSE ;
86228622n->func_variadic =FALSE ;
86238623n->over =NULL ;
8624- n->location =@5 ;
8624+ n->location =@2 ;
86258625$$ = (Node *) makeSimpleA_Expr(AEXPR_OP," !~~" ,$1 , (Node *) n,@2 );
86268626}
86278627| a_expr ILIKE a_expr
@@ -8635,7 +8635,7 @@ a_expr:c_expr{ $$ = $1; }
86358635n->agg_distinct =FALSE ;
86368636n->func_variadic =FALSE ;
86378637n->over =NULL ;
8638- n->location =@4 ;
8638+ n->location =@2 ;
86398639$$ = (Node *) makeSimpleA_Expr(AEXPR_OP," ~~*" ,$1 , (Node *) n,@2 );
86408640}
86418641| a_expr NOT ILIKE a_expr
@@ -8649,7 +8649,7 @@ a_expr:c_expr{ $$ = $1; }
86498649n->agg_distinct =FALSE ;
86508650n->func_variadic =FALSE ;
86518651n->over =NULL ;
8652- n->location =@5 ;
8652+ n->location =@2 ;
86538653$$ = (Node *) makeSimpleA_Expr(AEXPR_OP," !~~*" ,$1 , (Node *) n,@2 );
86548654}
86558655
@@ -8674,7 +8674,7 @@ a_expr:c_expr{ $$ = $1; }
86748674n->agg_distinct =FALSE ;
86758675n->func_variadic =FALSE ;
86768676n->over =NULL ;
8677- n->location =@5 ;
8677+ n->location =@2 ;
86788678$$ = (Node *) makeSimpleA_Expr(AEXPR_OP," ~" ,$1 , (Node *) n,@2 );
86798679}
86808680| a_expr NOT SIMILAR TO a_expr%prec SIMILAR
@@ -8686,7 +8686,7 @@ a_expr:c_expr{ $$ = $1; }
86868686n->agg_distinct =FALSE ;
86878687n->func_variadic =FALSE ;
86888688n->over =NULL ;
8689- n->location =@5 ;
8689+ n->location =@2 ;
86908690$$ = (Node *) makeSimpleA_Expr(AEXPR_OP," !~" ,$1 , (Node *) n,@2 );
86918691}
86928692| a_expr NOT SIMILAR TO a_expr ESCAPE a_expr
@@ -8698,7 +8698,7 @@ a_expr:c_expr{ $$ = $1; }
86988698n->agg_distinct =FALSE ;
86998699n->func_variadic =FALSE ;
87008700n->over =NULL ;
8701- n->location =@6 ;
8701+ n->location =@2 ;
87028702$$ = (Node *) makeSimpleA_Expr(AEXPR_OP," !~" ,$1 , (Node *) n,@2 );
87038703}
87048704