~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlslap.c

  • Committer: Brian Aker
  • Date: 2008-08-07 16:29:49 UTC
  • mfrom: (264.1.20 codestyle)
  • Revision ID: brian@tangent.org-20080807162949-7o8eyjgdn8ms3n1a
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
642
642
    "Password to use when connecting to server. If password is not given it's "
643
643
      "asked from the tty.", 0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
644
644
  {"port", 'P', "Port number to use for connection.", (char**) &opt_drizzle_port,
645
 
    (char**) &opt_drizzle_port, 0, GET_UINT, REQUIRED_ARG, MYSQL_PORT, 0, 0, 0, 0,
 
645
    (char**) &opt_drizzle_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
646
646
    0},
647
647
  {"post-query", OPT_SLAP_POST_QUERY,
648
648
    "Query to run or file containing query to execute after tests have completed.",
702
702
static void print_version(void)
703
703
{
704
704
  printf("%s  Ver %s Distrib %s, for %s (%s)\n",my_progname, SLAP_VERSION,
705
 
         MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
 
705
         drizzle_get_client_info(),SYSTEM_TYPE,MACHINE_TYPE);
706
706
}
707
707
 
708
708