From: | PG Bug reporting form <noreply(at)postgresql(dot)org> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Cc: | ylshiyu(at)126(dot)com |
Subject: | BUG #18840: Segmentation fault in executing select unnest(array(oidvector)) |
Date: | 2025-03-12 12:30:03 |
Message-ID: | 18840-fbc9505f066e50d6@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: 18840
Logged by: yang lei
Email address: ylshiyu(at)126(dot)com
PostgreSQL version: 16.8
Operating system: Ubuntu 22.04
Description:
Hi,
I encountered a segmentation fault when using 'select
unnest(array(oidvector))'.
bug demo:
CREATE TABLE my_table (
id SERIAL PRIMARY KEY,
oidvector_col oidvector
);
INSERT INTO my_table (oidvector_col) VALUES ('12345 67890 54321');
SELECT unnest(ARRAY(SELECT oidvector_col)) from my_table;
server closed the connection unexpectedly
This
probably means the server terminated abnormally
before or while processing the request.
The connection to the server was lost. Attempting reset: 2025-03-12
20:18:04.642 CST [1478] LOG: server process (PID 1578) was terminated by
signal 11: Segmentation fault
From | Date | Subject | |
---|---|---|---|
Next Message | Tender Wang | 2025-03-12 13:24:20 | Re: BUG #18830: ExecInitMerge Segfault on MERGE |
Previous Message | David G. Johnston | 2025-03-12 12:28:49 | Re: Test mail for pgsql-hackers |