Valentinas Janeiko
Valentinas Janeiko
Parsing: ```sql COMMENT ON FUNCTION foobar IS 'my comment'; ``` Fails with: ```js Error: Syntax error at line 1 col 21: COMMENT ON FUNCTION foobar ^ Unexpected word token: "foobar"....
Parsing: ```sql ALTER TYPE foo ADD VALUE 'bar'; ``` Fails with: ```js Error: Syntax error at line 1 col 12: ALTER TYPE foo ^ Unexpected word token: "foo". I did...
Parsing: ```sql /* returns: in a comment */ ``` Fails with: ```js Error: invalid syntax at line 2 col 8: returns: in a comment ^ Unexpected input (lexer error). Instead,...
Parsing: ```sql WITH cte(bar) AS ( SELECT * FROM foo ) SELECT * FROM cte; ``` Fails with: ```js Error: Syntax error at line 1 col 9: WITH cte( ^...
Parsing: ```sql ALTER TABLE foo ADD bar BOOLEAN NOT NULL GENERATED ALWAYS AS ( foo_bar = TRUE ) STORED; ``` or ```sql CREATE TABLE foo ( bar text NULL, is_bar...
/kind bug **What steps did you take and what happened:** - Create Experiment - Choose `Neural Architecture Search` in `Section 4: Search Algorithm` - Click `Edit YAML` link at the...
## Summary If I install clinic as a project dependency for a CJS project, or use `pnpm exec` from inside a CJS project to run it, clinic fails to generate...
```ts const schema = z.object({}).catchall(z.boolean()); type T = z.output; // ^? {} ``` I am expecting `type T = Record`, but inferred type is empty object instead.
I am getting `Cannot read properties of undefined (reading 'endCol')` when trying to generate coverage after a `jest` test run when using `@swc/jest` as a transformer. # Error ```js TypeError:...
If a repo has multiple `.gitignore` files, `oxc_language_server` will apply all patterns as if both file were in the root of the repo. Imagine the following project structure: ``` /repo...