Fix syntax errors in bigint test

The IBM i version of the test was fixed, but not the one for LUW.
This commit is contained in:
Calvin Buckley
2021-05-11 15:00:50 -03:00
parent d2d663fc24
commit fac7a86b74

View File

@@ -40,7 +40,7 @@ if ($conn) {
}
$drop_proc_sql = 'drop procedure update_bigint_col';
$stmt = @db2_exec(conn,drop_proc_sql);
$stmt = @db2_exec($conn, $drop_proc_sql);
//Create procedure with 2 IN parameters of type bigint
$create_proc_sql = "CREATE PROCEDURE update_bigint_col (IN param1 bigint, IN param2 bigint)