~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_group.test

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
set @sav_dpi= @@div_precision_increment;
10
10
set div_precision_increment= 5;
11
11
show variables like 'div_precision_increment';
12
 
create table t1 (grp int, a bigint unsigned, c char(10) not null);
 
12
create table t1 (grp int, a bigint, c char(10) not null);
13
13
insert into t1 values (1,1,"a");
14
14
insert into t1 values (2,2,"b");
15
15
insert into t1 values (2,3,"c");
33
33
select grp, sum(a)+count(a)+avg(a)+std(a)+variance(a)+bit_or(a)+bit_and(a)+min(a)+max(a)+min(c)+max(c) as sum from t1 group by grp;
34
34
--enable_warnings
35
35
 
36
 
create table t2 (grp int, a bigint unsigned, c char(10));
 
36
create table t2 (grp int, a bigint, c char(10));
37
37
insert into t2 select grp,max(a)+max(grp),max(c) from t1 group by grp;
38
38
 
39
39
# REPLACE ... SELECT doesn't yet work with PS
463
463
#
464
464
 
465
465
CREATE TABLE t1 (
466
 
  id int(10) unsigned NOT NULL auto_increment,
 
466
  id int(10) NOT NULL auto_increment,
467
467
  val enum('one','two','three') NOT NULL default 'one',
468
468
  PRIMARY KEY  (id)
469
469
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
475
475
drop table t1;
476
476
 
477
477
CREATE TABLE t1 (
478
 
  id int(10) unsigned NOT NULL auto_increment,
 
478
  id int(10) NOT NULL auto_increment,
479
479
  val set('one','two','three') NOT NULL default 'one',
480
480
  PRIMARY KEY  (id)
481
481
) ENGINE=MyISAM DEFAULT CHARSET=utf8;