diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2013-04-10 09:26:46 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2013-04-10 09:26:46 -0400 |
commit | 66c01707c6ac9ce7cc7a7e45d0892f6506f1680b (patch) | |
tree | 812a9fa6a8ddda77459614ba82b3d8e43d0f7c42 | |
parent | 4cff7b9dd6d39ed5f6bb3914870c7d0602f88242 (diff) | |
download | postgresql-66c01707c6ac9ce7cc7a7e45d0892f6506f1680b.tar.gz postgresql-66c01707c6ac9ce7cc7a7e45d0892f6506f1680b.zip |
Fix hstore_to_json_loose example in docs.
Marti Raudsepp.
-rw-r--r-- | doc/src/sgml/hstore.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/hstore.sgml b/doc/src/sgml/hstore.sgml index 85e7efcedc1..b20108da79c 100644 --- a/doc/src/sgml/hstore.sgml +++ b/doc/src/sgml/hstore.sgml @@ -334,7 +334,7 @@ b <entry><function>hstore_to_json_loose(hstore)</function></entry> <entry><type>json</type></entry> <entry>get <type>hstore</type> as a json value, but attempting to distinguish numerical and boolean values so they are unquoted in the json</entry> - <entry><literal>hstore_to_json('"a key"=>1, b=>t, c=>null, d=>12345, e=>012345, f=>1.234, g=>2.345e+4')</literal></entry> + <entry><literal>hstore_to_json_loose('"a key"=>1, b=>t, c=>null, d=>12345, e=>012345, f=>1.234, g=>2.345e+4')</literal></entry> <entry><literal>{"a key": 1, "b": true, "c": null, "d": 12345, "e": "012345", "f": 1.234, "g": 2.345e+4}</literal></entry> </row> |