mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 17:14:30 +02:00
Show all generated warnings in SHOW ERROR
Previously we only stored the first given error (the error sent to the client)
This commit is contained in:
parent
d5f573713a
commit
cd78e701a5
24 changed files with 115 additions and 57 deletions
|
|
@ -27,11 +27,15 @@ drop table t1;
|
|||
repair table t1 use_frm;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 repair error Table 'test.t1' doesn't exist
|
||||
Warnings:
|
||||
Error 1146 Table 'test.t1' doesn't exist
|
||||
create table t1 engine=myisam SELECT 1,"table 1";
|
||||
flush tables;
|
||||
repair table t1;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 repair error Incorrect file format 't1'
|
||||
Warnings:
|
||||
Error 130 Incorrect file format 't1'
|
||||
repair table t1 use_frm;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 repair warning Number of rows changed from 0 to 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue