getting the initialize drizzle types.
LibsqlError: SQLITE_BUSY: database is locked
LibsqlError: SQLITE_BUSY: database is locked error on my insert function here with LibSQL/Turso as my SQLite driver
```ts
export async function putClientGroup(
clientGroup: ClientGroupRecord,
): Promise<void> {...Convert PostgreSQL to Drizzle ORM
Cannot use 'in' operator to search for 'enumValues' in undefined
how to properly close mysql pool connection?
Top-level await in drizzle.config.ts
await is only supported in migrate/studio commands and not generate/check, is this something that can be trivially added to drizzle-kit?
In my case I'm reading the secret asynchronously via AWS.
There's an open issue with a workaround posted, which does work, but is kind of gross: https://github.com/drizzle-team/drizzle-orm/issues/1982#issuecomment-2112340840...Drizzle with Zod throws type errors with simple `numeric` example
Why is it the case that my IDE says `await` does nothing on pretty much every single function?
await does nothing on the migrate function or any of the db.select() calls....How to do and "inArray" with a dinamic array?

too many clients already, remaining slots reserved for superuser
SELECT count(*) FROM pg_stat_activity and noticed that there are indeed 100 connections which is the max. However, I noticed most of them are idle. Temporarily I've increased the max_connections to 500. I have couple of questions to which I'm not getting straightforward answers:
1. Why are there so many idle connections? I understand if there are many active connections. But why idle?
2. If there are that many idle connections, shouldn't the connection pool of postgres.js kick in as it says here (https://github.com/porsager/postgres?tab=readme-ov-file#the-connection-pool) that the previous open connection will be used? So my understanding is that the idle connections will be made active with the new queries. Why isn't that happening?
3. Will I have to manually set the idle_timeout and max_lifetime values to lower and optimal values for my use case to get rid of idle connections?
4. Along with the increasing max_connections, should I increase anything else? Do I need something like pg_bouncer and how would that help?...Weird freeze in code, seemingly stalling on drizzle query

Typescript Error

Warning: You need to pass an instance of Client:Client
Prepared insert statement with customType
Placeholder object gets passed to the toDriver of the custom type. How do I resolve it?
Schema:
```ts
export const sessionSchema = pgTable('session', {...Drizzle ORM + Supabase Enforce SSL
Can't infer relationship one-to-one
Error: There is not enough information to infer relation "users.role" although I'm sure I'm following the example on this page: https://orm.drizzle.team/docs/rqb#one-to-one
Can anyone help me find the issue?
Code: ...Cannot set null value to FK - null value in column "X" of relation "Y" violates not-null constraint
Drizzle complains when I'm trying to insert into a table.
Is it possible to use the Query API to select many-to-many relations?
How can I configure `drizzle-kit introspect` to generate a schema with a schema?
drizzle-kit introspect it generates a schema.ts file without using a pg schema. It should be obvious to drizzle-kit that I'm using schemas since I have ?schema=myschema at the end of the database connection string. How can I fix this?