Ophir LOJKINE
Ophir LOJKINE
I'm not sure this can be done with a simple input preprocessing rule. How would you handle cases such as : ```sql select ' -- this is not an SQL...
SQLite escape sequences don't seem to be supported either. According to the README: > We try to support both the SQLite and MySQL syntax; where they disagree, we choose MySQL....
It should not be difficult to implement using [`nom::escaped_transform`](https://docs.rs/nom/4.0.0/nom/macro.escaped_transform.html)
I also tried to use `nom::escaped_transform` but with no success. I think this is because of that part of the documentation: > WARNING: if you do not use the verbose-errors...
The error disappears in release mode.
The source of this seems to be https://github.com/glium/glium/issues/1721
This bug seems to be the root cause of most invalid sentences on http://voice.mozilla.org.
Can someone with commit access please review this PR ? @IAmHughes maybe ?
It would be nice to have indeed !
Yes, that would be a great addition ! Here is how I work around the problem in the meantime : ```rust struct SerializeRow(R); impl, f64: sqlx::Decode, bool: sqlx::Decode>::ValueRef, ) ->...