L-Mario564

Results 77 comments of L-Mario564

You might be forced to use CJS syntax then, which this package should support.

What version of the ORM are you using? Do you know if this worked in a previous version?

@rev4324 Hi there, is this still an issue? I cloned your reproduction repo and it seems both drivers now return the same values.

This isn't something that Drizzle will provide first-party support for, since we don't provide tools for specific frameworks and its meant to be framework-agnostic. The Prisma store mentioned is a...

Drizzle ORM now has a feature that easily abstracts the counting rows query: https://orm.drizzle.team/docs/query-utils#count

> @L-Mario564 are you sure this and #1826 are related? as far as I can tell, one is about the usage of `isNotNull` in `select`, whereas the other (this one)...

Just to give everyone an update, the team is working on polishing the existing drivers and dialects before integrating any new ones. Do expect this to be merged before Drizzle...

Use `PgJsonbBuilder` instead of `PgJsonbBuilderInitial`. You can also make your own abstraction: ```ts type JsonbBuilderWithData = PgJsonbBuilder ```