~prafulla-t/drizzle/drz-fast-timer-and-time-profile-refactoring

« back to all changes in this revision

Viewing changes to tests/t/func_group.test

  • Committer: Prafulla Tekawade
  • Date: 2010-08-22 06:26:33 UTC
  • mfrom: (1685.40.6 staging)
  • Revision ID: prafulla_t@users.sourceforge.net-20100822062633-rda0zeuhg6nhyyom
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
354
354
#select Case When Count(*) < MAX_REQ Then 1 Else 0 End from t1 where t1.USR_ID = 1 group by MAX_REQ;
355
355
#drop table t1;
356
356
 
357
 
 
358
 
create table t1 (a char(10));
359
 
insert into t1 values ('a'),('b'),('c');
360
 
select coercibility(max(a)) from t1;
361
 
drop table t1;
362
 
 
363
357
#
364
358
# Bug #6658 MAX(column) returns incorrect coercibility
365
359
#