~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.cc

  • Committer: Monty Taylor
  • Date: 2009-01-28 17:56:32 UTC
  • mfrom: (815 testable)
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 816.
  • Revision ID: mordred@inaugust.com-20090128175632-to03t4eavmu1mkva
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1393
1393
/* ER_UNSUPPORTED_ACTION_ON_VIRTUAL_COLUMN */
1394
1394
N_("'%s' is not yet supported for virtual columns."),
1395
1395
/* ER_CONST_EXPR_IN_VCOL */
1396
 
N_("Constant expression in virtual column function is not allowed.")
 
1396
N_("Constant expression in virtual column function is not allowed."),
 
1397
/* ER_UNKNOWN_TEMPORAL_TYPE */
 
1398
N_("Encountered an unknown temporal type."),
 
1399
/* ER_INVALID_STRING_FORMAT_FOR_DATE */
 
1400
N_("Received an invalid string format '%s' for a date value."),
 
1401
/* ER_INVALID_STRING_FORMAT_FOR_TIME */
 
1402
N_("Received an invalid string format '%s' for a time value."),
 
1403
/* ER_INVALID_UNIX_TIMESTAMP_VALUE */
 
1404
N_("Received an invalid value '%s' for a UNIX timestamp."),
 
1405
/* ER_INVALID_DATETIME_VALUE */
 
1406
N_("Received an invalid datetime value '%s'."),
 
1407
/* ER_INVALID_NULL_ARGUMENT */
 
1408
N_("Received a NULL argument for function '%s'."),
 
1409
/* ER_INVALID_NEGATIVE_ARGUMENT */
 
1410
N_("Received an invalid negative argument '%s' for function '%s'."),
 
1411
/* ER_ARGUMENT_OUT_OF_RANGE */
 
1412
N_("Received an out-of-range argument '%s' for function '%s'."),
 
1413
/* ER_INVALID_TIME_VALUE */
 
1414
N_("Received an invalid time value '%s'."),
1397
1415
};
1398
1416
 
1399
1417
const char * error_message(unsigned int code)