diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2007-02-21 03:27:32 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2007-02-21 03:27:32 +0000 |
commit | afc7e0d848a756679813c88444ecf9cd5f5f92d4 (patch) | |
tree | 466fa3dbacd32d2b8cee19d9b0f3bb0386ef30bd /doc/src | |
parent | 80ab3e0d34dd8918a30a222e909b96b03bd3adeb (diff) | |
download | postgresql-afc7e0d848a756679813c88444ecf9cd5f5f92d4.tar.gz postgresql-afc7e0d848a756679813c88444ecf9cd5f5f92d4.zip |
Allow pltcl args to spi_prepare and plpython args to plpy.prepare to be standard type aliases as well as those known in pg_type. Similar to recent change in plperl.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/pltcl.sgml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/src/sgml/pltcl.sgml b/doc/src/sgml/pltcl.sgml index 41a93fbd951..6ae266a5b72 100644 --- a/doc/src/sgml/pltcl.sgml +++ b/doc/src/sgml/pltcl.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/pltcl.sgml,v 2.45 2007/02/01 00:28:17 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/pltcl.sgml,v 2.46 2007/02/21 03:27:31 adunstan Exp $ --> <chapter id="pltcl"> <title>PL/Tcl - Tcl Procedural Language</title> @@ -331,9 +331,6 @@ spi_exec -array C "SELECT * FROM pg_class" { If the query uses parameters, the names of the parameter types must be given as a Tcl list. (Write an empty list for <replaceable>typelist</replaceable> if no parameters are used.) - Presently, the parameter types must be identified by the internal - type names shown in the system table <literal>pg_type</>; for example <literal>int4</> not - <literal>integer</>. </para> <para> The return value from <function>spi_prepare</function> is a query ID |