~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

  • Committer: Brian Aker
  • Date: 2008-07-20 05:35:53 UTC
  • Revision ID: brian@tangent.org-20080720053553-gaooq10m1ujw4mo2
Cleanup on "VERSION" issues. Table FRM exists and prevents modifying back
the version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3337
3337
}
3338
3338
 
3339
3339
 
3340
 
#if MYSQL_VERSION_ID >= 50000
3341
3340
/* List of error names to error codes, available from 5.0 */
3342
3341
typedef struct
3343
3342
{
3374
3373
    die("Unknown SQL error name '%s'", error_name);
3375
3374
  return(0);
3376
3375
}
3377
 
#else
3378
 
uint get_errcode_from_name(char *error_name __attribute__((unused)),
3379
 
                           char *error_end __attribute__((unused)))
3380
 
{
3381
 
  abort_not_in_this_version();
3382
 
  return 0; /* Never reached */
3383
 
}
3384
 
#endif
3385
 
 
3386
 
 
3387
3376
 
3388
3377
static void do_get_errcodes(struct st_command *command)
3389
3378
{