~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Monty Taylor
  • Date: 2008-08-09 21:41:16 UTC
  • mto: (287.3.7 codestyle)
  • mto: This revision was merged to the branch mainline in revision 295.
  • Revision ID: monty@inaugust.com-20080809214116-w8i63dgiuml7ijoc
Moved import, check and dump to C++... fixed errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#define IMPORT_VERSION "3.7"
28
28
 
29
29
#include "client_priv.h"
30
 
#include <mysys/my_pthread.h>
 
30
#include <pthread.h>
31
31
 
32
32
 
33
33
/* Global Thread counter */
473
473
 
474
474
int exitcode= 0;
475
475
 
476
 
static pthread_handler_t worker_thread(void *arg)
 
476
static void * worker_thread(void *arg)
477
477
{
478
478
  int error;
479
479
  char *raw_table_name= (char *)arg;