~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: Brian Aker
  • Date: 2010-08-18 19:37:19 UTC
  • mto: This revision was merged to the branch mainline in revision 1720.
  • Revision ID: brian@tangent.org-20100818193719-bxxzn1pi22styowd
created function that can be used to simply crash the server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
196
196
mysql_protocol_buffer_length    1024
197
197
set global mysql_protocol_buffer_length=1;
198
198
Warnings:
199
 
Error   1524    Error setting mysql_protocol_buffer_length. Given value 1 (< 1024)
 
199
Error   1292    Truncated incorrect buffer_length value: '1'
200
200
show variables like 'mysql_protocol_buffer_length';
201
201
Variable_name   Value
202
202
mysql_protocol_buffer_length    1024
203
203
set global mysql_protocol_buffer_length=2000000000;
204
204
Warnings:
205
 
Error   1524    Error setting mysql_protocol_buffer_length. Given value 2000000000 (> 1048576)
 
205
Error   1292    Truncated incorrect buffer_length value: '2000000000'
206
206
show variables like 'mysql_protocol_buffer_length';
207
207
Variable_name   Value
208
 
mysql_protocol_buffer_length    1024
 
208
mysql_protocol_buffer_length    1048576
209
209
show variables like '%alloc%';
210
210
Variable_name   Value
211
211
innodb_use_sys_malloc   ON
295
295
set global max_write_lock_count=100;
296
296
set global myisam_sort_buffer_size=100;
297
297
Warnings:
298
 
Error   1524    Error setting myisam_sort_buffer_size. Given value 100 (< 1024)
 
298
Error   1292    Truncated incorrect sort_buffer_size value: '100'
299
299
set global mysql_protocol_buffer_length=100;
300
300
Warnings:
301
 
Error   1524    Error setting mysql_protocol_buffer_length. Given value 100 (< 1024)
 
301
Error   1292    Truncated incorrect buffer_length value: '100'
302
302
set read_buffer_size=100;
303
303
Warnings:
304
304
Error   1292    Truncated incorrect read_buffer_size value: '100'
336
336
show create table t1;
337
337
Table   Create Table
338
338
t1      CREATE TEMPORARY TABLE `t1` (
339
 
  `c1` INT DEFAULT NULL,
340
 
  `c2` INT DEFAULT NULL,
341
 
  `c3` INT DEFAULT NULL,
342
 
  `c4` INT DEFAULT NULL,
343
 
  `c5` BIGINT DEFAULT NULL
344
 
) ENGINE=MyISAM COLLATE = utf8_general_ci
 
339
  `c1` int DEFAULT NULL,
 
340
  `c2` int DEFAULT NULL,
 
341
  `c3` int DEFAULT NULL,
 
342
  `c4` int DEFAULT NULL,
 
343
  `c5` bigint DEFAULT NULL
 
344
) ENGINE=MyISAM
345
345
drop table t1;
346
346
set @arg00= 8, @arg01= 8.8, @arg02= 'a string', @arg03= 0.2e0;
347
347
create temporary table t1 as select @arg00 as c1, @arg01 as c2, @arg02 as c3, @arg03 as c4;
348
348
show create table t1;
349
349
Table   Create Table
350
350
t1      CREATE TEMPORARY TABLE `t1` (
351
 
  `c1` BIGINT DEFAULT NULL,
352
 
  `c2` DECIMAL(65,30) DEFAULT NULL,
353
 
  `c3` TEXT COLLATE utf8_general_ci,
354
 
  `c4` DOUBLE DEFAULT NULL
355
 
) ENGINE=MyISAM COLLATE = utf8_general_ci
 
351
  `c1` bigint DEFAULT NULL,
 
352
  `c2` decimal(65,30) DEFAULT NULL,
 
353
  `c3` text,
 
354
  `c4` double DEFAULT NULL
 
355
) ENGINE=MyISAM
356
356
drop table t1;
357
357
SET GLOBAL table_open_cache=-1;
358
358
Warnings: