1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00
This commit is contained in:
unknown
2004-09-06 10:05:55 +02:00
parent fd07116e2f
commit a52636a0a4
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
drop table if exists t1; drop table if exists t1;
drop database if exists test2; drop database if exists mysqltest;
create table t1 ( create table t1 (
a int not null primary key, a int not null primary key,
b tinytext b tinytext
@@ -276,8 +276,8 @@ a b c d
7 7xb7 777 7xdd7 7 7xb7 777 7xdd7
8 8xb8 888 8xdd8 8 8xb8 888 8xdd8
9 9xb9 999 9xdd9 9 9xb9 999 9xdd9
create database test2; create database mysqltest;
use test2; use mysqltest;
CREATE TABLE t2 ( CREATE TABLE t2 (
a bigint unsigned NOT NULL PRIMARY KEY, a bigint unsigned NOT NULL PRIMARY KEY,
b int unsigned not null, b int unsigned not null,

View File

@@ -118,7 +118,7 @@ from t1 where a=2;
update t1 set d=null where a=1; update t1 set d=null where a=1;
commit; commit;
# FIXME now fails at random due to weird mixup between the 2 rows # FIXME now fails at random due to weird mixup between the 2 rows
#select a from t1 where d is null; select a from t1 where d is null;
# pk delete # pk delete
delete from t1 where a=1; delete from t1 where a=1;