diff options
Diffstat (limited to 'doc/src/sgml/array.sgml')
-rw-r--r-- | doc/src/sgml/array.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/array.sgml b/doc/src/sgml/array.sgml index 362b118aaaa..a59a3dfe32a 100644 --- a/doc/src/sgml/array.sgml +++ b/doc/src/sgml/array.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/array.sgml,v 1.15 2001/11/19 09:05:00 tgl Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/array.sgml,v 1.16 2001/11/21 05:53:40 thomas Exp $ --> <chapter id="arrays"> <title>Arrays</title> @@ -8,7 +8,7 @@ </indexterm> <para> - <productname>Postgres</productname> allows columns of a table to be + <productname>PostgreSQL</productname> allows columns of a table to be defined as variable-length multidimensional arrays. Arrays of any built-in type or user-defined type can be created. To illustrate their use, we create this table: @@ -66,7 +66,7 @@ SELECT name FROM sal_emp WHERE pay_by_quarter[1] <> pay_by_quarter[2]; </programlisting> The array subscript numbers are written within square brackets. - <productname>Postgres</productname> uses the + <productname>PostgreSQL</productname> uses the <quote>one-based</quote> numbering convention for arrays, that is, an array of n elements starts with <literal>array[1]</literal> and ends with <literal>array[n]</literal>. |