Heb
Heb
> Was anyone able to make this work with Nuxt 3? I tried using the @vitejs/plugin-vue 'vue()' plugin, but this seems to not be compatible with Nuxt (3) You can...
I remember @Atinux said he was investigating it
As I was working on https://github.com/libsql/libsql-client-ts/pull/71, I wasn't able to return a `bigint` from the bun:sqlite driver. It would be great to have something similar to `bettersqlite-3` https://github.com/WiseLibs/better-sqlite3/blob/master/docs/integer.md Here's an...
The following code is working properly and logs "debug error 1" : ```ts const f = $fetch.create({ onRequest(ctx): Promise { throw "debug error 1"; }, }); await f("http://httpstat.us/500"); ``` @HydrofinLoewenherz...
> Now that also AWS lambda has [support for streaming](https://aws.amazon.com/blogs/compute/introducing-aws-lambda-response-streaming/), are there any plans for supporting streaming out of the box? This has been working with Cloudflare workers for a...
@aseemk If you can afford a short downtime/maintenance on the app and have a migration script that reads all tables with jsonb columns, read the jsonb column and fix it,...
This doesn't affect pg users right?
> To clarify: we use pg, and this affects us. > > We're able to insert and retrieve our JSON data _through Drizzle_ without any issues today. But we're unable...
> Is this fix waiting on a migration path for existing `jsonb` data? If so, would it be possible to decouple these problems so it could be released? A couple...
@Angelelz Investigating this a little I think it might be because of the fact that I'm using camelCase / pascalCase and drizzle incorrectly quote things in this scenario.