Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a number of bugs in aliases and name resolution revealed by recent changes to the parser #350

Merged
merged 9 commits into from Mar 31, 2021
4 changes: 2 additions & 2 deletions enginetest/engine_test.go
Expand Up @@ -87,7 +87,7 @@ func TestDescribe(t *testing.T) {
for _, q := range queries {
enginetest.TestQuery(t, harness, e, q, []sql.Row{
sql.NewRow("Table(mytable)"),
}, nil)
}, nil, nil)
}
})

Expand All @@ -98,7 +98,7 @@ func TestDescribe(t *testing.T) {
enginetest.TestQuery(t, parallelHarness, ep, q, []sql.Row{
{"Exchange(parallelism=2)"},
{" └─ Table(mytable)"},
}, nil)
}, nil, nil)
}
})
}
Expand Down