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 d4af505 commit 88003a5Copy full SHA for 88003a5
internal/rule/squashjoins_test.go
@@ -41,6 +41,9 @@ func TestAnalyzeSquashJoinsExchange(t *testing.T) {
41
project, ok := exchange.Child.(*plan.Project)
42
require.True(ok)
43
44
+ project, ok = project.Child.(*plan.Project)
45
+ require.True(ok)
46
+
47
rt, ok := project.Child.(*plan.ResolvedTable)
48
49
@@ -78,6 +81,9 @@ func TestAnalyzeSquashNaturalJoins(t *testing.T) {
78
81
79
82
80
83
84
85
86
87
filter, ok := project.Child.(*plan.Filter)
88
89
0 commit comments