Skip to content

Commit

Permalink
feat(frontend): bind & plan order by (#908)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangjinwu authored and pangzhenzhou committed Mar 28, 2022
1 parent 4e34979 commit 99d4cd1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions e2e_test/v2/batch/join.slt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ create table t2 (v1 int not null, v2 int not null);

statement ok
explain select t1.v2, t2.v2 from t1 join t2 on t1.v1 = t2.v1;
<<<<<<< HEAD
=======
----
BatchProject { exprs: [$1, $3], expr_alias: [Some("v2"), Some("v2")] }
BatchHashJoin(predicate: $1 = $3)
BatchScan { table: "t1", columns: ["v1", "v2"] }
BatchScan { table: "t2", columns: ["v1", "v2"] }
>>>>>>> c798bdd2 (feat(frontend): bind & plan order by (#908))

statement ok
drop table t1;
Expand Down

0 comments on commit 99d4cd1

Please sign in to comment.