summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/bug44897.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/bug44897.phpt')
-rw-r--r--ext/mysqli/tests/bug44897.phpt68
1 files changed, 34 insertions, 34 deletions
diff --git a/ext/mysqli/tests/bug44897.phpt b/ext/mysqli/tests/bug44897.phpt
index b5cecd5685..430a32856e 100644
--- a/ext/mysqli/tests/bug44897.phpt
+++ b/ext/mysqli/tests/bug44897.phpt
@@ -19,57 +19,57 @@ if (mysqli_get_server_version($link) <= 50000) {
?>
--FILE--
<?php
- require_once("table.inc");
+ require_once("table.inc");
- if (!$link->query('DROP PROCEDURE IF EXISTS p'))
- printf("[001] [%d] %s\n", $link->errno, $link->error);
+ if (!$link->query('DROP PROCEDURE IF EXISTS p'))
+ printf("[001] [%d] %s\n", $link->errno, $link->error);
- if (!$link->query('CREATE PROCEDURE p(IN new_id INT, IN new_label CHAR(1)) BEGIN INSERT INTO test(id, label) VALUES (new_id, new_label); SELECT new_label; END;'))
- printf("[002] [%d] %s\n", $link->errno, $link->error);
+ if (!$link->query('CREATE PROCEDURE p(IN new_id INT, IN new_label CHAR(1)) BEGIN INSERT INTO test(id, label) VALUES (new_id, new_label); SELECT new_label; END;'))
+ printf("[002] [%d] %s\n", $link->errno, $link->error);
- $new_id = 100;
- $new_label = 'z';
+ $new_id = 100;
+ $new_label = 'z';
- if (!$stmt = $link->prepare('CALL p(?, ?)'))
- printf("[003] [%d] %s\n", $link->errno, $link->error);
+ if (!$stmt = $link->prepare('CALL p(?, ?)'))
+ printf("[003] [%d] %s\n", $link->errno, $link->error);
- if (!$stmt->bind_param('is', $new_id, $new_label) || !$stmt->execute())
- printf("[004] [%d] %s\n", $stmt->errno, $stmt->error);
+ if (!$stmt->bind_param('is', $new_id, $new_label) || !$stmt->execute())
+ printf("[004] [%d] %s\n", $stmt->errno, $stmt->error);
- $out_new_label = null;
- if (!$stmt->bind_result($out_new_label) || !$stmt->fetch())
- printf("[005] [%d] %s\n", $stmt->errno, $stmt->error);
+ $out_new_label = null;
+ if (!$stmt->bind_result($out_new_label) || !$stmt->fetch())
+ printf("[005] [%d] %s\n", $stmt->errno, $stmt->error);
- if ($out_new_label != $new_label)
- printf("[006] IN value and returned value differ. Expecting %s/%s got %s/%s\n",
- $new_label, gettype($new_label), $out_new_label, gettype($out_new_label));
+ if ($out_new_label != $new_label)
+ printf("[006] IN value and returned value differ. Expecting %s/%s got %s/%s\n",
+ $new_label, gettype($new_label), $out_new_label, gettype($out_new_label));
- $stmt->close();
+ $stmt->close();
- $stmt2 = $link->prepare('SELECT label FROM test WHERE id = ?');
- if (!is_object($stmt2)) {
+ $stmt2 = $link->prepare('SELECT label FROM test WHERE id = ?');
+ if (!is_object($stmt2)) {
- printf("[007] Failed to create new statement object, [%d] %s\n",
- $link->errno, $link->error);
+ printf("[007] Failed to create new statement object, [%d] %s\n",
+ $link->errno, $link->error);
- } else {
+ } else {
- if (!$stmt2->bind_param("i", $new_id) || !$stmt2->execute())
- printf("[008] [%d] %s\n", $stmt2->errno, $stmt2->error);
+ if (!$stmt2->bind_param("i", $new_id) || !$stmt2->execute())
+ printf("[008] [%d] %s\n", $stmt2->errno, $stmt2->error);
- $out_new_label = null;
- if (!$stmt2->bind_result($out_new_label) || !$stmt2->fetch())
- printf("[009] [%d] %s\n", $stmt2->errno, $stmt2->error);
+ $out_new_label = null;
+ if (!$stmt2->bind_result($out_new_label) || !$stmt2->fetch())
+ printf("[009] [%d] %s\n", $stmt2->errno, $stmt2->error);
- if ($out_new_label != $new_label)
- printf("[010] IN value and returned value differ. Expecting %s/%s got %s/%s\n",
- $new_label, gettype($new_label), $out_new_label, gettype($out_new_label));
+ if ($out_new_label != $new_label)
+ printf("[010] IN value and returned value differ. Expecting %s/%s got %s/%s\n",
+ $new_label, gettype($new_label), $out_new_label, gettype($out_new_label));
- }
+ }
- $link->close();
+ $link->close();
- print "done!";
+ print "done!";
?>
--CLEAN--
<?php