~linuxjedi/drizzle/drizzle-bug-647360

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/test-suite-dir/embedded_innodb/tests/t/config_file_per_table_enable.test

  • Committer: lbieber
  • Date: 2010-09-27 18:21:19 UTC
  • mfrom: (1797.1.2 build)
  • Revision ID: lbieber@orisndriz08-20100927182119-mz1a2hoo2pszmnom
Merge Stewart - Allow access to internal InnoDB (HailDB) data dictionary tables, fix enum now that it is 4 bytes
Merge Shrews - fix bug 643935 - The transaction_reader program should handle mixed transaction messages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
SHOW VARIABLES LIKE 'innodb_file_per_table';
2
2
SELECT * FROM DATA_DICTIONARY.INNODB_CONFIGURATION WHERE NAME='file_per_table';
3
3
CREATE TABLE t1 (a int primary key);
4
 
--file_exists $MYSQLTEST_VARDIR/master-data/test/t1.ibd
 
4
--file_exists $MYSQLTEST_VARDIR/master-data/local/test/t1.ibd
5
5
DROP TABLE t1;