Skip to content

Commit c0ea80d

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent 7de8dde commit c0ea80d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

enginetest/queries/procedure_queries.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2445,15 +2445,14 @@ var ProcedureCallTests = []ScriptTest{
24452445
Name: "creating invalid procedure doesn't error until it is called",
24462446
Assertions: []ScriptTestAssertion{
24472447
{
2448-
Query: `CREATE PROCEDURE proc1 (OUT out_count INT) READS SQL DATA SELECT COUNT(*) FROM mytable WHERE i = 1 AND s = 'first row' AND func1(i);`,
2448+
Query: `CREATE PROCEDURE proc1 (OUT out_count INT) READS SQL DATA SELECT COUNT(*) FROM mytable WHERE i = 1 AND s = 'first row' AND func1(i);`,
24492449
Expected: []sql.Row{{types.NewOkResult(0)}},
24502450
},
24512451
{
24522452
Query: "CALL proc1(@out_count);",
24532453
ExpectedErr: sql.ErrFunctionNotFound,
24542454
},
24552455
},
2456-
24572456
},
24582457
}
24592458

0 commit comments

Comments
 (0)