pgsql: Change SPI functions to use a `long' when specifying the number

From: neilc(at)svr1(dot)postgresql(dot)org (Neil Conway)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Change SPI functions to use a `long' when specifying the number
Date: 2005-05-02 00:37:07
Message-ID: 20050502003707.AE95D5356D@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Change SPI functions to use a `long' when specifying the number of tuples
to produce when running the executor. This is consistent with the internal
executor APIs (such as ExecutorRun), which also use a long for this purpose.
It also allows FETCH_ALL to be passed -- since FETCH_ALL is defined as
LONG_MAX, this wouldn't have worked on platforms where int and long are of
different sizes. Per report from Tzahi Fadida.

Modified Files:
--------------
pgsql/doc/src/sgml:
spi.sgml (r1.40 -> r1.41)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/spi.sgml.diff?r1=1.40&r2=1.41)
pgsql/src/backend/executor:
spi.c (r1.138 -> r1.139)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/executor/spi.c.diff?r1=1.138&r2=1.139)
pgsql/src/include/executor:
spi.h (r1.51 -> r1.52)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/executor/spi.h.diff?r1=1.51&r2=1.52)
pgsql/src/pl/plpgsql/src:
pl_exec.c (r1.136 -> r1.137)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/pl_exec.c.diff?r1=1.136&r2=1.137)
pgsql/src/pl/plpython:
plpython.c (r1.60 -> r1.61)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpython/plpython.c.diff?r1=1.60&r2=1.61)

Browse pgsql-committers by date

  From Date Subject
Next Message Neil Conway 2005-05-02 01:52:50 pgsql: Add some missing "See Also" entries to the domain-related SQL
Previous Message Tom Lane 2005-05-01 18:56:20 pgsql: Change CREATE TYPE to require datatype output and send functions