drizzle-orm but have recently come across a problem that I cannot for the life of me figure out. Any insight into a solution, or even how to debug this further would be helpful.nuxt. Data used for the backend API is provided by drizzle.jsonb columns. This data contains strings (peoples names) that often have characters outside the standard en-us character set. For a long time (almost a year) this has worked seemingly well for me and I had not noticed any errors. Recently though, I've started to receive errors like this from postgres - invalid byte sequence for encoding "UTF8": 0xf8invalid byte sequence for encoding "UTF8": 0xe5 0x6b 0x61USC-2 . The byte sequence that is reported as error is the unicode representation of the extended character not the utf-8 sequence. I determined this by running db.execute(sql'${JSON.stringify(entries)}::bytea') and then dumping the resulting buffer with toString('hex')update, with extended characters, works immediately after the service comes up, but will then consistently fail after some amount of time.postgres.js driver and assumed that it was a bug in their implementation, so I switched to node-postgres and ran into the same issue.