1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-28 18:48:04 +03:00
Files
postgres/src
Tom Lane 66dbcd47ed Fix "Unable to identify an operator =$" problem that occurred when pgsql
expressions were written without spaces between operators and operands.
Problem was that something like "if new.f1=new.f2 then" would be translated
to "if $1=$2 then", and the Postgres lexer would tokenize that the wrong
way.  Fix is to emit spaces around $paramno constructs to ensure they are
seen as separate tokens.
1999-11-28 22:02:17 +00:00
..
1998-11-19 02:39:51 +00:00
1999-10-09 01:30:23 +00:00
1999-11-06 01:55:44 +00:00
1999-11-27 21:05:04 +00:00
1999-11-04 21:48:36 +00:00
1999-07-30 03:45:57 +00:00
1997-08-22 16:38:33 +00:00
1999-11-02 00:05:29 +00:00
Hi,
1999-10-13 11:38:42 +00:00