php-src/ext/mysqli/tests/mysqli_stmt_get_result_non_select.phpt
Peter Kokot f1d7e3ca0b Sync leading and final newlines in *.phpt sections
This patch adds missing newlines, trims multiple redundant final
newlines into a single one, and trims redundant leading newlines in all
*.phpt sections.

According to POSIX, a line is a sequence of zero or more non-' <newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.

C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."

Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.

[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
2018-10-15 04:31:31 +02:00

96 lines
2.6 KiB
PHP

--TEST--
mysqli_stmt_get_result() - SHOW, DESCRIBE, EXPLAIN
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
if (!function_exists('mysqli_stmt_get_result'))
die('skip mysqli_stmt_get_result not available');
?>
--FILE--
<?php
/*
NOTE: no datatype tests here! This is done by
mysqli_stmt_bind_result.phpt already. Restrict
this test case to the basics.
*/
require('table.inc');
if (!$stmt = mysqli_stmt_init($link))
printf("[001] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
if (mysqli_query($link, 'PREPARE mystmt FROM "SHOW ENGINES"')) {
mysqli_query($link, 'DEALLOCATE PREPARE mystmt');
if (!$stmt->prepare('SHOW ENGINES') ||
!$stmt->execute())
printf("[002] [%d] %s\n", $stmt->errno, $stmt->error);
if (!$res = $stmt->get_result())
printf("[003] [%d] %s\n", $stmt->errno, $stmt->error);
$engines = mysqli_fetch_all($res, MYSQLI_NUM);
if (empty($engines)) {
printf("[004] It is very unlikely that SHOW ENGINES returns no data, check manually\n");
} else {
$found = false;
foreach ($engines as $k => $engine)
foreach ($engine as $k => $v)
if (stristr($v, 'MyISAM')) {
$found = true;
break;
}
if (!$found)
printf("[005] It is very unlikely that SHOW ENGINES does not show MyISAM, check manually\n");
}
mysqli_free_result($res);
}
if (mysqli_query($link, 'PREPARE mystmt FROM "DESCRIBE test id"')) {
mysqli_query($link, 'DEALLOCATE PREPARE mystmt');
if (!$stmt->prepare('DESCRIBE test id') ||
!$stmt->execute())
printf("[006] [%d] %s\n", $stmt->errno, $stmt->error);
if (!$res = $stmt->get_result())
printf("[007] [%d] %s\n", $stmt->errno, $stmt->error);
$description = mysqli_fetch_assoc($res);
if ($description['Field'] != 'id') {
printf("[008] Returned data seems wrong, [%d] %s\n",
mysqli_errno($link), mysqli_error($link));
var_dump($description);
}
mysqli_free_result($res);
}
if (mysqli_query($link, 'PREPARE mystmt FROM "EXPLAIN SELECT id FROM test"')) {
mysqli_query($link, 'DEALLOCATE PREPARE mystmt');
if (!$stmt->prepare('EXPLAIN SELECT id FROM test') ||
!$stmt->execute())
printf("[009] [%d] %s\n", $stmt->errno, $stmt->error);
if (!$res = $stmt->get_result())
printf("[010] [%d] %s\n", $stmt->errno, $stmt->error);
$tmp = mysqli_fetch_assoc($res);
if (empty($tmp))
printf("[011] Empty EXPLAIN result set seems wrong, check manually, [%d] %s\n",
mysqli_errno($link), mysqli_error($link));
mysqli_free_result($res);
}
mysqli_close($link);
print "done!";
?>
--CLEAN--
<?php
require_once("clean_table.inc");
?>
--EXPECT--
done!