Valentinas Janeiko

Results 22 issues of Valentinas Janeiko

**Describe the bug** `csv-parse` and `csv-stringify` (possibly others too) have `Options` class defined, which does not extend corresponding `Stream` options. **To Reproduce** ```typescript import * as csvParse from 'csv-parse'; const...

**Description** If I create `NatsServiceRole` with a mathcing name in 2 different namespaces, Nats Operator will crate a total of 4 secrets, two in each namespace, but if I try...

Parsing: ```sql ALTER TABLE foo DROP bar CASCADE; ``` Fails with: ```js Error: Syntax error at line 1 col 26: ALTER TABLE foo DROP bar CASCADE ^ Unexpected word token:...

Parsing: ```sql ALTER INDEX foo_idx RENAME TO bar_idx; ``` Fails with: ```js Error: Syntax error at line 1 col 13: ALTER INDEX foo_idx ^ Unexpected word token: "foo_idx". I did...

Parsing: ```sql DROP TRIGGER bar on foo; ``` Fails with: ```js Error: Syntax error at line 1 col 14: DROP TRIGGER bar ^ Unexpected word token: "bar". I did not...

Parsing: ```sql ALTER TABLE foo ADD bar_id BIGINT NOT NULL UNIQUE REFERENCES bar; ``` Fails with: ```js Error: Syntax error at line 1 col 65: ALTER TABLE foo ADD bar_id...

Parsing: ```sql CREATE TRIGGER t1 BEFORE UPDATE ON foo FOR EACH ROW WHEN (OLD.bar = False) EXECUTE PROCEDURE p1(); ``` Fails with: ```js Error: Syntax error at line 1 col...

Parsing: ```sql INSERT INTO foo (c1) VALUES (1), (2) ON CONFLICT ON CONSTRAINT bar DO NOTHING; ``` Fails with: ```js Error: Syntax error at line 3 col 13: ON CONFLICT...

Parsing: ```sql UPDATE foo SET (c1, c2, c3) = ( SELECT 1, 2, 3 ); ``` Fails with: ```js Error: number of columns does not match number of values at...

Parsing: ```sql ALTER TABLE foo ALTER bar TYPE opt USING bar::opt; ``` Fails with: ```js Error: Syntax error at line 2 col 26: foo ALTER bar TYPE opt USING ^...