Rene Saarsoo
Rene Saarsoo
With single command the exit code is as expected: ``` $ parallelshell "ls asdf" ls: asdf: No such file or directory $ echo $? 1 ``` With multiple commands it...
Hi, I'm the maintainer of [sql-formatter][1] library, and while this extension seems to be the most popular in VSCode marketplace (among many others that under the hood use sql-formatter), it...
Atom-import-js used to work just fine, until one fine day it suddenly stopped working. Perhaps related to recent OSX update. Got the following error in console: > Failed to require...
Whenever I execute any of the atom-import-js commands, the CPU goes to 100% and everything in Atom becomes terribly slow. This happens regardless of whether I run Atom in normal...
I did some batch-renaming of files outside Atom, and now the "Go to word" command takes me to old file that doesn't exist any more. I've tried restarting Atom, but...
The following fails to parse: ```sql SELECT 'foo' ^@ ANY = '{f,b}' ``` ``` Syntax Error: Unexpected "ANY" Was expecting to see: "$", "(", "+", "-", ":", "?", "@", "ARRAY",...
#### Domains - [x] [CREATE DOMAIN](https://www.postgresql.org/docs/current/sql-createdomain.html) - [x] `name [AS] data_type` - [x] `COLLATE collation` - [x] `DEFAULT expression` - [x] `domain_constraint [ ... ]`: - [x] `CONSTRAINT constraint_name` -...
These fields don't actually exists, but are defined in types: - The `ResetAllParametersClause` contains `name` field. - The `CreateFunctionStmt` contains `behaviorKw` field. Also the parsing rule for `ResetAllParametersClause` seems to...
### Roles - [x] [CREATE ROLE](https://www.postgresql.org/docs/17/sql-createrole.html) - [x] `[WITH] option ...`: - [x] `SUPERUSER | NOSUPERUSER` - [x] `CREATEDB | NOCREATEDB` - [x] `CREATEROLE | NOCREATEROLE` - [x] `INHERIT |...
#### Basic syntax - [ ] [Keywords](https://www.postgresql.org/docs/current/sql-keywords-appendix.html) - [ ] Some reserved keywords can be used in implicit alias names - [x] All reserved keywords can be used in explicit...