|
|
|
@ -359,14 +359,12 @@ select count(*) from t1 where c<'bbb'; |
|
|
|
|
|
|
|
# bug#24820 CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index |
|
|
|
|
|
|
|
--error ER_CANT_CREATE_TABLE |
|
|
|
create table nationaldish (DishID int(10) unsigned NOT NULL AUTO_INCREMENT, |
|
|
|
CountryCode char(3) NOT NULL, |
|
|
|
DishTitle varchar(64) NOT NULL, |
|
|
|
calories smallint(5) unsigned DEFAULT NULL, |
|
|
|
PRIMARY KEY (DishID) |
|
|
|
PRIMARY KEY (DishID), |
|
|
|
INDEX i USING HASH (countrycode,calories) |
|
|
|
) ENGINE=ndbcluster; |
|
|
|
|
|
|
|
--error ER_CANT_CREATE_TABLE |
|
|
|
create index i using hash on nationaldish(countrycode,calories); |
|
|
|
|
|
|
|
drop table nationaldish; |