Bug #37811 | "mysqldump" command hangs on HP-UX 11.31 (specifically) | ||
---|---|---|---|
Submitted: | 2 Jul 2008 17:25 | Modified: | 4 Feb 2010 12:02 |
Reporter: | Joerg Bruehe | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: mysqldump Command-line Client | Severity: | S3 (Non-critical) |
Version: | 5.0,5.1,6.0.6 | OS: | HP/UX (11.31, 32 + 64 bit) |
Assigned to: | Assigned Account | CPU Architecture: | Any |
[2 Jul 2008 17:25]
Joerg Bruehe
[24 Oct 2008 4:55]
Tatiana Azundris Nuernberg
# Still exists in 5.1.29. # Hangs on "SHOW CREATE TABLE t6" (that's the inno table). # DESC is non-toxic: mysql> desc t6; +-------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+-------------+------+-----+---------+-------+ | id | int(8) | YES | | NULL | | | name | varchar(32) | YES | | NULL | | +-------+-------------+------+-----+---------+-------+ 2 rows in set (0.01 sec) # SHOW CREATE TABLE isn't fundamentally broken, either: mysql> show create table t1; +-------+--------------------------------------------------------------------------------------------------------------------------+ | Table | Create Table | +-------+--------------------------------------------------------------------------------------------------------------------------+ | t1 | CREATE TABLE `t1` ( `id` int(8) DEFAULT NULL, `name` varchar(32) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 | +-------+--------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.00 sec) # the combination's not good, though: mysql> show create table t6; # <... hangs here ...> # However, not just any SHOW CREATE TABLE will do: $ ./mysql-test-run.pl innodb-autoinc.test innodb.test partition_innodb.test type_bit_innodb.test All 4 tests were successful. Spent 31.943 of 163 seconds executing testcases # Now it would be really nice to have a debugger.
[28 Oct 2008 16:11]
Joerg Bruehe
Similar effect in all 5.0 builds since we start to use this platform.