summaryrefslogtreecommitdiff
path: root/ext/pdo/tests
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-05-19 15:28:37 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-05-19 15:28:37 +0000
commit2a6442190cbe8d79e1c8daf4dac7da387b971019 (patch)
treee10f09490b066df4fc17ffa6ef90a340fbbf3977 /ext/pdo/tests
parent0db4f06f13f36aa81cbfc37081d80cd77e7b99ea (diff)
downloadphp-git-2a6442190cbe8d79e1c8daf4dac7da387b971019.tar.gz
Fixed test to work with postgresql
Diffstat (limited to 'ext/pdo/tests')
-rw-r--r--ext/pdo/tests/pdo_034.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo/tests/pdo_034.phpt b/ext/pdo/tests/pdo_034.phpt
index eaadb51f95..0f012c616a 100644
--- a/ext/pdo/tests/pdo_034.phpt
+++ b/ext/pdo/tests/pdo_034.phpt
@@ -14,7 +14,7 @@ if (getenv('REDIR_TEST_DIR') === false) putenv('REDIR_TEST_DIR='.dirname(__FILE_
require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
$db = PDOTest::factory();
-$db->exec("CREATE TABLE test (a char(100), b char(100), c char(100))");
+$db->exec("CREATE TABLE test (a varchar(100), b varchar(100), c varchar(100))");
for ($i = 0; $i < 5; $i++) {
$db->exec("INSERT INTO test (a,b,c) VALUES('test".$i."','".$i."','".$i."')");