mirror of
https://github.com/postgres/postgres.git
synced 2025-08-24 09:27:52 +03:00
In plpgsql, don't try to convert int2vector or oidvector to expanded array.
These types are storage-compatible with real arrays, but they don't support toasting, so of course they can't support expansion either. Per bug #14289 from Michael Overmeyer. Back-patch to 9.5 where expanded arrays were introduced. Report: <20160818174414.1529.37913@wrigleys.postgresql.org>
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
*
|
||||
* The OIDVECTOR and INT2VECTOR datatypes are storage-compatible with
|
||||
* generic arrays, but they support only one-dimensional arrays with no
|
||||
* nulls (and no null bitmap).
|
||||
* nulls (and no null bitmap). They don't support being toasted, either.
|
||||
*
|
||||
* There are also some "fixed-length array" datatypes, such as NAME and
|
||||
* POINT. These are simply a sequence of a fixed number of items each
|
||||
|
Reference in New Issue
Block a user