1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00

Remove test cases don't test distinct behavior

These cases are also incompatible with pdo_dblib. Removing is easier.
This commit is contained in:
Adam Baratz
2016-09-13 13:09:41 -04:00
parent 91c49c4ab0
commit f0a12af65b

View File

@@ -22,19 +22,8 @@ $stmt = $pdo->prepare ("SELECT * FROM test");
$stmt->execute();
var_dump($stmt->fetchAll());
if ($pdo->getAttribute(PDO::ATTR_DRIVER_NAME) == 'oci') {
$type = "clob";
} else if ($pdo->getAttribute(PDO::ATTR_DRIVER_NAME) == 'firebird') {
$type = 'BLOB SUB_TYPE TEXT';
} else {
$type = "text";
}
$pdo->exec ("create table test2 (id integer primary key, n $type)");
$pdo->exec ("INSERT INTO test2 (id, n) VALUES (1,'hi')");
$pdo->setAttribute (PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_FUNC);
$stmt = $pdo->prepare ("SELECT * FROM test2");
$stmt = $pdo->prepare ("SELECT * FROM test");
$stmt->execute();
var_dump($stmt->fetchAll());