Vladimir Tzankov
Vladimir Tzankov
@danielcompton the output of str is fine. the problem is that loom.io/dot-esc does not escape backslashes and graphviz gets really confused. Escaping the backslash fixes the issue: (defn- dot-esc [s](escape...
I don't think SQLPage should try to "fix" the connection. Rather the problem should be reported and connection recycled (close/open). If I'm not wrong there are two cases to get...
I like disabling the connection pooler - entirely and/or just for some endpoints. Besides the transaction handling this will also fix hanging temp tables and whatever other session data kept...
This is not the proper way to handle errors in the SQL scripts, imo. It kind of fixes only errors within explicit multistatement transactions. 1. The happy path in most...
Looks great, thank you! There is small error in the docs here: [sqlpage/on_disconnect.sql](https://github.com/sqlpage/SQLPage/blob/main/configuration.md#postgresql) - shouldn't it be `on_reset.sql` instead?