Constantine Peresypkin
Constantine Peresypkin
See https://github.com/brianc/node-postgres/issues/2338 Local connection will hang indefinitely on any `nodejs >= 14.0`
Sometimes packages are not on npm registry: local development, monrepos, etc. It would be nice to get these ignored and not failing, maybe behind a flag: `--ignoreMissing`. Although looking at...
both globals may not be available in embedded environments there is no need to call `process` at all if it's not there there is a standardized `global` object now: [globalThis](https://github.com/tc39/proposal-global),...
Syntax: ```sql SELECT * FROM executable('', '', '', (SELECT * FROM table), SETTINGS env.VAR1 = 'test', env.VAR2 = 1 ) ``` _note: will **not** overwrite existing env vars_ fixes: #39840...
**Describe the bug** Aurora serverless cannot be connected to **To reproduce** Open [RDS]->[Connect with Secret manager]->FAIL **Expected behavior** Ability to connect to Aurora serverless **Screenshots** **Your Environment** - OS: Linux...
Is there any reason why `stream-browserify` depends on `[email protected]` while `browserify` itself depends on `readable-stream@^2` ? Right now streams are kind of unusable: 1. `stream-browserify` dependency tree is botched see...
### Description See #115 Which was closed pretty prematurely. The problem is that docker-compose uses a special netfilter config that remaps `127.0.0.11` in a pretty funny way. I.e.: ``` Chain...
``` create or replace function big_int_bug() returns text as $$ BigInt("1".repeat(1e8)) $$ language plv8; select big_int_bug(); ``` will uninterruptedly hang plv8 background pid and even server restart won't be possible...
fixes #333 have no idea how to test the upgrade path though
Example: ``` create table t1 (id int, name text); create table t2 (id int, name text); create or replace view v1 as select * from t1 union all select *...