Doug Stevenson

Results 58 issues of Doug Stevenson

A few examples: ```sql select * from table_name,; ``` > SQL string could not be parsed: near SEMI, "None": syntax error at (1, 27) ```sql create table table_name ( text_...

enhancement
good first issue

Issuing a query that is either 1. am empty string 2. a whitespace-only string 3. a comment with no statement For example: ``` -- hello ``` or ``` /* hello...

With batch query rules JSON from #33, the example yields errors like this: ``` $ ./examples/http/client.sh localhost:8080 sqld> select * from foo jtbl: Cannot represent this part of the JSON...

Currently, `turso dev` accepts a flag `--db-file` which is intended to allow developers to provide their own sqlite3 db file for sqld to access directly for local development. The current...

There is nothing stopping anyone from destroying an org with a database. The CLI should prevent that.

developer experience

The CREATE VIRTUAL TABLE command is disallowed by sqld, but it's possible to import database files whose schema includes them. Here is a (hopefully) harmless example: ``` $ sqlite3 local.db...

Database files created by sqlite3 default to DELETE journal mode ``` # Create db file $ sqlite3 test.db ``` But sqld requires them to be in WAL journal mode. This...

- Consider changing the name to `org plan switch` to match `org switch` - On macOS, the menu to select the plan rings the terminal bell on every up/down keypress....

The CLI caches various bits of data from the underlying platform API. When there are changes from other sources, the cache doesn't reset until expiration. This can be confusing for...