From f0a12af65b217c00a89fc8fe11883168e1ea657f Mon Sep 17 00:00:00 2001 From: Adam Baratz Date: Tue, 13 Sep 2016 13:09:41 -0400 Subject: [PATCH] Remove test cases don't test distinct behavior These cases are also incompatible with pdo_dblib. Removing is easier. --- ext/pdo/tests/bug_38253.phpt | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/ext/pdo/tests/bug_38253.phpt b/ext/pdo/tests/bug_38253.phpt index e749970a5f..78519a0805 100644 --- a/ext/pdo/tests/bug_38253.phpt +++ b/ext/pdo/tests/bug_38253.phpt @@ -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()); -- 2.40.0