~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: Brian Aker
  • Date: 2009-07-12 00:49:18 UTC
  • mfrom: (1063.9.51 brian-tmp-fix)
  • Revision ID: brian@gaz-20090712004918-chprmyj387ex6l8a
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
399
399
Error   1292    Truncated incorrect tmp_table_size value: '100'
400
400
set tx_isolation="READ-COMMITTED";
401
401
set wait_timeout=100;
402
 
create table t1 (a int not null auto_increment, primary key(a));
403
 
create table t2 (a int not null auto_increment, primary key(a));
 
402
create temporary table t1 (a int not null auto_increment, primary key(a));
 
403
create temporary table t2 (a int not null auto_increment, primary key(a));
404
404
insert into t1 values(null),(null),(null);
405
405
insert into t2 values(null),(null),(null);
406
406
set global key_buffer_size=100000;
444
444
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'key_buffer_size' at line 1
445
445
SELECT @@global.local.key_buffer_size;
446
446
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'key_buffer_size' at line 1
447
 
create table t1 (
 
447
create temporary table t1 (
448
448
c1 int,
449
449
c2 int,
450
450
c3 int,
452
452
c5 bigint);
453
453
show create table t1;
454
454
Table   Create Table
455
 
t1      CREATE TABLE `t1` (
 
455
t1      CREATE TEMPORARY TABLE `t1` (
456
456
  `c1` int DEFAULT NULL,
457
457
  `c2` int DEFAULT NULL,
458
458
  `c3` int DEFAULT NULL,
461
461
) ENGINE=MyISAM
462
462
drop table t1;
463
463
set @arg00= 8, @arg01= 8.8, @arg02= 'a string', @arg03= 0.2e0;
464
 
create table t1 as select @arg00 as c1, @arg01 as c2, @arg02 as c3, @arg03 as c4;
 
464
create temporary table t1 as select @arg00 as c1, @arg01 as c2, @arg02 as c3, @arg03 as c4;
465
465
show create table t1;
466
466
Table   Create Table
467
 
t1      CREATE TABLE `t1` (
 
467
t1      CREATE TEMPORARY TABLE `t1` (
468
468
  `c1` bigint DEFAULT NULL,
469
469
  `c2` decimal(65,30) DEFAULT NULL,
470
470
  `c3` text,
575
575
@@query_prealloc_size = @test
576
576
1
577
577
End of 4.1 tests
578
 
create table t1 (a int);
 
578
create temporary table t1 (a int);
579
579
select a into @x from t1;
580
580
Warnings:
581
581
Warning 1329    No data - zero rows fetched, selected, or processed