List:Commits« Previous MessageNext Message »
From:uwendel Date:January 8 2008 12:32pm
Subject:PHP mysqlnd svn commit: r1189 - trunk/tests/ext/mysqli
View as plain text  
Author: uwendel
Date: 2008-01-08 13:32:22 +0100 (Tue, 08 Jan 2008)
New Revision: 1189

Modified:
   trunk/tests/ext/mysqli/014.phpt
Log:
Fixing deprecated syntax for MySQL 6 compatibility


Modified: trunk/tests/ext/mysqli/014.phpt
===================================================================
--- trunk/tests/ext/mysqli/014.phpt	2008-01-08 12:22:40 UTC (rev 1188)
+++ trunk/tests/ext/mysqli/014.phpt	2008-01-08 12:32:22 UTC (rev 1189)
@@ -30,7 +30,7 @@
 	if (!mysqli_query($link, "DROP TABLE IF EXISTS test"))
 		printf("[002] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
 
-	if (!mysqli_query($link, "CREATE TABLE test(a int, b varchar(10)) type=InnoDB"))
+	if (!mysqli_query($link, "CREATE TABLE test(a int, b varchar(10)) engine=InnoDB"))
 		printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
 
 	if (!mysqli_query($link, "INSERT INTO test VALUES (1, 'foobar')"))

Thread
PHP mysqlnd svn commit: r1189 - trunk/tests/ext/mysqliuwendel8 Jan