~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_client.cc

  • Committer: Monty Taylor
  • Date: 2008-07-05 22:08:52 UTC
  • mto: This revision was merged to the branch mainline in revision 77.
  • Revision ID: monty@inaugust.com-20080705220852-cqd9t6tfkhvlcf73
Removed HAVE_LONG_LONG, as this is now assumed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
/*
17
17
  This files defines some MySQL C API functions that are server specific
18
18
*/
19
 
#include <drizzled/server_includes.h>
 
19
 
 
20
#include "mysql_priv.h"
20
21
 
21
22
/*
22
23
  Function called by my_net_init() to set some check variables
32
33
                           (uint)global_system_variables.net_write_timeout);
33
34
 
34
35
  net->retry_count=  (uint) global_system_variables.net_retry_count;
35
 
  net->max_packet_size= cmax(global_system_variables.net_buffer_length,
 
36
  net->max_packet_size= max(global_system_variables.net_buffer_length,
36
37
                            global_system_variables.max_allowed_packet);
37
38
}
38
39
}