chai
chai copied to clipboard
Modern embedded SQL database
### What version of Genji are you using? $ genji version ```shell Genji v0.15.0 Genji CLI v0.15.0 ``` ### What did you do? ```sql CREATE SEQUENCE IF NOT EXISTS seq_cizu;...
I am trying to built a service that does pagination . I am not sure of the syntax that is appropriate for this . The docs don’t mention anything so...
### Proposal Currently, it’s not possible to compute the length of array type in Genji
This PR fixes #465.
### Proposal Currently user can't extend the function of Genji except to submit PR to Genji repo, can we expose the custom function api to user? ### Motivation Add custom...
```sql genji> create table foo(a int); genji> insert into foo (a) values (1); genji> select a, b from foo; { "a": 1, "b": null } ``` An error should be...
Even though it is technically possible to pass expressions to LIMIT and OFFSET, the `docs.Take` and `docs.Skip` operators expect integers, which doesn't make them very flexible. The docs.Take and docs.Skip...
```sql CREATE TABLE foo(a, b); INSERT INTO foo(a, b, c) VALUES (1, 2, 3); -- error -- this notation is fine, it allows inserting large documents but only keeping the...
Given the following table: ```sql CREATE TABLE foo (a INT PRIMARY KEY); ``` ```sql genji> explain select * from foo where a > 10 AND a < 100; { "plan":...
```sql -- as a field constraint CREATE TABLE foo( a INT PRIMARY KEY DESC, b INT, c INT ) -- as a table constraint CREATE TABLE foo( a INT, b...