diff options
| author | Ulf Wendel <uw@php.net> | 2011-09-01 11:27:14 +0000 |
|---|---|---|
| committer | Ulf Wendel <uw@php.net> | 2011-09-01 11:27:14 +0000 |
| commit | 48c1f47979682a211e8941d771aed43963f7bb36 (patch) | |
| tree | 0a8ceb0c9ecf890d51488d9921206098c1ecd34f /ext | |
| parent | d9d1fb0cee8702cc6d085747b0e6f71580730a03 (diff) | |
| download | php-git-48c1f47979682a211e8941d771aed43963f7bb36.tar.gz | |
Hack around http://bugs.mysql.com/62320
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/mysqli/tests/mysqli_last_insert_id.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/mysqli_last_insert_id.phpt b/ext/mysqli/tests/mysqli_last_insert_id.phpt index 353cb7a8a1..996c401f74 100644 --- a/ext/mysqli/tests/mysqli_last_insert_id.phpt +++ b/ext/mysqli/tests/mysqli_last_insert_id.phpt @@ -31,7 +31,7 @@ API vs. SQL LAST_INSERT_ID() $host, $user, $db, $port, $socket); if (!$link->query("DROP TABLE IF EXISTS test") || - !$link->query("CREATE TABLE test (id INT auto_increment, label varchar(10) not null, PRIMARY KEY (id))") || + !$link->query("CREATE TABLE test (id INT auto_increment, label varchar(10) not null, PRIMARY KEY (id)) ENGINE=MyISAM") || !$link->query("INSERT INTO test (id, label) VALUES (null, 'a')")) { printf("[002] [%d] %s\n", $link->errno, $link->error); } |
