Skip to content

Commit b6cdce5

Browse files
mihai1voicescudougwilson
authored andcommitted
tests: create procedures without definer
1 parent b5dcf3d commit b6cdce5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integration/connection/test-procedure-with-multiple-selects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ common.getTestConnection(function (err, connection) {
1212
var input1 = 1000;
1313

1414
connection.query([
15-
'CREATE DEFINER=root@localhost PROCEDURE ?? (IN param0 INT, IN param1 INT)',
15+
'CREATE PROCEDURE ?? (IN param0 INT, IN param1 INT)',
1616
'BEGIN',
1717
'SELECT param0;',
1818
'SELECT param1;',

test/integration/connection/test-procedure-with-single-select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ common.getTestConnection(function (err, connection) {
1111
var input = 1;
1212

1313
connection.query([
14-
'CREATE DEFINER=root@localhost PROCEDURE ?? (IN param INT)',
14+
'CREATE PROCEDURE ?? (IN param INT)',
1515
'BEGIN',
1616
'SELECT param;',
1717
'END'

0 commit comments

Comments
 (0)