summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRobert Haas2010-06-18 03:52:03 +0000
committerRobert Haas2010-06-18 03:52:03 +0000
commit31c47e53aa4b951bdd54eb6b47590e6c9124e427 (patch)
tree6139e9450fd1d876b45f6cc60647db563c993ffe /doc
parent78e8f0025e3f18855dc0af5916223f9fcfda5706 (diff)
Rename hstore => text[] operator to %
This is not yet in any released version, so we still have the option to change the name. We may want to reserve the token => in a future release.
Diffstat (limited to 'doc')
-rw-r--r--doc/src/sgml/hstore.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/hstore.sgml b/doc/src/sgml/hstore.sgml
index 9dac2b3ec49..d5d320adf90 100644
--- a/doc/src/sgml/hstore.sgml
+++ b/doc/src/sgml/hstore.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/hstore.sgml,v 1.9 2010/06/15 19:48:30 rhaas Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/hstore.sgml,v 1.10 2010/06/18 03:52:03 rhaas Exp $ -->
<sect1 id="hstore">
<title>hstore</title>
@@ -121,9 +121,9 @@
</row>
<row>
- <entry><type>hstore</> <literal>=&gt;</> <type>text[]</></entry>
+ <entry><type>hstore</> <literal>%</> <type>text[]</></entry>
<entry>extract a subset of an <type>hstore</></entry>
- <entry><literal>'a=&gt;1,b=&gt;2,c=&gt;3'::hstore =&gt; ARRAY['b','c','x']</literal></entry>
+ <entry><literal>'a=&gt;1,b=&gt;2,c=&gt;3'::hstore % ARRAY['b','c','x']</literal></entry>
<entry><literal>"b"=&gt;"2", "c"=&gt;"3"</literal></entry>
</row>