diff options
author | Tom Lane | 2008-12-28 18:54:01 +0000 |
---|---|---|
committer | Tom Lane | 2008-12-28 18:54:01 +0000 |
commit | 95b07bc7f5010233f52f9d11da74e2e5b653b0a7 (patch) | |
tree | 48f5858bf4eca1bfb316ef02bb959ca85f568e0a /doc/src/sgml/errcodes.sgml | |
parent | 38e9348282e9d078487147ba8a85aebec54e3a08 (diff) |
Support window functions a la SQL:2008.
Hitoshi Harada, with some kibitzing from Heikki and Tom.
Diffstat (limited to 'doc/src/sgml/errcodes.sgml')
-rw-r--r-- | doc/src/sgml/errcodes.sgml | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/doc/src/sgml/errcodes.sgml b/doc/src/sgml/errcodes.sgml index 574e7f5fbad..e792a74e286 100644 --- a/doc/src/sgml/errcodes.sgml +++ b/doc/src/sgml/errcodes.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/errcodes.sgml,v 1.25 2008/10/04 21:56:52 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/errcodes.sgml,v 1.26 2008/12/28 18:53:53 tgl Exp $ --> <appendix id="errcodes-appendix"> <title><productname>PostgreSQL</productname> Error Codes</title> @@ -379,6 +379,18 @@ </row> <row> +<entry><literal>22014</literal></entry> +<entry>INVALID ARGUMENT FOR NTILE FUNCTION</entry> +<entry>invalid_argument_for_ntile_function</entry> +</row> + +<row> +<entry><literal>22016</literal></entry> +<entry>INVALID ARGUMENT FOR NTH_VALUE FUNCTION</entry> +<entry>invalid_argument_for_nth_value_function</entry> +</row> + +<row> <entry><literal>2201F</literal></entry> <entry>INVALID ARGUMENT FOR POWER FUNCTION</entry> <entry>invalid_argument_for_power_function</entry> @@ -991,6 +1003,12 @@ </row> <row> +<entry><literal>42P20</literal></entry> +<entry>WINDOWING ERROR</entry> +<entry>windowing_error</entry> +</row> + +<row> <entry><literal>42P19</literal></entry> <entry>INVALID RECURSION</entry> <entry>invalid_recursion</entry> |