[BUGS] BUG #14476: crosstabview reports mistaken location - Mailing list pgsql-bugs

From t.katsumata1122@gmail.com
Subject [BUGS] BUG #14476: crosstabview reports mistaken location
Date
Msg-id 20161225021519.10139.45460@wrigleys.postgresql.org
Whole thread Raw
Responses Re: [BUGS] BUG #14476: crosstabview reports mistaken location
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      14476
Logged by:          Tomonari Katsumata
Email address:      t.katsumata1122@gmail.com
PostgreSQL version: 9.6.1
Operating system:   macOS Sierra 10.12.1
Description:

Hi,

I'm playing with crosstabview, PostgreSQL9.6 new feature.
And I noticed the error message is not correct when it has duplicate data.

-- How to reproduce -----
create table ctv(x int, y int, v text);
insert into ctv values (1, generate_series(1,10), '*');
insert into ctv values (1, 10, '*'); -- duplicate data
select * from ctv;
\crosstabview
-------------------------

The last 2 statements work like below.

postgres=# select * from ctv;
 x | y  | v
---+----+---
 1 |  1 | *
 1 |  2 | *
 1 |  3 | *
 1 |  4 | *
 1 |  5 | *
 1 |  6 | *
 1 |  7 | *
 1 |  8 | *
 1 |  9 | *
 1 | 10 | *
 1 | 10 | *
(11 rows)

postgres=# \crosstabview
\crosstabview: query result contains multiple data values for row "1",
column "9"


In above case, although there is duplicate data on row(x):1 and
column(y):10,
row(x):1 and column(y):9 is not duplicate.

So I think it should be the message say
  \crosstabview: query result contains multiple data values for row "1",
column "10"


It seems this problem is reproduced when number of row is higher than 10.
Could you check this, please?

Best regards,
-------
Tomonari Katsumata



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

pgsql-bugs by date:

Previous
From: Michael Paquier
Date:
Subject: Re: [BUGS] BUG #14475: buffer overflow and segmentation fault
Next
From: meirav.rath@imperva.com
Date:
Subject: [BUGS] BUG #14477: Can't start service because of upgrade-like installation