1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +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

@ -160,7 +160,7 @@ next_value min_value max_value start increment cache cycle round
drop sequence t1;
create table t1 (a int);
show create sequence t1;
ERROR HY000: 'test.t1' is not SEQUENCE
ERROR HY000: 'test.t1' is not of type 'SEQUENCE'
drop sequence t1;
ERROR 42S02: 'test.t1' is not a SEQUENCE
drop sequence if exists t1;

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',