~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqltest.c

  • Committer: brian
  • Date: 2008-07-03 12:39:14 UTC
  • Revision ID: brian@localhost.localdomain-20080703123914-lry82qf74f6cbyzs
Disabling myisam tools until incomming link patch from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
static my_bool debug_info_flag= 0, debug_check_flag= 0;
75
75
static my_bool tty_password= 0;
76
76
static my_bool opt_mark_progress= 0;
77
 
static my_bool cursor_protocol= 0, cursor_protocol_enabled= 0;
78
77
static my_bool parsing_disabled= 0;
79
78
static my_bool display_result_vertically= FALSE,
80
79
  display_metadata= FALSE, display_result_sorted= FALSE;
5749
5748
 
5750
5749
void run_query(struct st_connection *cn, struct st_command *command, int flags)
5751
5750
{
5752
 
  MYSQL *mysql= &cn->mysql;
5753
5751
  DYNAMIC_STRING *ds;
5754
5752
  DYNAMIC_STRING *save_ds= NULL;
5755
5753
  DYNAMIC_STRING ds_result;
5758
5756
  DYNAMIC_STRING eval_query;
5759
5757
  char *query;
5760
5758
  int query_len;
5761
 
  my_bool complete_query= ((flags & QUERY_SEND_FLAG) &&
5762
 
                           (flags & QUERY_REAP_FLAG));
5763
5759
  DBUG_ENTER("run_query");
5764
5760
 
5765
5761
  init_dynamic_string(&ds_warnings, NULL, 0, 256);