~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/drizzledump_restore.test

  • Committer: Brian Aker
  • Date: 2010-07-28 22:40:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1671.
  • Revision ID: brian@gaz-20100728224044-j7lfssku6pbqg8wr
Remove the need for tolower in retrieval of table functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
# Define drizzledumpfile here.  It is used to capture drizzledump output
28
28
# in order to test the output's ability to restore an exact copy of the table
29
 
let $drizzledumpfile = $DRIZZLETEST_VARDIR/tmp/drizzledumpfile.sql;
 
29
let $drizzledumpfile = $MYSQLTEST_VARDIR/tmp/drizzledumpfile.sql;
30
30
 
31
31
--echo # Pre-test cleanup
32
32
--disable_warnings
79
79
--echo #
80
80
CREATE TABLE t1 (`b` blob);
81
81
INSERT INTO `t1` VALUES (0x602010000280100005E71A);
82
 
--exec $DRIZZLE_DUMP --skip-extended-insert test --skip-comments t1 > $drizzledumpfile
 
82
--exec $DRIZZLE_DUMP --skip-extended-insert --hex-blob test --skip-comments t1 > $drizzledumpfile
83
83
let $table_name = test.t1;
84
84
--source include/drizzledump.inc
85
85