Taehoon Moon

Results 111 comments of Taehoon Moon

Sure, that's not hard to support it but currently there's no one working on it yet. I cannot ensure the shipping date but I think you can expect to see...

> @panarch any update on this? I could pick it up if need be. sure 👍

> what's the current suggested way todo this? currently there is no parameter binding support for SQL. if you accept the param values from client-side, safe way is that you...

Thanks! This is not only for the AST builder, but also happens same in SQL. e.g. ```sql SELECT * FROM a LEFT JOIN b WHERE id = a.id; ``` `id`...

> An [example](https://github.com/gluesql/gluesql/tree/main/pkg/rust/examples) showing how to pass untrusted values safely would be greatly appreciated! 👍 thanks, it would be certainly good to add this. there exists some sugar functions you...

one of our contributors is working on this. [Implement EXPLAIN expression #1262](https://github.com/gluesql/gluesql/issues/1262) there also exists another related issue ref. [[AST Builder] Implement Index by Expression in Select](https://github.com/gluesql/gluesql/issues/1351)

two points > convert this AST into an AST builder Currently you can directly execute the AST rather than converting that into AST builder. > add dynamic where clauses using...

> Wouldn't make more sense having sqlx use gluesql as one of the supported backend? With sled 1.0 it could be a compelling alternative to sqlx+sqlite. that sounds nice :D...

Currently, the default transaction has timeout of 1 hour. For quick fix, I think that resetting timeout would work. ```rust let mut storage = SledStorage::new(..); storage.set_transaction_timeout(60000); // 60s ``` Then,...

instead of adding BIT_OR function, it would be good to implement binary operator `|` support.