~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

  • Committer: Eric Day
  • Date: 2010-01-12 01:23:34 UTC
  • mto: This revision was merged to the branch mainline in revision 1271.
  • Revision ID: eday@oddments.org-20100112012334-scttj6flyt7h56lq
Added --mysql option flags to client utilities. Also removed the socket option since that is no used anymoe (requested from mailing list).

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
static bool abort_on_error= true;
116
116
static bool server_initialized= false;
117
117
static bool is_windows= false;
 
118
static bool opt_mysql= false;
118
119
static char **default_argv;
119
120
static const char *load_default_groups[]= { "drizzletest", "client", 0 };
120
121
static char line_buffer[MAX_DELIMITER_LENGTH], *line_buffer_pos= line_buffer;
3930
3931
    die("Failed on drizzle_create()");
3931
3932
  if (!drizzle_con_create(con_slot->drizzle, &con_slot->con))
3932
3933
    die("Failed on drizzle_con_create()");
 
3934
  if (opt_mysql)
 
3935
    drizzle_con_add_options(&con_slot->con, DRIZZLE_CON_MYSQL);
3933
3936
 
3934
3937
  /* Use default db name */
3935
3938
  if (ds_database.length() == 0)
4603
4606
   "Max number of connection attempts when connecting to server",
4604
4607
   (char**) &opt_max_connect_retries, (char**) &opt_max_connect_retries, 0,
4605
4608
   GET_INT, REQUIRED_ARG, 500, 1, 10000, 0, 0, 0},
 
4609
  {"mysql", 'm', N_("Use MySQL Protocol."),
 
4610
   (char**) &opt_mysql, (char**) &opt_mysql, 0, GET_BOOL, NO_ARG, 0, 0, 0,
 
4611
   0, 0, 0},
4606
4612
  {"password", 'P', "Password to use when connecting to server.",
4607
4613
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
4608
4614
  {"port", 'p', "Port number to use for connection or 0 for default to, in "
5612
5618
    die("Failed in drizzle_create()");
5613
5619
  if (!( drizzle_con_create(cur_con->drizzle, &cur_con->con)))
5614
5620
    die("Failed in drizzle_con_create()");
 
5621
  if (opt_mysql)
 
5622
    drizzle_con_add_options(&cur_con->con, DRIZZLE_CON_MYSQL);
5615
5623
 
5616
5624
  if (!(cur_con->name = strdup("default")))
5617
5625
    die("Out of memory");