Taehoon Moon
Taehoon Moon
Awesome! It looks that now you may need to add `Decimal` wrapper module to `data/` which wraps `rust_decimal::Decimal`. Then, you can implement * binary operations between other primitive types in...
This feature looks good to have as an optional store trait, like `alter_table`.
Thanks for the good questions :) > 1. How does gluesql compare to postgres in regards to speed and feature wise? For now, both speed and feature might not be...
@Raj2032 > 1. Just curious I thought gluesql would be faster than postgres as with postgres wouldn't you require to have some database server with postgres setup whereas with gluesql...
> Is it possible to join two tables from two different gluesql databases? For example, if one database is of type sled (lets call the database sleddb) and another database...
I think.. more simple option may work. How about only using `SELECT`? e.g. ```sql SELECT * FROM `filename.csv` ``` Then, 1. `fetch_schema` tries finding the optional schema file `filename.schema.csv` 1-1....
Oh that was not intended. As you mentioned, filename.schema.sql would be better :)
What you pointed is right. Currently, to parse the i128 string literal number, we use `bigdecimal::to_primitive::to_i128` but it internally uses `i64` so... it cannot parse `i128`. To fix this, we...
There is a plan to provide better semi-structured and even unstructured data in several months. For now, some limited functions are supported. You can use `MAP` and `LIST` data types....
Awesome :) Thanks There is an one thing which needs to be considered. The purpose of `test-suite` is providing test cases to other storage implementations. `test-suite` itself does not execute...