~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/suite/mysql_migrate/t/decimal_type.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-03-15 10:41:18 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110315104118-eaf0hvlytjdl4zrf
Tags: 2011.03.13-0ubuntu1
* New upstream release.
* Added slave plugin.
* Removed archive, blackhole and blitzdb plugins.
* Moved location of libdrizzle headers.
* Removed drizzleadmin manpage patch.
* Add drizzle_safe_write_string to symbols.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# mysql_migrate.decimal_type
 
2
# test the ENUM data type migration 
 
3
 
 
4
let $datafile = $DRIZZLETEST_VARDIR/std_data_ln/mysqlmigrate_decimal_type.dat;
 
5
let $database = drizzledump_migrate_test;
 
6
 
 
7
--source suite/mysql_migrate/include/drizzledump_migrate.inc
 
8
 
 
9
--echo test our table:
 
10
--echo test decimal type
 
11
eval SHOW CREATE TABLE $database.decimal_table;
 
12
eval SELECT * FROM $database.decimal_table;
 
13
 
 
14
--source suite/mysql_migrate/include/mysql_cleanup.inc
 
15
 
 
16
eval DROP SCHEMA $database;