Closed onderkalaci closed 1 month ago
sc1.t1 exists, but pg_parquet cannot find:
sc1.t1
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
fixed at development by 2225e615ffa190e9843caa8bc07942cf6170eac0
sc1.t1
exists, but pg_parquet cannot find:But this works: