mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix for bug#19196: Attempt to create index on usupported field type gives wrong error code
This commit is contained in:
@ -201,13 +201,13 @@ create table t1 (
|
||||
pk1 bit(9) not null primary key,
|
||||
b int
|
||||
) engine=ndbcluster;
|
||||
ERROR HY000: Can't create table './test/t1.frm' (errno: 739)
|
||||
ERROR HY000: Can't create table './test/t1.frm' (errno: 906)
|
||||
create table t1 (
|
||||
pk1 int not null primary key,
|
||||
b bit(9),
|
||||
key(b)
|
||||
) engine=ndbcluster;
|
||||
ERROR HY000: Can't create table './test/t1.frm' (errno: 743)
|
||||
ERROR HY000: Can't create table './test/t1.frm' (errno: 906)
|
||||
create table t1 (
|
||||
pk1 int primary key,
|
||||
b bit(32) not null
|
||||
|
Reference in New Issue
Block a user