|
// [expr, [[op, expr], ...]] |
allows generating expressions of the form
(a op (b op (c op d)))
where
a,
b,
c,
d are the SQL string representations of the expressions.
However, we cannot generate a op b op c op d, which might be necessary as the parenthesized versionn might not be valid SQL.
sqlsonnet/sqlsonnet/src/queries.rs
Line 131 in f2eb373
allows generating expressions of the form
(a op (b op (c op d)))where
a,b,c,dare the SQL string representations of the expressions.However, we cannot generate
a op b op c op d, which might be necessary as the parenthesized versionn might not be valid SQL.