diff options
author | unknown <mskold@mysql.com> | 2005-07-12 10:57:01 +0200 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2005-07-12 10:57:01 +0200 |
commit | 15ff7fd8389eb4adc702b22e1a7b3a23a7845485 (patch) | |
tree | a0cb143aa089d65489be484595c7f1189db6d4e2 /mysql-test/r/ndb_autodiscover.result | |
parent | 4c99c0e7db4ef394b9033eda45efc88e988bff10 (diff) | |
parent | c9956b6a2ac57859677be4755bf418f534e1dd74 (diff) | |
download | mariadb-git-15ff7fd8389eb4adc702b22e1a7b3a23a7845485.tar.gz |
Merge mysql.com:/usr/local/home/marty/MySQL/mysql-4.1
into mysql.com:/usr/local/home/marty/MySQL/mysql-5.0
include/my_global.h:
Auto merged
mysql-test/t/ndb_autodiscover.test:
Auto merged
mysql-test/r/ndb_autodiscover.result:
Merge
Diffstat (limited to 'mysql-test/r/ndb_autodiscover.result')
-rw-r--r-- | mysql-test/r/ndb_autodiscover.result | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mysql-test/r/ndb_autodiscover.result b/mysql-test/r/ndb_autodiscover.result index babe3d0fe41..3834c283a1e 100644 --- a/mysql-test/r/ndb_autodiscover.result +++ b/mysql-test/r/ndb_autodiscover.result @@ -372,7 +372,6 @@ drop table t1; use test2; drop table t2; drop database test2; -use test; drop database if exists test_only_ndb_tables; create database test_only_ndb_tables; use test_only_ndb_tables; @@ -383,20 +382,6 @@ select * from t1; ERROR HY000: Can't lock file (errno: 4009) use test; drop database test_only_ndb_tables; -CREATE TABLE sys.SYSTAB_0 (a int); -ERROR 42S01: Table 'SYSTAB_0' already exists -select * from sys.SYSTAB_0; -ERROR HY000: Failed to open 'SYSTAB_0', error while unpacking from engine -CREATE TABLE IF NOT EXISTS sys.SYSTAB_0 (a int); -show warnings; -Level Code Message -select * from sys.SYSTAB_0; -ERROR HY000: Failed to open 'SYSTAB_0', error while unpacking from engine -drop table sys.SYSTAB_0; -ERROR 42S02: Unknown table 'SYSTAB_0' -drop table IF EXISTS sys.SYSTAB_0; -Warnings: -Note 1051 Unknown table 'SYSTAB_0' CREATE TABLE t9 ( a int NOT NULL PRIMARY KEY, b int |