|
STR
1. Execute in console
create table host
|
(
|
id int not null
|
primary key,
|
name varchar(20) null
|
);
|
|
create table client
|
(
|
id int not null
|
primary key,
|
name varchar(20) null,
|
host_id int null,
|
constraint id_name_idx1_u
|
unique (id, name) using hash,
|
constraint client_ibfk_1
|
foreign key (host_id) references host (id)
|
);
|
|
create index host_id
|
on client (host_id);
|
Expected:
Index created
Actual:
Server crash. My IDE shows me
[08] (conn=9) unexpected end of stream, read 0 bytes from 4 (socket was closed by server) java.io.EOFException: unexpected end of stream, read 0 bytes from 4 (socket was closed by server)
Logs in maria_crash_log.log & docker_inspect.txt
|