1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fixed wrong mysql-test

New german error messages
This commit is contained in:
monty@hundin.mysql.fi
2001-06-12 17:13:52 +03:00
parent a2e9e16fdd
commit 6be95636b1
60 changed files with 975 additions and 1331 deletions

View File

@@ -15,4 +15,4 @@ connection con2;
insert into t1 values (200000);
connection con1;
reap;
drop table t1;

View File

@@ -2,6 +2,7 @@
# Bug when using comparions of strings and integers.
#
drop table if exists t1;
CREATE TABLE t1 (id CHAR(12) not null, PRIMARY KEY (id));
insert into t1 values ('000000000001'),('000000000002');
explain select * from t1 where id=000000000001;