Bug #19100 | alter table ko (offline) with partition by key | ||
---|---|---|---|
Submitted: | 14 Apr 2006 11:34 | Modified: | 28 Jun 2006 22:42 |
Reporter: | patrice audigou | Email Updates: | |
Status: | No Feedback | Impact on me: | |
Category: | MySQL Server | Severity: | S1 (Critical) |
Version: | 5.1.8.beta | OS: | Linux (RedHat9) |
Assigned to: | Assigned Account | CPU Architecture: | Any |
[14 Apr 2006 11:34]
patrice audigou
[15 Apr 2006 1:30]
Hartmut Holzgraefe
I was not able to reproduce this with current 5.0 bitkeeper sources, could you please add SHOW CREATE TABLE output so that i can test with exactly the same table definition that you are using?
[19 Apr 2006 10:44]
Daniel Stricot
To create the table, we use a .sql file doing that : drop table if exists IMSI; create table IMSI ( mykey INT UNSIGNED NOT NULL, vvBin VARBINARY(255), vvchar Varchar(255), vvlBin Varbinary(256), vvlchar Varchar(256), vchar CHAR(255), vbinary BINARY(255), vUnsigned INT UNSIGNED, vBigunsigned BIGINT UNSIGNED, vMediumunsigned MEDIUMINT UNSIGNED, vTinyunsigned TINYINT UNSIGNED, vSmallunsigned SMALLINT UNSIGNED, vBigint BIGINT, vMediumint MEDIUMINT, vInt INT, vSmallint SMALLINT, vTinyint TINYINT, vBit BIT(10), PRIMARY KEY USING HASH (mykey) ) engine=ndb PARTITION BY KEY (mykey); It seems that the problem happens when we do several operations on the same column of the table.
[15 May 2006 23:00]
Bugs System
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open".
[28 May 2006 22:42]
Hartmut Holzgraefe
I still couldn't reproduce this using the given CREATE and ALTER statements, what i'm suspecting here is that there is just not enough space left in your setup to create a temp. copy of the table (which is the way ALTER TABLE works when changing the table schema)
[28 Jun 2006 23:00]
Bugs System
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open".
[17 Jul 2006 13:59]
Daniel Stricot
Which feedback are you waiting for ?