I have a trigger setup to fire off after a row is updated or inserted for table A. There is also a table B that references table A, but also has another column which I want to analyze, a boolean (so this function would only be usable on an UPDATE).
When I try to access the column:
SELECT col1 FROM B WHERE B.aID = NEW.ID;
This column col1 is always NULL.
Why is this? How can I get the boolean value upon an update?
I'll have to guess, because you cunningly kept the function definition a secret. (Irony intended.)
Most probably you are running into a naming conflict. Parameter names (IN and OUT parameters) are visible in the function body (almost) anywhere and take precedence over unqualified column names. Did you declare col1 as variable in the function?
To avoid the conflict, table-qualify the column name:
SELECT b.col1 FROM tableb b WHERE b.aID = NEW.ID;
This is good practice in any case.
It is also good practice to prefix variable names, so they wouldn't normally conflict with table columns. Like: _col1.
Post the complete function definition if that didn't solve the problem.
来源:https://stackoverflow.com/questions/12166902/postgres-function-null-value-for-row-that-references-new