As the title says, is there a workaround with jOOQ that would let me use DuckDB to query parquet files stored in object storage? Example: read_parquet(s3://path/to/my/parquet_file)
I can think of one way that would be to avoid using jooq-codegen and do it all manually by defining constants, record mappers and query builders.
Is there a better way to do it using the auto generated classes?