Skip to content

Commit

Permalink
Added proper PROCEDURE nested SELECT behavior + tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Hydrocharged committed Mar 1, 2021
1 parent 88ccca7 commit 1577e59
Show file tree
Hide file tree
Showing 24 changed files with 880 additions and 241 deletions.
11 changes: 10 additions & 1 deletion enginetest/enginetests.go
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,16 @@ func TestTriggers(t *testing.T, harness Harness) {
}

func TestStoredProcedures(t *testing.T, harness Harness) {
for _, script := range ProcedureTests {
for _, script := range ProcedureLogicTests {
TestScript(t, harness, script)
}
for _, script := range ProcedureCallTests {
TestScript(t, harness, script)
}
for _, script := range ProcedureDropTests {
TestScript(t, harness, script)
}
for _, script := range ProcedureShowStatus {
TestScript(t, harness, script)
}
}
Expand Down
Loading

0 comments on commit 1577e59

Please sign in to comment.