henry
henry
@sunrabbit123 I haven't added any test cases so far. Yes.. this PR is still ongoing yet.
It seems that this PR is solved by another PR? Unlike before, `./scripts/test.sh arityAndOrderCompatibility` passes all now. Or should I change or add more test cases ?
Thanks to @panarch, 1. convert `enum TableConstraint` to each filds of schema like fk_constraint, pk_constraint, ... 2. merge `NO ACTION` and `RESTRICT` to `NO ACTION`
Thank you for quick commit. Can you do the `cargo fmt` and push again?
> > Thank you for quick commit. > > Can you do the `cargo fmt` and push again? > > Please, can you check the `pkg/javascript/web/src/payload.rs` ? The json result...
Not yet, but we are planing. We should implement daemon mode first, then if we can use gluesql as DB server, checkpoint or write ahead log would make more sense....
Currently, you can use `.columns TABLE_NAME` command ```sql gluesql> CREATE TABLE User (id INT, name TEXT); Table created gluesql> .columns User; ``` | Field | Type | |-------|------| | id...
`.columns` is gluesql's custom command but _cli mode only_, not SQL So, it would be nice if you contribute to implement `DESCRIBE SQL Statement`
The thing is.. we may gotta solve this issue in gluesql-core. In Most regacy databases, ambiguous columns gets error like below. ```sql mysql> select * from (select 1 as a,...
But you still got the point. Cuz If the columns are not derived from table or inline view, below query should work but not with js Object lol We should...