Skip to content

Commit

Permalink
add comment do pdo_bigint_outparam.phpt and sqlsrv_bitint_outparam.phpt
Browse files Browse the repository at this point in the history
  • Loading branch information
yukiwongky committed Oct 13, 2017
1 parent b5a0d1f commit 83ca7b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/functional/pdo_sqlsrv/pdo_bigint_outparam.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ printf("\n");

$conn->exec("TRUNCATE TABLE $tbname");

// Insert a small bigint
// Insert a random small value truncated from the bigint input
insertRow($conn, $tbname, array("c1_bigint" => 922337203));

// Call stored procedure with output
Expand Down
2 changes: 1 addition & 1 deletion test/functional/sqlsrv/sqlsrv_bigint_outparam.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var_dump($bigintOut);
printf("\n");
sqlsrv_query($conn, "TRUNCATE TABLE $tbname");

// Insert a small bigint
// Insert a random small value truncated from the bigint input
AE\insertRow($conn, $tbname, array("c1_bigint" => 922337203));

// Call stored procedure with SQLSRV_PARAM_OUT
Expand Down

0 comments on commit 83ca7b4

Please sign in to comment.