diff options
-rw-r--r-- | doc/src/sgml/array.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/information_schema.sgml | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/doc/src/sgml/array.sgml b/doc/src/sgml/array.sgml index 21f01e4258b..dc80f516e3b 100644 --- a/doc/src/sgml/array.sgml +++ b/doc/src/sgml/array.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.52.2.3 2007/02/20 14:54:51 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.52.2.4 2007/03/24 16:46:28 tgl Exp $ --> <sect1 id="arrays"> <title>Arrays</title> @@ -248,7 +248,7 @@ SELECT schedule[1:2][1:1] FROM sal_emp WHERE name = 'Bill'; assumed to be <literal>[1:1]</>. If a dimension has only a single number (no colon), that dimension is treated as being from <literal>1</> to the number specified. For example, <literal>[2]</> is treated as - <literal>[1:2], as in this example: + <literal>[1:2]</>, as in this example: <programlisting> SELECT schedule[1:2][2] FROM sal_emp WHERE name = 'Bill'; diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index 631a84bc4c5..35b17e5466b 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/information_schema.sgml,v 1.29.2.1 2007/02/20 18:47:34 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/information_schema.sgml,v 1.29.2.2 2007/03/24 16:46:28 tgl Exp $ --> <chapter id="information-schema"> <title>The Information Schema</title> @@ -2094,8 +2094,6 @@ ORDER BY c.ordinal_position; <entry><type>cardinal_number</type></entry> <entry>Always null, because arrays always have unlimited maximum cardinality in <productname>PostgreSQL</></entry> </row> - - </row> </tbody> </tgroup> </table> |