~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_client.cc

  • Committer: Stewart Smith
  • Date: 2008-09-25 10:04:06 UTC
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080925100406-hld92f4dr4nuar3a
Move compression functions (compress, uncompress and compressed_length) out into modules and fix test

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
                           (uint)global_system_variables.net_write_timeout);
33
33
 
34
34
  net->retry_count=  (uint) global_system_variables.net_retry_count;
35
 
  net->max_packet_size= cmax(global_system_variables.net_buffer_length,
 
35
  net->max_packet_size= max(global_system_variables.net_buffer_length,
36
36
                            global_system_variables.max_allowed_packet);
37
37
}
38
38
}