drizzle-orm icon indicating copy to clipboard operation
drizzle-orm copied to clipboard

Fix Bun Sqlite JSONb parsing

Open zackify opened this issue 1 year ago • 0 comments

I am not sure if this is the correct place to have this fix.

Better-sqlite3 adapter returns a "Buffer" for jsonb fields in the all function.

Bun sqlite is returning an U8IntArray.

This breaks json parsing in drizzle when querying for jsonb records.

The fix I did, just converts the u8intarrays to buffers which drizzle is expecting, now I can query and return json with bun correctly.

zackify avatar May 20 '24 19:05 zackify