Taehoon Moon
Taehoon Moon
Thanks a lot! And.. plz excuse for inconvenience. Currently.. `examples/` directory is not being tested by GitHub Action and also not testable by `cargo run --example {example_name}`. There is a...
``` cargo publish -p gluesql-utils cargo publish -p gluesql-core cargo publish -p gluesql-test-suite cargo publish -p gluesql_memory_storage cargo publish -p gluesql_sled_storage cargo publish -p gluesql-cli cargo publish -p gluesql ```
@earney `PRIMARY KEY` is on this year's plan. (I may be enough to finish it until this Summer). After we have primary key, then it would be easy to support...
There is a good keyword for this issue - supporting implicit inner join syntax ref. https://stackoverflow.com/questions/44917/explicit-vs-implicit-sql-joins ```sql select a.* from mytable a, mytable b where a.id=b.id; ``` Currently GlueSQL only...
> Maybe also provide a filter parm so that we only need to retrieve certain rows (ie where name = 10) This is the independent issue which is related to...
fyi. In GlueSQL, we have two different concat functions. one is `||` native binary string concat operator. the other is `CONCAT` sql function. The behavior is a bit different. Using...
Welcome back 🙂 We now have two `concat` functions for our AST builder. 1. `Function::Concat` https://github.com/gluesql/gluesql/blob/316fbdb6878bc5051b9cf2c0efa46eeea3e2b20a/core/src/ast_builder/expr/function.rs#L899-L908 2. `Expr` `BinaryOp::Concat` https://github.com/gluesql/gluesql/blob/316fbdb6878bc5051b9cf2c0efa46eeea3e2b20a/core/src/ast_builder/expr/binary_op.rs#L99-L101 --- Only difference from the first issue content is.. ```rust...
> I'd like to write an official "extension" (or whatever the proper term is) that adds drop-in support for using GlueSQL with Python, including a PEP 249-compliant interface module and...
Sounds perfect 👍 --- > I'm 99% sure that it can be done with macros if push comes to shove, but I'm thinking that's the absolute worst case scenario. Hopefully...
Good start! First, small ones, 1. You can add `.gitignore` to `gluesql-py/` workspace, it does not need to be included in root directory. 2. Execute for current ambiguity of root...