Alexandre Seo
Alexandre Seo
## Motivation This would allow building dynamic like expressions like this: ```Rust fn build_like(expr: Expr, value: sea_query::Value) -> SimpleExpr { expr.like(Expr::value('%').concat(Expr::value(value)).concat(Expr::value('%'))) } ```
Zerotier is basically unusable for me. As you can see on the screenshot, it constantly creates UPnP port mappings with result in the router crashing after 1 or 2 hours....
I ended up writing this abomination: ```Rust #[derive(Deserialize)] struct Helper { #[serde(with = "tuple_vec_map")] inner: Vec } fn map_frequency(v: serde_json::Value) -> Result { let val = json!({ "inner": v });...
Currently it produces this error when attempting to use [Associated Constants](https://doc.rust-lang.org/reference/items/associated-items.html#associated-constants): ``` error[E0401]: can't use generic parameters from outer function --> src/sync.rs:284:47 | 282 | pub fn get_updated(db: &rusqlite::Connection) ->...
I could not get some hint to work a bigger query and narrowed the issue to this pattern: ```SQL CREATE TABLE t1 (id int PRIMARY KEY, val int); CREATE TABLE...