"Day, David" <[email protected]> writes: > Any suggestions as to why the int[] operations are not understood in the > trigger context.?
The search_path in the trigger probably doesn't include public.
You could add a "SET search_path = whatever" clause to the trigger
function definition to ensure it runs with a predictable path.
regards, tom lane
