diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/hstore.sgml | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/doc/src/sgml/hstore.sgml b/doc/src/sgml/hstore.sgml index aa212952657..a03f926f0b7 100644 --- a/doc/src/sgml/hstore.sgml +++ b/doc/src/sgml/hstore.sgml @@ -120,13 +120,6 @@ key => NULL </row> <row> - <entry><type>text</> <literal>=></> <type>text</></entry> - <entry>make single-pair <type>hstore</></entry> - <entry><literal>'a' => 'b'</literal></entry> - <entry><literal>"a"=>"b"</literal></entry> - </row> - - <row> <entry><type>hstore</> <literal>||</> <type>hstore</></entry> <entry>concatenate <type>hstore</>s</entry> <entry><literal>'a=>b, c=>d'::hstore || 'c=>x, d=>q'::hstore</literal></entry> @@ -224,14 +217,6 @@ key => NULL </para> </note> - <note> - <para> - The <literal>=></> operator is deprecated and may be removed in a - future release. Use the <literal>hstore(text, text)</literal> function - instead. - </para> - </note> - <table id="hstore-func-table"> <title><type>hstore</> Functions</title> @@ -455,7 +440,7 @@ CREATE INDEX hidx ON testhstore USING HASH (h); <para> Add a key, or update an existing key with a new value: <programlisting> -UPDATE tab SET h = h || ('c' => '3'); +UPDATE tab SET h = h || hstore('c', '3'); </programlisting> </para> |