Elliot Chance

Results 218 issues of Elliot Chance

The underlying walker does support range queries, but the planner does not understand how to set the lower and upper bounds, like: ```sql CREATE TABLE t1 (x INT, PRIMARY KEY(x));...

enhancement

Only integer types are supported at the moment.

enhancement

At the moment only one column is allowed.

enhancement
help wanted

```sql CREATE TABLE t1 (x INT, b INT, PRIMARY KEY(x)); EXPLAIN SELECT * FROM t1 WHERE x = 10 AND b = 20; ```

enhancement

``` ::= | ::= [ ... ] ::= ::= ::= /* ::= */ ::= [ { | }... ] !! See the Syntax Rules. ```

enhancement

CHAR(n) requires that the value be a fixed length and should be right padded with spaces. Actually I'm not sure about the padding, need to check that as well.

bug

`VALUES` is a helpful shorthand that doesn't require a temporary table to be created if you just want to SELECT an expression.

enhancement

The `TABLE ...` statement is another form of `SELECT * FROM ...`.

enhancement

Support for `INSERT` with multiple `VALUES`.

enhancement

A response can contain a message, like "CREATE TABLE 1". However, right now this comes back as a fake table response instead which confuses the protocol and user. A response...

bug