Paul Draper

Results 166 comments of Paul Draper

You...can't run multiple queries concurrently on a single PostgreSQL connection. It's inherent to the protocol.

> What is the priority of this issue? Do you have an ETA about when it is going to be fixed? Not a maintainer, but I imagine this wouldn't be...

Have reproduced the same.

A simpler method than a temp table is an array parameter. ```sql INSERT INTO "table_name" AS __destination_row ( id, other_column ) SELECT unnest($1::int[], $2::text[]) ON CONFLICT (id) DO UPDATE SET...

> does issuing two statements back to back at the same psql prompt somewhat emulate what happens on the wire with the new executemany()? I think psql parses the SQL...

The new Stardoc tool is *much* better than the old one. It supports both Markdown and HTML. I'm sure you can get superior documentation by hand, but the new Stardoc...

This means there is simply no way to get true wall time on those platform. These have the same appearance: 1. Start span, sleeping for 30 minutes, and end. 2....

FYI, http plugin configuration should really just accept a generic filter hook. Instead of ```ts { ignoreIncomingPaths: [/\/healthz/], } ``` use ```ts { incomingFilter: req => !/\/healthz/.test(req.url), } ``` Filtering...

> I call URL.createObjectURL and need to revokeObjectURL on unmount. This is exactly how I ran into this! > Seems like useEffect is what you need. `useEffect` would involve an...