You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT ctid FROM columnstore_table causes an error.
To Reproduce
createtablecolumnstore_table (id int) using columnstore;
select ctid from columnstore_table;
ERROR: (PGDuckDB/CreatePlan) Prepared query returned an error: 'Binder Error: Referenced column "ctid" not found in FROM clause!Candidate bindings: "columnstore_table.id"LINE 1: SELECT ctid FROM pgmooncake.public.columnstore...
In a heap table, ctid can be used.
createtableheap_table (id int);
select ctid from heap_table;
ctid
------
(0 rows)
OS:
Debian GNU/Linux 12 (bookworm)
pg_mooncake Version:
latest docker image
Postgres Version:
17.0
Are you using pg_mooncake Docker, Neon, or the extension standalone?
pg_mooncake Docker Image
The text was updated successfully, but these errors were encountered:
What happens?
SELECT ctid FROM columnstore_table
causes an error.To Reproduce
In a heap table, ctid can be used.
OS:
Debian GNU/Linux 12 (bookworm)
pg_mooncake Version:
latest docker image
Postgres Version:
17.0
Are you using pg_mooncake Docker, Neon, or the extension standalone?
pg_mooncake Docker Image
The text was updated successfully, but these errors were encountered: