- 论坛徽章:
- 1
|
原帖由 showsa 于 2009-2-27 11:47 发表 ![]()
会出现
CREATE TABLE `ivan` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content` varchar(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18446744073709551517 DEFAULT CH ...
哥们提下这bug呗。
这个bug我提过了。
mysql> select count(*) from ivan;
+----------+
| count(*) |
+----------+
| 5 |
+----------+
1 row in set (0.00 sec)
mysql> TRUNCATE ivan;
Query OK, 0 rows affected (0.02 sec)
mysql> select count(*) from ivan;
+----------+
| count(*) |
+----------+
| 5 |
+----------+
1 row in set (0.00 sec)
mysql> |
|