~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/mysql-test/innodb_bug44571.test

  • Committer: lbieber at stabletransit
  • Date: 2010-10-19 14:03:27 UTC
  • mfrom: (1861.1.2 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101019140327-2jvt5j2wi4pzhm1z
Merge Brian - Small collection of cleanups/refactor'ing around locks
Merge Monty - fix a few things in the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
2
# Bug#44571 InnoDB Plugin crashes on ADD INDEX
3
3
# http://bugs.mysql.com/44571
4
 
# Please also refer to related fix in
5
 
# http://bugs.mysql.com/47621
6
4
#
7
5
-- source include/have_innodb.inc
8
6
 
9
7
CREATE TABLE bug44571 (foo INT) ENGINE=InnoDB;
10
8
ALTER TABLE bug44571 CHANGE foo bar INT;
11
 
# Create index with the old column name will fail,
12
 
# because the CHANGE foo bar is successful. And
13
 
# the column name change would communicate to
14
 
# InnoDB with the fix from bug #47621
15
9
-- error ER_KEY_COLUMN_DOES_NOT_EXITS
16
10
ALTER TABLE bug44571 ADD INDEX bug44571b (foo);
17
 
# The following create indexes should succeed,
18
 
# indirectly confirm the CHANGE foo bar is successful.
19
 
ALTER TABLE bug44571 ADD INDEX bug44571c (bar);
20
 
DROP INDEX bug44571c ON bug44571;
21
 
CREATE INDEX bug44571c ON bug44571 (bar);
 
11
# The following will fail, because the CHANGE foo bar was
 
12
# not communicated to InnoDB.
 
13
--error ER_NOT_KEYFILE
 
14
ALTER TABLE bug44571 ADD INDEX bug44571b (bar);
 
15
--error ER_NOT_KEYFILE
 
16
CREATE INDEX bug44571b ON bug44571 (bar);
22
17
DROP TABLE bug44571;