`@neondatabase/serverless` connection string doesn't accept strings without passwords?
Couldn't find much info on this online, but I'm runnign into an odd error with
Using the snippet from the drizzle docs:
It's error out saying:
Now I know that the protocol prefix
Is this not a supported syntax? I'm assuming
Or am I missing something simple maybe? 
@neondatabase/serverless and trying to initiate a neon instance.Using the snippet from the drizzle docs:
It's error out saying:
Now I know that the protocol prefix
postgres:// (as opposed to postgresql:// as shown in the error example) should work, its shown that way elsewhere in the docs / the postgres ecosystem. I've tried both and it still errors. So I can only imagine that it doesnt like the fact that my user postgres doesn't have a password. Removing the user part entirely (so its just postgres://10.0.0.25:5432/drizzletest also throws the same error, not an auth error as might be expected)Is this not a supported syntax? I'm assuming
neondatabase/serverless uses some preexisting postgres conneciton string parsing and/or this is a common enough use-case so this should work 