Taehoon Moon
Taehoon Moon
To start developing a new custom storage, it would be good to look around the storage implementation codes of [MemoryStorage](https://github.com/gluesql/gluesql/tree/main/storages/memory-storage) You can see how it works. For the first PR,...
two options you can consider. `SHOW TABLES;` query or using `GLUE_TABLES` ``` gluesql> CREATE TABLE Bar; gluesql> SHOW TABLES; | tables | |--------| | Bar | | Foo | gluesql>...
as I know, there's no one working on this issue. this would be really cool if we have that kind of feature. thanks for the suggestion. for me or for...
It would be better to consider sqlite3 storage rather than absurd-sql because GlueSQL can already replace the IndexedDB backend of absurd-sql
may be is that related to this issue? https://github.com/rustwasm/wasm-pack/pull/1272 then we can try applying `--omit_default_module_path`.
Thanks a lot @24seconds I think that it would be good to support observer pattern by adding an optional `Store` trait. Implementation would not be that hard because existing all...
Could you run memory-storage only test? It would be helpful to know that it is issue of sled storage or the others.
This is awesome. Thanks a lot for the list! I think that it is fully ok to expand the AST if aggregate functions can be handled only in the execution...
btw. > I'm considering to create a DBMS(not in this pr nor this repo) based on gluesql. It serves on a tcp network and allows clients connect to and run...
GlueSQL's approach to AST (Abstract Syntax Tree) structure differs somewhat from other databases. To summarize: Typically, databases have an AST for the parsing result, and after planning, they create another...