We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 393ab2f commit 149d319Copy full SHA for 149d319
sql/memo/join_order_builder_test.go
@@ -79,25 +79,25 @@ func TestJoinOrderBuilder(t *testing.T) {
79
plan.NewLeftOuterJoin(
80
tableNode(db, "a"),
81
tableNode(db, "b"),
82
- newEq("a.x = b.x"),
+ newEq("a.z = b.z"),
83
),
84
85
plan.NewFullOuterJoin(
86
tableNode(db, "c"),
87
tableNode(db, "d"),
88
- newEq("c.x = d.x"),
+ newEq("c.z = d.z"),
89
90
tableNode(db, "e"),
91
- newEq("c.x = e.x"),
+ newEq("c.z = e.z"),
92
93
- newEq("a.x = e.x"),
+ newEq("a.z = e.z"),
94
95
plan.NewInnerJoin(
96
tableNode(db, "f"),
97
tableNode(db, "g"),
98
- newEq("f.x = g.x"),
+ newEq("f.z = g.z"),
99
100
- newEq("e.x = g.x"),
+ newEq("e.z = g.z"),
101
102
plans: `memo:
103
├── G1: (tablescan: a)
0 commit comments