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

« back to all changes in this revision

Viewing changes to tests/std_data/mysqlmigrate_varbinary_type.dat

  • 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
CREATE TABLE varbinary_table(description TEXT,
 
2
col_varbinary0 varbinary(0),
 
3
col_varbinary1 varbinary(1),
 
4
col_varbinary1_not_null varbinary(1) NOT NULL,
 
5
col_varbinary1_default_null varbinary(1) DEFAULT NULL,
 
6
col_varbinary1_default varbinary(1) DEFAULT 'd',
 
7
col_varbinary255 varbinary(255) DEFAULT 'ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ'
 
8
) ENGINE=MyISAM;
 
9
 
 
10
INSERT INTO varbinary_table VALUES('TEST1','','a','z',DEFAULT,DEFAULT,'TNETENNBA');
 
11
INSERT INTO varbinary_table VALUES('TEST2','','z','z',DEFAULT,DEFAULT,'OVERNUMEROUSNESS');
 
12
INSERT INTO varbinary_table VALUES('NULL_ROW',NULL,NULL,'Z',NULL,NULL,NULL);
 
13
 
 
14