Skip to content

Commit fac7a86

Browse files
committed
Fix syntax errors in bigint test
The IBM i version of the test was fixed, but not the one for LUW.
1 parent d2d663f commit fac7a86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_bigint.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if ($conn) {
4040
}
4141

4242
$drop_proc_sql = 'drop procedure update_bigint_col';
43-
$stmt = @db2_exec(conn,drop_proc_sql);
43+
$stmt = @db2_exec($conn, $drop_proc_sql);
4444

4545
//Create procedure with 2 IN parameters of type bigint
4646
$create_proc_sql = "CREATE PROCEDURE update_bigint_col (IN param1 bigint, IN param2 bigint)

0 commit comments

Comments
 (0)