~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/t/mysqldump-compat.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Embedded server doesn't support external clients
 
2
--source include/not_embedded.inc
 
3
 
 
4
#
 
5
# Bug #30126: semicolon before closing */ in /*!... CREATE DATABASE ;*/
 
6
#
 
7
 
 
8
CREATE DATABASE mysqldump_30126;
 
9
USE mysqldump_30126;
 
10
CREATE TABLE t1 (c1 int);
 
11
--exec $MYSQL_DUMP --add-drop-database mysqldump_30126 > $MYSQLTEST_VARDIR/tmp/bug30126.sql
 
12
--exec $MYSQL mysqldump_30126 < $MYSQLTEST_VARDIR/tmp/bug30126.sql
 
13
DROP DATABASE mysqldump_30126;