1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Improved warning "xxx is not BASE TABLE/SEQUENCE"

- Changed warning to "'%-.192s.%-.192s' is not of type '%s'" to make the
  english a bit more correct
This commit is contained in:
Monty
2017-06-02 13:52:47 +03:00
parent 959891662d
commit 3356e42d01
22 changed files with 74 additions and 74 deletions

View File

@@ -73,7 +73,7 @@ support create sequence
connection master;
create table t_1(id int);
show create sequence t_1;
ERROR HY000: 's_db.t_1' is not SEQUENCE
ERROR HY000: 's_db.t_1' is not of type 'SEQUENCE'
drop table t_1;
CREATE SEQUENCE `s2` (
`currval` bigint(21) NOT NULL COMMENT 'current value',