~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:27:09 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103032709-oyvfrc6eb8fzj0mr
fix docs warning: docs/unlock.rst:2: (WARNING/2) Title underline too short.

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'