1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Mistakes corrected, new error messages added

This commit is contained in:
Galina Shalygina
2017-08-29 16:58:32 +02:00
parent 570d2e7d0f
commit 91149bbd82
7 changed files with 32 additions and 11 deletions

View File

@ -1,5 +1,6 @@
create table t1 (a int, b int);
insert into t1 values (1,2),(4,6),(9,7),(1,1),(2,5),(7,8);
insert into t1 values (1,2),(4,6),(9,7),
(1,1),(2,5),(7,8);
# just VALUES
values (1,2);
1 2