From 17f504a0ec0de1bb9eef32b893d693852198c6fe Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 25 Nov 2005 03:37:01 +0000 Subject: [PATCH] actually, bytea is not required for LOBs in postgres; good! --- ext/pdo/tests/bug_34630.phpt | 2 -- 1 file changed, 2 deletions(-) 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))'); } -- 2.40.0