1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +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;