1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Delete duplicate error message names

This commit is contained in:
monty@mashka.mysql.fi
2003-11-18 17:28:00 +02:00
parent e5d75fb984
commit c9ae785bc3
35 changed files with 38 additions and 115 deletions

View File

@ -586,7 +586,7 @@ select * from t1;
a
set GLOBAL query_cache_size=1024;
Warnings:
Warning 1284 Query cache failed to set size 1024, new query cache size is 0
Warning 1281 Query cache failed to set size 1024, new query cache size is 0
show global variables like "query_cache_size";
Variable_name Value
query_cache_size 0
@ -594,7 +594,7 @@ select * from t1;
a
set GLOBAL query_cache_size=10240;
Warnings:
Warning 1284 Query cache failed to set size 10240, new query cache size is 0
Warning 1281 Query cache failed to set size 10240, new query cache size is 0
show global variables like "query_cache_size";
Variable_name Value
query_cache_size 0
@ -602,7 +602,7 @@ select * from t1;
a
set GLOBAL query_cache_size=20480;
Warnings:
Warning 1284 Query cache failed to set size 20480, new query cache size is 0
Warning 1281 Query cache failed to set size 20480, new query cache size is 0
show global variables like "query_cache_size";
Variable_name Value
query_cache_size 0
@ -610,7 +610,7 @@ select * from t1;
a
set GLOBAL query_cache_size=40960;
Warnings:
Warning 1284 Query cache failed to set size 40960, new query cache size is 0
Warning 1281 Query cache failed to set size 40960, new query cache size is 0
show global variables like "query_cache_size";
Variable_name Value
query_cache_size 0

View File

@ -40,9 +40,9 @@ create table t1 (ordid int(8) not null auto_increment, ord varchar(50) not null
-- error 1044,1
create table not_existing_database.test (a int);
--error 1279
--error 1103
create table `a/a` (a int);
--error 1279
--error 1103
create table `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa int);
--error 1059
create table a (`aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` int);
@ -66,13 +66,13 @@ create table test_$1.test2$ (a int);
drop table test_$1.test2$;
drop database test_$1;
--error 1279
--error 1103
create table `` (a int);
--error 1279
--error 1103
drop table if exists ``;
--error 1281
--error 1166
create table t1 (`` int);
--error 1282
--error 1279
create table t1 (i int, index `` (i));
#
@ -262,7 +262,7 @@ create table non_existing_database.t1 like t1;
create table t3 like non_existing_table;
--error 1050
create temporary table t3 like t1;
--error 1279
--error 1103
create table t3 like `a/a`;
drop table t1, t2, t3;
drop table t3;

View File

@ -133,9 +133,9 @@ select * from t2 having MATCH inhalt AGAINST ('foobar');
# check of fulltext errors
#
--error 1285
--error 1282
CREATE TABLE t3 (t int(11),i text,fulltext tix (t,i));
--error 1285
--error 1282
CREATE TABLE t3 (t int(11),i text,
j varchar(200) CHARACTER SET latin2,
fulltext tix (i,j));

View File

@ -99,7 +99,7 @@ explain select a from t2;
select a from t2;
# Test some error conditions
--error 1287
--error 1283
cache index t1 in unknown_key_cache;
cache index t1 keys (unknown_key) in keycache1;