~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: Monty Taylor
  • Date: 2009-08-24 14:58:00 UTC
  • mto: (1115.3.20 captain)
  • mto: This revision was merged to the branch mainline in revision 1125.
  • Revision ID: mordred@inaugust.com-20090824145800-ocs8pkowylvyuk2s
pandora-buildĀ v0.51

Show diffs side-by-side

added added

removed removed

Lines of Context:
368
368
Error   1292    Truncated incorrect max_heap_table_size value: '100'
369
369
set max_join_size=100;
370
370
set max_sort_length=100;
371
 
set max_tmp_tables=100;
372
371
set global max_write_lock_count=100;
373
372
set global myisam_sort_buffer_size=100;
374
373
Warnings:
400
399
Error   1292    Truncated incorrect tmp_table_size value: '100'
401
400
set tx_isolation="READ-COMMITTED";
402
401
set wait_timeout=100;
403
 
create table t1 (a int not null auto_increment, primary key(a));
404
 
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));
405
404
insert into t1 values(null),(null),(null);
406
405
insert into t2 values(null),(null),(null);
407
406
set global key_buffer_size=100000;
445
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
446
445
SELECT @@global.local.key_buffer_size;
447
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
448
 
create table t1 (
 
447
create temporary table t1 (
449
448
c1 int,
450
449
c2 int,
451
450
c3 int,
453
452
c5 bigint);
454
453
show create table t1;
455
454
Table   Create Table
456
 
t1      CREATE TABLE `t1` (
 
455
t1      CREATE TEMPORARY TABLE `t1` (
457
456
  `c1` int DEFAULT NULL,
458
457
  `c2` int DEFAULT NULL,
459
458
  `c3` int DEFAULT NULL,
462
461
) ENGINE=MyISAM
463
462
drop table t1;
464
463
set @arg00= 8, @arg01= 8.8, @arg02= 'a string', @arg03= 0.2e0;
465
 
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;
466
465
show create table t1;
467
466
Table   Create Table
468
 
t1      CREATE TABLE `t1` (
 
467
t1      CREATE TEMPORARY TABLE `t1` (
469
468
  `c1` bigint DEFAULT NULL,
470
469
  `c2` decimal(65,30) DEFAULT NULL,
471
470
  `c3` text,
576
575
@@query_prealloc_size = @test
577
576
1
578
577
End of 4.1 tests
579
 
create table t1 (a int);
 
578
create temporary table t1 (a int);
580
579
select a into @x from t1;
581
580
Warnings:
582
581
Warning 1329    No data - zero rows fetched, selected, or processed
679
678
set global storage_engine            =@my_storage_engine;
680
679
set global thread_cache_size         =@my_thread_cache_size;
681
680
ERROR HY000: Unknown system variable 'thread_cache_size'
 
681
show global variables where variable_name='table_definition_cache' or Variable_name='table_lock_wait_timeout';
 
682
Variable_name   Value
 
683
table_definition_cache  #
 
684
table_lock_wait_timeout #