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
CREATE TYPE Foo AS (
id UUID,
val BOOLEAN
);
CREATE FUNCTION ProcessFoos(foos FOO[])
RETURNS void AS
$$
BEGIN
-- do something with foos
END;
$$ LANGUAGE plpgsql;
reproduction
returns error
I don't know if the _ represents array or maybe it is assuming &[Foo] as a single Foo and trying to serialize it that way?
The text was updated successfully, but these errors were encountered: