You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix incorrect variable substitution for column references in PL/pgSQL
This commit addresses issue #2354 where field names matching parameter or
variable names inside a PL/pgSQL function were incorrectly substituted
by the interpreter when used as part of a table alias or record (e.g. c.id).
By checking if a token is preceded by a dot (.), we can accurately
skip variable substitution for field identifiers.
0 commit comments