From: | tgl(at)postgresql(dot)org (Tom Lane) |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Fix things so that you can still do "select foo()" where foo is a |
Date: | 2009-06-11 17:25:39 |
Message-ID: | 20090611172539.1E2EA75331E@cvs.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Log Message:
-----------
Fix things so that you can still do "select foo()" where foo is a SQL
function returning setof record. This used to work, more or less
accidentally, but I had broken it while extending the code to allow
materialize-mode functions to be called in select lists. Add a regression
test case so it doesn't get broken again. Per gripe from Greg Davidson.
Modified Files:
--------------
pgsql/src/backend/executor:
execQual.c (r1.249 -> r1.250)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/executor/execQual.c?r1=1.249&r2=1.250)
functions.c (r1.134 -> r1.135)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/executor/functions.c?r1=1.134&r2=1.135)
pgsql/src/test/regress/expected:
rangefuncs.out (r1.21 -> r1.22)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/expected/rangefuncs.out?r1=1.21&r2=1.22)
pgsql/src/test/regress/sql:
rangefuncs.sql (r1.10 -> r1.11)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/sql/rangefuncs.sql?r1=1.10&r2=1.11)
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2009-06-11 17:45:38 | pgsql: Update time zone data files to tzdata release 2009i: DST law |
Previous Message | Tom Lane | 2009-06-11 16:14:18 | pgsql: Somebody seems to have thought they could get away without |