~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/join_outer.result

  • Committer: Brian Aker
  • Date: 2008-09-05 22:16:26 UTC
  • mto: This revision was merged to the branch mainline in revision 383.
  • Revision ID: brian@tangent.org-20080905221626-nc631ypag04am60c
Big, fat, UTF-8 patch. This fixes some of the oddities around only one
charset.

Show diffs side-by-side

added added

removed removed

Lines of Context:
794
794
flag_name varchar(64) default NULL,
795
795
flag_value text,
796
796
UNIQUE KEY ts_id (ts_id,inst_id,flag_name)
797
 
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
797
) ENGINE=MyISAM;
798
798
CREATE TABLE t2 (
799
799
ts_id bigint default NULL,
800
800
inst_id tinyint default NULL,
801
801
flag_name varchar(64) default NULL,
802
802
flag_value text,
803
803
UNIQUE KEY ts_id (ts_id,inst_id,flag_name)
804
 
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
804
) ENGINE=MyISAM;
805
805
INSERT INTO t1 VALUES
806
806
(111056548820001, 0, 'flag1', NULL),
807
807
(111056548820001, 0, 'flag2', NULL),