You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In src/order.rs, the order by clause allows for trailing commas, which is technically invalid SQL.
Eg, "select * from users order by name ascage desc,\n" will parse, but should not
In the incoming bump nom to v5 PR, this is on line 76 of the same file:
76 many0(order_expr),
The text was updated successfully, but these errors were encountered:
Currently on master:
nom-sql/src/order.rs
Line 58 in 026473b
In
src/order.rs
, the order by clause allows for trailing commas, which is technically invalid SQL.Eg,
"select * from users order by name ascage desc,\n"
will parse, but should notIn the incoming
bump nom to v5
PR, this is on line 76 of the same file:The text was updated successfully, but these errors were encountered: