BUG #8046: PL/pgSQL plan caching regression
От | dmitigr@gmail.com |
---|---|
Тема | BUG #8046: PL/pgSQL plan caching regression |
Дата | |
Msg-id | E1UPJgq-0005C1-Ap@wrigleys.postgresql.org обсуждение исходный текст |
Ответы |
Re: BUG #8046: PL/pgSQL plan caching regression
|
Список | pgsql-bugs |
The following bug has been logged on the website: Bug reference: 8046 Logged by: Dmitriy Igrishin Email address: dmitigr@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 =3D $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;
В списке pgsql-bugs по дате отправления: