~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

MergedĀ inĀ remove-include-dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include <pcrecpp.h>
36
36
 
37
37
#include "client_priv.h"
38
 
#include <drizzled_error.h>
39
38
#include <mysys/hash.h>
40
39
#include <stdarg.h>
41
40
#include <vio/violite.h>
42
41
 
 
42
#include "errname.h"
43
43
 
44
44
#define MAX_VAR_NAME_LENGTH    256
45
45
#define MAX_COLUMNS            256
3325
3325
    abort_not_supported_test("Test requires charset '%s'", charset_name);
3326
3326
}
3327
3327
 
3328
 
 
3329
 
/* List of error names to error codes, available from 5.0 */
3330
 
typedef struct
3331
 
{
3332
 
  const char *name;
3333
 
  uint        code;
3334
 
} st_error;
3335
 
 
3336
 
static st_error global_error_names[] =
3337
 
{
3338
 
#include <drizzled_ername.h>
3339
 
  { 0, 0 }
3340
 
};
3341
 
 
3342
3328
static uint get_errcode_from_name(char *error_name, char *error_end)
3343
3329
{
3344
3330
  /* SQL error as string */