????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.20.238.29 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/mysqli/tests/ |
Upload File : |
--TEST-- Bug #52891 (Wrong data inserted with mysqli/mysqlnd when using bind_param,value > LONG_MAX) --SKIPIF-- <?php require_once('skipif.inc'); require_once('skipifconnectfailure.inc'); if (!$IS_MYSQLND) { die("skip: test applies only to mysqlnd"); } ?> --FILE-- <?php require_once("connect.inc"); if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) { printf("[001] Connect failed, [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error()); } if (!$link->query("DROP TABLE IF EXISTS tuint") || !$link->query("DROP TABLE IF EXISTS tsint")) { printf("[002] [%d] %s\n", $link->errno, $link->error); } if (!$link->query("CREATE TABLE tuint(a BIGINT UNSIGNED) ENGINE=" . $engine) || !$link->query("CREATE TABLE tsint(a BIGINT) ENGINE=" . $engine)) { printf("[003] [%d] %s\n", $link->errno, $link->error); } if (!$stmt1 = $link->prepare("INSERT INTO tuint VALUES(?)")) printf("[004] [%d] %s\n", $link->errno, $link->error); if (!$stmt2 = $link->prepare("INSERT INTO tsint VALUES(?)")) printf("[005] [%d] %s\n", $link->errno, $link->error); $param = 42; if (!$stmt1->bind_param("i", $param)) printf("[006] [%d] %s\n", $stmt1->errno, $stmt1->error); if (!$stmt2->bind_param("i", $param)) printf("[007] [%d] %s\n", $stmt2->errno, $stmt2->error); /* first insert normal value to force initial send of types */ if (!$stmt1->execute()) printf("[008] [%d] %s\n", $stmt1->errno, $stmt1->error); if (!$stmt2->execute()) printf("[009] [%d] %s\n", $stmt2->errno, $stmt2->error); /* now try values that don't fit in long, on 32bit, new types should be sent or 0 will be inserted */ $param = -4294967297; if (!$stmt2->execute()) printf("[010] [%d] %s\n", $stmt2->errno, $stmt2->error); /* again normal value */ $param = 43; if (!$stmt1->execute()) printf("[011] [%d] %s\n", $stmt1->errno, $stmt1->error); if (!$stmt2->execute()) printf("[012] [%d] %s\n", $stmt2->errno, $stmt2->error); /* again conversion */ $param = -4294967295; if (!$stmt2->execute()) printf("[013] [%d] %s\n", $stmt2->errno, $stmt2->error); $param = 4294967295; if (!$stmt1->execute()) printf("[014] [%d] %s\n", $stmt1->errno, $stmt1->error); if (!$stmt2->execute()) printf("[015] [%d] %s\n", $stmt2->errno, $stmt2->error); $param = 4294967297; if (!$stmt1->execute()) printf("[016] [%d] %s\n", $stmt1->errno, $stmt1->error); if (!$stmt2->execute()) printf("[017] [%d] %s\n", $stmt2->errno, $stmt2->error); $result = $link->query("SELECT * FROM tsint ORDER BY a ASC"); $result2 = $link->query("SELECT * FROM tuint ORDER BY a ASC"); echo "tsint:\n"; while ($row = $result->fetch_assoc()) { var_dump($row); } echo "tuint:\n"; while ($row = $result2->fetch_assoc()) { var_dump($row); } echo "done"; ?> --CLEAN-- <?php require_once('connect.inc'); if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) { printf("[clean] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n", $host, $user, $db, $port, $socket); } if (!mysqli_query($link, 'DROP TABLE IF EXISTS tuint')) { printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link)); } if (!mysqli_query($link, 'DROP TABLE IF EXISTS tsint')) { printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link)); } mysqli_close($link); ?> --EXPECTF-- tsint: array(1) { ["a"]=> string(11) "-4294967297" } array(1) { ["a"]=> string(11) "-4294967295" } array(1) { ["a"]=> string(2) "42" } array(1) { ["a"]=> string(2) "43" } array(1) { ["a"]=> string(10) "4294967295" } array(1) { ["a"]=> string(10) "4294967297" } tuint: array(1) { ["a"]=> string(2) "42" } array(1) { ["a"]=> string(2) "43" } array(1) { ["a"]=> string(10) "4294967295" } array(1) { ["a"]=> string(10) "4294967297" } done