~ubuntu-branches/ubuntu/lucid/postgresql-8.4/lucid-proposed

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-05-19 14:03:37 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090519140337-wp9u2si99uppeb81
Tags: 8.4~beta2-2
* Second public beta of 8.4.
* debian/control: Slightly lower the dependencies for postgresql-common to
  >= 98~, so that backports also match.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- $PostgreSQL$ -->
 
1
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.479 2009/05/13 21:53:41 tgl Exp $ -->
2
2
 
3
3
 <chapter id="functions">
4
4
  <title>Functions and Operators</title>
3445
3445
    Some examples:
3446
3446
<programlisting>
3447
3447
 
3448
 
SELECT foo FROM regexp_split_to_table('the quick brown fox jumped over the lazy dog', E'\\\s+') AS foo;
 
3448
SELECT foo FROM regexp_split_to_table('the quick brown fox jumped over the lazy dog', E'\\s+') AS foo;
3449
3449
  foo   
3450
3450
--------
3451
3451
 the    
8596
8596
   </para>
8597
8597
 
8598
8598
   <para>
8599
 
    The following functions return XML Schema documents similar to the
8600
 
    mappings produced by the corresponding functions above:
 
8599
    The following functions return XML Schema documents describing the
 
8600
    mappings performed by the corresponding functions above:
8601
8601
<synopsis>
8602
8602
table_to_xmlschema(tbl regclass, nulls boolean, tableforest boolean, targetns text)
8603
8603
query_to_xmlschema(query text, nulls boolean, tableforest boolean, targetns text)