edgedb-cli
edgedb-cli copied to clipboard
The EdgeDB CLI
Currently we just pull the column headings from the Value objects. This means that if there are zero rows, we produce something like: ``` ┌┐ └┘ ``` as the entire...
``` _localdev:main> create extension pgvector; OK: CREATE EXTENSION _localdev:main> select $0; Unimplemented input type 9565dd88-04f5-11ee-a691-0b6ebe179825 ```
> side note: it would be nice to log out more trace details of the very complicated DSN resolution algorithm to make this a little easier to troubleshoot)
We detect when the migration files are out of sync correctly, but I think we didn't update the code once we added the hash to the end of the file...
I recently had an issue connecting to a local project instance. It turned out to be my own fault, but in the process of debugging I wasn't able to get...
A user has reported that after following the official installer via `curl | sh`, they are able to run the `edgedb` command _within that terminal session_ but surprisingly _not_ after...
Queries returning postgis types are currently unsupported: ``` select 'POINT (1 2 3)'; edgedb error: ProtocolEncodingError: base scalar with uuid 44c901c0-d922-4894-83c8-061bd05e4840 not found ``` Geometry is encoded in WKB format...
Recently we had a case where a user had gotten diverging migrations in production and staging databases. They got there by: - creating a migration in VCS and successfully applying...
When initializing a project, if the CLI runs into permissions errors trying to write to directories not owned by the current user, we return just a "Permission error (os 13)"...
We have 6 different ways to print in the CLI. println/log/color_print support {} style parameters. print_markdown has its own placeholders and print is just strings. - [ ] {e,}println -...