From: Nuno Lopes Date: Tue, 19 Feb 2008 14:46:41 +0000 (+0000) Subject: MFB X-Git-Tag: RELEASE_2_0_0a1~428 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2657e1ee2a318079f60b90e91da18d2d6314e383;p=php MFB --- diff --git a/ext/pdo/tests/bug_38253.phpt b/ext/pdo/tests/bug_38253.phpt index c89fba866e..ba937a052a 100644 --- a/ext/pdo/tests/bug_38253.phpt +++ b/ext/pdo/tests/bug_38253.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'; $pdo = PDOTest::factory(); -$pdo->exec ("create table test (id integer primary key, n text)"); +$pdo->exec ("create table test (id integer primary key, n varchar(255))"); $pdo->exec ("INSERT INTO test (id, n) VALUES (1, 'hi')"); $pdo->setAttribute (PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_CLASS);