From: | PG Bug reporting form <noreply(at)postgresql(dot)org> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Cc: | nodepill(at)gmail(dot)com |
Subject: | BUG #17708: 12.4 |
Date: | 2022-12-09 05:33:32 |
Message-ID: | 17708-1d976d155a1b2b41@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: 17708
Logged by: zoro roronoa
Email address: nodepill(at)gmail(dot)com
PostgreSQL version: 15.1
Operating system: macOS 12.4
Description:
PostgreSQL 14.6 on x86_64-apple-darwin20.6.0, comp
WITH RECURSIVE search_tree(id, link, data) AS (
SELECT t.id, t.link, t.data
FROM tree t
UNION ALL
SELECT t.id, t.link, t.data
FROM tree t join search_tree st on t.id = st.link
WHERE t.id < 2
) SEARCH DEPTH FIRST BY id SET ordercol
[42601] ERROR: syntax error at end of input
But run ok in PostgreSQL 15.1 (Debian 15.1-1.pgdg110+1) on
x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110,
64-bit
From | Date | Subject | |
---|---|---|---|
Next Message | PG Bug reporting form | 2022-12-09 08:46:02 | BUG #17709: Regression in PG15 with window functions - "WindowFunc not found in subplan target lists" |
Previous Message | Justin Baur | 2022-12-08 20:03:20 | Re: CREATE COLLATION without LOCALE throws error in v15 |