mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Fix contrib/hstore to throw an error for keys or values that don't fit in its
data structure, rather than silently truncating them. Andrew Gierth
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
<!-- $PostgreSQL: pgsql/doc/src/sgml/hstore.sgml,v 1.2 2007/12/06 04:12:10 tgl Exp $ -->
|
||||
<!-- $PostgreSQL: pgsql/doc/src/sgml/hstore.sgml,v 1.3 2009/03/15 22:05:17 tgl Exp $ -->
|
||||
|
||||
<sect1 id="hstore">
|
||||
<title>hstore</title>
|
||||
@ -14,6 +14,12 @@
|
||||
that are rarely examined, or semi-structured data.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
In the current implementation, neither the key nor the value
|
||||
string can exceed 65535 bytes in length; an error will be thrown if this
|
||||
limit is exceeded. These maximum lengths may change in future releases.
|
||||
</para>
|
||||
|
||||
<sect2>
|
||||
<title><type>hstore</> External Representation</title>
|
||||
|
||||
|
Reference in New Issue
Block a user