~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_client.cc

  • Committer: Monty Taylor
  • Date: 2008-08-09 02:24:34 UTC
  • mto: (266.1.8 codestyle)
  • mto: This revision was merged to the branch mainline in revision 279.
  • Revision ID: monty@inaugust.com-20080809022434-97na8pnugghskxip
Removed mystringslt conv lib and replaced it with a noinst lib.

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
}