~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_gconcat.result

  • Committer: Monty Taylor
  • Date: 2009-01-28 04:37:46 UTC
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 816.
  • Revision ID: mordred@inaugust.com-20090128043746-d2yukekishwn3ftm
TurnedĀ onĀ -Wshadow.

Show diffs side-by-side

added added

removed removed

Lines of Context:
638
638
x text not null,
639
639
y integer not null
640
640
);
641
 
insert into t1 values (repeat('a', 1022), 0), (repeat(_utf8 0xc3b7, 4), 0);
 
641
insert into t1 values (repeat('a', 1022), 0), (repeat( 0xc3b7, 4), 0);
642
642
set group_concat_max_len= 1022 + 10;
643
643
select @x:=group_concat(x) from t1 group by y;
644
644
select @@group_concat_max_len, length(@x), char_length(@x), right(@x,12), right(HEX(@x),12);