~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/mysql-test/innodb_bug46676.result

  • Committer: Monty Taylor
  • Date: 2008-11-16 05:36:13 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116053613-bld4rqxhlkb49c02
Split out cache_row and type_holder.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SET foreign_key_checks=0;
2
 
CREATE TABLE t1 (id int, foreign key (id) references t2(id)) ENGINE=INNODB;
3
 
CREATE TABLE t2 (id int, foreign key (id) references t1(id)) ENGINE=INNODB;
4
 
SET foreign_key_checks=1;
5
 
SELECT COUNT(*) FROM information_schema.key_column_usage WHERE REFERENCED_TABLE_NAME in ('t1', 't2');
6
 
COUNT(*)
7
 
2
8
 
SET foreign_key_checks=0;
9
 
DROP TABLE t1, t2;