Re: [HACKERS] jsonb and nested hstore - small docpatch

2014-01-30 Thread Erik Rijkers
On Thu, January 30, 2014 20:07, Andrew Dunstan wrote:

 Updated  patches for both pieces. Included is some tidying done by

 [ nested-hstore-9.patch.gz ]

Here is a small doc-patch to   Table F-6. hstore Operators

It corrects its booleans in the 'Result' column ( t and f  instead of  true and 
false ).

Thanks,

Erik Rijkers



-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] jsonb and nested hstore - small docpatch

2014-01-30 Thread Erik Rijkers
On Thu, January 30, 2014 23:15, Erik Rijkers wrote:
 On Thu, January 30, 2014 20:07, Andrew Dunstan wrote:

 Updated  patches for both pieces. Included is some tidying done by

 [ nested-hstore-9.patch.gz ]

 Here is a small doc-patch to   Table F-6. hstore Operators

 It corrects its booleans in the 'Result' column ( t and f  instead of  true 
 and false ).

I mean, here it is...

--- doc/src/sgml/hstore.sgml.orig	2014-01-30 22:39:52.970474354 +0100
+++ doc/src/sgml/hstore.sgml	2014-01-30 22:57:27.630698633 +0100
@@ -286,7 +286,7 @@
   entrytypeboolean//entry
   entryget boolean value for key (literalNULL/ if not boolean or not present)/entry
   entryliteral'a =gt; 42.0, b =gt; true'::hstore ?gt; 'b'/literal/entry
-  entryliteraltrue/literal/entry
+  entryliteralt/literal/entry
  /row
 
  row
@@ -294,7 +294,7 @@
   entrytypeboolean//entry
   entryget boolean value for array index (literalNULL/ if not boolean or not present)/entry
   entryliteral'[false,null,44]'::hstore ?gt; 0/literal/entry
-  entryliteralfalse/literal/entry
+  entryliteralf/literal/entry
  /row
 
  row
@@ -318,7 +318,7 @@
   entrytypeboolean//entry
   entryget boolean value for key path (literalNULL/ if not boolean or not present)/entry
   entryliteral'foo =gt; {bar =gt; true}'::hstore #?gt; '{foo,bar}'/literal/entry
-  entryliteraltrue/literal/entry
+  entryliteralt/literal/entry
  /row
 
  row
@@ -366,7 +366,7 @@
   entrytypeboolean//entry
   entrydoes typehstore/ contain key?/entry
   entryliteral'a=gt;1'::hstore ? 'a'/literal/entry
-  entryliteraltrue/literal/entry
+  entryliteralt/literal/entry
  /row
 
  row
@@ -374,7 +374,7 @@
   entrytypeboolean//entry
   entrydoes typehstore/ contain array index?/entry
   entryliteral'[a,b,c]'::hstore ? 2/literal/entry
-  entryliteraltrue/literal/entry
+  entryliteralt/literal/entry
  /row
 
  row
@@ -382,7 +382,7 @@
   entrytypeboolean//entry
   entrydoes typehstore/ contain key path?/entry
   entryliteral'[1, 2, {foo=gt;hi}]'::hstore #? '{2,foo}'/literal/entry
-  entryliteraltrue/literal/entry
+  entryliteralt/literal/entry
  /row
 
  row
@@ -390,7 +390,7 @@
   entrytypeboolean//entry
   entrydoes typehstore/ contain all specified keys?/entry
   entryliteral'a=gt;1,b=gt;2'::hstore ?amp; ARRAY['a','b']/literal/entry
-  entryliteraltrue/literal/entry
+  entryliteralt/literal/entry
  /row
 
  row
@@ -398,7 +398,7 @@
   entrytypeboolean//entry
   entrydoes typehstore/ contain any of the specified keys?/entry
   entryliteral'a=gt;1,b=gt;2'::hstore ?| ARRAY['b','c']/literal/entry
-  entryliteraltrue/literal/entry
+  entryliteralt/literal/entry
  /row
 
  row
@@ -406,7 +406,7 @@
   entrytypeboolean//entry
   entrydoes left operand contain right?/entry
   entryliteral'a=gt;b, b=gt;1, c=gt;NULL'::hstore @gt; 'b=gt;1'/literal/entry
-  entryliteraltrue/literal/entry
+  entryliteralt/literal/entry
  /row
 
  row
@@ -414,7 +414,7 @@
   entrytypeboolean//entry
   entryis left operand contained in right?/entry
   entryliteral'a=gt;c'::hstore lt;@ 'a=gt;b, b=gt;1, c=gt;NULL'/literal/entry
-  entryliteralfalse/literal/entry
+  entryliteralf/literal/entry
  /row
 
  row
-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers