danclaroni

Results 11 comments of danclaroni

for context this appears to exist, but it doesnt work. What is implemented right now is: ```ts const result = await db .with(usersSubQuery) .select() ... // your prefsSubQuery composed here...

I have a similar issue where hard-navigation occurs when `__data.json?x-sveltekit-invalidated=01` results in a 403 for whatever reason (deployed to cloudfront/s3)

this was working for me for a while, but now this same issue appears to exist with between query filters when the value is a date object and when inserting...

The problem appears to be in `drizzle-orm/pg-core/columns/timestamp.js`. The offending code is: ```ts mapToDriverValue = (value) => { return this.withTimezone ? value.toUTCString() : value.toISOString(); }; ``` the `toUTCString()` doesnt work for...

@AndriiSherman I am now able to insert and select timestamptz with AWS Data API (v1), BUT i believe the conversion from DB date/time to typescript Date is incorrect. e.g. ```sql...

Seems like you should be able to update your integrations tests to insert a specific time and then upon retrieval verify the same time that was inserted was retrieved (via...

@AndriiSherman just a heads up that i am still getting the issue on 0.30.1 with the timestamps being in different timezones. I am using timestamp with timezone in mode date....

@AndriiSherman see my last post in the general discord channel. I think I have a fix, but I'm not 100% sure why. Looks like some of my timestamps with timezones...