C++: Fix the location of order-by in experimental RangeNode

This commit is contained in:
Jeroen Ketema
2023-05-10 09:50:10 +02:00
parent fa0a99983f
commit a5c7d09702

View File

@@ -86,7 +86,7 @@ private class ExprRangeNode extends DataFlow::ExprNode {
concat(Expr arg, int i |
arg = e.getArgument(i)
|
this.getIntegralBounds(arg) order by i, ","
this.getIntegralBounds(arg), "," order by i
) + ")"
}