sqlite http-proxy can't handle undefined values on `.get()` ?
Hi drizzle team! I've been playing with the http-proxy plugin to see how it works, and I hit a funny edge case trying to handle
They, I attempted a
I tested the
It seems it's trying to parse the value even when
undefined values on get(). The docs show this barebones example to set up an http proxy:They, I attempted a
.get() request for a value that doesn't exist in the database:I tested the
better-sqlite3 adapter and found email should return undefined (which doesn't match the type inference mind you!). But in the SQlite proxy, I get a much funnier result:It seems it's trying to parse the value even when
rows is an empty array in the adapter. Is there a way to return undefined for this case as in the better-sqlite adapter? Thanks!