~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

  • Committer: Djellel E. Difallah
  • Date: 2010-03-30 09:29:02 UTC
  • mfrom: (1410.4.2 ded-my-tree)
  • mto: This revision was merged to the branch mainline in revision 1440.
  • Revision ID: ded@ubuntu-20100330092902-hayr13f78x5mvl3y
update references to old my_'s

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
/* Added this for string translation. */
65
65
#include "drizzled/gettext.h"
66
66
#include "drizzled/hash.h"
67
 
#include "drizzled/my_time.h"
 
67
#include "drizzled/drizzle_time.h"
68
68
#include "drizzled/charset.h"
69
69
 
70
70
#ifndef DRIZZLE_RETURN_SERVER_GONE
77
77
extern "C"
78
78
unsigned char *get_var_key(const unsigned char* var, size_t *len, bool);
79
79
 
80
 
int get_one_option(int optid, const struct my_option *, char *argument);
 
80
int get_one_option(int optid, const struct option *, char *argument);
81
81
 
82
82
#define MAX_VAR_NAME_LENGTH    256
83
83
#define MAX_COLUMNS            256
4578
4578
}
4579
4579
 
4580
4580
 
4581
 
static struct my_option my_long_options[] =
 
4581
static struct option my_long_options[] =
4582
4582
{
4583
4583
  {"help", '?', "Display this help and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG,
4584
4584
   0, 0, 0, 0, 0, 0},
4666
4666
  my_print_variables(my_long_options);
4667
4667
}
4668
4668
 
4669
 
int get_one_option(int optid, const struct my_option *, char *argument)
 
4669
int get_one_option(int optid, const struct option *, char *argument)
4670
4670
{
4671
4671
  char *endchar= NULL;
4672
4672
  uint64_t temp_drizzle_port= 0;