~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/strict.result

  • Committer: lbieber
  • Date: 2010-09-08 02:51:16 UTC
  • mfrom: (1748.1.3 build)
  • Revision ID: lbieber@orisndriz03-20100908025116-adod2fvbgqhpox4d
Merge Andrew - fix bug 628419 - A double free was possible during a range query cleanup
Merge Andrew - fix bug 550251 - If an error occurred during results fetch in drizzle client the result set was not freed correctly ending in segfault upon client end.
Merge Andrew - fix bug 619591 - In SHOW CREATE TABLE type (INT, VARCHAR, etc...) is now uppercase and Collation is now shown for VARCHAR columns 

Show diffs side-by-side

added added

removed removed

Lines of Context:
318
318
SHOW CREATE TABLE t1;
319
319
Table   Create Table
320
320
t1      CREATE TABLE `t1` (
321
 
  `col1` int NOT NULL DEFAULT '99',
322
 
  `col2` varchar(6) NOT NULL
 
321
  `col1` INT NOT NULL DEFAULT '99',
 
322
  `col2` VARCHAR(6) COLLATE utf8_general_ci NOT NULL
323
323
) ENGINE=DEFAULT COLLATE = utf8_general_ci
324
324
INSERT INTO t1 VALUES (1, 'hello');
325
325
INSERT INTO t1 (col2) VALUES ('hello2');
425
425
show create table t1;
426
426
Table   Create Table
427
427
t1      CREATE TABLE `t1` (
428
 
  `a` bigint NOT NULL,
429
 
  `b` date NOT NULL
 
428
  `a` BIGINT NOT NULL,
 
429
  `b` DATE NOT NULL
430
430
) ENGINE=DEFAULT COLLATE = utf8_general_ci
431
431
drop table t1;
432
432
create table t1(a int, b timestamp);
434
434
show create table t1;
435
435
Table   Create Table
436
436
t1      CREATE TABLE `t1` (
437
 
  `a` int NOT NULL,
438
 
  `b` timestamp NULL DEFAULT NULL,
 
437
  `a` INT NOT NULL,
 
438
  `b` TIMESTAMP NULL DEFAULT NULL,
439
439
  PRIMARY KEY (`a`)
440
440
) ENGINE=DEFAULT COLLATE = utf8_general_ci
441
441
drop table t1;
444
444
show create table t1;
445
445
Table   Create Table
446
446
t1      CREATE TABLE `t1` (
447
 
  `a` int NOT NULL,
448
 
  `b` timestamp NULL DEFAULT '2005-01-02 03:04:05',
 
447
  `a` INT NOT NULL,
 
448
  `b` TIMESTAMP NULL DEFAULT '2005-01-02 03:04:05',
449
449
  PRIMARY KEY (`a`)
450
450
) ENGINE=DEFAULT COLLATE = utf8_general_ci
451
451
drop table t1;
454
454
show create table t2;
455
455
Table   Create Table
456
456
t2      CREATE TABLE `t2` (
457
 
  `date` date NOT NULL
 
457
  `date` DATE NOT NULL
458
458
) ENGINE=DEFAULT COLLATE = utf8_general_ci
459
459
drop table t2,t1;
460
460
create table t1 (i int)
462
462
show create table t1;
463
463
Table   Create Table
464
464
t1      CREATE TABLE `t1` (
465
 
  `i` int DEFAULT NULL
 
465
  `i` INT DEFAULT NULL
466
466
) ENGINE=DEFAULT COMMENT='123456789*123456789*123456789*123456789*123456789*123456789*' COLLATE = utf8_general_ci
467
467
drop table t1;
468
468
create table t1(col1 int, col2 int,