BUG #15262: "unexpected end of tuplestore" error when using newGROUPS window function clause - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #15262: "unexpected end of tuplestore" error when using newGROUPS window function clause
Date
Msg-id 153086788677.17476.8002640580496698831@wrigleys.postgresql.org
Whole thread Raw
Responses Re: BUG #15262: "unexpected end of tuplestore" error when using new GROUPS window function clause
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      15262
Logged by:          Lukas Eder
Email address:      lukas.eder@gmail.com
PostgreSQL version: 11beta2
Operating system:   Debian 6.3.0-18+deb9u1
Description:

This error can be reproduced easily as follows

  postgres=# SELECT count(*) OVER (GROUPS 1 PRECEDING) FROM (VALUES (1),
(2), (2)) t(v);
  ERROR:  unexpected end of tuplestore

Notice the missing ORDER BY clause in the window specification. This works
as expected:

  postgres=# SELECT count(*) OVER (ORDER BY v GROUPS 1 PRECEDING) FROM
(VALUES (1), (2), (2)) t(v);
   count
  -------
       1
       3
       3
  (3 rows)

I used the latest 11 beta 2 version on Docker:

  postgres=# select version();
                                                                   version


-----------------------------------------------------------------------------------------------------------------------------------------
   PostgreSQL 11beta2 (Debian 11~beta2-1.pgdg90+1) on x86_64-pc-linux-gnu,
compiled by gcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516, 64-bit
  (1 row)


pgsql-bugs by date:

Previous
From: Taiki Kondo
Date:
Subject: Typo in Japanese translation of psql.
Next
From: Yugo Nagata
Date:
Subject: Re: Typo in Japanese translation of psql.