adjust / parquet_fdw

Parquet foreign data wrapper for PostgreSQL
PostgreSQL License
351 stars 38 forks source link

ERROR: cache lookup failed for type 10 #38

Closed za-arthur closed 1 year ago

za-arthur commented 3 years ago

I try to test example parquet files from data folder. I get the error if I try to select all records:

select * from test_parquet;
ERROR:  cache lookup failed for type 10

test_parquet is created with by the following query:

create foreign table test_parquet (
    one bigint,
    two bigint[],
    three text,
    four timestamp without time zone,
    five date,
    six boolean,
    seven double precision
)
server parquet_srv
options (
    filename '/home/artur/sources/adjust/parquet_fdw/data/simple/example1.parquet /home/artur/sources/adjust/parquet_fdw/data/simple/example2.parquet /home/artur/sources/adjust/parquet_fdw/data/complex/example3.parquet',
    sorted 'one two');