Issues with Drizzle SQL Module and Effect Compatibility
Having some issues with the drizzzle sql module.
Well, I figured out where to start, this is what's happening:
The new rqbv2 makes queries like :
In the effect/sql-drizzle internal folder:
I assume therefore the query engine wouldn't be supported?
Well, I figured out where to start, this is what's happening:
The new rqbv2 makes queries like :
sql: 'select "d0"."id" as "id", "d0"."name" as "name" from "users" as "d0"', and I think effect doesn't like it because it wants something like sql: 'select "id", "name" from "users"',In the effect/sql-drizzle internal folder:
statement = client.unsafe( prepared.query.sql, prepared.query.params ) should return fields, but is returning undefinedI assume therefore the query engine wouldn't be supported?
