-
**Is your feature request related to a problem? Please describe.**
Hi! First of all amazing plugin! Great work, we wanted to do the same and now are just using yours :)
Atm CamelCasePlugin does no…
-
This following query breaks for me.
```
function clampedValue(
n: number
): RawBuilder {
return sql`LEAST(${MAX_VALUE}, GREATEST(${MIN_VALUE}, ${n}))`;
}
```
The error provided is:
> …
-
Hello! If I have a `real` column in Postgres like so
```
CREATE TABLE foo (
bar real
);
INSERT INTO foo (bar) VALUES
(1),
(4.56),
(7.89);
```
```typescript
await db.selec…
-
I am exploring how I could move away from Prisma in favor of Kysely. Reason is to have more control over our queries + performance. However, we have audit logging in place and I cannot get my head aro…
-
https://github.com/kysely-org/kysely/blob/23655565f32fdab79190eaa550227c35e4da03d6/src/dialect/sqlite/sqlite-dialect-config.ts#L41-L42
It looks like Kysley handles `null` and `undefined` perfectly …
-
I have a migration file with a few hundred lines in it, and I am getting this error:
```
$ pnpm tsx scripts/migrate.ts
failed to execute migration "0006"
failed to migrate
error: syntax error a…
-
Just in case anyone needs it, here's how to reuse your [generated Supabase types](https://supabase.com/docs/guides/api/rest/generating-types) for Kysely:
```ts
import { Database } from './types/su…
-
I'd like to pass a plugin to Kysely, but it looks like that's not possible with the `createKysely` function in https://github.com/vercel/storage/blob/main/packages/postgres-kysely/src/index.ts.
I c…
-
Hey guys, not sure if I'm missing something, but does this client not support inserting more than one row at a time? Having trouble finding any mention in planetscale docs, readme, and the code in thi…
-
Hi everyone!
Long story short, I was using Kysely + Postgres.js using `kysely-postgres-js`, however the columns with `text[]` type are being returned as unparsed string array instead of a string …