Bug #45721 Test case for Bug#7798 is disabled due to WL#4284 in ndb.ndb_index_ordered.test
Submitted: 24 Jun 2009 17:40
Reporter: Alexander Nozdrin Email Updates:
Status: Verified Impact on me:
None 
Category:Tests: Cluster Severity:S3 (Non-critical)
Version:5.4 OS:Any
Assigned to: CPU Architecture:Any
Tags: disabled

[24 Jun 2009 17:40] Alexander Nozdrin
Description:
ndb.ndb_index_ordered.test contains:

# Disabled due to WL#4284
#
# Needs to be reworked. It's not possible anymore to do a non-fast alter table
# on a table that is being used by a pending transaction (transaction holds a
# metadata lock on the table).
#
# bug#7798
# create table t1(a int primary key, b int not null, c int, index(b));
# insert into t1 values (1,1,1), (2,2,2);
# connect (con1,localhost,root,,test);
# connect (con2,localhost,root,,test);
# connection con1;
# set autocommit=0;
# begin;
# select count(*) from t1;
# connection con2;
# ALTER TABLE t1 ADD COLUMN c int
# connection con1;
# select a from t1 where b = 2;
# show tables;
# drop table t1;

See also Bug#45621.

How to repeat:
*