Hello, I am currently working on an OAuth2 Validation Module for a Postgres 18 Database which should serve an ducklake Catalog Database, I noticed that you are staticly linking libpq. And vcpkg libpq port is currently at v16.9 right? PG18 introduced the entire SASL OAUTHBEARER mechanism including PQsetAuthDataHook, PQAUTHDATA_OAUTH_BEARER_TOKEN, and the PGoauthBearerRequest struct. So none of that exists for the postgres_scanner extention. I am using PQsetAuthDataHook to inject the JWT Token in the Authenticate workflow where my Module is picking it up and sets user session environment vars according the token. This will then be the rules for RLS filtering ducklake Columns and Tables. My question, is there a plan to bump the version anytime soon. Which possibilities do I have to get my OAuth flow working with duckdb and Postgres? Thanks Christoph
Hello, I am currently working on an OAuth2 Validation Module for a Postgres 18 Database which should serve an ducklake Catalog Database, I noticed that you are staticly linking libpq. And vcpkg libpq port is currently at v16.9 right? PG18 introduced the entire SASL OAUTHBEARER mechanism including PQsetAuthDataHook, PQAUTHDATA_OAUTH_BEARER_TOKEN, and the PGoauthBearerRequest struct. So none of that exists for the postgres_scanner extention. I am using PQsetAuthDataHook to inject the JWT Token in the Authenticate workflow where my Module is picking it up and sets user session environment vars according the token. This will then be the rules for RLS filtering ducklake Columns and Tables. My question, is there a plan to bump the version anytime soon. Which possibilities do I have to get my OAuth flow working with duckdb and Postgres? Thanks Christoph