1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

after mergemerge

This commit is contained in:
unknown
2005-06-04 07:15:11 +02:00
parent 33022c529a
commit 61c12aa299
2 changed files with 9 additions and 3 deletions

View File

@ -408,12 +408,12 @@ connection user1;
select database(), user();
connection default;
disconnect user1;
use test;
#
# Test for Bug 856 'Naming a key "Primary" causes trouble'
#
use test;
--error 1280
create table t1 (a int, index `primary` (a));
--error 1280
@ -470,8 +470,6 @@ drop table t1,t2;
# This tests two additional possible errors and a hang if
# an improper fix is present.
#
connection default;
use test;
create table t1 (a int);
--error 1093
create table t1 select * from t1;