From: Wez Furlong Date: Fri, 25 Nov 2005 03:37:01 +0000 (+0000) Subject: actually, bytea is not required for LOBs in postgres; good! X-Git-Tag: php-5.1.1~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17f504a0ec0de1bb9eef32b893d693852198c6fe;p=php actually, bytea is not required for LOBs in postgres; good! --- diff --git a/ext/pdo/tests/bug_34630.phpt b/ext/pdo/tests/bug_34630.phpt index a52e738b66..dd5f6fce05 100644 --- a/ext/pdo/tests/bug_34630.phpt +++ b/ext/pdo/tests/bug_34630.phpt @@ -19,8 +19,6 @@ $is_oci = $driver == 'oci'; if ($is_oci) { $db->exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val BLOB)'); -} else if ($driver == 'pgsql') { - $db->exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val bytea)'); } else { $db->exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val VARCHAR(256))'); }