diff options
author | mskold@mysql.com <> | 2005-07-12 10:39:58 +0200 |
---|---|---|
committer | mskold@mysql.com <> | 2005-07-12 10:39:58 +0200 |
commit | c37aece4706a53abf35af22c905c16ef013be62d (patch) | |
tree | 79db1e8ca46b77a60adc3cbd9e3b0150906355a6 /mysql-test/t/ndb_autodiscover.test | |
parent | 58703a4380255e0ea1b7bd977aaffc06e13e3f73 (diff) | |
download | mariadb-git-c37aece4706a53abf35af22c905c16ef013be62d.tar.gz |
Disabled internal ndb system table test, since it only works on case sensitive systems
Diffstat (limited to 'mysql-test/t/ndb_autodiscover.test')
-rw-r--r-- | mysql-test/t/ndb_autodiscover.test | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/mysql-test/t/ndb_autodiscover.test b/mysql-test/t/ndb_autodiscover.test index 49ed8c894fe..1eed78b43df 100644 --- a/mysql-test/t/ndb_autodiscover.test +++ b/mysql-test/t/ndb_autodiscover.test @@ -460,19 +460,20 @@ use test; # a table with tha same name as a table that can't be # discovered( for example a table created via NDBAPI) ---error 1050 -CREATE TABLE sys.SYSTAB_0 (a int); ---error 1105 -select * from sys.SYSTAB_0; - -CREATE TABLE IF NOT EXISTS sys.SYSTAB_0 (a int); -show warnings; ---error 1105 -select * from sys.SYSTAB_0; - ---error 1051 -drop table sys.SYSTAB_0; -drop table IF EXISTS sys.SYSTAB_0; +# Test disabled since it doesn't work on case insensitive systems +#--error 1050 +#CREATE TABLE sys.SYSTAB_0 (a int); +#--error 1105 +#select * from sys.SYSTAB_0; + +#CREATE TABLE IF NOT EXISTS sys.SYSTAB_0 (a int); +#show warnings; +#--error 1105 +#select * from sys.SYSTAB_0; + +#--error 1051 +#drop table sys.SYSTAB_0; +#drop table IF EXISTS sys.SYSTAB_0; ###################################################### # Note! This should always be the last step in this |