Trying to connect to QuestDb with Postgres driver

I'm trying to use drizzle for a connection to a QuestDb instance. Their examples are using pg lib for making requests so it should be compatible, but the problem seems to be that drizzle-kit is trying to query non-existent postgres tables. Any workarounds I can do to get it working?

// drizzle-kit studio
error: table does not exist [table=pg_tablespace]
error: table does not exist [table=pg_am]
// drizzle-kit pull
error: table does not exist [table=pg_catalog.pg_user]
// running db.query.table.findMany({})
error: received invalid response: 71
Was this page helpful?