~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-security

« back to all changes in this revision

Viewing changes to doc/src/sgml/syntax.sgml

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-11 16:59:35 UTC
  • mfrom: (5.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090711165935-jfwin6gfrxf0gfsi
Tags: 8.4.0-2
* debian/libpq-dev.install: Ship catalog/genbki.h. (Closes: #536139)
* debian/rules: Drop --enable-cassert for final release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.132 2009/05/05 18:32:17 petere Exp $ -->
 
1
<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.133 2009/06/17 21:58:49 tgl Exp $ -->
2
2
 
3
3
<chapter id="sql-syntax">
4
4
 <title>SQL Syntax</title>
442
442
    </caution>
443
443
 
444
444
    <para>
445
 
     The zero-byte (null byte) character cannot be in a string constant.
 
445
     The character with the code zero cannot be in a string constant.
446
446
    </para>
447
447
   </sect3>
448
448
 
929
929
   </para>
930
930
 
931
931
   <para>
932
 
    Comment are removed from the input stream before further syntax
933
 
    analysis and are effectively replaced by whitespace.
 
932
    A comment is removed from the input stream before further syntax
 
933
    analysis and is effectively replaced by whitespace.
934
934
   </para>
935
935
  </sect2>
936
936
 
1244
1244
 
1245
1245
    <listitem>
1246
1246
     <para>
1247
 
      Another value expression in parentheses, useful to group
 
1247
      Another value expression in parentheses (used to group
1248
1248
      subexpressions and override
1249
 
      precedence.<indexterm><primary>parenthesis</></>
 
1249
      precedence<indexterm><primary>parenthesis</></>)
1250
1250
     </para>
1251
1251
    </listitem>
1252
1252
   </itemizedlist>
1725
1725
    casts that are marked <quote>OK to apply implicitly</>
1726
1726
    in the system catalogs.  Other casts must be invoked with
1727
1727
    explicit casting syntax.  This restriction is intended to prevent
1728
 
    surprising conversions from being silently applied.
 
1728
    surprising conversions from being applied silently.
1729
1729
   </para>
1730
1730
 
1731
1731
   <para>
1805
1805
 
1806
1806
   <para>
1807
1807
    An array constructor is an expression that builds an
1808
 
    array using values for its member elements.  A simple array
 
1808
    array value using values for its member elements.  A simple array
1809
1809
    constructor
1810
1810
    consists of the key word <literal>ARRAY</literal>, a left square bracket
1811
1811
    <literal>[</>, a list of expressions (separated by commas) for the
1936
1936
   </indexterm>
1937
1937
 
1938
1938
   <para>
1939
 
    A row constructor is an expression that builds a row (also
 
1939
    A row constructor is an expression that builds a row value (also
1940
1940
    called a composite value) using values
1941
1941
    for its member fields.  A row constructor consists of the key word
1942
1942
    <literal>ROW</literal>, a left parenthesis, zero or more