1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

pbxt suite is now a main-pbxt overlay

This commit is contained in:
Sergei Golubchik
2012-02-29 21:55:04 +01:00
parent e293bdb2c1
commit e4bfb6f161
493 changed files with 11182 additions and 100557 deletions

View File

@ -310,7 +310,7 @@ create table t1 (,b int);
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'b int)' at line 1
create table t1 (a int, key(a));
create table t2 (b int, foreign key(b) references t1(a), key(b));
drop table if exists t1,t2;
drop table if exists t2,t1;
create table t1(id int not null, name char(20));
insert into t1 values(10,'mysql'),(20,'monty- the creator');
create table t2(id int not null);