The following bug has been logged on the website: Bug reference: 8046 Logged by: Dmitriy Igrishin Email address: dmit...@gmail.com PostgreSQL version: 9.2.4 Operating system: Linux Debian Wheezy x64 Description:
-- -*- sql -*- -- A bug test case. -- PostgreSQL 9.2.4 on x86_64-unknown-linux-gnu, compiled by gcc (Debian 4.7.2-5) 4.7.2, 64-bit BEGIN; CREATE OR REPLACE FUNCTION rec(type_name_ regclass, id_ bigint) RETURNS record LANGUAGE plpgsql STABLE AS $function$ DECLARE r_ record; BEGIN EXECUTE 'SELECT * FROM '||type_name_::text||' WHERE id = $1' INTO r_ USING id_; RAISE NOTICE '%', pg_typeof(r_.id); RETURN r_; END; $function$; CREATE TABLE t1 (id integer); CREATE TABLE t2 (id bigint); SELECT rec('t1', 1); -- NOTICE: integer SELECT rec('t2', 2); -- Should NOTICE: bigint, but RAISE ERROR: type of parameter 5 (bigint) does not match that when preparing the plan (integer) ROLLBACK; -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs