Rene Saarsoo

Results 101 issues of Rene Saarsoo

#### Procedural language - [x] DECLARE - [ ] SET - [x] basic syntax - [x] multi-variable assignment - [ ] GLOBAL, PERSIST, PERSIST_ONLY, SESSION - [x] BEGIN .. END...

#### DDL Statements - [ ] view - [ ] CREATE VIEW - [x] OR REPLACE - [ ] ALGORITHM = UNDEFINED | MERGE | TEMPTABLE - [ ] DEFINER...

#### Operators - [ ] [100% correct operator precedence](https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-PRECEDENCE) - [x] `OPERATOR(...)` syntax, like `OPERATOR(+)` or `OPERATOR(schema.table.|//)` - [x] `~` can be both a unary or binary operator (bitwise negation...

Currently the plugin strips trailing commas to enforce a consistent syntax across all SQL dialects. Trailing commas are not part of the SQL standard and are only supported by a...

So that [prettier-plugin-embed](https://github.com/Sec-ant/prettier-plugin-embed/pull/40#issuecomment-1880420698) would not need to update its parser list each time new dialect is added.

I would like to keep the background a constant color when zooming in/out. I discovered various issues about the background color. [These](https://github.com/jagenjo/litegraph.js/issues/308) suggested setting `background_image` property. This works, but the...

Currently the following produces a syntax error: ```sql SELECT JSON_OBJECT( 'key':'value', 'key2':my_table.my_column ) ``` See also: https://github.com/sql-formatter-org/sql-formatter/issues/761

- `three` version: 0.166.1 - `@react-three/fiber` version: 8.16.8 - `@react-three/drei` version: 9.108.4 - `node` version: 20.8.0 - `npm` version: 10.1.0 ### Problem description: When using the following code to render...

bug

For example: ```sql CREATE TYPE public.my_type AS ENUM('a', 'b', 'c'); SELECT 'a'::public.my_type; ``` The select statement produces a parse error: ``` Syntax Error: Unexpected "." Was expecting to see: ......

- [ ] [COMMENT ON](https://www.postgresql.org/docs/current/sql-comment.html) `... IS { string_literal | NULL }` - [x] `ACCESS METHOD object_name` - [x] `AGGREGATE aggregate_name ( aggregate_signature )`, where `aggregate_signature` is: - [ ]...