~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_client.cc

  • Committer: Brian Aker
  • Date: 2008-07-07 16:07:49 UTC
  • mfrom: (80.1.1 food)
  • Revision ID: brian@tangent.org-20080707160749-qj89fnnwufz4xgop
Clean up install, we no longer have system tables.

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
}