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
Copy file name to clipboardExpand all lines: sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/backend/rust/ToRustInnerVisitor.java
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -344,12 +344,6 @@ public VisitDecision preorder(DBSPSortExpression expression) {
344
344
// we don't use sort_unstable_by because it is
345
345
// non-deterministic
346
346
.append("v.sort_by(comp);").newline();
347
-
if (expression.limit != null) {
348
-
this.builder.append("let mut v = (**array).clone();").newline();
Copy file name to clipboardExpand all lines: sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/frontend/CalciteToDBSPCompiler.java
Copy file name to clipboardExpand all lines: sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/visitors/inner/ExpressionTranslator.java
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -404,9 +404,8 @@ public void postorder(DBSPSomeExpression node) {
Copy file name to clipboardExpand all lines: sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/visitors/inner/InnerRewriteVisitor.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1189,9 +1189,9 @@ public VisitDecision preorder(DBSPSortExpression expression) {
Copy file name to clipboardExpand all lines: sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/ir/expression/DBSPSortExpression.java
+5-18Lines changed: 5 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -51,12 +51,9 @@ public final class DBSPSortExpression extends DBSPExpression {
51
51
// Usually a DBSPComparatorExpression, but can be a PathExpression too.
0 commit comments