~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

  • Committer: Brian Aker
  • Date: 2009-07-28 00:23:04 UTC
  • mfrom: (1093.1.27 captain)
  • Revision ID: brian@gaz-20090728002304-5ofdagl78lxvnocv
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
#include <iostream>
48
48
#include <vector>
49
49
#include <algorithm>
 
50
#ifdef HAVE_SYS_WAIT_H
 
51
#include <sys/wait.h>
 
52
#endif
50
53
 
51
54
#include PCRE_HEADER
52
55
 
4485
4488
  }
4486
4489
  if (!(*command_ptr= command=
4487
4490
        (struct st_command*) malloc(sizeof(*command))))
4488
 
    die(NULL);
 
4491
    die("command malloc failed");
4489
4492
  memset(command, 0, sizeof(*command));
4490
4493
  q_lines.push_back(command);
4491
4494
  command->type= Q_UNKNOWN;