CrunchyData / pg_parquet

Copy to/from Parquet in S3 from within PostgreSQL
Other
361 stars 11 forks source link

pg_parquet cannot find tables via `search_path` #43

Closed onderkalaci closed 1 month ago

onderkalaci commented 1 month ago

sc1.t1 exists, but pg_parquet cannot find:

create schema sc1;

create table sc1.t1(a int);
insert into sc1.t1 VALUES (1);
INSERT 0 1
 COPY sc1.t1 TO '/tmp/sc1.parquet';
ERROR:  no such relation

But this works:

set search_path to sc1;
COPY t1 TO '/tmp/sc1.parquet';
COPY 1
aykut-bozkurt commented 1 month ago

fixed at development by 2225e615ffa190e9843caa8bc07942cf6170eac0