~fallenpegasus/drizzle/logcsv

« back to all changes in this revision

Viewing changes to mysql-test/innodb_bug46676.result

  • Committer: lbieber at stabletransit
  • Date: 2010-10-13 16:20:08 UTC
  • mfrom: (1843.1.3 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101013162008-qi2e6k5yvfm16964
Merge Stewart - update innobase plugin to be based on innodb_plugin 1.0.6
Merge Monty - more valgrind cleanup
Merge Monty - Moved libdrizzle api listings from doxygen to sphinx

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;