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

adding join and subquery tests #2109

Merged
merged 6 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions enginetest/enginetests.go
Original file line number Diff line number Diff line change
Expand Up @@ -6349,4 +6349,15 @@ func TestSQLLogicTests(t *testing.T, harness Harness) {
}
TestScript(t, harness, script)
}
for _, script := range queries.SQLLogicSubqueryTests {
if sh, ok := harness.(SkippingHarness); ok {
if sh.SkipQueryTest(script.Name) {
t.Run(script.Name, func(t *testing.T) {
t.Skip(script.Name)
})
continue
}
}
TestScript(t, harness, script)
}
}