Bug #45725 Test case disabled in ndb_team.ndb_autodiscover.test
Submitted: 24 Jun 20:55
Reporter: Alexander Nozdrin
Status: Verified
Category:Tests: Cluster Severity:S3 (Non-critical)
Version:5.4 OS:Any
Assigned to: Target Version:
Tags: disabled
Triage: Needs Triage: D4 (Minor)

[24 Jun 20:55] Alexander Nozdrin
Description:
ndb_team.ndb_autodiscover.test:

#####################################################
# Test that it's not possible to create tables
# with same name as NDB internal tables
# This will also test that it's not possible to create
# a table with tha same name as a table that can't be
# discovered( for example a table created via NDBAPI)

# Test disabled since it doesn't work on case insensitive systems
#--error ER_TABLE_EXISTS_ERROR
#CREATE TABLE sys.SYSTAB_0 (a int);
#--error ER_UNKNOWN_ERROR
#select * from sys.SYSTAB_0;

#CREATE TABLE IF NOT EXISTS sys.SYSTAB_0 (a int);
#show warnings;
#--error ER_UNKNOWN_ERROR
#select * from sys.SYSTAB_0;

#--error ER_BAD_TABLE_ERROR
#drop table sys.SYSTAB_0;
#drop table IF EXISTS sys.SYSTAB_0;

How to repeat:
*