~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: LinuxJedi
  • Date: 2010-09-09 06:14:45 UTC
  • mto: (1750.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1751.
  • Revision ID: linuxjedi@linuxjedi-laptop-20100909061445-1jz91d5eed932616
Fix another wrong header, grr...

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'