BUG #14487: malformed empty array from array_fill

From: andrew(at)tao11(dot)riddles(dot)org(dot)uk
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #14487: malformed empty array from array_fill
Date: 2017-01-05 15:21:56
Message-ID: 20170105152156.10135.64195@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 14487
Logged by: Andrew Gierth
Email address: andrew(at)tao11(dot)riddles(dot)org(dot)uk
PostgreSQL version: 9.6.1
Operating system: any
Description:

array_fill returns a malformed empty array when given a size of zero:

select a, a = '{}' from (select array_fill(null::integer, array[0]) as a)
s;
a | ?column?
----+----------
{} | f

The result actually has ndims=1 and a length of 0, which can be checked with
array_length(a,1).

Obvious fix is to move the fast-track empty result to after computing
nitems?

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Andrew Gierth 2017-01-05 15:33:19 Re: BUG #14487: malformed empty array from array_fill
Previous Message Andres Freund 2017-01-05 14:48:20 Re: [BUG] pg9.4.10 Logical decoding did not get the correct oldtuplelen