~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_client.cc

  • Committer: Brian Aker
  • Date: 2008-08-12 03:12:57 UTC
  • Revision ID: brian@tangent.org-20080812031257-ln3uk87y1r22byeg
First pass of new sql_db.cc work

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
}