~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to mysql-test/r/merge.result

Merge with 4.0.3
Some simple optimzations, more comments and indentation changes.
Add ` around database in 'use database' in binary log.
Moved max_error_count and max_warning_count to variables struct.
Removed SHOW_WARNS_COUNT and SHOW_ERRORS_COUNT calls.
Changed string functions to use character set of first string argument as default return characterset
(Each string function can change the above assumption if needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
172
172
Table   Create Table
173
173
t3      CREATE TABLE `t3` (
174
174
  `a` int(11) NOT NULL default '0',
175
 
  `b` char(20) default NULL,
 
175
  `b` char(20) character set latin1 default NULL,
176
176
  KEY `a` (`a`)
177
177
) TYPE=MRG_MyISAM UNION=(t1,t2)
178
178
create table t4 (a int not null, b char(10), key(a)) type=MERGE UNION=(t1,t2);