Jorge Fuentes
Jorge Fuentes
### READ CAREFULLY In short: I can do a custom SQL query that works the same as the timescale planner but is way faster than the planner, which shouldn't be...
### What type of bug is this? Other ### What subsystems and features are affected? Compression ### What happened? 1. I insert data into a table. It creates chunks. 2....
I have this code: ```ts try { await pg.unsafe("My query"); } catch (e) { // whatever } ``` The connection is inmediately lost as a test that I have is...
I noticed that on long strings, `escapeLiteral` goes really slow. I created my own `escapeLiteral` and I decided to push it. I saw this issue when searching: https://github.com/brianc/node-postgres/issues/3194 On short...
I was inserting data on a database where the disk is full, so it kept returning error: No space left on device. When I receive an error, I retry the...