~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.cc

  • Committer: Lee Bieber
  • Date: 2010-09-08 22:31:17 UTC
  • mto: (1752.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1753.
  • Revision ID: lbieber@kalebral-2.local-20100908223117-as9zp12pds7uyzjf
remove unused error messages - 2nd pass

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
  add(ER_CANNOT_ADD_FOREIGN, N_("Cannot add foreign key constraint"));
366
366
  add(ER_NO_REFERENCED_ROW, N_("Cannot add or update a child row: a foreign key constraint fails"));
367
367
  add(ER_ROW_IS_REFERENCED, N_("Cannot delete or update a parent row: a foreign key constraint fails"));
368
 
  add(ER_CONNECT_TO_MASTER, N_("Error connecting to master: %-.128s"));
369
368
  add(ER_WRONG_USAGE, N_("Incorrect usage of %s and %s"));
370
369
  add(ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT, N_("The used SELECT statements have a different number of columns"));
371
370
  add(ER_CANT_UPDATE_WITH_READLOCK, N_("Can't execute the query because you have a conflicting read lock"));
372
 
  add(ER_USER_LIMIT_REACHED, N_("User '%-.64s' has exceeded the '%s' resource (current value: %ld)"));
373
371
  add(ER_LOCAL_VARIABLE, N_("Variable '%-.64s' is a SESSION variable and can't be used with SET GLOBAL"));
374
372
  add(ER_GLOBAL_VARIABLE, N_("Variable '%-.64s' is a GLOBAL variable and should be set with SET GLOBAL"));
375
373
  add(ER_NO_DEFAULT, N_("Variable '%-.64s' doesn't have a default value"));
423
421
  add(ER_INVALID_CHARACTER_STRING, N_("Invalid %s character string: '%.64s'"));
424
422
  add(ER_WARN_ALLOWED_PACKET_OVERFLOWED, N_("Result of %s() was larger than max_allowed_packet (%ld) - truncated"));
425
423
  add(ER_SP_DOES_NOT_EXIST, N_("%s %s does not exist"));
426
 
  add(ER_SP_LILABEL_MISMATCH, N_("%s with no matching label: %s"));
427
 
  add(ER_SP_LABEL_REDEFINE, N_("Redefining label %s"));
428
 
  add(ER_SP_LABEL_MISMATCH, N_("End-label %s without match"));
429
 
  add(ER_UPDATE_LOG_DEPRECATED_IGNORED, N_("The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been ignored"));
430
 
  add(ER_UPDATE_LOG_DEPRECATED_TRANSLATED, N_("The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been translated to SET SQL_LOG_BIN"));
431
424
  add(ER_QUERY_INTERRUPTED, N_("Query execution was interrupted"));
432
 
  add(ER_SP_DUP_PARAM, N_("Duplicate parameter: %s"));
433
 
  add(ER_SP_DUP_VAR, N_("Duplicate variable: %s"));
434
 
  add(ER_SP_DUP_COND, N_("Duplicate condition: %s"));
435
 
  add(ER_SP_DUP_CURS, N_("Duplicate cursor: %s"));
436
 
  add(ER_SP_SUBSELECT_NYI, N_("Subquery value not supported"));
437
 
  add(ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG, N_("%s is not allowed in stored function or trigger"));
438
 
  add(ER_SP_VARCOND_AFTER_CURSHNDLR, N_("Variable or condition declaration after cursor or handler declaration"));
439
 
  add(ER_SP_CURSOR_AFTER_HANDLER, N_("Cursor declaration after handler declaration"));
440
425
  add(ER_VIEW_INVALID, N_("View '%-.192s.%-.192s' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them"));
441
426
  add(ER_NO_DEFAULT_FOR_FIELD, N_("Field '%-.192s' doesn't have a default value"));
442
427
  add(ER_DIVISION_BY_ZERO, N_("Division by 0"));
443
428
  add(ER_TRUNCATED_WRONG_VALUE_FOR_FIELD, N_("Incorrect %-.32s value: '%-.128s' for column '%.192s' at row %u"));
444
429
  add(ER_ILLEGAL_VALUE_FOR_TYPE, N_("Illegal %s '%-.192s' value found during parsing"));
445
 
  add(ER_PROCACCESS_DENIED_ERROR, N_("%-.16s command denied to user '%-.48s'@'%-.64s' for routine '%-.192s'"));
446
430
  add(ER_KEY_PART_0, N_("Key part '%-.192s' length cannot be 0"));
447
 
  add(ER_XAER_NOTA, N_("XAER_NOTA: Unknown XID"));
448
 
  add(ER_XAER_INVAL, N_("XAER_INVAL: Invalid arguments (or unsupported command)"));
449
431
  add(ER_XAER_RMFAIL, N_("XAER_RMFAIL: The command cannot be executed when global transaction is in the  %.64s state"));
450
 
  add(ER_XAER_OUTSIDE, N_("XAER_OUTSIDE: Some work is done outside global transaction"));
451
 
  add(ER_XAER_RMERR, N_("XAER_RMERR: Fatal error occurred in the transaction branch - check your data for consistency"));
452
 
  add(ER_XA_RBROLLBACK, N_("XA_RBROLLBACK: Transaction branch was rolled back"));
453
 
  add(ER_NONEXISTING_PROC_GRANT, N_("There is no such grant defined for user '%-.48s' on host '%-.64s' on routine '%-.192s'"));
454
432
  add(ER_DATA_TOO_LONG, N_("Data too long for column '%s' at row %ld"));
455
 
  add(ER_SP_BAD_SQLSTATE, N_("Bad SQLSTATE: '%s'"));
456
433
  add(ER_STARTUP, N_("%s: ready for connections.\nVersion: '%s' %s\n"));
457
434
  add(ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR, N_("Can't load value from file with fixed size rows to variable"));
458
 
  add(ER_CANT_CREATE_USER_WITH_GRANT, N_("You are not allowed to create a user with GRANT"));
459
435
  add(ER_WRONG_VALUE_FOR_TYPE, N_("Incorrect %-.32s value: '%-.128s' for function %-.32s"));
460
436
  add(ER_TABLE_DEF_CHANGED, N_("Table definition has changed, please retry transaction"));
461
 
  add(ER_SP_DUP_HANDLER, N_("Duplicate handler declared in the same block"));
462
 
  add(ER_SP_NOT_VAR_ARG, N_("OUT or INOUT argument %d for routine %s is not a variable or NEW pseudo-variable in BEFORE trigger"));
463
437
  add(ER_SP_NO_RETSET, N_("Not allowed to return a result set from a %s"));
464
438
  add(ER_CANT_CREATE_GEOMETRY_OBJECT, N_("Cannot get geometry object from data you send to the GEOMETRY field"));
465
439
  add(ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG, N_("Explicit or implicit commit is not allowed in stored function or trigger."));
468
442
  add(ER_M_BIGGER_THAN_D, N_("For float(M,D), double(M,D) or decimal(M,D), M must be >= D (column '%-.192s')."));
469
443
  add(ER_TRG_IN_WRONG_SCHEMA, N_("Trigger in wrong schema"));
470
444
  add(ER_STACK_OVERRUN_NEED_MORE, N_("Thread stack overrun:  %ld bytes used of a %ld byte stack, and %ld bytes needed.  Use 'drizzled -O thread_stack=#' to specify a bigger stack."));
471
 
  add(ER_TOO_LONG_BODY, N_("Routine body for '%-.100s' is too long"));
472
445
  add(ER_TOO_BIG_DISPLAYWIDTH, N_("Display width out of range for column '%-.192s' (max = %d)"));
473
 
  add(ER_XAER_DUPID, N_("XAER_DUPID: The XID already exists"));
474
446
  add(ER_DATETIME_FUNCTION_OVERFLOW, N_("Datetime function: %-.32s field overflow"));
475
447
  add(ER_ROW_IS_REFERENCED_2, N_("Cannot delete or update a parent row: a foreign key constraint fails (%.192s)"));
476
448
  add(ER_NO_REFERENCED_ROW_2, N_("Cannot add or update a child row: a foreign key constraint fails (%.192s)"));
477
449
  add(ER_SP_FETCH_NO_DATA, N_("No data - zero rows fetched, selected, or processed"));
478
 
  add(ER_SP_BAD_VAR_SHADOW, N_("Variable '%-.64s' must be quoted with `...`, or renamed"));
479
 
  add(ER_TRG_NO_DEFINER, N_("No definer attribute for trigger '%-.192s'.'%-.192s'. The trigger will be activated under the authorization of the invoker, which may have insufficient privileges. Please recreate the trigger."));
480
 
  add(ER_SP_WRONG_NAME, N_("Incorrect routine name '%-.192s'"));
481
450
  add(ER_TABLE_NEEDS_UPGRADE, N_("Table upgrade required. Please do \"REPAIR TABLE `%-.32s`\" to fix it!"));
482
 
  add(ER_SP_NO_AGGREGATE, N_("AGGREGATE is not supported for stored functions"));
483
 
  add(ER_MAX_PREPARED_STMT_COUNT_REACHED, N_("Can't create more than max_prepared_stmt_count statements (current value: %lu)"));
484
451
  add(ER_NON_GROUPING_FIELD_USED, N_("non-grouping field '%-.192s' is used in %-.64s clause"));
485
452
  add(ER_TABLE_CANT_HANDLE_SPKEYS, N_("The used table type doesn't support SPATIAL indexes"));
486
453
  add(ER_REMOVED_SPACES, N_("Leading spaces are removed from name '%s'"));