summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2005-07-12 10:39:58 +0200
committerunknown <mskold@mysql.com>2005-07-12 10:39:58 +0200
commit63d25bbd9843378902200d8d54ac4ba57a4b7f75 (patch)
tree79db1e8ca46b77a60adc3cbd9e3b0150906355a6 /mysql-test
parente0df26b1fe415b7a7acda9efb83d5396224de6f0 (diff)
downloadmariadb-git-63d25bbd9843378902200d8d54ac4ba57a4b7f75.tar.gz
Disabled internal ndb system table test, since it only works on case sensitive systems
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/ndb_autodiscover.result14
-rw-r--r--mysql-test/t/ndb_autodiscover.test27
2 files changed, 14 insertions, 27 deletions
diff --git a/mysql-test/r/ndb_autodiscover.result b/mysql-test/r/ndb_autodiscover.result
index b278d6eb048..5a1a82832fa 100644
--- a/mysql-test/r/ndb_autodiscover.result
+++ b/mysql-test/r/ndb_autodiscover.result
@@ -358,20 +358,6 @@ Database
mysql
test
use test;
-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
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