~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# This test is executed twice for each test case if mysql-test-run is passed
# the flag --check-testcase.
# Before every testcase it's run with mysqltest in record mode and will
# thus produce an output file
# that can be compared to output from after the tescase.
# In that way it's possible to check that a testcase does not have
# any unwanted side affects.
#

#
# Dump all global variables
#
select * from data_dictionary.GLOBAL_VARIABLES where VARIABLE_NAME != 'timestamp';

#
# Dump all databases
#
show databases;

#
# Dump the "test" database, all it's tables and their data
#
--exec $DRIZZLE_DUMP --skip-comments test