~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysql.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 22:45:08 UTC
  • Revision ID: brian@tangent.org-20080713224508-hb20z4okblotb39a
longlong replacement

Show diffs side-by-side

added added

removed removed

Lines of Context:
1455
1455
   "Max packet length to send to, or receive from server",
1456
1456
   (char**) &opt_max_allowed_packet, (char**) &opt_max_allowed_packet, 0,
1457
1457
   GET_ULONG, REQUIRED_ARG, 16 *1024L*1024L, 4096,
1458
 
   (longlong) 2*1024L*1024L*1024L, MALLOC_OVERHEAD, 1024, 0},
 
1458
   (int64_t) 2*1024L*1024L*1024L, MALLOC_OVERHEAD, 1024, 0},
1459
1459
  {"net_buffer_length", OPT_NET_BUFFER_LENGTH,
1460
1460
   "Buffer for TCP/IP and socket communication",
1461
1461
   (char**) &opt_net_buffer_length, (char**) &opt_net_buffer_length, 0, GET_ULONG,