BUG #18764: server closed the connection unexpectedly

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: dqetool(at)126(dot)com
Subject: BUG #18764: server closed the connection unexpectedly
Date: 2025-01-03 07:36:29
Message-ID: 18764-63ad667ea26e877a@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: 18764
Logged by: Jason Smith
Email address: dqetool(at)126(dot)com
PostgreSQL version: 17.2
Operating system: Linux
Description:

Run the following statements and an error is returned.

CREATE TABLE t0 (c1 INT, c2 DECIMAL);
INSERT INTO t0 VALUES (0, NULL);
INSERT INTO t0 VALUES (8, NULL);
SELECT c2 AS ca2, c2 AS ca3 FROM t0 UNION SELECT DISTINCT ca8 AS ca5, ca7 AS
ca6 FROM (SELECT c1 AS ca7, c2 AS ca8 FROM t0) AS ta1 JOIN (SELECT c1 AS
ca10, c1 AS ca11 FROM t0) AS ta2 ON TRUE; -- server closed the connection
unexpectedly

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message PG Bug reporting form 2025-01-03 16:47:05 BUG #18765: Inconsistent behaviour and errors with LIKE
Previous Message 谭忠涛 2025-01-03 01:17:58 回复:Re: Incorrect sort result caused by ROLLUP and WHERE operation