~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/binary.result

  • Committer: lbieber
  • Date: 2010-09-08 02:51:16 UTC
  • mfrom: (1748.1.3 build)
  • Revision ID: lbieber@orisndriz03-20100908025116-adod2fvbgqhpox4d
Merge Andrew - fix bug 628419 - A double free was possible during a range query cleanup
Merge Andrew - fix bug 550251 - If an error occurred during results fetch in drizzle client the result set was not freed correctly ending in segfault upon client end.
Merge Andrew - fix bug 619591 - In SHOW CREATE TABLE type (INT, VARCHAR, etc...) is now uppercase and Collation is now shown for VARCHAR columns 

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
show create table t1;
92
92
Table   Create Table
93
93
t1      CREATE TABLE `t1` (
94
 
  `a` varchar(1) DEFAULT NULL
 
94
  `a` VARCHAR(1) COLLATE utf8_general_ci DEFAULT NULL
95
95
) ENGINE=DEFAULT COLLATE = utf8_general_ci
96
96
drop table t1;
97
97
create table t2 (a varbinary);