mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-10 15:47:32 +08:00
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.