~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_client.cc

  • Committer: Brian Aker
  • Date: 2008-09-04 19:31:00 UTC
  • Revision ID: brian@tangent.org-20080904193100-l849hgghfy4urj43
Changing default character set from this point on.

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
}