hstoredoc.patch
application/octet-stream
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: unified
| File | + | − |
|---|---|---|
| doc/src/sgml/hstore.sgml | 0 | 0 |
diff --git a/doc/src/sgml/hstore.sgml b/doc/src/sgml/hstore.sgml
index d5e11bd..a744cb3 100644
*** a/doc/src/sgml/hstore.sgml
--- b/doc/src/sgml/hstore.sgml
***************
*** 25,33 ****
<replaceable>value</> pairs separated by commas. Some examples:
<synopsis>
! k => v
! foo => bar, baz => whatever
! "1-a" => "anything at all"
</synopsis>
The order of the pairs is not significant (and may not be reproduced on
--- 25,33 ----
<replaceable>value</> pairs separated by commas. Some examples:
<synopsis>
! SELECT k % v;
! SELECT 'foo => bar, baz => whatever';
! SELECT '"1-a" => "anything at all"
</synopsis>
The order of the pairs is not significant (and may not be reproduced on
*************** key => NULL
*** 114,122 ****
</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>
--- 114,122 ----
</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>