mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00

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
92 lines
2.8 KiB
PHP
92 lines
2.8 KiB
PHP
--TEST--
|
|
MySQL PDO->exec(), affected rows
|
|
--SKIPIF--
|
|
<?php
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc');
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
|
|
MySQLPDOTest::skip();
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
function exec_and_count($offset, &$db, $sql, $exp, $suppress_warning = false) {
|
|
|
|
try {
|
|
|
|
if ($suppress_warning)
|
|
$ret = @$db->exec($sql);
|
|
else
|
|
$ret = $db->exec($sql);
|
|
|
|
if ($ret !== $exp) {
|
|
printf("[%03d] Expecting '%s'/%s got '%s'/%s when running '%s', [%s] %s\n",
|
|
$offset, $exp, gettype($exp), $ret, gettype($ret), $sql,
|
|
$db->errorCode(), implode(' ', $db->errorInfo()));
|
|
return false;
|
|
}
|
|
|
|
} catch (PDOException $e) {
|
|
printf("[%03d] '%s' has failed, [%s] %s\n",
|
|
$offset, $sql, $db->errorCode(), implode(' ', $db->errorInfo()));
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
|
|
$db = MySQLPDOTest::factory();
|
|
MySQLPDOTest::createTestTable($db, MySQLPDOTest::detect_transactional_mysql_engine($db));
|
|
|
|
/* affected rows related */
|
|
try {
|
|
|
|
@$db->exec('DROP DATABASE IF EXISTS pdo_exec_ddl');
|
|
@$db->exec('DROP DATABASE IF EXISTS pdo_exec_ddl2');
|
|
if (1 === @$db->exec('CREATE DATABASE pdo_exec_ddl')) {
|
|
// yippie - we can create databases etc.
|
|
exec_and_count(3, $db, 'ALTER DATABASE pdo_exec_ddl CHARACTER SET latin1', 1);
|
|
}
|
|
|
|
exec_and_count(4, $db, 'DROP TABLE IF EXISTS pdo_exec_ddl', 0);
|
|
exec_and_count(5, $db, 'DROP TABLE IF EXISTS pdo_exec_ddl2', 0);
|
|
if (0 === $db->exec('CREATE TABLE pdo_exec_ddl(id INT, col1 CHAR(2))')) {
|
|
exec_and_count(5, $db, 'CREATE INDEX idx1 ON pdo_exec_ddl(id)', 0);
|
|
exec_and_count(6, $db, 'DROP INDEX idx1 ON pdo_exec_ddl', 0);
|
|
exec_and_count(7, $db, 'ALTER TABLE pdo_exec_ddl DROP id', 0);
|
|
exec_and_count(8, $db, 'ALTER TABLE pdo_exec_ddl ADD id INT', 0);
|
|
exec_and_count(9, $db, 'ALTER TABLE pdo_exec_ddl ALTER id SET DEFAULT 1', 0);
|
|
exec_and_count(10, $db, 'RENAME TABLE pdo_exec_ddl TO pdo_exec_ddl2', 0);
|
|
}
|
|
|
|
/*
|
|
11.1.2. ALTER LOGFILE GROUP Syntax
|
|
11.1.3. ALTER SERVER Syntax
|
|
11.1.5. ALTER TABLESPACE Syntax
|
|
11.1.8. CREATE LOGFILE GROUP Syntax
|
|
11.1.9. CREATE SERVER Syntax
|
|
11.1.11. CREATE TABLESPACE Syntax
|
|
11.1.14. DROP LOGFILE GROUP Syntax
|
|
11.1.15. DROP SERVER Syntax
|
|
11.1.17. DROP TABLESPACE Syntax
|
|
*/
|
|
|
|
} catch (PDOException $e) {
|
|
printf("[001] %s, [%s] %s\n",
|
|
$e->getMessage(),
|
|
$db->errorCode(), implode(' ', $db->errorInfo()));
|
|
}
|
|
|
|
print "done!";
|
|
--CLEAN--
|
|
<?php
|
|
require dirname(__FILE__) . '/mysql_pdo_test.inc';
|
|
$db = MySQLPDOTest::factory();
|
|
MySQLPDOTest::dropTestTable($db);
|
|
// clean up
|
|
@$db->exec('DROP TABLE IF EXISTS pdo_exec_ddl');
|
|
@$db->exec('DROP TABLE IF EXISTS pdo_exec_ddl2');
|
|
@$db->exec('DROP DATABASE IF EXISTS pdo_exec_ddl');
|
|
@$db->exec('DROP DATABASE IF EXISTS pdo_exec_ddl2');
|
|
?>
|
|
--EXPECT--
|
|
done!
|