~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Brian Aker
  • Date: 2010-12-16 04:01:22 UTC
  • mfrom: (1996.2.1 compare)
  • Revision ID: brian@tangent.org-20101216040122-eodh5shwsij35ybe
Merge in uuid tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
441
441
2       -2      2       1825-12-14      a       2003-01-01 03:02:01     binary data
442
442
drop table t1, t2;
443
443
create table t1 (a int, b int, d int, e bigint, f float(3,2), g double(4,3), h decimal(5,4), j date, k timestamp, l datetime, m enum('a','b'), o char(10));
 
444
SHOW CREATE TABLE t1;
 
445
Table   Create Table
 
446
t1      CREATE TABLE `t1` (
 
447
  `a` INT DEFAULT NULL,
 
448
  `b` INT DEFAULT NULL,
 
449
  `d` INT DEFAULT NULL,
 
450
  `e` BIGINT DEFAULT NULL,
 
451
  `f` DOUBLE(3,2) DEFAULT NULL,
 
452
  `g` DOUBLE(4,3) DEFAULT NULL,
 
453
  `h` DECIMAL(5,4) DEFAULT NULL,
 
454
  `j` DATE DEFAULT NULL,
 
455
  `k` TIMESTAMP NULL DEFAULT NULL,
 
456
  `l` DATETIME DEFAULT NULL,
 
457
  `m` ENUM('a','b') DEFAULT NULL,
 
458
  `o` VARCHAR(10) COLLATE utf8_general_ci DEFAULT NULL
 
459
) ENGINE=InnoDB COLLATE = utf8_general_ci
444
460
create table t2 select ifnull(a,a), ifnull(b,b), ifnull(d,d), ifnull(e,e), ifnull(f,f), ifnull(g,g), ifnull(h,h), ifnull(j,j), ifnull(k,k), ifnull(l,l), ifnull(m,m), ifnull(o,o) from t1;
445
461
show create table t2;
446
462
Table   Create Table