File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -208,16 +208,16 @@ func TestSingleScript(t *testing.T) {
208208 Name : "Nested CALL with INOUT param" ,
209209 SetUpScript : []string {
210210 "SET @outparam = 5" ,
211- "CREATE PROCEDURE p3(INOUT z INT) BEGIN SET z = z * 111; END;" ,
211+ "CREATE PROCEDURE p3(INOUT z INT) BEGIN SET z = z * 111; END;" ,
212212 "CREATE PROCEDURE p2(INOUT y DOUBLE) BEGIN SET y = y + 4; CALL p3(y); END;" ,
213213 "CREATE PROCEDURE p1(INOUT x BIGINT) BEGIN SET x = 3; CALL p2(x); END;" ,
214- "CALL p2(@outparam)" ,
215- },
216- Assertions : []queries.ScriptTestAssertion {
217- {
218- Query : "SELECT @outparam" ,
214+ "CALL p2(@outparam)" ,
215+ },
216+ Assertions : []queries.ScriptTestAssertion {
217+ {
218+ Query : "SELECT @outparam" ,
219219 Expected : []sql.Row {
220- {int64 (999 )},
220+ {int64 (999 )},
221221 },
222222 },
223223 },
Original file line number Diff line number Diff line change @@ -1396,7 +1396,7 @@ END;`,
13961396 },
13971397 Assertions : []ScriptTestAssertion {
13981398 {
1399- Query : "CALL outer_declare();" ,
1399+ Query : "CALL outer_declare();" ,
14001400 Expected : []sql.Row {
14011401 {types .NewOkResult (0 )},
14021402 },
You can’t perform that action at this time.
0 commit comments