mariuz Wed, 28 Dec 2011 10:04:25 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=321465
Log:
one more error to fix Table unknown TEST , it should be TESTZ
Changed paths:
U php/php-src/branches/PHP_5_3/ext/pdo_firebird/tests/bug_47415.phpt
U php/php-src/branches/PHP_5_4/ext/pdo_firebird/tests/bug_47415.phpt
U php/php-src/trunk/ext/pdo_firebird/tests/bug_47415.phpt
Modified: php/php-src/branches/PHP_5_3/ext/pdo_firebird/tests/bug_47415.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/pdo_firebird/tests/bug_47415.phpt
2011-12-28 09:59:53 UTC (rev 321464)
+++ php/php-src/branches/PHP_5_3/ext/pdo_firebird/tests/bug_47415.phpt
2011-12-28 10:04:25 UTC (rev 321465)
@@ -12,7 +12,7 @@
$value = '2';
@$dbh->exec('DROP TABLE testz');
$dbh->exec('CREATE TABLE testz (idx int NOT NULL PRIMARY KEY, txt
VARCHAR(20))');
-$dbh->exec('INSERT INTO test VALUES(0, \'String0\')');
+$dbh->exec('INSERT INTO testz VALUES(0, \'String0\')');
$dbh->commit();
$query = "SELECT idx, txt FROM testz ORDER by idx";
Modified: php/php-src/branches/PHP_5_4/ext/pdo_firebird/tests/bug_47415.phpt
===================================================================
--- php/php-src/branches/PHP_5_4/ext/pdo_firebird/tests/bug_47415.phpt
2011-12-28 09:59:53 UTC (rev 321464)
+++ php/php-src/branches/PHP_5_4/ext/pdo_firebird/tests/bug_47415.phpt
2011-12-28 10:04:25 UTC (rev 321465)
@@ -12,7 +12,7 @@
$value = '2';
@$dbh->exec('DROP TABLE testz');
$dbh->exec('CREATE TABLE testz (idx int NOT NULL PRIMARY KEY, txt
VARCHAR(20))');
-$dbh->exec('INSERT INTO test VALUES(0, \'String0\')');
+$dbh->exec('INSERT INTO testz VALUES(0, \'String0\')');
$dbh->commit();
$query = "SELECT idx, txt FROM testz ORDER by idx";
Modified: php/php-src/trunk/ext/pdo_firebird/tests/bug_47415.phpt
===================================================================
--- php/php-src/trunk/ext/pdo_firebird/tests/bug_47415.phpt 2011-12-28
09:59:53 UTC (rev 321464)
+++ php/php-src/trunk/ext/pdo_firebird/tests/bug_47415.phpt 2011-12-28
10:04:25 UTC (rev 321465)
@@ -12,7 +12,7 @@
$value = '2';
@$dbh->exec('DROP TABLE testz');
$dbh->exec('CREATE TABLE testz (idx int NOT NULL PRIMARY KEY, txt
VARCHAR(20))');
-$dbh->exec('INSERT INTO test VALUES(0, \'String0\')');
+$dbh->exec('INSERT INTO testz VALUES(0, \'String0\')');
$dbh->commit();
$query = "SELECT idx, txt FROM testz ORDER by idx";
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php