MySQL errors carry a number, a symbol and a SQLSTATE, as in ERROR 1054 (42S22). Server errors come from mysqld; client errors, numbered from 2000, come from the client library when it can’t reach or talk to the server. MariaDB shares the older numbers, up to about 1900, and diverges after that.
1,855 codes from the MySQL 8.4 Error Reference
ER_NO NOER_YES YESER_CANT_CREATE_FILE Can't create file '%s' (errno: %d - %s)ER_CANT_CREATE_TABLE Can't create table '%s' (errno: %d - %s)ER_CANT_CREATE_DB Can't create database '%s' (errno: %d - %s)ER_DB_CREATE_EXISTS Can't create database '%s'; database existsER_DB_DROP_EXISTS Can't drop database '%s'; database doesn't existER_DB_DROP_RMDIR Error dropping database (can't rmdir '%s', errno: %d - %s)ER_CANT_FIND_SYSTEM_REC Can't read record in system tableER_CANT_GET_STAT Can't get status of '%s' (errno: %d - %s)ER_CANT_LOCK Can't lock file (errno: %d - %s)ER_CANT_OPEN_FILE Can't open file: '%s' (errno: %d - %s)ER_FILE_NOT_FOUND Can't find file: '%s' (errno: %d - %s)ER_CANT_READ_DIR Can't read dir of '%s' (errno: %d - %s)ER_CHECKREAD Record has changed since last read in table '%s'ER_DUP_KEY Can't write; duplicate key in table '%s'ER_ERROR_ON_READ Error reading file '%s' (errno: %d - %s)ER_ERROR_ON_RENAME Error on rename of '%s' to '%s' (errno: %d - %s)ER_ERROR_ON_WRITE Error writing file '%s' (errno: %d - %s)ER_FILE_USED '%s' is locked against changeER_GET_ERRNO Got error %d - '%s' from storage engineER_ILLEGAL_HA Table storage engine for '%s' doesn't have this optionER_KEY_NOT_FOUND Can't find record in '%s'ER_NOT_FORM_FILE Incorrect information in file: '%s'ER_NOT_KEYFILE Incorrect key file for table '%s'; try to repair itER_OLD_KEYFILE Old key file for table '%s'; repair it!ER_OPEN_AS_READONLY Table '%s' is read onlyER_OUTOFMEMORY Out of memory; restart server and try again (needed %d bytes)ER_OUT_OF_SORTMEMORY Out of sort memory, consider increasing server sort buffer sizeER_CON_COUNT_ERROR Too many connectionsER_OUT_OF_RESOURCES Out of memory; check if mysqld or some other process uses all available memory; if not, you may have to use 'ulimit' to allow mysqld to use more memory or yo…ER_BAD_HOST_ERROR Can't get hostname for your addressER_HANDSHAKE_ERROR Bad handshakeER_DBACCESS_DENIED_ERROR Access denied for user '%s'@'%s' to database '%s'ER_ACCESS_DENIED_ERROR Access denied for user '%s'@'%s' (using password: %s)ER_NO_DB_ERROR No database selectedER_UNKNOWN_COM_ERROR Unknown commandER_BAD_NULL_ERROR Column '%s' cannot be nullER_BAD_DB_ERROR Unknown database '%s'ER_TABLE_EXISTS_ERROR Table '%s' already existsER_BAD_TABLE_ERROR Unknown table '%s'ER_NON_UNIQ_ERROR Column '%s' in %s is ambiguousER_SERVER_SHUTDOWN Server shutdown in progressER_BAD_FIELD_ERROR Unknown column '%s' in '%s'ER_WRONG_FIELD_WITH_GROUP '%s' isn't in GROUP BYER_WRONG_GROUP_FIELD Can't group on '%s'ER_WRONG_SUM_SELECT Statement has sum functions and columns in same statementER_WRONG_VALUE_COUNT Column count doesn't match value countER_TOO_LONG_IDENT Identifier name '%s' is too longER_DUP_FIELDNAME Duplicate column name '%s'ER_DUP_KEYNAME Duplicate key name '%s'ER_DUP_ENTRY Duplicate entry '%s' for key %dER_WRONG_FIELD_SPEC Incorrect column specifier for column '%s'ER_PARSE_ERROR %s near '%s' at line %dER_EMPTY_QUERY Query was emptyER_NONUNIQ_TABLE Not unique table/alias: '%s'ER_INVALID_DEFAULT Invalid default value for '%s'ER_MULTIPLE_PRI_KEY Multiple primary key definedER_TOO_MANY_KEYS Too many keys specified; max %d keys allowedER_TOO_MANY_KEY_PARTS Too many key parts specified; max %d parts allowedER_TOO_LONG_KEY Specified key was too long; max key length is %d bytesER_KEY_COLUMN_DOES_NOT_EXITS Key column '%s' doesn't exist in tableER_BLOB_USED_AS_KEY BLOB column '%s' can't be used in key specification with the used table typeER_TOO_BIG_FIELDLENGTH Column length too big for column '%s' (max = %lu); use BLOB or TEXT insteadER_WRONG_AUTO_KEY Incorrect table definition; there can be only one auto column and it must be defined as a keyER_READY %s: ready for connections. Version: '%s' socket: '%s' port: %dER_SHUTDOWN_COMPLETE %s: Shutdown completeER_FORCING_CLOSE %s: Forcing close of thread %ld user: '%s'ER_IPSOCK_ERROR Can't create IP socketER_NO_SUCH_INDEX Table '%s' has no index like the one used in CREATE INDEX; recreate the tableER_WRONG_FIELD_TERMINATORS Field separator argument is not what is expected; check the manualER_BLOBS_AND_NO_TERMINATED You can't use fixed rowlength with BLOBs; please use 'fields terminated by'ER_TEXTFILE_NOT_READABLE The file '%s' must be in the database directory or be readable by allER_FILE_EXISTS_ERROR File '%s' already existsER_LOAD_INFO Records: %ld Deleted: %ld Skipped: %ld Warnings: %ldER_ALTER_INFO Records: %ld Duplicates: %ldER_WRONG_SUB_KEY Incorrect prefix key; the used key part isn't a string, the used length is longer than the key part, or the storage engine doesn't support unique prefix keysER_CANT_REMOVE_ALL_FIELDS You can't delete all columns with ALTER TABLE; use DROP TABLE insteadER_CANT_DROP_FIELD_OR_KEY Can't DROP '%s'; check that column/key existsER_INSERT_INFO Records: %ld Duplicates: %ld Warnings: %ldER_UPDATE_TABLE_USED You can't specify target table '%s' for update in FROM clauseER_NO_SUCH_THREAD Unknown thread id: %luER_KILL_DENIED_ERROR You are not owner of thread %luER_NO_TABLES_USED No tables usedER_TOO_BIG_SET Too many strings for column %s and SETER_NO_UNIQUE_LOGFILE Can't generate a unique log-filename %s.(1-999)ER_TABLE_NOT_LOCKED_FOR_WRITE Table '%s' was locked with a READ lock and can't be updatedER_TABLE_NOT_LOCKED Table '%s' was not locked with LOCK TABLESER_BLOB_CANT_HAVE_DEFAULT BLOB, TEXT, GEOMETRY or JSON column '%s' can't have a default valueER_WRONG_DB_NAME Incorrect database name '%s'ER_WRONG_TABLE_NAME Incorrect table name '%s'ER_TOO_BIG_SELECT The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=# if the SELECT is okayER_UNKNOWN_ERROR Unknown errorER_UNKNOWN_PROCEDURE Unknown procedure '%s'ER_WRONG_PARAMCOUNT_TO_PROCEDURE Incorrect parameter count to procedure '%s'ER_WRONG_PARAMETERS_TO_PROCEDURE Incorrect parameters to procedure '%s'ER_UNKNOWN_TABLE Unknown table '%s' in %sER_FIELD_SPECIFIED_TWICE Column '%s' specified twiceER_INVALID_GROUP_FUNC_USE Invalid use of group functionER_UNSUPPORTED_EXTENSION Table '%s' uses an extension that doesn't exist in this MySQL versionER_TABLE_MUST_HAVE_COLUMNS A table must have at least 1 columnER_RECORD_FILE_FULL The table '%s' is fullER_UNKNOWN_CHARACTER_SET Unknown character set: '%s'ER_TOO_MANY_TABLES Too many tables; MySQL can only use %d tables in a joinER_TOO_MANY_FIELDS Too many columnsER_TOO_BIG_ROWSIZE Row size too large. The maximum row size for the used table type, not counting BLOBs, is %ld. This includes storage overhead, check the manual. You have to c…ER_STACK_OVERRUN Thread stack overrun: Used: %ld of a %ld stack. Use 'mysqld --thread_stack=#' to specify a bigger stack if neededER_WRONG_OUTER_JOIN_UNUSED Cross dependency found in OUTER JOIN; examine your ON conditionsER_NULL_COLUMN_IN_INDEX Table handler doesn't support NULL in given index. Please change column '%s' to be NOT NULL or use another handlerER_CANT_FIND_UDF Can't load function '%s'ER_CANT_INITIALIZE_UDF Can't initialize function '%s'; %sER_UDF_NO_PATHS No paths allowed for shared libraryER_UDF_EXISTS Function '%s' already existsER_CANT_OPEN_LIBRARY Can't open shared library '%s' (errno: %d %s)ER_CANT_FIND_DL_ENTRY Can't find symbol '%s' in libraryER_FUNCTION_NOT_DEFINED Function '%s' is not definedER_HOST_IS_BLOCKED Host '%s' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'ER_HOST_NOT_PRIVILEGED Host '%s' is not allowed to connect to this MySQL serverER_PASSWORD_ANONYMOUS_USER You are using MySQL as an anonymous user and anonymous users are not allowed to change passwordsER_PASSWORD_NOT_ALLOWED You must have privileges to update tables in the mysql database to be able to change passwords for othersER_PASSWORD_NO_MATCH Can't find any matching row in the user tableER_UPDATE_INFO Rows matched: %ld Changed: %ld Warnings: %ldER_CANT_CREATE_THREAD Can't create a new thread (errno %d); if you are not out of available memory, you can consult the manual for a possible OS-dependent bugER_WRONG_VALUE_COUNT_ON_ROW Column count doesn't match value count at row %ldER_CANT_REOPEN_TABLE Can't reopen table: '%s'ER_INVALID_USE_OF_NULL Invalid use of NULL valueER_REGEXP_ERROR Got error '%s' from regexpER_MIX_OF_GROUP_FUNC_AND_FIELDS Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clauseER_NONEXISTING_GRANT There is no such grant defined for user '%s' on host '%s'ER_TABLEACCESS_DENIED_ERROR %s command denied to user '%s'@'%s' for table '%s'ER_COLUMNACCESS_DENIED_ERROR %s command denied to user '%s'@'%s' for column '%s' in table '%s'ER_ILLEGAL_GRANT_FOR_TABLE Illegal GRANT/REVOKE command; please consult the manual to see which privileges can be usedER_GRANT_WRONG_HOST_OR_USER The host or user argument to GRANT is too longER_NO_SUCH_TABLE Table '%s.%s' doesn't existER_NONEXISTING_TABLE_GRANT There is no such grant defined for user '%s' on host '%s' on table '%s'ER_NOT_ALLOWED_COMMAND The used command is not allowed with this MySQL versionER_SYNTAX_ERROR You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to useER_ABORTING_CONNECTION Aborted connection %ld to db: '%s' user: '%s' (%s)ER_NET_PACKET_TOO_LARGE Got a packet bigger than 'max_allowed_packet' bytesER_NET_READ_ERROR_FROM_PIPE Got a read error from the connection pipeER_NET_FCNTL_ERROR Got an error from fcntl()ER_NET_PACKETS_OUT_OF_ORDER Got packets out of orderER_NET_UNCOMPRESS_ERROR Couldn't uncompress communication packetER_NET_READ_ERROR Got an error reading communication packetsER_NET_READ_INTERRUPTED Got timeout reading communication packetsER_NET_ERROR_ON_WRITE Got an error writing communication packetsER_NET_WRITE_INTERRUPTED Got timeout writing communication packetsER_TOO_LONG_STRING Result string is longer than 'max_allowed_packet' bytesER_TABLE_CANT_HANDLE_BLOB The used table type doesn't support BLOB/TEXT columnsER_TABLE_CANT_HANDLE_AUTO_INCREMENT The used table type doesn't support AUTO_INCREMENT columnsER_WRONG_COLUMN_NAME Incorrect column name '%s'ER_WRONG_KEY_COLUMN The used storage engine can't index column '%s'ER_WRONG_MRG_TABLE Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't existER_DUP_UNIQUE Can't write, because of unique constraint, to table '%s'ER_BLOB_KEY_WITHOUT_LENGTH BLOB/TEXT column '%s' used in key specification without a key lengthER_PRIMARY_CANT_HAVE_NULL All parts of a PRIMARY KEY must be NOT NULL; if you need NULL in a key, use UNIQUE insteadER_TOO_MANY_ROWS Result consisted of more than one rowER_REQUIRES_PRIMARY_KEY This table type requires a primary keyER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. %sER_KEY_DOES_NOT_EXITS Key '%s' doesn't exist in table '%s'ER_CHECK_NO_SUCH_TABLE Can't open tableER_CHECK_NOT_IMPLEMENTED The storage engine for the table doesn't support %sER_CANT_DO_THIS_DURING_AN_TRANSACTION You are not allowed to execute this command in a transactionER_ERROR_DURING_COMMIT Got error %d - '%s' during COMMITER_ERROR_DURING_ROLLBACK Got error %d - '%s' during ROLLBACKER_ERROR_DURING_FLUSH_LOGS Got error %d during FLUSH_LOGSER_NEW_ABORTING_CONNECTION Aborted connection %u to db: '%s' user: '%s' host: '%s' (%s)ER_SOURCE Error from source: '%s'ER_SOURCE_NET_READ Net error reading from sourceER_SOURCE_NET_WRITE Net error writing to sourceER_FT_MATCHING_KEY_NOT_FOUND Can't find FULLTEXT index matching the column listER_LOCK_OR_ACTIVE_TRANSACTION Can't execute the given command because you have active locked tables or an active transactionER_UNKNOWN_SYSTEM_VARIABLE Unknown system variable '%s'ER_CRASHED_ON_USAGE Table '%s' is marked as crashed and should be repairedER_CRASHED_ON_REPAIR Table '%s' is marked as crashed and last (automatic?) repair failedER_WARNING_NOT_COMPLETE_ROLLBACK Some non-transactional changed tables couldn't be rolled backER_TRANS_CACHE_FULL Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage; increase this mysqld variable and try againER_REPLICA_NOT_RUNNING This operation requires a running replica; configure replica and do START REPLICAER_BAD_REPLICA The server is not configured as replica; fix in config file or with CHANGE REPLICATION SOURCE TOER_CONNECTION_METADATA Could not initialize connection metadata structure; more error messages can be found in the MySQL error logER_REPLICA_THREAD Could not create replica thread; check system resourcesER_TOO_MANY_USER_CONNECTIONS User %s already has more than 'max_user_connections' active connectionsER_SET_CONSTANTS_ONLY You may only use constant expressions with SETER_LOCK_WAIT_TIMEOUT Lock wait timeout exceeded; try restarting transactionER_LOCK_TABLE_FULL The total number of locks exceeds the lock table sizeER_READ_ONLY_TRANSACTION Update locks cannot be acquired during a READ UNCOMMITTED transactionER_WRONG_ARGUMENTS Incorrect arguments to %sER_NO_PERMISSION_TO_CREATE_USER '%s'@'%s' is not allowed to create new usersER_LOCK_DEADLOCK Deadlock found when trying to get lock; try restarting transactionER_TABLE_CANT_HANDLE_FT The used table type doesn't support FULLTEXT indexesER_CANNOT_ADD_FOREIGN Cannot add foreign key constraintER_NO_REFERENCED_ROW Cannot add or update a child row: a foreign key constraint failsER_ROW_IS_REFERENCED Cannot delete or update a parent row: a foreign key constraint failsER_CONNECT_TO_SOURCE Error connecting to source: %sER_ERROR_WHEN_EXECUTING_COMMAND Error when executing command %s: %sER_WRONG_USAGE Incorrect usage of %s and %sER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT The used SELECT statements have a different number of columnsER_CANT_UPDATE_WITH_READLOCK Can't execute the query because you have a conflicting read lockER_MIXING_NOT_ALLOWED Mixing of transactional and non-transactional tables is disabledER_DUP_ARGUMENT Option '%s' used twice in statementER_USER_LIMIT_REACHED User '%s' has exceeded the '%s' resource (current value: %ld)ER_SPECIFIC_ACCESS_DENIED_ERROR Access denied; you need (at least one of) the %s privilege(s) for this operationER_LOCAL_VARIABLE Variable '%s' is a SESSION variable and can't be used with SET GLOBALER_GLOBAL_VARIABLE Variable '%s' is a GLOBAL variable and should be set with SET GLOBALER_NO_DEFAULT Variable '%s' doesn't have a default valueER_WRONG_VALUE_FOR_VAR Variable '%s' can't be set to the value of '%s'ER_WRONG_TYPE_FOR_VAR Incorrect argument type to variable '%s'ER_VAR_CANT_BE_READ Variable '%s' can only be set, not readER_CANT_USE_OPTION_HERE Incorrect usage/placement of '%s'ER_NOT_SUPPORTED_YET This version of MySQL doesn't yet support '%s'ER_SOURCE_FATAL_ERROR_READING_BINLOG Got fatal error %d from source when reading data from binary log: '%s'ER_REPLICA_IGNORED_TABLE Replica SQL thread ignored the query because of replicate-*-table rulesER_INCORRECT_GLOBAL_LOCAL_VAR Variable '%s' is a %s variableER_WRONG_FK_DEF Incorrect foreign key definition for '%s': %sER_KEY_REF_DO_NOT_MATCH_TABLE_REF Key reference and table reference don't matchER_OPERAND_COLUMNS Operand should contain %d column(s)ER_SUBQUERY_NO_1_ROW Subquery returns more than 1 rowER_UNKNOWN_STMT_HANDLER Unknown prepared statement handler (%.*s) given to %sER_CORRUPT_HELP_DB Help database is corrupt or does not existER_AUTO_CONVERT Converting column '%s' from %s to %sER_ILLEGAL_REFERENCE Reference '%s' not supported (%s)ER_DERIVED_MUST_HAVE_ALIAS Every derived table must have its own aliasER_SELECT_REDUCED Select %u was reduced during optimizationER_TABLENAME_NOT_ALLOWED_HERE Table '%s' from one of the SELECTs cannot be used in %sER_NOT_SUPPORTED_AUTH_MODE Client does not support authentication protocol requested by server; consider upgrading MySQL clientER_SPATIAL_CANT_HAVE_NULL All parts of a SPATIAL index must be NOT NULLER_COLLATION_CHARSET_MISMATCH COLLATION '%s' is not valid for CHARACTER SET '%s'ER_TOO_BIG_FOR_UNCOMPRESS Uncompressed data size too large; the maximum size is %d (probably, length of uncompressed data was corrupted)ER_ZLIB_Z_MEM_ERROR ZLIB: Not enough memoryER_ZLIB_Z_BUF_ERROR ZLIB: Not enough room in the output buffer (probably, length of uncompressed data was corrupted)ER_ZLIB_Z_DATA_ERROR ZLIB: Input data corruptedER_CUT_VALUE_GROUP_CONCAT Row %u was cut by GROUP_CONCAT()ER_WARN_TOO_FEW_RECORDS Row %ld doesn't contain data for all columnsER_WARN_TOO_MANY_RECORDS Row %ld was truncated; it contained more data than there were input columnsER_WARN_NULL_TO_NOTNULL Column set to default value; NULL supplied to NOT NULL column '%s' at row %ldER_WARN_DATA_OUT_OF_RANGE Out of range value for column '%s' at row %ldWARN_DATA_TRUNCATED Data truncated for column '%s' at row %ldER_WARN_USING_OTHER_HANDLER Using storage engine %s for table '%s'ER_CANT_AGGREGATE_2COLLATIONS Illegal mix of collations (%s,%s) and (%s,%s) for operation '%s'ER_REVOKE_GRANTS Can't revoke all privileges for one or more of the requested usersER_CANT_AGGREGATE_3COLLATIONS Illegal mix of collations (%s,%s), (%s,%s), (%s,%s) for operation '%s'ER_CANT_AGGREGATE_NCOLLATIONS Illegal mix of collations for operation '%s'ER_VARIABLE_IS_NOT_STRUCT Variable '%s' is not a variable component (can't be used as XXXX.variable_name)ER_UNKNOWN_COLLATION Unknown collation: '%s'ER_REPLICA_IGNORED_SSL_PARAMS SSL parameters in CHANGE REPLICATION SOURCE are ignored because this MySQL replica was compiled without SSL support; they can be used later if MySQL replica…ER_WARN_FIELD_RESOLVED Field or reference '%s%s%s%s%s' of SELECT #%d was resolved in SELECT #%dER_BAD_REPLICA_UNTIL_COND Incorrect parameter or combination of parameters for START REPLICA UNTILER_MISSING_SKIP_REPLICA It is recommended to use --skip-replica-start when doing step-by-step replication with START REPLICA UNTIL; otherwise, you will get problems if you get an un…ER_UNTIL_COND_IGNORED SQL thread is not to be started so UNTIL options are ignoredER_WRONG_NAME_FOR_INDEX Incorrect index name '%s'ER_WRONG_NAME_FOR_CATALOG Incorrect catalog name '%s'ER_BAD_FT_COLUMN Column '%s' cannot be part of FULLTEXT indexER_UNKNOWN_KEY_CACHE Unknown key cache '%s'ER_WARN_HOSTNAME_WONT_WORK MySQL is started in --skip-name-resolve mode; you must restart it without this switch for this grant to workER_UNKNOWN_STORAGE_ENGINE Unknown storage engine '%s'ER_WARN_DEPRECATED_SYNTAX '%s' is deprecated and will be removed in a future release. Please use %s insteadER_NON_UPDATABLE_TABLE The target table %s of the %s is not updatableER_FEATURE_DISABLED The '%s' feature is disabled; you need MySQL built with '%s' to have it workingER_OPTION_PREVENTS_STATEMENT The MySQL server is running with the %s option so it cannot execute this statementER_DUPLICATED_VALUE_IN_TYPE Column '%s' has duplicated value '%s' in %sER_TRUNCATED_WRONG_VALUE Truncated incorrect %s value: '%s'ER_INVALID_ON_UPDATE Invalid ON UPDATE clause for '%s' columnER_UNSUPPORTED_PS This command is not supported in the prepared statement protocol yetER_GET_ERRMSG Got error %d '%s' from %sER_GET_TEMPORARY_ERRMSG Got temporary error %d '%s' from %sER_UNKNOWN_TIME_ZONE Unknown or incorrect time zone: '%s'ER_WARN_INVALID_TIMESTAMP Invalid TIMESTAMP value in column '%s' at row %ldER_INVALID_CHARACTER_STRING Invalid %s character string: '%s'ER_WARN_ALLOWED_PACKET_OVERFLOWED Result of %s() was larger than max_allowed_packet (%ld) - truncatedER_CONFLICTING_DECLARATIONS Conflicting declarations: '%s%s' and '%s%s'ER_SP_NO_RECURSIVE_CREATE Can't create a %s from within another stored routineER_SP_ALREADY_EXISTS %s %s already existsER_SP_DOES_NOT_EXIST %s %s does not existER_SP_DROP_FAILED Failed to DROP %s %sER_SP_STORE_FAILED Failed to CREATE %s %sER_SP_LILABEL_MISMATCH %s with no matching label: %sER_SP_LABEL_REDEFINE Redefining label %sER_SP_LABEL_MISMATCH End-label %s without matchER_SP_UNINIT_VAR Referring to uninitialized variable %sER_SP_BADSELECT PROCEDURE %s can't return a result set in the given contextER_SP_BADRETURN RETURN is only allowed in a FUNCTIONER_SP_BADSTATEMENT %s is not allowed in stored proceduresER_UPDATE_LOG_DEPRECATED_IGNORED The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been ignored.ER_UPDATE_LOG_DEPRECATED_TRANSLATED The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been translated to SET SQL_LOG_BIN.ER_QUERY_INTERRUPTED Query execution was interruptedER_SP_WRONG_NO_OF_ARGS Incorrect number of arguments for %s %s; expected %u, got %uER_SP_COND_MISMATCH Undefined CONDITION: %sER_SP_NORETURN No RETURN found in FUNCTION %sER_SP_NORETURNEND FUNCTION %s ended without RETURNER_SP_BAD_CURSOR_QUERY Cursor statement must be a SELECTER_SP_BAD_CURSOR_SELECT Cursor SELECT must not have INTOER_SP_CURSOR_MISMATCH Undefined CURSOR: %sER_SP_CURSOR_ALREADY_OPEN Cursor is already openER_SP_CURSOR_NOT_OPEN Cursor is not openER_SP_UNDECLARED_VAR Undeclared variable: %sER_SP_WRONG_NO_OF_FETCH_ARGS Incorrect number of FETCH variablesER_SP_FETCH_NO_DATA No data - zero rows fetched, selected, or processedER_SP_DUP_PARAM Duplicate parameter: %sER_SP_DUP_VAR Duplicate variable: %sER_SP_DUP_COND Duplicate condition: %sER_SP_DUP_CURS Duplicate cursor: %sER_SP_CANT_ALTER Failed to ALTER %s %sER_SP_SUBSELECT_NYI Subquery value not supportedER_STMT_NOT_ALLOWED_IN_SF_OR_TRG %s is not allowed in stored function or triggerER_SP_VARCOND_AFTER_CURSHNDLR Variable or condition declaration after cursor or handler declarationER_SP_CURSOR_AFTER_HANDLER Cursor declaration after handler declarationER_SP_CASE_NOT_FOUND Case not found for CASE statementER_FPARSER_TOO_BIG_FILE Configuration file '%s' is too bigER_FPARSER_BAD_HEADER Malformed file type header in file '%s'ER_FPARSER_EOF_IN_COMMENT Unexpected end of file while parsing comment '%s'ER_FPARSER_ERROR_IN_PARAMETER Error while parsing parameter '%s' (line: '%s')ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER Unexpected end of file while skipping unknown parameter '%s'ER_VIEW_NO_EXPLAIN EXPLAIN/SHOW can not be issued; lacking privileges for underlying tableER_WRONG_OBJECT '%s.%s' is not %sER_NONUPDATEABLE_COLUMN Column '%s' is not updatableER_VIEW_SELECT_CLAUSE View's SELECT contains a '%s' clauseER_VIEW_SELECT_VARIABLE View's SELECT contains a variable or parameterER_VIEW_SELECT_TMPTABLE View's SELECT refers to a temporary table '%s'ER_VIEW_WRONG_LIST In definition of view, derived table or common table expression, SELECT list and column names list have different column countsER_WARN_VIEW_MERGE View merge algorithm can't be used here for now (assumed undefined algorithm)ER_WARN_VIEW_WITHOUT_KEY View being updated does not have complete key of underlying table in itER_VIEW_INVALID View '%s.%s' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use themER_SP_NO_DROP_SP Can't drop or alter a %s from within another stored routineER_TRG_ALREADY_EXISTS Trigger already existsER_TRG_DOES_NOT_EXIST Trigger does not existER_TRG_ON_VIEW_OR_TEMP_TABLE Trigger's '%s' is view or temporary tableER_TRG_CANT_CHANGE_ROW Updating of %s row is not allowed in %striggerER_TRG_NO_SUCH_ROW_IN_TRG There is no %s row in %s triggerER_NO_DEFAULT_FOR_FIELD Field '%s' doesn't have a default valueER_DIVISION_BY_ZERO Division by 0ER_TRUNCATED_WRONG_VALUE_FOR_FIELD Incorrect %s value: '%s' for column '%s' at row %ldER_ILLEGAL_VALUE_FOR_TYPE Illegal %s '%s' value found during parsingER_VIEW_NONUPD_CHECK CHECK OPTION on non-updatable view '%s.%s'ER_VIEW_CHECK_FAILED CHECK OPTION failed '%s.%s'ER_PROCACCESS_DENIED_ERROR %s command denied to user '%s'@'%s' for routine '%s'ER_RELAY_LOG_FAIL Failed purging old relay logs: %sER_UNKNOWN_TARGET_BINLOG Target log not found in binlog indexER_IO_ERR_LOG_INDEX_READ I/O error reading log index fileER_BINLOG_PURGE_PROHIBITED Server configuration does not permit binlog purgeER_FSEEK_FAIL Failed on fseek()ER_BINLOG_PURGE_FATAL_ERR Fatal error during log purgeER_LOG_IN_USE A purgeable log is in use, will not purgeER_LOG_PURGE_UNKNOWN_ERR Unknown error during log purgeER_RELAY_LOG_INIT Failed initializing relay log position: %sER_NO_BINARY_LOGGING You are not using binary loggingER_RESERVED_SYNTAX The '%s' syntax is reserved for purposes internal to the MySQL serverER_PS_MANY_PARAM Prepared statement contains too many placeholdersER_KEY_PART_0 Key part '%s' length cannot be 0ER_VIEW_CHECKSUM View text checksum failedER_VIEW_MULTIUPDATE Can not modify more than one base table through a join view '%s.%s'ER_VIEW_NO_INSERT_FIELD_LIST Can not insert into join view '%s.%s' without fields listER_VIEW_DELETE_MERGE_VIEW Can not delete from join view '%s.%s'ER_CANNOT_USER Operation %s failed for %sER_XAER_NOTA XAER_NOTA: Unknown XIDER_XAER_INVAL XAER_INVAL: Invalid arguments (or unsupported command)ER_XAER_RMFAIL XAER_RMFAIL: The command cannot be executed when global transaction is in the %s stateER_XAER_OUTSIDE XAER_OUTSIDE: Some work is done outside global transactionER_XAER_RMERR XAER_RMERR: Fatal error occurred in the transaction branch - check your data for consistencyER_XA_RBROLLBACK XA_RBROLLBACK: Transaction branch was rolled backER_NONEXISTING_PROC_GRANT There is no such grant defined for user '%s' on host '%s' on routine '%s'ER_PROC_AUTO_GRANT_FAIL Failed to grant EXECUTE and ALTER ROUTINE privilegesER_PROC_AUTO_REVOKE_FAIL Failed to revoke all privileges to dropped routineER_DATA_TOO_LONG Data too long for column '%s' at row %ldER_SP_BAD_SQLSTATE Bad SQLSTATE: '%s'ER_STARTUP %s: ready for connections. Version: '%s' socket: '%s' port: %d %sER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR Can't load value from file with fixed size rows to variableER_CANT_CREATE_USER_WITH_GRANT You are not allowed to create a user with GRANTER_WRONG_VALUE_FOR_TYPE Incorrect %s value: '%s' for function %sER_TABLE_DEF_CHANGED Table definition has changed, please retry transactionER_SP_DUP_HANDLER Duplicate handler declared in the same blockER_SP_NOT_VAR_ARG OUT or INOUT argument %d for routine %s is not a variable or NEW pseudo-variable in BEFORE triggerER_SP_NO_RETSET Not allowed to return a result set from a %sER_CANT_CREATE_GEOMETRY_OBJECT Cannot get geometry object from data you send to the GEOMETRY fieldER_BINLOG_UNSAFE_ROUTINE This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe lo…ER_BINLOG_CREATE_ROUTINE_NEED_SUPER You do not have the SUPER privilege and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)ER_STMT_HAS_NO_OPEN_CURSOR The statement (%lu) has no open cursor.ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG Explicit or implicit commit is not allowed in stored function or trigger.ER_NO_DEFAULT_FOR_VIEW_FIELD Field of view '%s.%s' underlying table doesn't have a default valueER_SP_NO_RECURSION Recursive stored functions and triggers are not allowed.ER_TOO_BIG_SCALE Too big scale %d specified for column '%s'. Maximum is %lu.ER_TOO_BIG_PRECISION Too-big precision %d specified for '%s'. Maximum is %lu.ER_M_BIGGER_THAN_D For float(M,D), double(M,D) or decimal(M,D), M must be >= D (column '%s').ER_WRONG_LOCK_OF_SYSTEM_TABLE You can't combine write-locking of system tables with other tables or lock typesER_CONNECT_TO_FOREIGN_DATA_SOURCE Unable to connect to foreign data source: %sER_QUERY_ON_FOREIGN_DATA_SOURCE There was a problem processing the query on the foreign data source. Data source error: %sER_FOREIGN_DATA_SOURCE_DOESNT_EXIST The foreign data source you are trying to reference does not exist. Data source error: %sER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE Can't create federated table. The data source connection string '%s' is not in the correct formatER_FOREIGN_DATA_STRING_INVALID The data source connection string '%s' is not in the correct formatER_TRG_IN_WRONG_SCHEMA Trigger in wrong schemaER_STACK_OVERRUN_NEED_MORE Thread stack overrun: %ld bytes used of a %ld byte stack, and %ld bytes needed. Use 'mysqld --thread_stack=#' to specify a bigger stack.ER_TOO_LONG_BODY Routine body for '%s' is too longER_WARN_CANT_DROP_DEFAULT_KEYCACHE Cannot drop default keycacheER_TOO_BIG_DISPLAYWIDTH Display width out of range for column '%s' (max = %lu)ER_XAER_DUPID XAER_DUPID: The XID already existsER_DATETIME_FUNCTION_OVERFLOW Datetime function: %s field overflowER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG Can't update table '%s' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.ER_VIEW_PREVENT_UPDATE The definition of table '%s' prevents operation %s on table '%s'.ER_PS_NO_RECURSION The prepared statement contains a stored routine call that refers to that same statement. It's not allowed to execute a prepared statement in such a recursiv…ER_SP_CANT_SET_AUTOCOMMIT Not allowed to set autocommit from a stored function or triggerER_VIEW_FRM_NO_USER View '%s'.'%s' has no definer information (old table format). Current user is used as definer. Please recreate the view!ER_VIEW_OTHER_USER You need the SUPER privilege for creation view with '%s'@'%s' definerER_NO_SUCH_USER The user specified as a definer ('%s'@'%s') does not existER_FORBID_SCHEMA_CHANGE Changing schema from '%s' to '%s' is not allowed.ER_ROW_IS_REFERENCED_2 Cannot delete or update a parent row: a foreign key constraint fails%sER_NO_REFERENCED_ROW_2 Cannot add or update a child row: a foreign key constraint fails%sER_SP_BAD_VAR_SHADOW Variable '%s' must be quoted with `...`, or renamedER_TRG_NO_DEFINER No definer attribute for trigger '%s'.'%s'. It's disallowed to create trigger without definer.ER_OLD_FILE_FORMAT '%s' has an old format, you should re-create the '%s' object(s)ER_SP_RECURSION_LIMIT Recursive limit %d (as set by the max_sp_recursion_depth variable) was exceeded for routine %sER_SP_WRONG_NAME Incorrect routine name '%s'ER_TABLE_NEEDS_UPGRADE Table upgrade required. Please do "REPAIR TABLE `%s`" or dump/reload to fix it!ER_SP_NO_AGGREGATE AGGREGATE is not supported for stored functionsER_MAX_PREPARED_STMT_COUNT_REACHED Can't create more than max_prepared_stmt_count statements (current value: %lu)ER_VIEW_RECURSIVE `%s`.`%s` contains view recursionER_NON_GROUPING_FIELD_USED Non-grouping field '%s' is used in %s clauseER_TABLE_CANT_HANDLE_SPKEYS The used table type doesn't support SPATIAL indexesER_NO_TRIGGERS_ON_SYSTEM_SCHEMA Triggers can not be created on system tablesER_REMOVED_SPACES Leading spaces are removed from name '%s'ER_AUTOINC_READ_FAILED Failed to read auto-increment value from storage engineER_USERNAME user nameER_HOSTNAME host nameER_WRONG_STRING_LENGTH String '%s' is too long for %s (should be no longer than %d)ER_NON_INSERTABLE_TABLE The target table %s of the %s is not insertable-intoER_ADMIN_WRONG_MRG_TABLE Table '%s' is differently defined or of non-MyISAM type or doesn't existER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT Too high level of nesting for selectER_NAME_BECOMES_EMPTY Name '%s' has become ''ER_AMBIGUOUS_FIELD_TERM First character of the FIELDS TERMINATED string is ambiguous; please use non-optional and non-empty FIELDS ENCLOSED BYER_FOREIGN_SERVER_EXISTS The foreign server, %s, you are trying to create already exists.ER_FOREIGN_SERVER_DOESNT_EXIST The foreign server name you are trying to reference does not exist. Data source error: %sER_ILLEGAL_HA_CREATE_OPTION Table storage engine '%s' does not support the create option '%s'ER_PARTITION_REQUIRES_VALUES_ERROR Syntax error: %s PARTITIONING requires definition of VALUES %s for each partitionER_PARTITION_WRONG_VALUES_ERROR Only %s PARTITIONING can use VALUES %s in partition definitionER_PARTITION_MAXVALUE_ERROR MAXVALUE can only be used in last partition definitionER_PARTITION_WRONG_NO_PART_ERROR Wrong number of partitions defined, mismatch with previous settingER_PARTITION_WRONG_NO_SUBPART_ERROR Wrong number of subpartitions defined, mismatch with previous settingER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR Constant, random or timezone-dependent expressions in (sub)partitioning function are not allowedER_FIELD_NOT_FOUND_PART_ERROR Field in list of fields for partition function not found in tableER_INCONSISTENT_PARTITION_INFO_ERROR The partition info in the frm file is not consistent with what can be written into the frm fileER_PARTITION_FUNC_NOT_ALLOWED_ERROR The %s function returns the wrong typeER_PARTITIONS_MUST_BE_DEFINED_ERROR For %s partitions each partition must be definedER_RANGE_NOT_INCREASING_ERROR VALUES LESS THAN value must be strictly increasing for each partitionER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR VALUES value must be of same type as partition functionER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR Multiple definition of same constant in list partitioningER_PARTITION_ENTRY_ERROR Partitioning can not be used stand-alone in queryER_MIX_HANDLER_ERROR The mix of handlers in the partitions is not allowed in this version of MySQLER_PARTITION_NOT_DEFINED_ERROR For the partitioned engine it is necessary to define all %sER_TOO_MANY_PARTITIONS_ERROR Too many partitions (including subpartitions) were definedER_SUBPARTITION_ERROR It is only possible to mix RANGE/LIST partitioning with HASH/KEY partitioning for subpartitioningER_CANT_CREATE_HANDLER_FILE Failed to create specific handler fileER_BLOB_FIELD_IN_PART_FUNC_ERROR A BLOB field is not allowed in partition functionER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF A %s must include all columns in the table's partitioning function (prefixed columns are not considered).ER_NO_PARTS_ERROR Number of %s = 0 is not an allowed valueER_PARTITION_MGMT_ON_NONPARTITIONED Partition management on a not partitioned table is not possibleER_FOREIGN_KEY_ON_PARTITIONED Foreign keys are not yet supported in conjunction with partitioningER_DROP_PARTITION_NON_EXISTENT Error in list of partitions to %sER_DROP_LAST_PARTITION Cannot remove all partitions, use DROP TABLE insteadER_COALESCE_ONLY_ON_HASH_PARTITION COALESCE PARTITION can only be used on HASH/KEY partitionsER_REORG_HASH_ONLY_ON_SAME_NO REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbersER_REORG_NO_PARAM_ERROR REORGANIZE PARTITION without parameters can only be used on auto-partitioned tables using HASH PARTITIONsER_ONLY_ON_RANGE_LIST_PARTITION %s PARTITION can only be used on RANGE/LIST partitionsER_ADD_PARTITION_SUBPART_ERROR Trying to Add partition(s) with wrong number of subpartitionsER_ADD_PARTITION_NO_NEW_PARTITION At least one partition must be addedER_COALESCE_PARTITION_NO_PARTITION At least one partition must be coalescedER_REORG_PARTITION_NOT_EXIST More partitions to reorganize than there are partitionsER_SAME_NAME_PARTITION Duplicate partition name %sER_NO_BINLOG_ERROR It is not allowed to shut off binlog on this commandER_CONSECUTIVE_REORG_PARTITIONS When reorganizing a set of partitions they must be in consecutive orderER_REORG_OUTSIDE_RANGE Reorganize of range partitions cannot change total ranges except for last partition where it can extend the rangeER_PARTITION_FUNCTION_FAILURE Partition function not supported in this version for this handlerER_LIMITED_PART_RANGE The %s handler only supports 32 bit integers in VALUESER_PLUGIN_IS_NOT_LOADED Plugin '%s' is not loadedER_WRONG_VALUE Incorrect %s value: '%s'ER_NO_PARTITION_FOR_GIVEN_VALUE Table has no partition for value %sER_FILEGROUP_OPTION_ONLY_ONCE It is not allowed to specify %s more than onceER_CREATE_FILEGROUP_FAILED Failed to create %sER_DROP_FILEGROUP_FAILED Failed to drop %sER_TABLESPACE_AUTO_EXTEND_ERROR The handler doesn't support autoextend of tablespacesER_WRONG_SIZE_NUMBER A size parameter was incorrectly specified, either number or on the form 10MER_SIZE_OVERFLOW_ERROR The size number was correct but we don't allow the digit part to be more than 2 billionER_ALTER_FILEGROUP_FAILED Failed to alter: %sER_BINLOG_ROW_LOGGING_FAILED Writing one row to the row-based binary log failedER_EVENT_ALREADY_EXISTS Event '%s' already existsER_EVENT_DOES_NOT_EXIST Unknown event '%s'ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG INTERVAL is either not positive or too bigER_EVENT_ENDS_BEFORE_STARTS ENDS is either invalid or before STARTSER_EVENT_EXEC_TIME_IN_THE_PAST Event execution time is in the past. Event has been disabledER_EVENT_SAME_NAME Same old and new event nameER_DROP_INDEX_FK Cannot drop index '%s': needed in a foreign key constraintER_WARN_DEPRECATED_SYNTAX_WITH_VER The syntax '%s' is deprecated and will be removed in MySQL %s. Please use %s insteadER_CANT_LOCK_LOG_TABLE You can't use locks with log tables.ER_FOREIGN_DUPLICATE_KEY_OLD_UNUSED Upholding foreign key constraints for table '%s', entry '%s', key %d would lead to a duplicate entryER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE The column count of mysql.%s is wrong. Expected %d, found %d. Created with MySQL %d, now running %d. Please perform the MySQL upgrade procedure.ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT Cannot change the binary logging format inside a stored function or triggerER_PARTITION_NO_TEMPORARY Cannot create temporary table with partitionsER_PARTITION_CONST_DOMAIN_ERROR Partition constant is out of partition function domainER_PARTITION_FUNCTION_IS_NOT_ALLOWED This partition function is not allowedER_NULL_IN_VALUES_LESS_THAN Not allowed to use NULL value in VALUES LESS THANER_WRONG_PARTITION_NAME Incorrect partition nameER_CANT_CHANGE_TX_CHARACTERISTICS Transaction characteristics can't be changed while a transaction is in progressER_DUP_ENTRY_AUTOINCREMENT_CASE ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry '%s' for key '%s'ER_EVENT_SET_VAR_ERROR Error during starting/stopping of the scheduler. Error code %uER_PARTITION_MERGE_ERROR Engine cannot be used in partitioned tablesER_BASE64_DECODE_ERROR Decoding of base64 string failedER_EVENT_RECURSION_FORBIDDEN Recursion of EVENT DDL statements is forbidden when body is presentER_ONLY_INTEGERS_ALLOWED Only integers allowed as number hereER_UNSUPORTED_LOG_ENGINE This storage engine cannot be used for log tablesER_BAD_LOG_STATEMENT You cannot '%s' a log table if logging is enabledER_CANT_RENAME_LOG_TABLE Cannot rename '%s'. When logging enabled, rename to/from log table must rename two tables: the log table to an archive table and another table back to '%s'ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT Incorrect parameter count in the call to native function '%s'ER_WRONG_PARAMETERS_TO_NATIVE_FCT Incorrect parameters in the call to native function '%s'ER_WRONG_PARAMETERS_TO_STORED_FCT Incorrect parameters in the call to stored function %sER_NATIVE_FCT_NAME_COLLISION This function '%s' has the same name as a native functionER_DUP_ENTRY_WITH_KEY_NAME Duplicate entry '%s' for key '%s'ER_BINLOG_PURGE_EMFILE Too many files opened, please execute the command againER_EVENT_CANNOT_CREATE_IN_THE_PAST Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was dropped immediately after creation.ER_EVENT_CANNOT_ALTER_IN_THE_PAST Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was not changed. Specify a time in the future.ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT Table has no partition for some existing valuesER_BINLOG_UNSAFE_STATEMENT Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. %sER_BINLOG_FATAL_ERROR Fatal error: %sER_BINLOG_LOGGING_IMPOSSIBLE Binary logging not possible. Message: %sER_VIEW_NO_CREATION_CTX View `%s`.`%s` has no creation contextER_VIEW_INVALID_CREATION_CTX Creation context of view `%s`.`%s' is invalidER_TRG_CORRUPTED_FILE Corrupted TRG file for table `%s`.`%s`ER_TRG_NO_CREATION_CTX Triggers for table `%s`.`%s` have no creation contextER_TRG_INVALID_CREATION_CTX Trigger creation context of table `%s`.`%s` is invalidER_EVENT_INVALID_CREATION_CTX Creation context of event `%s`.`%s` is invalidER_TRG_CANT_OPEN_TABLE Cannot open table for trigger `%s`.`%s`ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT The BINLOG statement of type `%s` was not preceded by a format description BINLOG statement.ER_REPLICA_CORRUPT_EVENT Corrupted replication event was detectedER_LOG_PURGE_NO_FILE Being purged log %s was not foundER_XA_RBTIMEOUT XA_RBTIMEOUT: Transaction branch was rolled back: took too longER_XA_RBDEADLOCK XA_RBDEADLOCK: Transaction branch was rolled back: deadlock was detectedER_NEED_REPREPARE Prepared statement needs to be re-preparedWARN_NO_CONNECTION_METADATA The connection metadata structure does not existWARN_OPTION_IGNORED <%s> option ignoredER_PLUGIN_DELETE_BUILTIN Built-in plugins cannot be deletedWARN_PLUGIN_BUSY Plugin is busy and will be uninstalled on shutdownER_VARIABLE_IS_READONLY %s variable '%s' is read-only. Use SET %s to assign the valueER_WARN_ENGINE_TRANSACTION_ROLLBACK Storage engine %s does not support rollback for this statement. Transaction rolled back and must be restartedER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE The requested value for the heartbeat period is either negative or exceeds the maximum allowed (%s seconds).ER_NDB_REPLICATION_SCHEMA_ERROR Bad schema for mysql.ndb_replication table. Message: %sER_CONFLICT_FN_PARSE_ERROR Error in parsing conflict function. Message: %sER_EXCEPTIONS_WRITE_ERROR Write to exceptions table failed. Message: %sER_TOO_LONG_TABLE_COMMENT Comment for table '%s' is too long (max = %lu)ER_TOO_LONG_FIELD_COMMENT Comment for field '%s' is too long (max = %lu)ER_FUNC_INEXISTENT_NAME_COLLISION FUNCTION %s does not exist. Check the 'Function Name Parsing and Resolution' section in the Reference ManualER_DATABASE_NAME DatabaseER_TABLE_NAME TableER_PARTITION_NAME PartitionER_SUBPARTITION_NAME SubpartitionER_TEMPORARY_NAME TemporaryER_RENAMED_NAME RenamedER_TOO_MANY_CONCURRENT_TRXS Too many active concurrent transactionsWARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED Non-ASCII separator arguments are not fully supportedER_DEBUG_SYNC_TIMEOUT debug sync point wait timed outER_DEBUG_SYNC_HIT_LIMIT debug sync point hit limit reachedER_DUP_SIGNAL_SET Duplicate condition information item '%s'ER_SIGNAL_WARN Unhandled user-defined warning conditionER_SIGNAL_NOT_FOUND Unhandled user-defined not found conditionER_SIGNAL_EXCEPTION Unhandled user-defined exception conditionER_RESIGNAL_WITHOUT_ACTIVE_HANDLER RESIGNAL when handler not activeER_SIGNAL_BAD_CONDITION_TYPE SIGNAL/RESIGNAL can only use a CONDITION defined with SQLSTATEWARN_COND_ITEM_TRUNCATED Data truncated for condition item '%s'ER_COND_ITEM_TOO_LONG Data too long for condition item '%s'ER_UNKNOWN_LOCALE Unknown locale: '%s'ER_REPLICA_IGNORE_SERVER_IDS The requested server id %d clashes with the replica startup option --replicate-same-server-idER_SAME_NAME_PARTITION_FIELD Duplicate partition field name '%s'ER_PARTITION_COLUMN_LIST_ERROR Inconsistency in usage of column lists for partitioningER_WRONG_TYPE_COLUMN_VALUE_ERROR Partition column values of incorrect typeER_TOO_MANY_PARTITION_FUNC_FIELDS_ERROR Too many fields in '%s'ER_MAXVALUE_IN_VALUES_IN Cannot use MAXVALUE as value in VALUES INER_TOO_MANY_VALUES_ERROR Cannot have more than one value for this type of %s partitioningER_ROW_SINGLE_PARTITION_FIELD_ERROR Row expressions in VALUES IN only allowed for multi-field column partitioningER_FIELD_TYPE_NOT_ALLOWED_AS_PARTITION_FIELD Field '%s' is of a not allowed type for this type of partitioningER_PARTITION_FIELDS_TOO_LONG The total length of the partitioning fields is too largeER_BINLOG_ROW_ENGINE_AND_STMT_ENGINE Cannot execute statement: impossible to write to binary log since both row-incapable engines and statement-incapable engines are involved.ER_BINLOG_ROW_MODE_AND_STMT_ENGINE Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = ROW and at least one table uses a storage engine limited to statement-based…ER_BINLOG_UNSAFE_AND_STMT_ENGINE Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMA…ER_BINLOG_ROW_INJECTION_AND_STMT_ENGINE Cannot execute statement: impossible to write to binary log since statement is in row format and at least one table uses a storage engine limited to statemen…ER_BINLOG_STMT_MODE_AND_ROW_ENGINE Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine limited to row-based…ER_BINLOG_ROW_INJECTION_AND_STMT_MODE Cannot execute statement: impossible to write to binary log since statement is in row format and BINLOG_FORMAT = STATEMENT.ER_BINLOG_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE Cannot execute statement: impossible to write to binary log since more than one engine is involved and at least one engine is self-logging.ER_BINLOG_UNSAFE_LIMIT The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted.ER_BINLOG_UNSAFE_SYSTEM_TABLE The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on r…ER_BINLOG_UNSAFE_AUTOINC_COLUMNS Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly.ER_BINLOG_UNSAFE_UDF Statement is unsafe because it uses a UDF which may not return the same value on the replica.ER_BINLOG_UNSAFE_SYSTEM_VARIABLE Statement is unsafe because it uses a system variable that may have a different value on the replica.ER_BINLOG_UNSAFE_SYSTEM_FUNCTION Statement is unsafe because it uses a system function that may return a different value on the replica.ER_BINLOG_UNSAFE_NONTRANS_AFTER_TRANS Statement is unsafe because it accesses a non-transactional table after accessing a transactional table within the same transaction.ER_MESSAGE_AND_STATEMENT %s Statement: %sER_REPLICA_CANT_CREATE_CONVERSION Can't create conversion table for table '%s.%s'ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_FORMAT Cannot modify @@session.binlog_format inside a transactionER_PATH_LENGTH The path specified for %s is too long.ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT '%s' is deprecated and will be removed in a future release.ER_WRONG_NATIVE_TABLE_STRUCTURE Native table '%s'.'%s' has the wrong structureER_WRONG_PERFSCHEMA_USAGE Invalid performance_schema usage.ER_WARN_I_S_SKIPPED_TABLE Table '%s'.'%s' was skipped since its definition is being modified by concurrent DDL statementER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_DIRECT Cannot modify @@session.binlog_direct_non_transactional_updates inside a transactionER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_DIRECT Cannot change the binlog direct flag inside a stored function or triggerER_SPATIAL_MUST_HAVE_GEOM_COL A SPATIAL index may only contain a geometrical type columnER_TOO_LONG_INDEX_COMMENT Comment for index '%s' is too long (max = %lu)ER_LOCK_ABORTED Wait on a lock was aborted due to a pending exclusive lockER_DATA_OUT_OF_RANGE %s value is out of range in '%s'ER_BINLOG_UNSAFE_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE Mixing self-logging and non-self-logging engines in a statement is unsafe.ER_BINLOG_UNSAFE_MIXED_STATEMENT Statement accesses nontransactional table as well as transactional or temporary table, and writes to any of them.ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_SQL_LOG_BIN Cannot modify @@session.sql_log_bin inside a transactionER_STORED_FUNCTION_PREVENTS_SWITCH_SQL_LOG_BIN Cannot change the sql_log_bin inside a stored function or triggerER_FAILED_READ_FROM_PAR_FILE Failed to read from the .par fileER_VALUES_IS_NOT_INT_TYPE_ERROR VALUES value for partition '%s' must have type INTER_ACCESS_DENIED_NO_PASSWORD_ERROR Access denied for user '%s'@'%s'ER_TRUNCATE_ILLEGAL_FK Cannot truncate a table referenced in a foreign key constraint (%s)ER_PLUGIN_IS_PERMANENT Plugin '%s' is force_plus_permanent and can not be unloadedER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN The requested value for the heartbeat period is less than 1 millisecond. The value is reset to 0, meaning that heartbeating will effectively be disabled.ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX The requested value for the heartbeat period exceeds the value of `replica_net_timeout' seconds. A sensible value for the period should be less than the time…ER_STMT_CACHE_FULL Multi-row statements required more than 'max_binlog_stmt_cache_size' bytes of storage; increase this mysqld variable and try againER_MULTI_UPDATE_KEY_CONFLICT Primary key/partition key update is not allowed since the table is updated both as '%s' and '%s'.ER_TABLE_NEEDS_REBUILD Table rebuild required. Please do "ALTER TABLE `%s` FORCE" or dump/reload to fix it!WARN_OPTION_BELOW_LIMIT The value of '%s' should be no less than the value of '%s'ER_INDEX_COLUMN_TOO_LONG Index column size too large. The maximum column size is %lu bytes.ER_ERROR_IN_TRIGGER_BODY Trigger '%s' has an error in its body: '%s'ER_ERROR_IN_UNKNOWN_TRIGGER_BODY Unknown trigger has an error in its body: '%s'ER_INDEX_CORRUPT Index %s is corruptedER_UNDO_RECORD_TOO_BIG Undo log record is too big.ER_BINLOG_UNSAFE_INSERT_IGNORE_SELECT INSERT IGNORE... SELECT is unsafe because the order in which rows are retrieved by the SELECT determines which (if any) rows are ignored. This order cannot b…ER_BINLOG_UNSAFE_INSERT_SELECT_UPDATE INSERT... SELECT... ON DUPLICATE KEY UPDATE is unsafe because the order in which rows are retrieved by the SELECT determines which (if any) rows are updated.…ER_BINLOG_UNSAFE_REPLACE_SELECT REPLACE... SELECT is unsafe because the order in which rows are retrieved by the SELECT determines which (if any) rows are replaced. This order cannot be pre…ER_BINLOG_UNSAFE_CREATE_IGNORE_SELECT CREATE... IGNORE SELECT is unsafe because the order in which rows are retrieved by the SELECT determines which (if any) rows are ignored. This order cannot b…ER_BINLOG_UNSAFE_CREATE_REPLACE_SELECT CREATE... REPLACE SELECT is unsafe because the order in which rows are retrieved by the SELECT determines which (if any) rows are replaced. This order cannot…ER_BINLOG_UNSAFE_UPDATE_IGNORE UPDATE IGNORE is unsafe because the order in which rows are updated determines which (if any) rows are ignored. This order cannot be predicted and may differ…ER_PLUGIN_NO_UNINSTALL Plugin '%s' is marked as not dynamically uninstallable. You have to stop the server to uninstall it.ER_PLUGIN_NO_INSTALL Plugin '%s' is marked as not dynamically installable. You have to stop the server to install it.ER_BINLOG_UNSAFE_WRITE_AUTOINC_SELECT Statements writing to a table with an auto-increment column after selecting from another table are unsafe because the order in which rows are retrieved deter…ER_BINLOG_UNSAFE_CREATE_SELECT_AUTOINC CREATE TABLE... SELECT... on a table with an auto-increment column is unsafe because the order in which rows are retrieved by the SELECT determines which (if…ER_BINLOG_UNSAFE_INSERT_TWO_KEYS INSERT... ON DUPLICATE KEY UPDATE on a table with more than one UNIQUE KEY is unsafeER_TABLE_IN_FK_CHECK Table is being used in foreign key check.ER_UNSUPPORTED_ENGINE Storage engine '%s' does not support system tables. [%s.%s]ER_BINLOG_UNSAFE_AUTOINC_NOT_FIRST INSERT into autoincrement field which is not the first part in the composed primary key is unsafe.ER_CANNOT_LOAD_FROM_TABLE_V2 Cannot load from %s.%s. The table is probably corruptedER_SOURCE_DELAY_VALUE_OUT_OF_RANGE The requested value %s for the source delay exceeds the maximum %uER_ONLY_FD_AND_RBR_EVENTS_ALLOWED_IN_BINLOG_STATEMENT Only Format_description_log_event and row events are allowed in BINLOG statements (but %s was provided)ER_PARTITION_EXCHANGE_DIFFERENT_OPTION Non matching attribute '%s' between partition and tableER_PARTITION_EXCHANGE_PART_TABLE Table to exchange with partition is partitioned: '%s'ER_PARTITION_EXCHANGE_TEMP_TABLE Table to exchange with partition is temporary: '%s'ER_PARTITION_INSTEAD_OF_SUBPARTITION Subpartitioned table, use subpartition instead of partitionER_UNKNOWN_PARTITION Unknown partition '%s' in table '%s'ER_TABLES_DIFFERENT_METADATA Tables have different definitionsER_ROW_DOES_NOT_MATCH_PARTITION Found a row that does not match the partitionER_BINLOG_CACHE_SIZE_GREATER_THAN_MAX Option binlog_cache_size (%lu) is greater than max_binlog_cache_size (%lu); setting binlog_cache_size equal to max_binlog_cache_size.ER_WARN_INDEX_NOT_APPLICABLE Cannot use %s access on index '%s' due to type or collation conversion on field '%s'ER_PARTITION_EXCHANGE_FOREIGN_KEY Table to exchange with partition has foreign key references: '%s'ER_RPL_INFO_DATA_TOO_LONG Data for column '%s' too longER_BINLOG_STMT_CACHE_SIZE_GREATER_THAN_MAX Option binlog_stmt_cache_size (%lu) is greater than max_binlog_stmt_cache_size (%lu); setting binlog_stmt_cache_size equal to max_binlog_stmt_cache_size.ER_CANT_UPDATE_TABLE_IN_CREATE_TABLE_SELECT Can't update table '%s' while '%s' is being created.ER_PARTITION_CLAUSE_ON_NONPARTITIONED PARTITION () clause on non partitioned tableER_ROW_DOES_NOT_MATCH_GIVEN_PARTITION_SET Found a row not matching the given partition setER_CHANGE_RPL_INFO_REPOSITORY_FAILURE Failure while changing the type of replication repository: %s.ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_CREATED_TEMP_TABLE The creation of some temporary tables could not be rolled back.ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_DROPPED_TEMP_TABLE Some temporary tables were dropped, but these operations could not be rolled back.ER_MTA_FEATURE_IS_NOT_SUPPORTED %s is not supported in multi-threaded replica mode. %sER_MTA_UPDATED_DBS_GREATER_MAX The number of modified databases exceeds the maximum %d; the database names will not be included in the replication event metadata.ER_MTA_CANT_PARALLEL Cannot execute the current event group in the parallel mode. Encountered event %s, relay-log name %s, position %s which prevents execution of this event grou…ER_MTA_INCONSISTENT_DATA %sER_FULLTEXT_NOT_SUPPORTED_WITH_PARTITIONING FULLTEXT index is not supported for partitioned tables.ER_DA_INVALID_CONDITION_NUMBER Invalid condition numberER_INSECURE_PLAIN_TEXT Sending passwords in plain text without SSL/TLS is extremely insecure.ER_INSECURE_CHANGE_SOURCE Storing MySQL user name or password information in the connection metadata repository is not secure and is therefore not recommended. Please consider using t…ER_FOREIGN_DUPLICATE_KEY_WITH_CHILD_INFO Foreign key constraint for table '%s', record '%s' would lead to a duplicate entry in table '%s', key '%s'ER_FOREIGN_DUPLICATE_KEY_WITHOUT_CHILD_INFO Foreign key constraint for table '%s', record '%s' would lead to a duplicate entry in a child tableER_SQLTHREAD_WITH_SECURE_REPLICA Setting authentication options is not possible when only the Replica SQL Thread is being started.ER_TABLE_HAS_NO_FT The table does not have FULLTEXT index to support this queryER_VARIABLE_NOT_SETTABLE_IN_SF_OR_TRIGGER The system variable %s cannot be set in stored functions or triggers.ER_VARIABLE_NOT_SETTABLE_IN_TRANSACTION The system variable %s cannot be set when there is an ongoing transaction.ER_SET_STATEMENT_CANNOT_INVOKE_FUNCTION The statement 'SET %s' cannot invoke a stored function.ER_GTID_NEXT_CANT_BE_AUTOMATIC_IF_GTID_NEXT_LIST_IS_NON_NULL The system variable @@SESSION.GTID_NEXT cannot be 'AUTOMATIC' when @@SESSION.GTID_NEXT_LIST is non-NULL.ER_MALFORMED_GTID_SET_SPECIFICATION Malformed GTID set specification '%s'.ER_MALFORMED_GTID_SET_ENCODING Malformed GTID set encoding.ER_MALFORMED_GTID_SPECIFICATION Malformed GTID specification '%s'.ER_GNO_EXHAUSTED Impossible to generate GTID: the integer component reached the maximum value. Restart the server with a new server_uuid.ER_BAD_REPLICA_AUTO_POSITION Parameters SOURCE_LOG_FILE, SOURCE_LOG_POS, RELAY_LOG_FILE and RELAY_LOG_POS cannot be set when SOURCE_AUTO_POSITION is active.ER_AUTO_POSITION_REQUIRES_GTID_MODE_NOT_OFF CHANGE REPLICATION SOURCE TO SOURCE_AUTO_POSITION = 1 cannot be executed because @@GLOBAL.GTID_MODE = OFF.ER_CANT_DO_IMPLICIT_COMMIT_IN_TRX_WHEN_GTID_NEXT_IS_SET Cannot execute statements with implicit commit inside a transaction when @@SESSION.GTID_NEXT == 'UUID:NUMBER'.ER_GTID_MODE_ON_REQUIRES_ENFORCE_GTID_CONSISTENCY_ON GTID_MODE = ON requires ENFORCE_GTID_CONSISTENCY = ON.ER_CANT_SET_GTID_NEXT_TO_GTID_WHEN_GTID_MODE_IS_OFF @@SESSION.GTID_NEXT cannot be set to UUID:NUMBER when @@GLOBAL.GTID_MODE = OFF.ER_CANT_SET_GTID_NEXT_TO_ANONYMOUS_WHEN_GTID_MODE_IS_ON @@SESSION.GTID_NEXT cannot be set to ANONYMOUS when @@GLOBAL.GTID_MODE = ON.ER_CANT_SET_GTID_NEXT_LIST_TO_NON_NULL_WHEN_GTID_MODE_IS_OFF @@SESSION.GTID_NEXT_LIST cannot be set to a non-NULL value when @@GLOBAL.GTID_MODE = OFF.ER_GTID_UNSAFE_NON_TRANSACTIONAL_TABLE Statement violates GTID consistency: Updates to non-transactional tables can only be done in either autocommitted statements or single-statement transactions…ER_GTID_UNSAFE_CREATE_SELECT Statement violates GTID consistency: CREATE TABLE ... SELECT.ER_GTID_MODE_CAN_ONLY_CHANGE_ONE_STEP_AT_A_TIME The value of @@GLOBAL.GTID_MODE can only be changed one step at a time: OFF <-> OFF_PERMISSIVE <-> ON_PERMISSIVE <-> ON. Also note that this value must be st…ER_SOURCE_HAS_PURGED_REQUIRED_GTIDS Cannot replicate because the source purged required binary logs. Replicate the missing transactions from elsewhere, or provision a new replica from backup. C…ER_CANT_SET_GTID_NEXT_WHEN_OWNING_GTID @@SESSION.GTID_NEXT cannot be changed by a client that owns a GTID. The client owns %s. Ownership is released on COMMIT or ROLLBACK.ER_UNKNOWN_EXPLAIN_FORMAT Unknown EXPLAIN format name: '%s'ER_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION Cannot execute statement in a READ ONLY transaction.ER_TOO_LONG_TABLE_PARTITION_COMMENT Comment for table partition '%s' is too long (max = %lu)ER_REPLICA_CONFIGURATION Replica is not configured or failed to initialize properly. You must at least set --server-id to enable either a source or a replica. Additional error messag…ER_INNODB_FT_LIMIT InnoDB presently supports one FULLTEXT index creation at a timeER_INNODB_NO_FT_TEMP_TABLE Cannot create FULLTEXT index on temporary InnoDB tableER_INNODB_FT_WRONG_DOCID_COLUMN Column '%s' is of wrong type for an InnoDB FULLTEXT indexER_INNODB_FT_WRONG_DOCID_INDEX Index '%s' is of wrong type for an InnoDB FULLTEXT indexER_INNODB_ONLINE_LOG_TOO_BIG Creating index '%s' required more than 'innodb_online_alter_log_max_size' bytes of modification log. Please try again.ER_UNKNOWN_ALTER_ALGORITHM Unknown ALGORITHM '%s'ER_UNKNOWN_ALTER_LOCK Unknown LOCK type '%s'ER_MTA_CHANGE_SOURCE_CANT_RUN_WITH_GAPS CHANGE REPLICATION SOURCE cannot be executed when the replica was stopped with an error or killed in MTA mode. Consider using RESET REPLICA or START REPLICA…ER_MTA_RECOVERY_FAILURE Cannot recover after REPLICA errored out in parallel execution mode. Additional error messages can be found in the MySQL error log.ER_MTA_RESET_WORKERS Cannot clean up worker info tables. Additional error messages can be found in the MySQL error log.ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2 Column count of %s.%s is wrong. Expected %d, found %d. The table is probably corruptedER_REPLICA_SILENT_RETRY_TRANSACTION Replica must silently retry current transactionER_DISCARD_FK_CHECKS_RUNNING There is a foreign key check running on table '%s'. Cannot discard the table.ER_TABLE_SCHEMA_MISMATCH Schema mismatch (%s)ER_TABLE_IN_SYSTEM_TABLESPACE Table '%s' in system tablespaceER_IO_READ_ERROR IO Read error: (%lu, %s) %sER_IO_WRITE_ERROR IO Write error: (%lu, %s) %sER_TABLESPACE_MISSING Tablespace is missing for table %s.ER_TABLESPACE_EXISTS Tablespace '%s' exists.ER_TABLESPACE_DISCARDED Tablespace has been discarded for table '%s'ER_INTERNAL_ERROR Internal error: %sER_INNODB_IMPORT_ERROR ALTER TABLE %s IMPORT TABLESPACE failed with error %lu : '%s'ER_INNODB_INDEX_CORRUPT Index corrupt: %sER_INVALID_YEAR_COLUMN_LENGTH Invalid display width. Use YEAR instead.ER_NOT_VALID_PASSWORD Your password does not satisfy the current policy requirementsER_MUST_CHANGE_PASSWORD You must reset your password using ALTER USER statement before executing this statement.ER_FK_NO_INDEX_CHILD Failed to add the foreign key constraint. Missing index for constraint '%s' in the foreign table '%s'ER_FK_NO_INDEX_PARENT Failed to add the foreign key constraint. Missing index for constraint '%s' in the referenced table '%s'ER_FK_FAIL_ADD_SYSTEM Failed to add the foreign key constraint '%s' to system tablesER_FK_CANNOT_OPEN_PARENT Failed to open the referenced table '%s'ER_FK_INCORRECT_OPTION Failed to add the foreign key constraint on table '%s'. Incorrect options in FOREIGN KEY constraint '%s'ER_FK_DUP_NAME Duplicate foreign key constraint name '%s'ER_PASSWORD_FORMAT The password hash doesn't have the expected format.ER_FK_COLUMN_CANNOT_DROP Cannot drop column '%s': needed in a foreign key constraint '%s'ER_FK_COLUMN_CANNOT_DROP_CHILD Cannot drop column '%s': needed in a foreign key constraint '%s' of table '%s'ER_FK_COLUMN_NOT_NULL Column '%s' cannot be NOT NULL: needed in a foreign key constraint '%s' SET NULLER_DUP_INDEX Duplicate index '%s' defined on the table '%s.%s'. This is deprecated and will be disallowed in a future release.ER_FK_COLUMN_CANNOT_CHANGE Cannot change column '%s': used in a foreign key constraint '%s'ER_FK_COLUMN_CANNOT_CHANGE_CHILD Cannot change column '%s': used in a foreign key constraint '%s' of table '%s'ER_MALFORMED_PACKET Malformed communication packet.ER_READ_ONLY_MODE Running in read-only modeER_GTID_NEXT_TYPE_UNDEFINED_GTID When @@SESSION.GTID_NEXT is set to a GTID, you must explicitly set it to a different value after a COMMIT or ROLLBACK. Please check GTID_NEXT variable manual…ER_VARIABLE_NOT_SETTABLE_IN_SP The system variable %s cannot be set in stored procedures.ER_CANT_SET_GTID_PURGED_WHEN_GTID_EXECUTED_IS_NOT_EMPTY @@GLOBAL.GTID_PURGED can only be set when @@GLOBAL.GTID_EXECUTED is empty.ER_CANT_SET_GTID_PURGED_WHEN_OWNED_GTIDS_IS_NOT_EMPTY @@GLOBAL.GTID_PURGED can only be set when there are no ongoing transactions (not even in other clients).ER_GTID_PURGED_WAS_CHANGED @@GLOBAL.GTID_PURGED was changed from '%s' to '%s'.ER_GTID_EXECUTED_WAS_CHANGED @@GLOBAL.GTID_EXECUTED was changed from '%s' to '%s'.ER_BINLOG_STMT_MODE_AND_NO_REPL_TABLES Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT, and both replicated and non replicated tables are written to.ER_ALTER_OPERATION_NOT_SUPPORTED %s is not supported for this operation. Try %s.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON %s is not supported. Reason: %s. Try %s.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COPY COPY algorithm requires a lockER_ALTER_OPERATION_NOT_SUPPORTED_REASON_PARTITION Partition specific operations do not yet support LOCK/ALGORITHMER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_RENAME Columns participating in a foreign key are renamedER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE Cannot change column type INPLACEER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_CHECK Adding foreign keys needs foreign_key_checks=OFFER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOPK Dropping a primary key is not allowed without also adding a new primary keyER_ALTER_OPERATION_NOT_SUPPORTED_REASON_AUTOINC Adding an auto-increment column requires a lockER_ALTER_OPERATION_NOT_SUPPORTED_REASON_HIDDEN_FTS Cannot replace hidden FTS_DOC_ID with a user-visible oneER_ALTER_OPERATION_NOT_SUPPORTED_REASON_CHANGE_FTS Cannot drop or rename FTS_DOC_IDER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FTS Fulltext index creation requires a lockER_DUP_UNKNOWN_IN_INDEX Duplicate entry for key '%s'ER_IDENT_CAUSES_TOO_LONG_PATH Long database name and identifier for object resulted in path length exceeding %d characters. Path: '%s'.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOT_NULL cannot silently convert NULL values, as required in this SQL_MODEER_MUST_CHANGE_PASSWORD_LOGIN Your password has expired. To log in you must change it using a client that supports expired passwords.ER_ROW_IN_WRONG_PARTITION Found a row in wrong partition %sER_MTA_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX Cannot schedule event %s, relay-log name %s, position %s to Worker thread because its size %lu exceeds %lu of replica_pending_jobs_size_max.ER_BINLOG_LOGICAL_CORRUPTION The binary log file '%s' is logically corrupted: %sER_WARN_PURGE_LOG_IN_USE file %s was not purged because it was being read by %d thread(s), purged only %d out of %d files.ER_WARN_PURGE_LOG_IS_ACTIVE file %s was not purged because it is the active log file.ER_AUTO_INCREMENT_CONFLICT Auto-increment value in UPDATE conflicts with internally generated valuesWARN_ON_BLOCKHOLE_IN_RBR Row events are not logged for %s statements that modify BLACKHOLE tables in row format. Table(s): '%s'ER_REPLICA_CM_INIT_REPOSITORY Replica failed to initialize connection metadata structure from the repositoryER_REPLICA_AM_INIT_REPOSITORY Replica failed to initialize applier metadata structure from the repositoryER_ACCESS_DENIED_CHANGE_USER_ERROR Access denied trying to change to user '%s'@'%s' (using password: %s). Disconnecting.ER_INNODB_READ_ONLY InnoDB is in read only mode.ER_STOP_REPLICA_SQL_THREAD_TIMEOUT STOP REPLICA command execution is incomplete: Replica SQL thread got the stop signal, thread is busy, SQL thread will stop once the current task is complete.ER_STOP_REPLICA_IO_THREAD_TIMEOUT STOP REPLICA command execution is incomplete: Replica IO thread got the stop signal, thread is busy, IO thread will stop once the current task is complete.ER_TABLE_CORRUPT Operation cannot be performed. The table '%s.%s' is missing, corrupt or contains bad data.ER_TEMP_FILE_WRITE_FAILURE Temporary file write failure.ER_INNODB_FT_AUX_NOT_HEX_ID Upgrade index name failed, please use create index(alter table) algorithm copy to rebuild index.ER_OLD_TEMPORALS_UPGRADED TIME/TIMESTAMP/DATETIME columns of old format have been upgraded to the new format.ER_INNODB_FORCED_RECOVERY Operation not allowed when innodb_force_recovery > 0.ER_AES_INVALID_IV The initialization vector supplied to %s is too short. Must be at least %d bytes longER_PLUGIN_CANNOT_BE_UNINSTALLED Plugin '%s' cannot be uninstalled now. %sER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_ASSIGNED_GTID Cannot execute statement because it needs to be written to the binary log as multiple statements, and this is not allowed when @@SESSION.GTID_NEXT == 'UUID:N…ER_REPLICA_HAS_MORE_GTIDS_THAN_SOURCE Replica has more GTIDs than the source has, using the source's SERVER_UUID. This may indicate that the the last binary log file was truncated or lost, e.g.,…ER_MISSING_KEY The table '%s.%s' does not have the necessary key(s) defined on it. Please check the table definition and create index(s) accordingly.WARN_NAMED_PIPE_ACCESS_EVERYONE Setting named_pipe_full_access_group='%s' is insecure. Consider using a Windows group with fewer members.ER_FILE_CORRUPT File %s is corruptedER_ERROR_ON_SOURCE Query partially completed on the source (error on source: %d) and was aborted. There is a chance that your source is inconsistent at this point. If you are s…ER_STORAGE_ENGINE_NOT_LOADED Storage engine for table '%s'.'%s' is not loaded.ER_GET_STACKED_DA_WITHOUT_ACTIVE_HANDLER GET STACKED DIAGNOSTICS when handler not activeER_WARN_LEGACY_SYNTAX_CONVERTED %s is no longer supported. The statement was converted to %s.ER_BINLOG_UNSAFE_FULLTEXT_PLUGIN Statement is unsafe because it uses a fulltext parser plugin which may not return the same value on the replica.ER_CANNOT_DISCARD_TEMPORARY_TABLE Cannot DISCARD/IMPORT tablespace associated with temporary tableER_FK_DEPTH_EXCEEDED Foreign key cascade delete/update exceeds max depth of %d.ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE_V2 The column count of %s.%s is wrong. Expected %d, found %d. Created with MySQL %d, now running %d. Please perform the MySQL upgrade procedure.ER_WARN_TRIGGER_DOESNT_HAVE_CREATED Trigger %s.%s.%s does not have CREATED attribute.ER_REFERENCED_TRG_DOES_NOT_EXIST Referenced trigger '%s' for the given action time and event type does not exist.ER_EXPLAIN_NOT_SUPPORTED EXPLAIN FOR CONNECTION command is supported only for SELECT/UPDATE/INSERT/DELETE/REPLACEER_INVALID_FIELD_SIZE Invalid size for column '%s'.ER_MISSING_HA_CREATE_OPTION Table storage engine '%s' found required create option missingER_ENGINE_OUT_OF_MEMORY Out of memory in storage engine '%s'.ER_PASSWORD_EXPIRE_ANONYMOUS_USER The password for anonymous user cannot be expired.ER_REPLICA_SQL_THREAD_MUST_STOP This operation cannot be performed with a running replica sql thread; run STOP REPLICA SQL_THREAD firstER_NO_FT_MATERIALIZED_SUBQUERY Cannot create FULLTEXT index on materialized subqueryER_INNODB_UNDO_LOG_FULL Undo Log error: %sER_INVALID_ARGUMENT_FOR_LOGARITHM Invalid argument for logarithmER_REPLICA_CHANNEL_IO_THREAD_MUST_STOP This operation cannot be performed with a running replica io thread; run STOP REPLICA IO_THREAD FOR CHANNEL '%s' first.ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO This operation may not be safe when the replica has temporary tables. The tables will be kept open until the server restarts or until the tables are deleted…ER_WARN_ONLY_SOURCE_LOG_FILE_NO_POS CHANGE REPLICATION SOURCE TO with a SOURCE_LOG_FILE clause but no SOURCE_LOG_POS clause may not be safe. The old position value may not be valid for the new…ER_QUERY_TIMEOUT Query execution was interrupted, maximum statement execution time exceededER_NON_RO_SELECT_DISABLE_TIMER Select is not a read only statement, disabling timerER_DUP_LIST_ENTRY Duplicate entry '%s'.ER_AGGREGATE_ORDER_FOR_UNION Expression #%u of ORDER BY contains aggregate function and applies to a UNION, EXCEPT or INTERSECTER_AGGREGATE_ORDER_NON_AGG_QUERY Expression #%u of ORDER BY contains aggregate function and applies to the result of a non-aggregated queryER_REPLICA_WORKER_STOPPED_PREVIOUS_THD_ERROR Replica worker has stopped after at least one previous worker encountered an error when replica-preserve-commit-order was enabled. To preserve commit order,…ER_DONT_SUPPORT_REPLICA_PRESERVE_COMMIT_ORDER replica_preserve_commit_order is not supported %s.ER_SERVER_OFFLINE_MODE The server is currently in offline modeER_GIS_DIFFERENT_SRIDS Binary geometry function %s given two geometries of different srids: %u and %u, which should have been identical.ER_GIS_UNSUPPORTED_ARGUMENT Calling geometry function %s with unsupported types of arguments.ER_GIS_UNKNOWN_ERROR Unknown GIS error occurred in function %s.ER_GIS_UNKNOWN_EXCEPTION Unknown exception caught in GIS function %s.ER_GIS_INVALID_DATA Invalid GIS data provided to function %s.ER_BOOST_GEOMETRY_EMPTY_INPUT_EXCEPTION The geometry has no data in function %s.ER_BOOST_GEOMETRY_CENTROID_EXCEPTION Unable to calculate centroid because geometry is empty in function %s.ER_BOOST_GEOMETRY_OVERLAY_INVALID_INPUT_EXCEPTION Geometry overlay calculation error: geometry data is invalid in function %s.ER_BOOST_GEOMETRY_TURN_INFO_EXCEPTION Geometry turn info calculation error: geometry data is invalid in function %s.ER_BOOST_GEOMETRY_SELF_INTERSECTION_POINT_EXCEPTION Analysis procedures of intersection points interrupted unexpectedly in function %s.ER_BOOST_GEOMETRY_UNKNOWN_EXCEPTION Unknown exception thrown in function %s.ER_STD_BAD_ALLOC_ERROR Memory allocation error: %s in function %s.ER_STD_DOMAIN_ERROR Domain error: %s in function %s.ER_STD_LENGTH_ERROR Length error: %s in function %s.ER_STD_INVALID_ARGUMENT Invalid argument error: %s in function %s.ER_STD_OUT_OF_RANGE_ERROR Out of range error: %s in function %s.ER_STD_OVERFLOW_ERROR Overflow error: %s in function %s.ER_STD_RANGE_ERROR Range error: %s in function %s.ER_STD_UNDERFLOW_ERROR Underflow error: %s in function %s.ER_STD_LOGIC_ERROR Logic error: %s in function %s.ER_STD_RUNTIME_ERROR Runtime error: %s in function %s.ER_STD_UNKNOWN_EXCEPTION Unknown exception: %s in function %s.ER_GIS_DATA_WRONG_ENDIANESS Geometry byte string must be little endian.ER_CHANGE_SOURCE_PASSWORD_LENGTH The password provided for the replication user exceeds the maximum length of 32 charactersER_USER_LOCK_WRONG_NAME Incorrect user-level lock name '%s'. The name is empty, NULL, or can not be expressed in the current character-set.ER_USER_LOCK_DEADLOCK Deadlock found when trying to get user-level lock; try rolling back transaction/releasing locks and restarting lock acquisition.ER_REPLACE_INACCESSIBLE_ROWS REPLACE cannot be executed as it requires deleting rows that are not in the viewER_ALTER_OPERATION_NOT_SUPPORTED_REASON_GIS Do not support online operation on table with GIS indexER_ILLEGAL_USER_VAR User variable name '%s' is illegalER_GTID_MODE_OFF Cannot %s when GTID_MODE = OFF.ER_INCORRECT_TYPE Incorrect type for argument %s in function %s.ER_FIELD_IN_ORDER_NOT_SELECT Expression #%u of ORDER BY clause is not in SELECT list, references column '%s' which is not in SELECT list; this is incompatible with %sER_AGGREGATE_IN_ORDER_NOT_SELECT Expression #%u of ORDER BY clause is not in SELECT list, contains aggregate function; this is incompatible with %sER_INVALID_RPL_WILD_TABLE_FILTER_PATTERN Supplied filter list contains a value which is not in the required format 'db_pattern.table_pattern'ER_NET_OK_PACKET_TOO_LARGE OK packet too largeER_INVALID_JSON_DATA Invalid JSON data provided to function %s: %sER_INVALID_GEOJSON_MISSING_MEMBER Invalid GeoJSON data provided to function %s: Missing required member '%s'ER_INVALID_GEOJSON_WRONG_TYPE Invalid GeoJSON data provided to function %s: Member '%s' must be of type '%s'ER_INVALID_GEOJSON_UNSPECIFIED Invalid GeoJSON data provided to function %sER_DIMENSION_UNSUPPORTED Unsupported number of coordinate dimensions in function %s: Found %u, expected %uER_REPLICA_CHANNEL_DOES_NOT_EXIST Replica channel '%s' does not exist.ER_REPLICA_CHANNEL_NAME_INVALID_OR_TOO_LONG Couldn't create channel: Channel name is either invalid or too long.ER_REPLICA_NEW_CHANNEL_WRONG_REPOSITORY To have multiple channels, repository cannot be of type FILE; Please check the repository configuration and convert them to TABLE.ER_REPLICA_MULTIPLE_CHANNELS_CMD Multiple channels exist on the replica. Please provide channel name as an argument.ER_REPLICA_MAX_CHANNELS_EXCEEDED Maximum number of replication channels allowed exceeded.ER_REPLICA_CHANNEL_MUST_STOP This operation cannot be performed with running replication threads; run STOP REPLICA FOR CHANNEL '%s' firstER_REPLICA_CHANNEL_NOT_RUNNING This operation requires running replication threads; configure replica and run START REPLICA FOR CHANNEL '%s'ER_REPLICA_CHANNEL_WAS_RUNNING Replication thread(s) for channel '%s' are already runnning.ER_REPLICA_CHANNEL_WAS_NOT_RUNNING Replication thread(s) for channel '%s' are already stopped.ER_REPLICA_CHANNEL_SQL_THREAD_MUST_STOP This operation cannot be performed with a running replica sql thread; run STOP REPLICA SQL_THREAD FOR CHANNEL '%s' first.ER_REPLICA_CHANNEL_SQL_SKIP_COUNTER When sql_replica_skip_counter > 0, it is not allowed to start more than one SQL thread by using 'START REPLICA [SQL_THREAD]'. Value of sql_replica_skip_count…ER_WRONG_FIELD_WITH_GROUP_V2 Expression #%u of %s is not in GROUP BY clause and contains nonaggregated column '%s' which is not functionally dependent on columns in GROUP BY clause; this…ER_MIX_OF_GROUP_FUNC_AND_FIELDS_V2 In aggregated query without GROUP BY, expression #%u of %s contains nonaggregated column '%s'; this is incompatible with sql_mode=only_full_group_byER_WARN_DEPRECATED_SYSVAR_UPDATE Updating '%s' is deprecated. It will be made read-only in a future release.ER_WARN_DEPRECATED_SQLMODE Changing sql mode '%s' is deprecated. It will be removed in a future release.ER_CANNOT_LOG_PARTIAL_DROP_DATABASE_WITH_GTID DROP DATABASE failed; some tables may have been dropped but the database directory remains. The GTID has not been added to GTID_EXECUTED and the statement wa…ER_GROUP_REPLICATION_CONFIGURATION The server is not configured properly to be an active member of the group. Please see more details on error log.ER_GROUP_REPLICATION_RUNNING The START GROUP_REPLICATION command failed since the group is already running.ER_GROUP_REPLICATION_APPLIER_INIT_ERROR The START GROUP_REPLICATION command failed as the applier module failed to start.ER_GROUP_REPLICATION_STOP_APPLIER_THREAD_TIMEOUT The STOP GROUP_REPLICATION command execution is incomplete: The applier thread got the stop signal while it was busy. The applier thread will stop once the c…ER_GROUP_REPLICATION_COMMUNICATION_LAYER_SESSION_ERROR The START GROUP_REPLICATION command failed as there was an error when initializing the group communication layer.ER_GROUP_REPLICATION_COMMUNICATION_LAYER_JOIN_ERROR The START GROUP_REPLICATION command failed as there was an error when joining the communication group.ER_BEFORE_DML_VALIDATION_ERROR The table does not comply with the requirements by an external plugin.ER_PREVENTS_VARIABLE_WITHOUT_RBR Cannot change the value of variable %s without binary log format as ROW.ER_RUN_HOOK_ERROR Error on observer while running replication hook '%s'.ER_TRANSACTION_ROLLBACK_DURING_COMMIT Plugin instructed the server to rollback the current transaction.ER_GENERATED_COLUMN_FUNCTION_IS_NOT_ALLOWED Expression of generated column '%s' contains a disallowed function.ER_UNSUPPORTED_ALTER_INPLACE_ON_VIRTUAL_COLUMN INPLACE ADD or DROP of virtual columns cannot be combined with other ALTER TABLE actionsER_WRONG_FK_OPTION_FOR_GENERATED_COLUMN Cannot define foreign key with %s clause on a generated column.ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN The value specified for generated column '%s' in table '%s' is not allowed.ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN '%s' is not supported for generated columns.ER_GENERATED_COLUMN_NON_PRIOR Generated column can refer only to generated columns defined prior to it.ER_DEPENDENT_BY_GENERATED_COLUMN Column '%s' has a generated column dependency.ER_GENERATED_COLUMN_REF_AUTO_INC Generated column '%s' cannot refer to auto-increment column.ER_FEATURE_NOT_AVAILABLE The '%s' feature is not available; you need to remove '%s' or use MySQL built with '%s'ER_CANT_SET_GTID_MODE SET @@GLOBAL.GTID_MODE = %s is not allowed because %s.ER_CANT_USE_AUTO_POSITION_WITH_GTID_MODE_OFF The replication receiver thread%s cannot start in AUTO_POSITION mode: this server uses @@GLOBAL.GTID_MODE = OFF.ER_CANT_ENFORCE_GTID_CONSISTENCY_WITH_ONGOING_GTID_VIOLATING_TX Cannot set ENFORCE_GTID_CONSISTENCY = ON because there are ongoing transactions that violate GTID consistency.ER_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_GTID_VIOLATING_TX There are ongoing transactions that violate GTID consistency.ER_ACCOUNT_HAS_BEEN_LOCKED Access denied for user '%s'@'%s'. Account is locked.ER_WRONG_TABLESPACE_NAME Incorrect tablespace name `%s`ER_TABLESPACE_IS_NOT_EMPTY Tablespace `%s` is not empty.ER_WRONG_FILE_NAME Incorrect File Name '%s'.ER_BOOST_GEOMETRY_INCONSISTENT_TURNS_EXCEPTION Inconsistent intersection points.ER_WARN_OPTIMIZER_HINT_SYNTAX_ERROR Optimizer hint syntax errorER_WARN_BAD_MAX_EXECUTION_TIME Unsupported MAX_EXECUTION_TIMEER_WARN_UNSUPPORTED_MAX_EXECUTION_TIME MAX_EXECUTION_TIME hint is supported by top-level standalone SELECT statements onlyER_WARN_CONFLICTING_HINT Hint %s is ignored as conflicting/duplicatedER_WARN_UNKNOWN_QB_NAME Query block name %s is not found for %s hintER_UNRESOLVED_HINT_NAME Unresolved name %s for %s hintER_WARN_ON_MODIFYING_GTID_EXECUTED_TABLE Please do not modify the %s table. This is a mysql internal system table to store GTIDs for committed transactions. Modifying it can lead to an inconsistent…ER_PLUGGABLE_PROTOCOL_COMMAND_NOT_SUPPORTED Command not supported by pluggable protocolsER_LOCKING_SERVICE_WRONG_NAME Incorrect locking service lock name '%s'.ER_LOCKING_SERVICE_DEADLOCK Deadlock found when trying to get locking service lock; try releasing locks and restarting lock acquisition.ER_LOCKING_SERVICE_TIMEOUT Service lock wait timeout exceeded.ER_GIS_MAX_POINTS_IN_GEOMETRY_OVERFLOWED Parameter %s exceeds the maximum number of points in a geometry (%lu) in function %s.ER_SQL_MODE_MERGED 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a futur…ER_VTOKEN_PLUGIN_TOKEN_MISMATCH Version token mismatch for %.*s. Correct value %.*sER_VTOKEN_PLUGIN_TOKEN_NOT_FOUND Version token %.*s not found.ER_CANT_SET_VARIABLE_WHEN_OWNING_GTID Variable %s cannot be changed by a client that owns a GTID. The client owns %s. Ownership is released on COMMIT or ROLLBACK.ER_REPLICA_CHANNEL_OPERATION_NOT_ALLOWED %s cannot be performed on channel '%s'.ER_INVALID_JSON_TEXT Invalid JSON text: "%s" at position %u in value for column '%s'.ER_INVALID_JSON_TEXT_IN_PARAM Invalid JSON text in argument %u to function %s: "%s" at position %u.%sER_INVALID_JSON_BINARY_DATA The JSON binary value contains invalid data.ER_INVALID_JSON_PATH Invalid JSON path expression. The error is around character position %u.%sER_INVALID_JSON_CHARSET Cannot create a JSON value from a string with CHARACTER SET '%s'.ER_INVALID_JSON_CHARSET_IN_FUNCTION Invalid JSON character data provided to function %s: '%s'; utf8 is required.ER_INVALID_TYPE_FOR_JSON Invalid data type for JSON data in argument %u to function %s; a JSON string or JSON type is required.ER_INVALID_CAST_TO_JSON Cannot CAST value to JSON.ER_INVALID_JSON_PATH_CHARSET A path expression must be encoded in the utf8 character set. The path expression '%s' is encoded in character set '%s'.ER_INVALID_JSON_PATH_WILDCARD In this situation, path expressions may not contain the * and ** tokens or an array range.ER_JSON_VALUE_TOO_BIG The JSON value is too big to be stored in a JSON column.ER_JSON_KEY_TOO_BIG The JSON object contains a key name that is too long.ER_JSON_USED_AS_KEY JSON column '%s' supports indexing only via generated columns on a specified JSON path.ER_JSON_VACUOUS_PATH The path expression '$' is not allowed in this context.ER_JSON_BAD_ONE_OR_ALL_ARG The oneOrAll argument to %s may take these values: 'one' or 'all'.ER_NUMERIC_JSON_VALUE_OUT_OF_RANGE Out of range JSON value for CAST to %s%s from column %s at row %ldER_INVALID_JSON_VALUE_FOR_CAST Invalid JSON value for CAST to %s%s from column %s at row %ldER_JSON_DOCUMENT_TOO_DEEP The JSON document exceeds the maximum depth.ER_JSON_DOCUMENT_NULL_KEY JSON documents may not contain NULL member names.ER_SECURE_TRANSPORT_REQUIRED Connections using insecure transport are prohibited while --require_secure_transport=ON.ER_NO_SECURE_TRANSPORTS_CONFIGURED No secure transports (SSL or Shared Memory) are configured, unable to set --require_secure_transport=ON.ER_DISABLED_STORAGE_ENGINE Storage engine %s is disabled (Table creation is disallowed).ER_USER_DOES_NOT_EXIST Authorization ID %s does not exist.ER_USER_ALREADY_EXISTS Authorization ID %s already exists.ER_AUDIT_API_ABORT Aborted by Audit API ('%s';%d).ER_INVALID_JSON_PATH_ARRAY_CELL A path expression is not a path to a cell in an array.ER_BUFPOOL_RESIZE_INPROGRESS Another buffer pool resize is already in progress.ER_FEATURE_DISABLED_SEE_DOC The '%s' feature is disabled; see the documentation for '%s'ER_SERVER_ISNT_AVAILABLE Server isn't availableER_SESSION_WAS_KILLED Session was killedER_CAPACITY_EXCEEDED Memory capacity of %llu bytes for '%s' exceeded. %sER_CAPACITY_EXCEEDED_IN_RANGE_OPTIMIZER Range optimization was not done for this query.ER_CANT_WAIT_FOR_EXECUTED_GTID_SET_WHILE_OWNING_A_GTID The client holds ownership of the GTID %s. Therefore, WAIT_FOR_EXECUTED_GTID_SET cannot wait for this GTID.ER_CANNOT_ADD_FOREIGN_BASE_COL_VIRTUAL Cannot add foreign key on the base column of indexed virtual column.ER_CANNOT_CREATE_VIRTUAL_INDEX_CONSTRAINT Cannot create index on virtual column whose base column has foreign constraint.ER_ERROR_ON_MODIFYING_GTID_EXECUTED_TABLE Please do not modify the %s table with an XA transaction. This is an internal system table used to store GTIDs for committed transactions. Although modifying…ER_LOCK_REFUSED_BY_ENGINE Lock acquisition refused by storage engine.ER_UNSUPPORTED_ALTER_ONLINE_ON_VIRTUAL_COLUMN ADD COLUMN col...VIRTUAL, ADD INDEX(col)ER_MASTER_KEY_ROTATION_NOT_SUPPORTED_BY_SE Master key rotation is not supported by storage engine.ER_MASTER_KEY_ROTATION_BINLOG_FAILED Write to binlog failed. However, master key rotation has been completed successfully.ER_MASTER_KEY_ROTATION_SE_UNAVAILABLE Storage engine is not available.ER_TABLESPACE_CANNOT_ENCRYPT This tablespace can't be encrypted.ER_INVALID_ENCRYPTION_OPTION Invalid encryption option.ER_CANNOT_FIND_KEY_IN_KEYRING Can't find master key from keyring, please check in the server log if a keyring is loaded and initialized successfully.ER_CAPACITY_EXCEEDED_IN_PARSER Parser bailed out for this query.ER_UNSUPPORTED_ALTER_ENCRYPTION_INPLACE Cannot alter encryption attribute by inplace algorithm.ER_KEYRING_UDF_KEYRING_SERVICE_ERROR Function '%s' failed because underlying keyring service returned an error. Please check if a keyring is installed and that provided arguments are valid for t…ER_USER_COLUMN_OLD_LENGTH It seems that your db schema is old. The %s column is 77 characters long and should be 93 characters long. Please perform the MySQL upgrade procedure.ER_CANT_RESET_SOURCE RESET BINARY LOGS AND GTIDS is not allowed because %s.ER_GROUP_REPLICATION_MAX_GROUP_SIZE The START GROUP_REPLICATION command failed since the group already has 9 members.ER_CANNOT_ADD_FOREIGN_BASE_COL_STORED Cannot add foreign key on the base column of stored column.ER_TABLE_REFERENCED Cannot complete the operation because table is referenced by another connection.ER_XA_RETRY The resource manager is not able to commit the transaction branch at this time. Please retry later.ER_KEYRING_AWS_UDF_AWS_KMS_ERROR Function %s failed due to: %s.ER_BINLOG_UNSAFE_XA Statement is unsafe because it is being used inside a XA transaction. Concurrent XA transactions may deadlock on replicas when replicated using statements.ER_UDF_ERROR %s UDF failed; %sER_KEYRING_MIGRATION_FAILURE Can not perform keyring migration : %sER_KEYRING_ACCESS_DENIED_ERROR Access denied; you need %s privileges for this operationER_KEYRING_MIGRATION_STATUS Keyring migration %s.ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_VALUE Invalid "max_array_length" argument value.ER_WRITE_SET_EXCEEDS_LIMIT The size of writeset data for the current transaction exceeds a limit imposed by an external component. If using Group Replication check 'group_replication_t…ER_AES_INVALID_KDF_NAME KDF method name is not valid. Please use hkdf or pbkdf2_hmac method nameER_AES_INVALID_KDF_ITERATIONS For KDF method pbkdf2_hmac iterations value less than 1000 or more than 65535 is not allowed due to security reasons. Please provide iterations >= 1000 and i…WARN_AES_KEY_SIZE AES key size should be %d bytes length or secure KDF methods hkdf or pbkdf2_hmac should be used, please provide exact AES key size or use KDF methods for bet…ER_AES_INVALID_KDF_OPTION_SIZE KDF option size is invalid, please provide valid size < %d bytes and not NULLER_UNSUPPORT_COMPRESSED_TEMPORARY_TABLE CREATE TEMPORARY TABLE is not allowed with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.ER_ACL_OPERATION_FAILED The ACL operation failed due to the following error from SE: errcode %d - %sER_UNSUPPORTED_INDEX_ALGORITHM This storage engine does not support the %s index algorithm, storage engine default was used instead.ER_NO_SUCH_DB Database '%s' doesn't existER_TOO_BIG_ENUM Too many enumeration values for column %s.ER_TOO_LONG_SET_ENUM_VALUE Too long enumeration/set value for column %s.ER_INVALID_DD_OBJECT %s dictionary object is invalid. (%s)ER_UPDATING_DD_TABLE Failed to update %s dictionary object.ER_INVALID_DD_OBJECT_ID Dictionary object id (%lu) does not exist.ER_INVALID_DD_OBJECT_NAME Dictionary object name '%s' is invalid. (%s)ER_TABLESPACE_MISSING_WITH_NAME Tablespace %s doesn't exist.ER_TOO_LONG_ROUTINE_COMMENT Comment for routine '%s' is too long (max = %lu)ER_SP_LOAD_FAILED Failed to load routine '%s'.ER_INVALID_BITWISE_OPERANDS_SIZE Binary operands of bitwise operators must be of equal lengthER_INVALID_BITWISE_AGGREGATE_OPERANDS_SIZE Aggregate bitwise functions cannot accept arguments longer than 511 bytes; consider using the SUBSTRING() functionER_WARN_UNSUPPORTED_HINT Hints aren't supported in %sER_UNEXPECTED_GEOMETRY_TYPE %s value is a geometry of unexpected type %s in %s.ER_SRS_PARSE_ERROR Can't parse the spatial reference system definition of SRID %u.ER_SRS_PROJ_PARAMETER_MISSING The spatial reference system definition for SRID %u does not specify the mandatory %s (EPSG %u) projection parameter.ER_WARN_SRS_NOT_FOUND There's no spatial reference system with SRID %u.ER_SRS_NOT_CARTESIAN Function %s is only defined for Cartesian spatial reference systems, but one of its arguments is in SRID %u, which is not Cartesian.ER_SRS_NOT_CARTESIAN_UNDEFINED Function %s is only defined for Cartesian spatial reference systems, but one of its arguments is in SRID %u, which has not been defined.ER_PK_INDEX_CANT_BE_INVISIBLE A primary key index cannot be invisibleER_UNKNOWN_AUTHID Unknown authorization ID `%s`@`%s`ER_FAILED_ROLE_GRANT Failed to grant %s` to %sER_OPEN_ROLE_TABLES Failed to open the security system tablesER_FAILED_DEFAULT_ROLES Failed to set default rolesER_COMPONENTS_NO_SCHEME Cannot find schema in specified URN: '%s'.ER_COMPONENTS_NO_SCHEME_SERVICE Cannot acquire scheme load service implementation for schema '%s' in specified URN: '%s'.ER_COMPONENTS_CANT_LOAD Cannot load component from specified URN: '%s'.ER_ROLE_NOT_GRANTED `%s`@`%s` is not granted to `%s`@`%s`ER_FAILED_REVOKE_ROLE Could not revoke role from `%s`@`%s`ER_RENAME_ROLE Renaming of a role identifier is forbiddenER_COMPONENTS_CANT_ACQUIRE_SERVICE_IMPLEMENTATION Cannot acquire specified service implementation: '%s'.ER_COMPONENTS_CANT_SATISFY_DEPENDENCY Cannot satisfy dependency for service '%s' required by component '%s'.ER_COMPONENTS_LOAD_CANT_REGISTER_SERVICE_IMPLEMENTATION Cannot register service implementation '%s' provided by component '%s'.ER_COMPONENTS_LOAD_CANT_INITIALIZE Initialization method provided by component '%s' failed.ER_COMPONENTS_UNLOAD_NOT_LOADED Component specified by URN '%s' to unload has not been loaded before.ER_COMPONENTS_UNLOAD_CANT_DEINITIALIZE De-initialization method provided by component '%s' failed.ER_COMPONENTS_CANT_RELEASE_SERVICE Release of previously acquired service implementation failed.ER_COMPONENTS_UNLOAD_CANT_UNREGISTER_SERVICE Unregistration of service implementation '%s' provided by component '%s' failed during unloading of the component.ER_COMPONENTS_CANT_UNLOAD Cannot unload component from specified URN: '%s'.ER_WARN_UNLOAD_THE_NOT_PERSISTED The Persistent Dynamic Loader was used to unload a component '%s', but it was not used to load that component before.ER_COMPONENT_TABLE_INCORRECT The mysql.component table is missing or has an incorrect definition.ER_COMPONENT_MANIPULATE_ROW_FAILED Failed to manipulate component '%s' persistence data. Error code %d from storage engine.ER_COMPONENTS_UNLOAD_DUPLICATE_IN_GROUP The component with specified URN: '%s' was specified in group more than once.ER_CANT_SET_GTID_PURGED_DUE_SETS_CONSTRAINTS @@GLOBAL.GTID_PURGED cannot be changed: %sER_CANNOT_LOCK_USER_MANAGEMENT_CACHES Can not lock user management caches for processing.ER_SRS_NOT_FOUND There's no spatial reference system with SRID %u.ER_VARIABLE_NOT_PERSISTED Variables cannot be persisted. Please retry.ER_IS_QUERY_INVALID_CLAUSE Information schema queries do not support the '%s' clause.ER_UNABLE_TO_STORE_STATISTICS Unable to store dynamic %s statistics into data dictionary.ER_NO_SYSTEM_SCHEMA_ACCESS Access to system schema '%s' is rejected.ER_NO_SYSTEM_TABLESPACE_ACCESS Access to system tablespace '%s' is rejected.ER_NO_SYSTEM_TABLE_ACCESS Access to %s '%s.%s' is rejected.ER_NO_SYSTEM_TABLE_ACCESS_FOR_DICTIONARY_TABLE data dictionary tableER_NO_SYSTEM_TABLE_ACCESS_FOR_SYSTEM_TABLE system tableER_NO_SYSTEM_TABLE_ACCESS_FOR_TABLE tableER_INVALID_OPTION_KEY Invalid option key '%s' in function %s.ER_INVALID_OPTION_VALUE Invalid value '%s' for option '%s' in function '%s'.ER_INVALID_OPTION_KEY_VALUE_PAIR The string '%s' is not a valid key %c value pair in function %s.ER_INVALID_OPTION_START_CHARACTER The options argument in function %s starts with the invalid character '%c'.ER_INVALID_OPTION_END_CHARACTER The options argument in function %s ends with the invalid character '%c'.ER_INVALID_OPTION_CHARACTERS The options argument in function %s contains the invalid character sequence '%s'.ER_DUPLICATE_OPTION_KEY Duplicate option key '%s' in funtion '%s'.ER_WARN_SRS_NOT_FOUND_AXIS_ORDER There's no spatial reference system with SRID %u. The axis order is unknown.ER_NO_ACCESS_TO_NATIVE_FCT Access to native function '%s' is rejected.ER_RESET_SOURCE_TO_VALUE_OUT_OF_RANGE The requested value '%llu' for the next binary log index is out of range. Please use a value between '1' and '%lu'.ER_UNRESOLVED_TABLE_LOCK Unresolved table name %s in locking clause.ER_DUPLICATE_TABLE_LOCK Table %s appears in multiple locking clauses.ER_BINLOG_UNSAFE_SKIP_LOCKED Statement is unsafe because it uses SKIP LOCKED. The set of inserted values is non-deterministic.ER_BINLOG_UNSAFE_NOWAIT Statement is unsafe because it uses NOWAIT. Whether the command will succeed or fail is not deterministic.ER_LOCK_NOWAIT Statement aborted because lock(s) could not be acquired immediately and NOWAIT is set.ER_CTE_RECURSIVE_REQUIRES_UNION Recursive Common Table Expression '%s' should contain a UNIONER_CTE_RECURSIVE_REQUIRES_NONRECURSIVE_FIRST Recursive Common Table Expression '%s' should have one or more non-recursive query blocks followed by one or more recursive onesER_CTE_RECURSIVE_FORBIDS_AGGREGATION Recursive Common Table Expression '%s' can contain neither aggregation nor window functions in recursive query blockER_CTE_RECURSIVE_FORBIDDEN_JOIN_ORDER In recursive query block of Recursive Common Table Expression '%s', the recursive table must neither be in the right argument of a LEFT JOIN, nor be forced t…ER_CTE_RECURSIVE_REQUIRES_SINGLE_REFERENCE In recursive query block of Recursive Common Table Expression '%s', the recursive table must be referenced only once, and not in any subqueryER_SWITCH_TMP_ENGINE '%s' requires @@internal_tmp_disk_storage_engine=InnoDBER_WINDOW_NO_SUCH_WINDOW Window name '%s' is not defined.ER_WINDOW_CIRCULARITY_IN_WINDOW_GRAPH There is a circularity in the window dependency graph.ER_WINDOW_NO_CHILD_PARTITIONING A window which depends on another cannot define partitioning.ER_WINDOW_NO_INHERIT_FRAME Window '%s' has a frame definition, so cannot be referenced by another window.ER_WINDOW_NO_REDEFINE_ORDER_BY Window '%s' cannot inherit '%s' since both contain an ORDER BY clause.ER_WINDOW_FRAME_START_ILLEGAL Window '%s': frame start cannot be UNBOUNDED FOLLOWING.ER_WINDOW_FRAME_END_ILLEGAL Window '%s': frame end cannot be UNBOUNDED PRECEDING.ER_WINDOW_FRAME_ILLEGAL Window '%s': frame start or end is negative, NULL or of non-integral typeER_WINDOW_RANGE_FRAME_ORDER_TYPE Window '%s' with RANGE N PRECEDING/FOLLOWING frame requires exactly one ORDER BY expression, of numeric or temporal typeER_WINDOW_RANGE_FRAME_TEMPORAL_TYPE Window '%s' with RANGE frame has ORDER BY expression of datetime type. Only INTERVAL bound value allowed.ER_WINDOW_RANGE_FRAME_NUMERIC_TYPE Window '%s' with RANGE frame has ORDER BY expression of numeric type, INTERVAL bound value not allowed.ER_WINDOW_RANGE_BOUND_NOT_CONSTANT Window '%s' has a non-constant frame bound.ER_WINDOW_DUPLICATE_NAME Window '%s' is defined twice.ER_WINDOW_ILLEGAL_ORDER_BY Window '%s': ORDER BY or PARTITION BY uses legacy position indication which is not supported, use expression.ER_WINDOW_INVALID_WINDOW_FUNC_USE You cannot use the window function '%s' in this context.'ER_WINDOW_INVALID_WINDOW_FUNC_ALIAS_USE You cannot use the alias '%s' of an expression containing a window function in this context.'ER_WINDOW_NESTED_WINDOW_FUNC_USE_IN_WINDOW_SPEC You cannot nest a window function in the specification of window '%s'.ER_WINDOW_ROWS_INTERVAL_USE Window '%s': INTERVAL can only be used with RANGE frames.ER_WINDOW_NO_GROUP_ORDER_UNUSED ASC or DESC with GROUP BY isn't allowed with window functions; put ASC or DESC in ORDER BYER_WINDOW_EXPLAIN_JSON To get information about window functions use EXPLAIN FORMAT=JSONER_WINDOW_FUNCTION_IGNORES_FRAME Window function '%s' ignores the frame clause of window '%s' and aggregates over the whole partitionER_WL9236_NOW_UNUSED Windowing requires @@internal_tmp_mem_storage_engine=TempTable.ER_INVALID_NO_OF_ARGS Too many arguments for function %s: %lu; maximum allowed is %s.ER_FIELD_IN_GROUPING_NOT_GROUP_BY Argument #%u of GROUPING function is not in GROUP BYER_TOO_LONG_TABLESPACE_COMMENT Comment for tablespace '%s' is too long (max = %lu)ER_ENGINE_CANT_DROP_TABLE Storage engine can't drop table '%s'ER_ENGINE_CANT_DROP_MISSING_TABLE Storage engine can't drop table '%s' because it is missing. Use DROP TABLE IF EXISTS to remove it from data-dictionary.ER_TABLESPACE_DUP_FILENAME Duplicate file name for tablespace '%s'ER_DB_DROP_RMDIR2 Problem while dropping database. Can't remove database directory (%s). Please remove it manually.ER_IMP_NO_FILES_MATCHED No SDI files matched the pattern '%s'ER_IMP_SCHEMA_DOES_NOT_EXIST Schema '%s', referenced in SDI, does not exist.ER_IMP_TABLE_ALREADY_EXISTS Table '%s.%s', referenced in SDI, already exists.ER_IMP_INCOMPATIBLE_MYSQLD_VERSION Imported mysqld_version (%llu) is not compatible with current (%llu)ER_IMP_INCOMPATIBLE_DD_VERSION Imported dd version (%u) is not compatible with current (%u)ER_IMP_INCOMPATIBLE_SDI_VERSION Imported sdi version (%llu) is not compatible with current (%llu)ER_WARN_INVALID_HINT Invalid number of arguments for hint %sER_VAR_DOES_NOT_EXIST Variable %s does not exist in persisted config fileER_LONGITUDE_OUT_OF_RANGE Longitude %f is out of range in function %s. It must be within (%f, %f].ER_LATITUDE_OUT_OF_RANGE Latitude %f is out of range in function %s. It must be within [%f, %f].ER_NOT_IMPLEMENTED_FOR_GEOGRAPHIC_SRS %s(%s) has not been implemented for geographic spatial reference systems.ER_ILLEGAL_PRIVILEGE_LEVEL Illegal privilege level specified for %sER_NO_SYSTEM_VIEW_ACCESS Access to system view INFORMATION_SCHEMA.'%s' is rejected.ER_COMPONENT_FILTER_FLABBERGASTED The log-filter component "%s" got confused at "%s" ...ER_PART_EXPR_TOO_LONG Partitioning expression is too long.ER_UDF_DROP_DYNAMICALLY_REGISTERED DROP FUNCTION can't drop a dynamically registered user defined functionER_UNABLE_TO_STORE_COLUMN_STATISTICS Unable to store column statistics for column '%s' in table '%s'.'%s'ER_UNABLE_TO_UPDATE_COLUMN_STATISTICS Unable to update column statistics for column '%s' in table '%s'.'%s'ER_UNABLE_TO_DROP_COLUMN_STATISTICS Unable to remove column statistics for column '%s' in table '%s'.'%s'ER_UNABLE_TO_BUILD_HISTOGRAM Unable to build histogram statistics for column '%s' in table '%s'.'%s'ER_MANDATORY_ROLE The role %s is a mandatory role and can't be revoked or dropped. The restriction can be lifted by excluding the role identifier from the global variable mand…ER_MISSING_TABLESPACE_FILE Tablespace '%s' does not have a file named '%s'ER_PERSIST_ONLY_ACCESS_DENIED_ERROR Access denied; you need %s privileges for this operationER_CMD_NEED_SUPER You need the SUPER privilege for command '%s'ER_PATH_IN_DATADIR Path is within the current data directory '%s'ER_CLONE_DDL_IN_PROGRESS Concurrent DDL is performed during clone operation. Please try again.ER_CLONE_TOO_MANY_CONCURRENT_CLONES Too many concurrent clone operations. Maximum allowed - %d.ER_APPLIER_LOG_EVENT_VALIDATION_ERROR The table in transaction %s does not comply with the requirements by an external plugin.ER_CTE_MAX_RECURSION_DEPTH Recursive query aborted after %u iterations. Try increasing @@cte_max_recursion_depth to a larger value.ER_NOT_HINT_UPDATABLE_VARIABLE Variable %s cannot be set using SET_VAR hint.ER_CREDENTIALS_CONTRADICT_TO_HISTORY Cannot use these credentials for '%.*s@%.*s' because they contradict the password history policyER_WARNING_PASSWORD_HISTORY_CLAUSES_VOID Non-zero password history clauses ignored for user '%s'@'%s' as its authentication plugin %s does not support password historyER_CLIENT_DOES_NOT_SUPPORT The client doesn't support %sER_I_S_SKIPPED_TABLESPACE Tablespace '%s' was skipped since its definition is being modified by concurrent DDL statementER_TABLESPACE_ENGINE_MISMATCH Engine '%s' does not match stored engine '%s' for tablespace '%s'ER_WRONG_SRID_FOR_COLUMN The SRID of the geometry does not match the SRID of the column '%s'. The SRID of the geometry is %lu, but the SRID of the column is %lu. Consider changing th…ER_CANNOT_ALTER_SRID_DUE_TO_INDEX The SRID specification on the column '%s' cannot be changed because there is a spatial index on the column. Please remove the spatial index before altering t…ER_WARN_BINLOG_PARTIAL_UPDATES_DISABLED When %s, the option binlog_row_value_options=%s will be ignored and updates will be written in full format to binary log.ER_WARN_BINLOG_PARTIAL_UPDATES_SUGGESTS_PARTIAL_IMAGES When %s, the option binlog_row_value_options=%s will be used only for the after-image. Full values will be written in the before-image, so the saving in disk…ER_COULD_NOT_APPLY_JSON_DIFF Could not apply JSON diff in table %.*s, column %s.ER_CORRUPTED_JSON_DIFF Corrupted JSON diff for table %.*s, column %s.ER_RESOURCE_GROUP_EXISTS Resource Group '%s' existsER_RESOURCE_GROUP_NOT_EXISTS Resource Group '%s' does not exist.ER_INVALID_VCPU_ID Invalid cpu id %uER_INVALID_VCPU_RANGE Invalid VCPU range %u-%uER_INVALID_THREAD_PRIORITY Invalid thread priority value %d for %s resource group %s. Allowed range is [%d, %d].ER_DISALLOWED_OPERATION %s operation is disallowed on %sER_RESOURCE_GROUP_BUSY Resource group %s is busy.ER_RESOURCE_GROUP_DISABLED Resource group %s is disabled.ER_FEATURE_UNSUPPORTED Feature %s is unsupported (%s).ER_ATTRIBUTE_IGNORED Attribute %s is ignored (%s).ER_INVALID_THREAD_ID Invalid thread id (%llu).ER_RESOURCE_GROUP_BIND_FAILED Unable to bind resource group %s with thread id (%llu).(%s).ER_INVALID_USE_OF_FORCE_OPTION Option FORCE invalid as DISABLE option is not specified.ER_GROUP_REPLICATION_COMMAND_FAILURE The %s command encountered a failure. %sER_SDI_OPERATION_FAILED Failed to %s SDI '%s.%s' in tablespace '%s'.ER_MISSING_JSON_TABLE_VALUE Missing value for JSON_TABLE column '%s'ER_WRONG_JSON_TABLE_VALUE Can't store an array or an object in the scalar JSON_TABLE column '%s'ER_TF_MUST_HAVE_ALIAS Every table function must have an aliasER_TF_FORBIDDEN_JOIN_TYPE INNER or LEFT JOIN must be used for LATERAL references made by '%s'ER_JT_VALUE_OUT_OF_RANGE Value is out of range for JSON_TABLE's column '%s'ER_JT_MAX_NESTED_PATH More than supported %u NESTED PATHs were found in JSON_TABLE '%s'ER_PASSWORD_EXPIRATION_NOT_SUPPORTED_BY_AUTH_METHOD The selected authentication method %.*s does not support password expirationER_INVALID_GEOJSON_CRS_NOT_TOP_LEVEL Invalid GeoJSON data provided to function %s: Member 'crs' must be specified in the top level object.ER_BAD_NULL_ERROR_NOT_IGNORED Column '%s' cannot be nullWARN_USELESS_SPATIAL_INDEX The spatial index on column '%s' will not be used by the query optimizer since the column does not have an SRID attribute. Consider adding an SRID attribute…ER_DISK_FULL_NOWAIT Create table/tablespace '%s' failed, as disk is fullER_PARSE_ERROR_IN_DIGEST_FN Could not parse argument to digest function: "%s".ER_UNDISCLOSED_PARSE_ERROR_IN_DIGEST_FN Could not parse argument to digest function.ER_SCHEMA_DIR_EXISTS Schema directory '%s' already exists. This must be resolved manually (e.g. by moving the schema directory to another location).ER_SCHEMA_DIR_MISSING Schema directory '%s' does not existER_SCHEMA_DIR_CREATE_FAILED Failed to create schema directory '%s' (errno: %d - %s)ER_SCHEMA_DIR_UNKNOWN Schema '%s' does not exist, but schema directory '%s' was found. This must be resolved manually (e.g. by moving the schema directory to another location).ER_ONLY_IMPLEMENTED_FOR_SRID_0_AND_4326 Function %s is only defined for SRID 0 and SRID 4326.ER_REGEXP_BUFFER_OVERFLOW The result string is larger than the result buffer.ER_REGEXP_ILLEGAL_ARGUMENT Illegal argument to a regular expression.ER_REGEXP_INDEX_OUTOFBOUNDS_ERROR Index out of bounds in regular expression search.ER_REGEXP_INTERNAL_ERROR Internal error in the regular expression library.ER_REGEXP_RULE_SYNTAX Syntax error in regular expression on line %u, character %u.ER_REGEXP_BAD_ESCAPE_SEQUENCE Unrecognized escape sequence in regular expression.ER_REGEXP_UNIMPLEMENTED The regular expression contains a feature that is not implemented in this library version.ER_REGEXP_MISMATCHED_PAREN Mismatched parenthesis in regular expression.ER_REGEXP_BAD_INTERVAL Incorrect description of a {min,max} interval.ER_REGEXP_MAX_LT_MIN The maximum is less than the minumum in a {min,max} interval.ER_REGEXP_INVALID_BACK_REF Invalid back-reference in regular expression.ER_REGEXP_LOOK_BEHIND_LIMIT The look-behind assertion exceeds the limit in regular expression.ER_REGEXP_MISSING_CLOSE_BRACKET The regular expression contains an unclosed bracket expression.ER_REGEXP_INVALID_RANGE The regular expression contains an [x-y] character range where x comes after y.ER_REGEXP_STACK_OVERFLOW Overflow in the regular expression backtrack stack.ER_REGEXP_TIME_OUT Timeout exceeded in regular expression match.ER_REGEXP_PATTERN_TOO_BIG The regular expression pattern exceeds limits on size or complexity.ER_CANT_SET_ERROR_LOG_SERVICE Value for %s got confusing at or around "%s". Syntax may be wrong, component may not be INSTALLed, or a component that does not support instances may be list…ER_EMPTY_PIPELINE_FOR_ERROR_LOG_SERVICE Setting an empty %s pipeline disables error logging!ER_COMPONENT_FILTER_DIAGNOSTICS filter %s: %sER_NOT_IMPLEMENTED_FOR_CARTESIAN_SRS %s(%s) has not been implemented for Cartesian spatial reference systems.ER_NOT_IMPLEMENTED_FOR_PROJECTED_SRS %s(%s) has not been implemented for projected spatial reference systems.ER_NONPOSITIVE_RADIUS Invalid radius provided to function %s: Radius must be greater than zero.ER_RESTART_SERVER_FAILED Restart server failed (%s).ER_SRS_MISSING_MANDATORY_ATTRIBUTE Missing mandatory attribute %s.ER_SRS_MULTIPLE_ATTRIBUTE_DEFINITIONS Multiple definitions of attribute %s.ER_SRS_NAME_CANT_BE_EMPTY_OR_WHITESPACE The spatial reference system name can't be an empty string or start or end with whitespace.ER_SRS_ORGANIZATION_CANT_BE_EMPTY_OR_WHITESPACE The organization name can't be an empty string or start or end with whitespace.ER_SRS_ID_ALREADY_EXISTS There is already a spatial reference system with SRID %u.ER_WARN_SRS_ID_ALREADY_EXISTS There is already a spatial reference system with SRID %u.ER_CANT_MODIFY_SRID_0 SRID 0 is not modifiable.ER_WARN_RESERVED_SRID_RANGE The SRID range [%u, %u] has been reserved for system use. SRSs in this range may be added, modified or removed without warning during upgrade.ER_CANT_MODIFY_SRS_USED_BY_COLUMN Can't modify SRID %u. There is at least one column depending on it.ER_SRS_INVALID_CHARACTER_IN_ATTRIBUTE Invalid character in attribute %s.ER_SRS_ATTRIBUTE_STRING_TOO_LONG Attribute %s is too long. The maximum length is %u characters.ER_DEPRECATED_UTF8_ALIAS 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to b…ER_DEPRECATED_NATIONAL NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET…ER_INVALID_DEFAULT_UTF8MB4_COLLATION Invalid default collation %s: utf8mb4_0900_ai_ci or utf8mb4_general_ci expectedER_UNABLE_TO_COLLECT_LOG_STATUS Unable to collect information for column '%s': %s.ER_RESERVED_TABLESPACE_NAME The table '%s' may not be created in the reserved tablespace '%s'.ER_UNABLE_TO_SET_OPTION This option cannot be set %s.ER_REPLICA_POSSIBLY_DIVERGED_AFTER_DDL A commit for an atomic DDL statement was unsuccessful on the source and the replica. The replica supports atomic DDL statements but the source does not, so t…ER_SRS_NOT_GEOGRAPHIC Function %s is only defined for geographic spatial reference systems, but one of its arguments is in SRID %u, which is not geographic.ER_POLYGON_TOO_LARGE Function %s encountered a polygon that was too large. Polygons must cover less than half the planet.ER_SPATIAL_UNIQUE_INDEX Spatial indexes can't be primary or unique indexes.ER_INDEX_TYPE_NOT_SUPPORTED_FOR_SPATIAL_INDEX The index type %s is not supported for spatial indexes.ER_FK_CANNOT_DROP_PARENT Cannot drop table '%s' referenced by a foreign key constraint '%s' on table '%s'.ER_GEOMETRY_PARAM_LONGITUDE_OUT_OF_RANGE A parameter of function %s contains a geometry with longitude %f, which is out of range. It must be within (%f, %f].ER_GEOMETRY_PARAM_LATITUDE_OUT_OF_RANGE A parameter of function %s contains a geometry with latitude %f, which is out of range. It must be within [%f, %f].ER_FK_CANNOT_USE_VIRTUAL_COLUMN Foreign key '%s' uses virtual column '%s' which is not supported.ER_FK_NO_COLUMN_PARENT Failed to add the foreign key constraint. Missing column '%s' for constraint '%s' in the referenced table '%s'ER_CANT_SET_ERROR_SUPPRESSION_LIST %s: Could not add suppression rule for code "%s". Rule-set may be full, or code may not correspond to an error-log message.ER_SRS_GEOGCS_INVALID_AXES The spatial reference system definition for SRID %u specifies invalid geographic axes '%s' and '%s'. One axis must be NORTH or SOUTH and the other must be EA…ER_SRS_INVALID_SEMI_MAJOR_AXIS The length of the semi-major axis must be a positive number.ER_SRS_INVALID_INVERSE_FLATTENING The inverse flattening must be larger than 1.0, or 0.0 if the ellipsoid is a sphere.ER_SRS_INVALID_ANGULAR_UNIT The angular unit conversion factor must be a positive number.ER_SRS_INVALID_PRIME_MERIDIAN The prime meridian must be within (-180, 180] degrees, specified in the SRS angular unit.ER_TRANSFORM_SOURCE_SRS_NOT_SUPPORTED Transformation from SRID %u is not supported.ER_TRANSFORM_TARGET_SRS_NOT_SUPPORTED Transformation to SRID %u is not supported.ER_TRANSFORM_SOURCE_SRS_MISSING_TOWGS84 Transformation from SRID %u is not supported. The spatial reference system has no TOWGS84 clause.ER_TRANSFORM_TARGET_SRS_MISSING_TOWGS84 Transformation to SRID %u is not supported. The spatial reference system has no TOWGS84 clause.ER_TEMP_TABLE_PREVENTS_SWITCH_SESSION_BINLOG_FORMAT Changing @@session.binlog_format is disallowed when the session has open temporary table(s). You could wait until these temporary table(s) are dropped and tr…ER_TEMP_TABLE_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT Changing @@global.binlog_format or @@persist.binlog_format is disallowed when any replication channel has open temporary table(s). You could wait until Repli…ER_RUNNING_APPLIER_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT Changing @@global.binlog_format or @@persist.binlog_format is disallowed when any replication channel applier thread is running. You could execute STOP REPLI…ER_CLIENT_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TRX_IN_SBR Statement violates GTID consistency: CREATE TEMPORARY TABLE and DROP TEMPORARY TABLE are not allowed inside a transaction or inside a procedure in a transact…ER_TABLE_WITHOUT_PK Unable to create or change a table without a primary key, when the system variable 'sql_require_primary_key' is set. Add a primary key to the table or unset…ER_WARN_DATA_TRUNCATED_FUNCTIONAL_INDEX Data truncated for functional index '%s' at row %ldER_WARN_DATA_OUT_OF_RANGE_FUNCTIONAL_INDEX Value is out of range for functional index '%s' at row %ldER_FUNCTIONAL_INDEX_ON_JSON_OR_GEOMETRY_FUNCTION Cannot create a functional index on a function that returns a JSON or GEOMETRY value.ER_FUNCTIONAL_INDEX_REF_AUTO_INCREMENT Functional index '%s' cannot refer to an auto-increment column.ER_CANNOT_DROP_COLUMN_FUNCTIONAL_INDEX Cannot drop column '%s' because it is used by a functional index. In order to drop the column, you must remove the functional index.ER_FUNCTIONAL_INDEX_PRIMARY_KEY The primary key cannot be a functional indexER_FUNCTIONAL_INDEX_ON_LOB Cannot create a functional index on an expression that returns a BLOB or TEXT. Please consider using CAST.ER_FUNCTIONAL_INDEX_FUNCTION_IS_NOT_ALLOWED Expression of functional index '%s' contains a disallowed function.ER_FULLTEXT_FUNCTIONAL_INDEX Fulltext functional index is not supported.ER_SPATIAL_FUNCTIONAL_INDEX Spatial functional index is not supported.ER_WRONG_KEY_COLUMN_FUNCTIONAL_INDEX The used storage engine cannot index the expression '%s'.ER_FUNCTIONAL_INDEX_ON_FIELD Functional index on a column is not supported. Consider using a regular index instead.ER_GENERATED_COLUMN_NAMED_FUNCTION_IS_NOT_ALLOWED Expression of generated column '%s' contains a disallowed function: %s.ER_GENERATED_COLUMN_ROW_VALUE Expression of generated column '%s' cannot refer to a row value.ER_GENERATED_COLUMN_VARIABLES Expression of generated column '%s' cannot refer user or system variables.ER_DEPENDENT_BY_DEFAULT_GENERATED_VALUE Column '%s' of table '%s' has a default value expression dependency and cannot be dropped or renamed.ER_DEFAULT_VAL_GENERATED_NON_PRIOR Default value expression of column '%s' cannot refer to a column defined after it if that column is a generated column or has an expression as default value.ER_DEFAULT_VAL_GENERATED_REF_AUTO_INC Default value expression of column '%s' cannot refer to an auto-increment column.ER_DEFAULT_VAL_GENERATED_FUNCTION_IS_NOT_ALLOWED Default value expression of column '%s' contains a disallowed function.ER_DEFAULT_VAL_GENERATED_NAMED_FUNCTION_IS_NOT_ALLOWED Default value expression of column '%s' contains a disallowed function: %s.ER_DEFAULT_VAL_GENERATED_ROW_VALUE Default value expression of column '%s' cannot refer to a row value.ER_DEFAULT_VAL_GENERATED_VARIABLES Default value expression of column '%s' cannot refer user or system variables.ER_DEFAULT_AS_VAL_GENERATED DEFAULT function cannot be used with default value expressionsER_UNSUPPORTED_ACTION_ON_DEFAULT_VAL_GENERATED '%s' is not supported for default value expressions.ER_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAULT_EXPRESSION Statement violates GTID consistency: ALTER TABLE ... ADD COLUMN .. with expression as DEFAULT.ER_FK_CANNOT_CHANGE_ENGINE Cannot change table's storage engine because the table participates in a foreign key constraint.ER_WARN_DEPRECATED_USER_SET_EXPR Setting user variables within expressions is deprecated and will be removed in a future release. Consider alternatives: 'SET variable=expression, ...', or 'S…ER_WARN_DEPRECATED_UTF8MB3_COLLATION '%s' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead.ER_WARN_DEPRECATED_NESTED_COMMENT_SYNTAX Nested comment syntax is deprecated and will be removed in a future release.ER_FK_INCOMPATIBLE_COLUMNS Referencing column '%s' and referenced column '%s' in foreign key constraint '%s' are incompatible.ER_GR_HOLD_WAIT_TIMEOUT Timeout exceeded for held statement while new Group Replication primary member is applying backlog.ER_GR_HOLD_KILLED Held statement aborted because Group Replication plugin got shut down or thread was killed while new primary member was applying backlog.ER_GR_HOLD_MEMBER_STATUS_ERROR Held statement was aborted due to member being in error state, while backlog is being applied during Group Replication primary election.ER_RPL_ENCRYPTION_FAILED_TO_FETCH_KEY Failed to fetch key from keyring, please check if keyring is loaded.ER_RPL_ENCRYPTION_KEY_NOT_FOUND Can't find key from keyring, please check in the server log if a keyring is loaded and initialized successfully.ER_RPL_ENCRYPTION_KEYRING_INVALID_KEY Fetched an invalid key from keyring.ER_RPL_ENCRYPTION_HEADER_ERROR Error reading a replication log encryption header: %s.ER_RPL_ENCRYPTION_FAILED_TO_ROTATE_LOGS Failed to rotate some logs after changing binlog encryption settings. Please fix the problem and rotate the logs manually.ER_RPL_ENCRYPTION_KEY_EXISTS_UNEXPECTED Key %s exists unexpected.ER_RPL_ENCRYPTION_FAILED_TO_GENERATE_KEY Failed to generate key, please check if keyring is loaded.ER_RPL_ENCRYPTION_FAILED_TO_STORE_KEY Failed to store key, please check if keyring is loaded.ER_RPL_ENCRYPTION_FAILED_TO_REMOVE_KEY Failed to remove key, please check if keyring is loaded.ER_RPL_ENCRYPTION_UNABLE_TO_CHANGE_OPTION Failed to change binlog_encryption value. %s.ER_RPL_ENCRYPTION_MASTER_KEY_RECOVERY_FAILED Unable to recover binlog encryption master key, please check if keyring is loaded.ER_SLOW_LOG_MODE_IGNORED_WHEN_NOT_LOGGING_TO_FILE slow query log file format changed as requested, but setting will have no effect when not actually logging to a file.ER_GRP_TRX_CONSISTENCY_NOT_ALLOWED The option group_replication_consistency cannot be used on the current member state.ER_GRP_TRX_CONSISTENCY_BEFORE Error while waiting for group transactions commit on group_replication_consistency= 'BEFORE'.ER_GRP_TRX_CONSISTENCY_AFTER_ON_TRX_BEGIN Error while waiting for transactions with group_replication_consistency= 'AFTER' to commit.ER_GRP_TRX_CONSISTENCY_BEGIN_NOT_ALLOWED The Group Replication plugin is stopping, therefore new transactions are not allowed to start.ER_FUNCTIONAL_INDEX_ROW_VALUE_IS_NOT_ALLOWED Expression of functional index '%s' cannot refer to a row value.ER_RPL_ENCRYPTION_FAILED_TO_ENCRYPT Failed to encrypt content to write into binlog file: %s.ER_PAGE_TRACKING_NOT_STARTED Page Tracking is not started yet.ER_PAGE_TRACKING_RANGE_NOT_TRACKED Tracking was not enabled for the LSN range specifiedER_PAGE_TRACKING_CANNOT_PURGE Cannot purge data when concurrent clone is in progress. Try later.ER_RPL_ENCRYPTION_CANNOT_ROTATE_BINLOG_MASTER_KEY Cannot rotate binary log master key when 'binlog-encryption' is off.ER_BINLOG_MASTER_KEY_RECOVERY_OUT_OF_COMBINATION Unable to recover binary log master key, the combination of new_master_key_seqno=%u, master_key_seqno=%u and old_master_key_seqno=%u are wrong.ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_OPERATE_KEY Failed to operate binary log master key on keyring, please check if keyring is loaded. The statement had no effect: the old binary log master key is still in…ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_ROTATE_LOGS Failed to rotate one or more binary or relay log files. A new binary log master key was generated and will be used to encrypt new binary and relay log files.…ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_REENCRYPT_LOG %s. A new binary log master key was generated and will be used to encrypt new binary and relay log files. There may still exist binary or relay log files usi…ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_UNUSED_KEYS Failed to remove unused binary log encryption keys from the keyring, please check if keyring is loaded. The unused binary log encryption keys may still exist…ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_AUX_KEY Failed to remove auxiliary binary log encryption key from keyring, please check if keyring is loaded. The cleanup of the binary log master key rotation proce…ER_NON_BOOLEAN_EXPR_FOR_CHECK_CONSTRAINT An expression of non-boolean type specified to a check constraint '%s'.ER_COLUMN_CHECK_CONSTRAINT_REFERENCES_OTHER_COLUMN Column check constraint '%s' references other column.ER_CHECK_CONSTRAINT_NAMED_FUNCTION_IS_NOT_ALLOWED An expression of a check constraint '%s' contains disallowed function: %s.ER_CHECK_CONSTRAINT_FUNCTION_IS_NOT_ALLOWED An expression of a check constraint '%s' contains disallowed function.ER_CHECK_CONSTRAINT_VARIABLES An expression of a check constraint '%s' cannot refer to a user or system variable.ER_CHECK_CONSTRAINT_ROW_VALUE Check constraint '%s' cannot refer to a row value.ER_CHECK_CONSTRAINT_REFERS_AUTO_INCREMENT_COLUMN Check constraint '%s' cannot refer to an auto-increment column.ER_CHECK_CONSTRAINT_VIOLATED Check constraint '%s' is violated.ER_CHECK_CONSTRAINT_REFERS_UNKNOWN_COLUMN Check constraint '%s' refers to non-existing column '%s'.ER_CHECK_CONSTRAINT_NOT_FOUND Check constraint '%s' is not found in the table.ER_CHECK_CONSTRAINT_DUP_NAME Duplicate check constraint name '%s'.ER_CHECK_CONSTRAINT_CLAUSE_USING_FK_REFER_ACTION_COLUMN Column '%s' cannot be used in a check constraint '%s': needed in a foreign key constraint '%s' referential action.WARN_UNENCRYPTED_TABLE_IN_ENCRYPTED_DB Creating an unencrypted table in a database with default encryption enabled.ER_INVALID_ENCRYPTION_REQUEST Request to create %s table while using an %s tablespace.ER_CANNOT_SET_TABLE_ENCRYPTION Table encryption differ from its database default encryption, and user doesn't have enough privilege.ER_CANNOT_SET_DATABASE_ENCRYPTION Database default encryption differ from 'default_table_encryption' setting, and user doesn't have enough privilege.ER_CANNOT_SET_TABLESPACE_ENCRYPTION Tablespace encryption differ from 'default_table_encryption' setting, and user doesn't have enough privilege.ER_TABLESPACE_CANNOT_BE_ENCRYPTED This tablespace can't be encrypted, because one of table's schema has default encryption OFF and user doesn't have enough privilege.ER_TABLESPACE_CANNOT_BE_DECRYPTED This tablespace can't be decrypted, because one of table's schema has default encryption ON and user doesn't have enough privilege.ER_TABLESPACE_TYPE_UNKNOWN Cannot determine the type of the tablespace named '%s'.ER_TARGET_TABLESPACE_UNENCRYPTED Source tablespace is encrypted but target tablespace is not.ER_CANNOT_USE_ENCRYPTION_CLAUSE ENCRYPTION clause is not valid for %s tablespace.ER_INVALID_MULTIPLE_CLAUSES Multiple %s clausesER_UNSUPPORTED_USE_OF_GRANT_AS GRANT ... AS is currently supported only for global privileges.ER_UKNOWN_AUTH_ID_OR_ACCESS_DENIED_FOR_GRANT_AS Either some of the authorization IDs in the AS clause are invalid or the current user lacks privileges to execute the statement.ER_DEPENDENT_BY_FUNCTIONAL_INDEX Column '%s' has a functional index dependency and cannot be dropped or renamed.ER_PLUGIN_NOT_EARLY Plugin '%s' is not to be used as an "early" plugin. Don't add it to --early-plugin-load, keyring migration etc.ER_INNODB_REDO_LOG_ARCHIVE_START_SUBDIR_PATH Redo log archiving start prohibits path name in 'subdir' argumentER_INNODB_REDO_LOG_ARCHIVE_START_TIMEOUT Redo log archiving start timed outER_INNODB_REDO_LOG_ARCHIVE_DIRS_INVALID Server variable 'innodb_redo_log_archive_dirs' is NULL or emptyER_INNODB_REDO_LOG_ARCHIVE_LABEL_NOT_FOUND Label '%s' not found in server variable 'innodb_redo_log_archive_dirs'ER_INNODB_REDO_LOG_ARCHIVE_DIR_EMPTY Directory is empty after label '%s' in server variable 'innodb_redo_log_archive_dirs'ER_INNODB_REDO_LOG_ARCHIVE_NO_SUCH_DIR Redo log archive directory '%s' does not exist or is not a directoryER_INNODB_REDO_LOG_ARCHIVE_DIR_CLASH Redo log archive directory '%s' is in, under, or over server directory '%s' - '%s'ER_INNODB_REDO_LOG_ARCHIVE_DIR_PERMISSIONS Redo log archive directory '%s' is accessible to all OS usersER_INNODB_REDO_LOG_ARCHIVE_FILE_CREATE Cannot create redo log archive file '%s' (OS errno: %d - %s)ER_INNODB_REDO_LOG_ARCHIVE_ACTIVE Redo log archiving has been started on '%s' - Call innodb_redo_log_archive_stop() firstER_INNODB_REDO_LOG_ARCHIVE_INACTIVE Redo log archiving is not activeER_INNODB_REDO_LOG_ARCHIVE_FAILED Redo log archiving failed: %sER_INNODB_REDO_LOG_ARCHIVE_SESSION Redo log archiving has not been started by this sessionER_STD_REGEX_ERROR Regex error: %s in function %s.ER_INVALID_JSON_TYPE Invalid JSON type in argument %u to function %s; an %s is required.ER_CANNOT_CONVERT_STRING Cannot convert string '%s' from %s to %sER_DEPENDENT_BY_PARTITION_FUNC Column '%s' has a partitioning function dependency and cannot be dropped or renamed.ER_WARN_DEPRECATED_FLOAT_AUTO_INCREMENT AUTO_INCREMENT support for FLOAT/DOUBLE columns is deprecated and will be removed in a future release. Consider removing AUTO_INCREMENT from column '%s'.ER_RPL_CANT_STOP_REPLICA_WHILE_LOCKED_BACKUP Cannot stop the replica SQL thread while the instance is locked for backup. Try running `UNLOCK INSTANCE` first.ER_WARN_DEPRECATED_FLOAT_DIGITS Specifying number of digits for floating point data types is deprecated and will be removed in a future release.ER_WARN_DEPRECATED_FLOAT_UNSIGNED UNSIGNED for decimal and floating point data types is deprecated and support for it will be removed in a future release.ER_WARN_DEPRECATED_INTEGER_DISPLAY_WIDTH Integer display width is deprecated and will be removed in a future release.ER_WARN_DEPRECATED_ZEROFILL The ZEROFILL attribute is deprecated and will be removed in a future release. Use the LPAD function to zero-pad numbers, or store the formatted numbers in a…ER_CLONE_DONOR Clone Donor Error: %s.ER_CLONE_PROTOCOL Clone received unexpected response from Donor : %s.ER_CLONE_DONOR_VERSION Clone Donor MySQL version: %s is different from Recipient MySQL version %s.ER_CLONE_OS Clone Donor OS: %s is different from Recipient OS: %s.ER_CLONE_PLATFORM Clone Donor platform: %s is different from Recipient platform: %s.ER_CLONE_CHARSET Clone Donor collation: %s is unavailable in Recipient.ER_CLONE_CONFIG Clone Configuration %s: Donor value: %s is different from Recipient value: %s.ER_CLONE_SYS_CONFIG Clone system configuration: %sER_CLONE_PLUGIN_MATCH Clone Donor plugin %s is not active in Recipient.ER_CLONE_LOOPBACK Clone cannot use loop back connection while cloning into current data directory.ER_CLONE_ENCRYPTION Clone needs SSL connection for encrypted table.ER_CLONE_DISK_SPACE Clone estimated database size is %s. Available space %s is not enough.ER_CLONE_IN_PROGRESS Concurrent clone in progress. Please try after clone is complete.ER_CLONE_DISALLOWED The clone operation cannot be executed when %s.ER_CANNOT_GRANT_ROLES_TO_ANONYMOUS_USER Cannot grant roles to an anonymous user.ER_SECONDARY_ENGINE_PLUGIN %sER_SECOND_PASSWORD_CANNOT_BE_EMPTY Empty password can not be retained as second password for user '%s'@'%s'.ER_DB_ACCESS_DENIED Access denied for AuthId `%s`@`%s` to database '%s'.ER_DA_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATORY_ROLES Cannot set mandatory_roles: AuthId `%s`@`%s` has '%s' privilege.ER_DA_RPL_GTID_TABLE_CANNOT_OPEN Gtid table is not ready to be used. Table '%s.%s' cannot be opened.ER_GEOMETRY_IN_UNKNOWN_LENGTH_UNIT The geometry passed to function %s is in SRID 0, which doesn't specify a length unit. Can't convert to '%s'.ER_DA_PLUGIN_INSTALL_ERROR Error installing plugin '%s': %sER_NO_SESSION_TEMP Storage engine could not allocate temporary tablespace for this session.ER_DA_UNKNOWN_ERROR_NUMBER Got unknown error: %dER_COLUMN_CHANGE_SIZE Could not change column '%s' of table '%s'. The resulting size of index '%s' would exceed the max key length of %d bytes.ER_REGEXP_INVALID_CAPTURE_GROUP_NAME A capture group has an invalid name.ER_DA_SSL_LIBRARY_ERROR Failed to set up SSL because of the following SSL library error: %sER_SECONDARY_ENGINE Secondary engine operation failed. %s.ER_SECONDARY_ENGINE_DDL DDLs on a table with a secondary engine defined are not allowed.ER_INCORRECT_CURRENT_PASSWORD Incorrect current password. Specify the correct password which has to be replaced.ER_MISSING_CURRENT_PASSWORD Current password needs to be specified in the REPLACE clause in order to change it.ER_CURRENT_PASSWORD_NOT_REQUIRED Do not specify the current password while changing it for other users.ER_PASSWORD_CANNOT_BE_RETAINED_ON_PLUGIN_CHANGE Current password can not be retained for user '%s'@'%s' because authentication plugin is being changed.ER_CURRENT_PASSWORD_CANNOT_BE_RETAINED Current password can not be retained for user '%s'@'%s' because new password is empty.ER_PARTIAL_REVOKES_EXIST At least one partial revoke exists on a database. The system variable '@@partial_revokes' must be set to ON.ER_CANNOT_GRANT_SYSTEM_PRIV_TO_MANDATORY_ROLE AuthId `%s`@`%s` is set as mandatory_roles. Cannot grant the '%s' privilege.ER_XA_REPLICATION_FILTERS The use of replication filters with XA transactions is not supported, and can lead to an undefined state in the replica.ER_UNSUPPORTED_SQL_MODE sql_mode=0x%08x is not supported.ER_REGEXP_INVALID_FLAG Invalid match mode flag in regular expression.ER_PARTIAL_REVOKE_AND_DB_GRANT_BOTH_EXISTS '%s' privilege for database '%s' exists both as partial revoke and mysql.db simultaneously. It could mean that the 'mysql' schema is corrupted.ER_UNIT_NOT_FOUND There's no unit of measure named '%s'.ER_INVALID_JSON_VALUE_FOR_FUNC_INDEX Invalid JSON value for CAST for functional index '%s'.ER_JSON_VALUE_OUT_OF_RANGE_FOR_FUNC_INDEX Out of range JSON value for CAST for functional index '%s'.ER_EXCEEDED_MV_KEYS_NUM Exceeded max number of values per record for multi-valued index '%s' by %u value(s).ER_EXCEEDED_MV_KEYS_SPACE Exceeded max total length of values per record for multi-valued index '%s' by %u bytes.ER_FUNCTIONAL_INDEX_DATA_IS_TOO_LONG Data too long for functional index '%s'.ER_WRONG_MVI_VALUE Cannot store an array or an object in a scalar key part of the index '%s'.ER_WARN_FUNC_INDEX_NOT_APPLICABLE Cannot use functional index '%s' due to type or collation conversion.ER_GRP_RPL_UDF_ERROR The function '%s' failed. %sER_UPDATE_GTID_PURGED_WITH_GR Cannot update GTID_PURGED with the Group Replication plugin runningER_GROUPING_ON_TIMESTAMP_IN_DST Grouping on temporal is non-deterministic for timezones having DST. Please consider switching to UTC for this query.ER_TABLE_NAME_CAUSES_TOO_LONG_PATH Long database name and identifier for object resulted in a path length too long for table '%s'. Please check the path limit for your OS.ER_AUDIT_LOG_INSUFFICIENT_PRIVILEGE Request ignored for '%s'@'%s'. Role needed to perform operation: '%s'ER_DA_GRP_RPL_STARTED_AUTO_REJOIN Started auto-rejoin procedure attempt %lu of %luER_SYSVAR_CHANGE_DURING_QUERY A plugin was loaded or unloaded during a query, a system variable table was changed.ER_GLOBSTAT_CHANGE_DURING_QUERY A plugin was loaded or unloaded during a query, a global status variable was changed.ER_GRP_RPL_MESSAGE_SERVICE_INIT_FAILURE The START GROUP_REPLICATION command failed to start its message service.ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_CLIENT Invalid SOURCE_COMPRESSION_ALGORITHMS '%s' for channel '%s'.ER_CHANGE_SOURCE_WRONG_COMPRESSION_LEVEL_CLIENT Invalid SOURCE_ZSTD_COMPRESSION_LEVEL %u for channel '%s'.ER_WRONG_COMPRESSION_ALGORITHM_CLIENT Invalid compression algorithm '%s'.ER_WRONG_COMPRESSION_LEVEL_CLIENT Invalid zstd compression level for algorithm '%s'.ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_LIST_CLIENT Specified compression algorithm list '%s' exceeds total count of 3 for channel '%s'.ER_CLIENT_PRIVILEGE_CHECKS_USER_CANNOT_BE_ANONYMOUS PRIVILEGE_CHECKS_USER for replication channel '%s' was set to ``@`%s`, but anonymous users are disallowed for PRIVILEGE_CHECKS_USER.ER_CLIENT_PRIVILEGE_CHECKS_USER_DOES_NOT_EXIST PRIVILEGE_CHECKS_USER for replication channel '%s' was set to `%s`@`%s`, but this is not an existing user.ER_CLIENT_PRIVILEGE_CHECKS_USER_CORRUPT Invalid, corrupted PRIVILEGE_CHECKS_USER was found in the replication configuration repository for channel '%s'. Use CHANGE REPLICATION SOURCE TO PRIVILEGE_C…ER_CLIENT_PRIVILEGE_CHECKS_USER_NEEDS_RPL_APPLIER_PRIV PRIVILEGE_CHECKS_USER for replication channel '%s' was set to `%s`@`%s`, but this user does not have REPLICATION_APPLIER privilege.ER_WARN_DA_PRIVILEGE_NOT_REGISTERED Dynamic privilege '%s' is not registered with the server.ER_CLIENT_KEYRING_UDF_KEY_INVALID Function '%s' failed because key is invalid.ER_CLIENT_KEYRING_UDF_KEY_TYPE_INVALID Function '%s' failed because key type is invalid.ER_CLIENT_KEYRING_UDF_KEY_TOO_LONG Function '%s' failed because key length is too long.ER_CLIENT_KEYRING_UDF_KEY_TYPE_TOO_LONG Function '%s' failed because key type is too long.ER_JSON_SCHEMA_VALIDATION_ERROR_WITH_DETAILED_REPORT %s.ER_DA_UDF_INVALID_CHARSET_SPECIFIED Invalid character set '%s' was specified. It must be either character set name or collation name as supported by server.ER_DA_UDF_INVALID_CHARSET Invalid character set '%s' was specified. It must be a character set name as supported by server.ER_DA_UDF_INVALID_COLLATION Invalid collation '%s' was specified. It must be a collation name as supported by server.ER_DA_UDF_INVALID_EXTENSION_ARGUMENT_TYPE Invalid extension argument type '%s' was specified. Refer the MySQL manual for the valid UDF extension arguments type.ER_MULTIPLE_CONSTRAINTS_WITH_SAME_NAME Table has multiple constraints with the name '%s'. Please use constraint specific '%s' clause.ER_CONSTRAINT_NOT_FOUND Constraint '%s' does not exist.ER_ALTER_CONSTRAINT_ENFORCEMENT_NOT_SUPPORTED Altering constraint enforcement is not supported for the constraint '%s'. Enforcement state alter is not supported for the PRIMARY, UNIQUE and FOREIGN KEY ty…ER_TABLE_VALUE_CONSTRUCTOR_MUST_HAVE_COLUMNS Each row of a VALUES clause must have at least one column, unless when used as source in an INSERT statement.ER_TABLE_VALUE_CONSTRUCTOR_CANNOT_HAVE_DEFAULT A VALUES clause cannot use DEFAULT values, unless used as a source in an INSERT statement.ER_CLIENT_QUERY_FAILURE_INVALID_NON_ROW_FORMAT The query does not comply with variable require_row_format restrictions.ER_REQUIRE_ROW_FORMAT_INVALID_VALUE The requested value %s is invalid for REQUIRE_ROW_FORMAT, must be either 0 or 1.ER_FAILED_TO_DETERMINE_IF_ROLE_IS_MANDATORY Failed to acquire lock on user management service, unable to determine if role `%s`@`%s` is mandatoryER_FAILED_TO_FETCH_MANDATORY_ROLE_LIST Failed to acquire lock on user management service, unable to fetch mandatory role listER_CLIENT_LOCAL_FILES_DISABLED Loading local data is disabled; this must be enabled on both the client and server sidesER_IMP_INCOMPATIBLE_CFG_VERSION Failed to import %s because the CFG file version (%u) is not compatible with the current version (%u)ER_DA_OOM Out of memoryER_DA_UDF_INVALID_ARGUMENT_TO_SET_CHARSET Character set can be set only for the UDF argument type STRING.ER_DA_UDF_INVALID_RETURN_TYPE_TO_SET_CHARSET Character set can be set only for the UDF RETURN type STRING.ER_MULTIPLE_INTO_CLAUSES Multiple INTO clauses in one query block.ER_MISPLACED_INTO Misplaced INTO clause, INTO is not allowed inside subqueries, and must be placed at end of UNION clauses.ER_USER_ACCESS_DENIED_FOR_USER_ACCOUNT_BLOCKED_BY_PASSWORD_LOCK Access denied for user '%s'@'%s'. Account is blocked for %s day(s) (%s day(s) remaining) due to %u consecutive failed logins.ER_WARN_DEPRECATED_YEAR_UNSIGNED UNSIGNED for the YEAR data type is deprecated and support for it will be removed in a future release.ER_CLONE_NETWORK_PACKET Clone needs max_allowed_packet value to be %u or more. Current value is %uER_SDI_OPERATION_FAILED_MISSING_RECORD Failed to %s sdi for %s.%s in %s due to missing record.ER_DEPENDENT_BY_CHECK_CONSTRAINT Check constraint '%s' uses column '%s', hence column cannot be dropped or renamed.ER_GRP_OPERATION_NOT_ALLOWED_GR_MUST_STOP This operation cannot be performed while Group Replication is running; run STOP GROUP_REPLICATION firstER_WARN_DEPRECATED_JSON_TABLE_ON_ERROR_ON_EMPTY Specifying an ON EMPTY clause after the ON ERROR clause in a JSON_TABLE column definition is deprecated syntax and will be removed in a future release. Speci…ER_WARN_DEPRECATED_INNER_INTO The INTO clause is deprecated inside query blocks of query expressions and will be removed in a future release. Please move the INTO clause to the end of sta…ER_WARN_DEPRECATED_VALUES_FUNCTION_ALWAYS_NULL The VALUES function is deprecated and will be removed in a future release. It always returns NULL in this context. If you meant to access a value from the VA…ER_WARN_DEPRECATED_SQL_CALC_FOUND_ROWS SQL_CALC_FOUND_ROWS is deprecated and will be removed in a future release. Consider using two separate queries instead.ER_WARN_DEPRECATED_FOUND_ROWS FOUND_ROWS() is deprecated and will be removed in a future release. Consider using COUNT(*) instead.ER_MISSING_JSON_VALUE No value was found by '%s' on the specified path.ER_MULTIPLE_JSON_VALUES More than one value was found by '%s' on the specified path.ER_HOSTNAME_TOO_LONG Hostname cannot be longer than %d characters.ER_GROUP_REPLICATION_USER_EMPTY_MSG The START GROUP_REPLICATION command failed since the username provided for recovery channel is empty.ER_GROUP_REPLICATION_USER_MANDATORY_MSG The START GROUP_REPLICATION command failed since the USER option was not provided with PASSWORD for recovery channel.ER_GROUP_REPLICATION_PASSWORD_LENGTH The START GROUP_REPLICATION command failed since the password provided for the recovery channel exceeds the maximum length of 32 characters.ER_SUBQUERY_TRANSFORM_REJECTED Statement requires a transform of a subquery to a non-SET operation (like IN2EXISTS, or subquery-to-LATERAL-derived-table). This is not allowed with optimize…ER_DA_GRP_RPL_RECOVERY_ENDPOINT_FORMAT Invalid input value for recovery socket endpoints '%s'. Please, provide a valid, comma separated, list of endpoints (IP:port).ER_DA_GRP_RPL_RECOVERY_ENDPOINT_INVALID The server is not listening on endpoint '%s'. Only endpoints that the server is listening on are valid recovery endpoints.ER_WRONG_VALUE_FOR_VAR_PLUS_ACTIONABLE_PART Variable '%s' cannot be set to the value of '%s'. %sER_STATEMENT_NOT_ALLOWED_AFTER_START_TRANSACTION Only BINLOG INSERT, COMMIT and ROLLBACK statements are allowed after CREATE TABLE with START TRANSACTION statement.ER_FOREIGN_KEY_WITH_ATOMIC_CREATE_SELECT Foreign key creation is not allowed with CREATE TABLE as SELECT and CREATE TABLE with START TRANSACTION statement.ER_NOT_ALLOWED_WITH_START_TRANSACTION START TRANSACTION clause cannot be used %sER_INVALID_JSON_ATTRIBUTE Invalid json attribute, error: "%s" at pos %u: '%s'ER_ENGINE_ATTRIBUTE_NOT_SUPPORTED Storage engine '%s' does not support ENGINE_ATTRIBUTE.ER_INVALID_USER_ATTRIBUTE_JSON The user attribute must be a valid JSON objectER_INNODB_REDO_DISABLED Cannot perform operation as InnoDB redo logging is disabled. Please retry after enabling redo log with ALTER INSTANCEER_INNODB_REDO_ARCHIVING_ENABLED Cannot perform operation as InnoDB is archiving redo log. Please retry after stopping redo archive by invoking innodb_redo_log_archive_stop()ER_MDL_OUT_OF_RESOURCES Not enough resources to complete lock request.ER_IMPLICIT_COMPARISON_FOR_JSON Evaluating a JSON value in SQL boolean context does an implicit comparison against JSON integer 0; if this is not what you want, consider converting JSON to…ER_FUNCTION_DOES_NOT_SUPPORT_CHARACTER_SET The function %s does not support the character set '%s'.ER_IMPOSSIBLE_STRING_CONVERSION Conversion from collation %s into %s impossible for %sER_SCHEMA_READ_ONLY Schema '%s' is in read only mode.ER_RPL_ASYNC_RECONNECT_GTID_MODE_OFF Failed to enable Asynchronous Replication Connection Failover feature. The CHANGE REPLICATION SOURCE TO SOURCE_CONNECTION_AUTO_FAILOVER = 1 can only be set w…ER_RPL_ASYNC_RECONNECT_AUTO_POSITION_OFF Failed to enable Asynchronous Replication Connection Failover feature. The CHANGE REPLICATION SOURCE TO SOURCE_CONNECTION_AUTO_FAILOVER = 1 can only be set w…ER_DISABLE_GTID_MODE_REQUIRES_ASYNC_RECONNECT_OFF The @@GLOBAL.GTID_MODE = %s cannot be executed because Asynchronous Replication Connection Failover is enabled i.e. CHANGE REPLICATION SOURCE TO SOURCE_CONNE…ER_DISABLE_AUTO_POSITION_REQUIRES_ASYNC_RECONNECT_OFF CHANGE REPLICATION SOURCE TO SOURCE_AUTO_POSITION = 0 cannot be executed because Asynchronous Replication Connection Failover is enabled i.e. CHANGE REPLICAT…ER_INVALID_PARAMETER_USE Invalid use of parameters in '%s'ER_CHARACTER_SET_MISMATCH Character set '%s' cannot be used in conjunction with '%s' in call to %s.ER_WARN_VAR_VALUE_CHANGE_NOT_SUPPORTED Changing %s not supported on this platform. Falling back to the default.ER_INVALID_TIME_ZONE_INTERVAL Invalid time zone interval: '%s'ER_INVALID_CAST Cannot cast value to %s.ER_HYPERGRAPH_NOT_SUPPORTED_YET The hypergraph optimizer does not yet support '%s'ER_WARN_HYPERGRAPH_EXPERIMENTAL The hypergraph optimizer is highly experimental and is meant for testing only. Do not enable it unless you are a MySQL developer.ER_DA_NO_ERROR_LOG_PARSER_CONFIGURED None of the log-sinks selected with --log-error-services=... provides a log-parser. The server will not be able to make the previous runs' error-logs availab…ER_DA_ERROR_LOG_TABLE_DISABLED None of the log-sinks selected in @@global.log_error_services supports writing to the performance schema. The server will not be able to make the current run…ER_DA_ERROR_LOG_MULTIPLE_FILTERS @@global.log_error_services lists more than one log-filter service. This is discouraged as it will make it hard to understand which rule in which filter affe…ER_DA_CANT_OPEN_ERROR_LOG Could not open file '%s' for error logging%s%sER_USER_REFERENCED_AS_DEFINER User %s is referenced as a definer account in %s.ER_CANNOT_USER_REFERENCED_AS_DEFINER Operation %s failed for %s as it is referenced as a definer account in %s.ER_REGEX_NUMBER_TOO_BIG Decimal number in regular expression is too large.ER_SPVAR_NONINTEGER_TYPE The variable "%s" has a non-integer based typeWARN_UNSUPPORTED_ACL_TABLES_READ Reads with serializable isolation/SELECT FOR SHARE are not supported for ACL tables.ER_BINLOG_UNSAFE_ACL_TABLE_READ_IN_DML_DDL The statement is unsafe because it updates a table depending on ACL table read operation. As storage engine row locks are skipped for ACL table, it may not h…ER_STOP_REPLICA_MONITOR_IO_THREAD_TIMEOUT STOP REPLICA command execution is incomplete: Replica Monitor thread got the stop signal, thread is busy, Monitor thread will stop once the current task is c…ER_STARTING_REPLICA_MONITOR_IO_THREAD The Replica Monitor thread failed to start.ER_CANT_USE_ANONYMOUS_TO_GTID_WITH_GTID_MODE_NOT_ON Replication cannot start%s with ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = LOCAL|<UUID> as this server uses @@GLOBAL.GTID_MODE <> ON.ER_CANT_COMBINE_ANONYMOUS_TO_GTID_AND_AUTOPOSITION The options ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = LOCAL|<UUID> and SOURCE_AUTO_POSITION = 1 cannot be used together.ER_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_REQUIRES_GTID_MODE_ON CHANGE REPLICATION SOURCE TO ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = LOCAL|<UUID> cannot be executed because @@GLOBAL.GTID_MODE <> ON.ER_SQL_REPLICA_SKIP_COUNTER_USED_WITH_GTID_MODE_ON The value of sql_replica_skip_counter will only take effect for channels running with ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS <> OFF.ER_USING_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_AS_LOCAL_OR_UUID Using ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS creates limitations on the replication topology - you cannot fail over between downstream and upstream servers.…ER_CANT_SET_SQL_AFTER_OR_BEFORE_GTIDS_WITH_ANONYMOUS_TO_GTID The SQL_AFTER_GTIDS or SQL_BEFORE_GTIDS clauses for START REPLICA cannot be used when the replication channel is configured with ASSIGN_GTIDS_TO_ANONYMOUS_TR…ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_GROUP_NAME Replication '%s' is configured with ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = <UUID> where the UUID value is equal to the group_replication_group_nameER_CANT_USE_SAME_UUID_AS_GROUP_NAME CHANGE REPLICATION SOURCE TO ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = <UUID> cannot be executed because the UUID value is equal to the group_replication_grou…ER_GRP_RPL_RECOVERY_CHANNEL_STILL_RUNNING The group_replication_recovery channel is still running, most likely it is waiting for a database/table lock, which is preventing the channel from stopping.…ER_INNODB_INVALID_AUTOEXTEND_SIZE_VALUE AUTOEXTEND_SIZE should be a multiple of %uMER_INNODB_INCOMPATIBLE_WITH_TABLESPACE InnoDB: "%s" not allowed with general tablespacesER_INNODB_AUTOEXTEND_SIZE_OUT_OF_RANGE AUTOEXTEND_SIZE value should be between %uM and %uMER_CANNOT_USE_AUTOEXTEND_SIZE_CLAUSE AUTOEXTEND_SIZE clause is not valid for %s tablespace.ER_ROLE_GRANTED_TO_ITSELF User account %s is directly or indirectly granted to the role %s. The GRANT would create a loopER_TABLE_MUST_HAVE_A_VISIBLE_COLUMN A table must have at least one visible column.ER_INNODB_COMPRESSION_FAILURE Compression failed with the following error : %sER_WARN_ASYNC_CONN_FAILOVER_NETWORK_NAMESPACE The parameter network_namespace is reserved for future use. Please use the CHANGE REPLICATION SOURCE command to set channel network_namespace parameter.ER_CLIENT_INTERACTION_TIMEOUT The client was disconnected by the server because of inactivity. See wait_timeout and interactive_timeout for configuring this behavior.ER_INVALID_CAST_TO_GEOMETRY Invalid cast from %s to %s.ER_INVALID_CAST_POLYGON_RING_DIRECTION Invalid cast from %s to %s. A polygon ring is in the wrong direction.ER_GIS_DIFFERENT_SRIDS_AGGREGATION Arguments to function %s contains geometries with different SRIDs: %u and %u. All geometries must have the same SRID.ER_RELOAD_KEYRING_FAILURE Keyring reload failed. Please check error log for more details.ER_SDI_GET_KEYS_INVALID_TABLESPACE Tablespace '%s' is invalid for SDI operations.ER_CHANGE_RPL_SRC_WRONG_COMPRESSION_ALGORITHM_SIZE Value too long setting SOURCE_COMPRESSION_ALGORITHMS option to a %d chars long string for channel '%s'.ER_CANT_USE_SAME_UUID_AS_VIEW_CHANGE_UUID CHANGE REPLICATION SOURCE TO ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = <UUID> cannot be executed because the UUID value is equal to the group_replication_view…ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_VIEW_CHANGE_UUID Replication '%s' is configured with ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = <UUID> where the UUID value is equal to the group_replication_view_change_uuidER_GRP_RPL_VIEW_CHANGE_UUID_FAIL_GET_VARIABLE Unable to retrieve group_replication_view_change_uuid variable during server checks on replication operations.ER_WARN_ADUIT_LOG_MAX_SIZE_AND_PRUNE_SECONDS Both audit_log_max_size and audit_log_prune_seconds are set to non-zero. audit_log_max_size takes precedence and audit_log_prune_seconds is ignoredER_WARN_ADUIT_LOG_MAX_SIZE_CLOSE_TO_ROTATE_ON_SIZE audit_log_rotate_on_size is not granular enough for the value of audit_log_max_size supplied. Should be at least %d times smaller.ER_KERBEROS_CREATE_USER Create/Alter user has failed, Configured user realm as authentication string is empty, Please make sure to configure authentication string as user realm.ER_INSTALL_PLUGIN_CONFLICT_CLIENT Cannot install the %s plugin when the %s plugin is installed.ER_DA_ERROR_LOG_COMPONENT_FLUSH_FAILED %d error logging component(s) failed to flush. For file-based logs this can happen when the path or permissions of the log-file have changed. Failure to flus…ER_WARN_SQL_AFTER_MTS_GAPS_GAP_NOT_CALCULATED The until clause SQL_AFTER_MTS_GAPS is being used for channel '%s' when GTID_MODE = ON and SOURCE_AUTO_POSITION=1 meaning the server did not compute internal…ER_INVALID_ASSIGNMENT_TARGET Invalid target for assignment in INSERT or UPDATE statement '%s'.ER_OPERATION_NOT_ALLOWED_ON_GR_SECONDARY This operation cannot be performed on a Group Replication secondary member, it must be done on the group primary.ER_GRP_RPL_FAILOVER_CHANNEL_STATUS_PROPAGATION Unable to propagate the SOURCE_CONNECTION_AUTO_FAILOVER value for channel '%s' to group replication members. Please retry the operation.ER_WARN_AUDIT_LOG_FORMAT_UNIX_TIMESTAMP_ONLY_WHEN_JSON audit_log_format_unix_timestamp is applicable only when audit_log_format = JSON.ER_INVALID_MFA_PLUGIN_SPECIFIED Invalid plugin "%s" specified as %d factor during "%s".ER_IDENTIFIED_BY_UNSUPPORTED IDENTIFIED BY clause during "%s" not supported for plugin "%s".ER_INVALID_PLUGIN_FOR_REGISTRATION This operation is not supported for plugin "%s".ER_PLUGIN_REQUIRES_REGISTRATION Authentication plugin requires registration. Please refer ALTER USER syntax or set --register-factor command line option to do registration.ER_MFA_METHOD_EXISTS %d factor authentication method exists. Please do ALTER USER... DROP %d factor before doing this operation OR do ALTER USER... MODIFY %d factor... to modify…ER_MFA_METHOD_NOT_EXISTS %d factor authentication method doesn't exist. Please do ALTER USER... ADD %d factor... before doing this operation.ER_AUTHENTICATION_POLICY_MISMATCH %d factor authentication method does not match against authentication policy. Please refer @@authentication_policy system variable.ER_PLUGIN_REGISTRATION_DONE The registration for %d factor authentication method is already completed. You cannot perform registration multiple times.ER_INVALID_USER_FOR_REGISTRATION The registration operation is not allowed for user '%s'@'%s'. The operation can only be performed in user's own session.ER_USER_REGISTRATION_FAILED Authentication plugin's registration failed.ER_MFA_METHODS_INVALID_ORDER %d factor authentication method should be added before %d factor authentication method.ER_MFA_METHODS_IDENTICAL Authentication factor should be different.ER_INVALID_MFA_OPERATIONS_FOR_PASSWORDLESS_USER The operation "%s" cannot be performed for user '%s'@'%s' configured to connect without a password.ER_CHANGE_REPLICATION_SOURCE_NO_OPTIONS_FOR_GTID_ONLY GTID_ONLY cannot be enabled for replication channel '%s'. You need GTID_MODE = ON, SOURCE_AUTO_POSITION = 1 and REQUIRE_ROW_FORMAT = 1.ER_CHANGE_REP_SOURCE_CANT_DISABLE_REQ_ROW_FORMAT_WITH_GTID_ONLY REQUIRE_ROW_FORMAT cannot be disabled for replication channel '%s' when GTID_ONLY=1.ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POSITION_WITH_GTID_ONLY SOURCE_AUTO_POSITION cannot be disabled for replication channel '%s' when GTID_ONLY=1.ER_CHANGE_REP_SOURCE_CANT_DISABLE_GTID_ONLY_WITHOUT_POSITIONS When disabling GTID_ONLY and SOURCE_AUTO_POSITION FOR CHANNEL '%s' you must provide SOURCE_LOG_FILE and SOURCE_LOG_POS as source positions are invalid.ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POS_WITHOUT_POSITIONS When disabling SOURCE_AUTO_POSITION FOR CHANNEL '%s' you must provide SOURCE_LOG_FILE and SOURCE_LOG_POS as source positions are invalid.ER_CHANGE_REP_SOURCE_GR_CHANNEL_WITH_GTID_MODE_NOT_ON When configuring a group replication channel you must do it when GTID_MODE = ON.ER_CANT_USE_GTID_ONLY_WITH_GTID_MODE_NOT_ON Replication cannot start%s with GTID_ONLY = 1 as this server uses @@GLOBAL.GTID_MODE <> ON.ER_WARN_C_DISABLE_GTID_ONLY_WITH_SOURCE_AUTO_POS_INVALID_POS The replication positions relative to the source may be out-of-date on channel '%s', due to the use of GTID_ONLY=1. The out-of-date positions can still be us…ER_DA_SSL_FIPS_MODE_ERROR SSL fips mode error: %sER_VALUE_OUT_OF_RANGE %s=%llu is outside the valid range [%llu,%llu]. %llu will be used.ER_FULLTEXT_WITH_ROLLUP MATCH does not support ROLLUP columns.ER_REGEXP_MISSING_RESOURCE Missing locale resource in regular expression library.ER_WARN_REGEXP_USING_DEFAULT Regular expression library used default (root) locale.ER_REGEXP_MISSING_FILE Missing data file in regular expression library.ER_WARN_DEPRECATED_COLLATION '%s' is a collation of the deprecated character set %s. Please consider using %s with an appropriate collation instead.ER_CONCURRENT_PROCEDURE_USAGE The %s was called when there was already another concurrent call to this procedure. No action was taken. Wait for other calls to %s to finish before retrying.ER_DA_GLOBAL_CONN_LIMIT Connection closed. Global connection memory limit %llu bytes exceeded. Consumed %llu bytes.ER_DA_CONN_LIMIT Connection closed. Connection memory limit %llu bytes exceeded. Consumed %llu bytes.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE_INSTANT Need to rebuild the table to change column typeER_WARN_SF_UDF_NAME_COLLISION This function '%s' has the same name as a loadable function (UDF). To invoke the stored function, it is necessary to qualify it with the schema name.ER_CANNOT_PURGE_BINLOG_WITH_BACKUP_LOCK Could not purge binary logs since another session is executing LOCK INSTANCE FOR BACKUP. Wait for that session to release the lock.ER_TOO_MANY_WINDOWS Too many windows in SELECT: %d. Maximum allowed is %d. Use named windows to share windows between window functions.ER_MYSQLBACKUP_CLIENT_MSG %sER_COMMENT_CONTAINS_INVALID_STRING Comment for %s '%s' contains an invalid %s character string: '%s'.ER_DEFINITION_CONTAINS_INVALID_STRING Definition of %s '%s.%s' contains an invalid %s character string: '%s'.ER_CANT_EXECUTE_COMMAND_WITH_ASSIGNED_GTID_NEXT Can't execute the given command when @@SESSION.GTID_NEXT == 'UUID:NUMBER'.ER_XA_TEMP_TABLE XA: Temporary tables cannot be accessed inside XA transactions when xa_detach_on_prepare=ONER_INNODB_MAX_ROW_VERSION Maximum row versions reached for table %s. No more columns can be added or dropped instantly. Please use COPY/INPLACE.ER_OPERATION_NOT_ALLOWED_WHILE_PRIMARY_CHANGE_IS_RUNNING All queries have been blocked while function 'group_replication_set_as_primary()' is executing. Please refer timeout parameter of function 'group_replication…ER_WARN_DEPRECATED_DATETIME_DELIMITER Delimiter '%s' in position %d in datetime value '%s' at row %d is deprecated. Prefer the standard '%c'.ER_WARN_DEPRECATED_SUPERFLUOUS_DELIMITER Delimiter '%s' in position %d in datetime value '%s' at row %d is superfluous and is deprecated. Please remove.ER_CANNOT_PERSIST_SENSITIVE_VARIABLES Cannot persist SENSITIVE system variable '%s' because keyring component support is unavailable.ER_WARN_CANNOT_SECURELY_PERSIST_SENSITIVE_VARIABLES SENSITIVE system variable '%s' was persisted without encryption. Consider restarting server with keyring component support to persist SENSITIVE variables sec…ER_WARN_TRG_ALREADY_EXISTS Trigger '%s' already exists on the table '%s'.'%s'.ER_IF_NOT_EXISTS_UNSUPPORTED_TRG_EXISTS_ON_DIFFERENT_TABLE Trigger '%s'.'%s' already exists on a different table. The 'IF NOT EXISTS' clause is only supported for triggers associated with the same table.ER_IF_NOT_EXISTS_UNSUPPORTED_UDF_NATIVE_FCT_NAME_COLLISION This function '%s' has the same name as a native function. The 'IF NOT EXISTS' clause is not supported while creating a loadable function with the same name…ER_SET_PASSWORD_AUTH_PLUGIN_ERROR SET PASSWORD has no significance for user '%s'@'%s' as the authentication method used doesn't store authentication data in the MySQL server. Please consider…ER_SRS_INVALID_LATITUDE_OF_ORIGIN Latitude of origin must be within [-90, 90] degrees, specified in the SRS angular unit.ER_SRS_INVALID_LONGITUDE_OF_ORIGIN Longitude of origin must be within (-180, 180] degrees, specified in the SRS angular unit.ER_SRS_UNUSED_PROJ_PARAMETER_PRESENT The spatial reference system definition for SRID %u contains unused projection parameter "%s".ER_GIPK_COLUMN_EXISTS Failed to generate invisible primary key. Column 'my_row_id' already exists.ER_GIPK_FAILED_AUTOINC_COLUMN_EXISTS Failed to generate invisible primary key. Auto-increment column already exists.ER_GIPK_COLUMN_ALTER_NOT_ALLOWED Altering generated invisible primary key column 'my_row_id' is not allowed.ER_DROP_PK_COLUMN_TO_DROP_GIPK Please drop primary key column to be able to drop generated invisible primary key.ER_CREATE_SELECT_WITH_GIPK_DISALLOWED_IN_SBR Generating an invisible primary key for a table created using CREATE TABLE ... SELECT ... is disallowed when binlog_format=STATEMENT. It cannot be guaranteed…ER_CTE_RECURSIVE_NOT_UNION Recursive table reference in EXCEPT or INTERSECT operand is not allowed.ER_COMMAND_BACKEND_FAILED_TO_FETCH_SECURITY_CTX Error when trying to fetch information from security context object, when trying to connect the server.ER_COMMAND_SERVICE_BACKEND_FAILED Error in command service backend interface, because of : "%s"ER_CLIENT_FILE_PRIVILEGE_FOR_REPLICATION_CHECKS The PRIVILEGE_CHECKS_USER for channel '%s' would need FILE privilege to execute a LOAD DATA INFILE statement replicated in statement format. Consider using b…ER_GROUP_REPLICATION_FORCE_MEMBERS_COMMAND_FAILURE The 'SET GLOBAL group_replication_force_members=%s' command encountered a failure. %sER_WARN_DEPRECATED_IDENT Using %s as unquoted identifier is deprecated, please use quotes or rename the identifier.ER_INTERSECT_ALL_MAX_DUPLICATES_EXCEEDED Max number of duplicate rows in INTERSECT ALL exceeded.ER_TP_QUERY_THRS_PER_GRP_EXCEEDS_TXN_THR_LIMIT Query threads count(%u) exceeds transaction threads limit(%u) per group. Please use query threads count per group smaller or equal to max transaction threads…ER_BAD_TIMESTAMP_FORMAT Invalid timestamp format in %s udfER_SHAPE_PRIDICTION_UDF SHAPE_PREDICTION UDF %s got error because of %s.ER_SRS_INVALID_HEIGHT Height parameter must be non negative.ER_SRS_INVALID_SCALING Scaling parameter must be non negative.ER_SRS_INVALID_ZONE_WIDTH Zone width parameter must be an integer between 1-60.ER_SRS_INVALID_LATITUDE_POLAR_STERE_VAR_A Latitude of origin must be +-90 degrees, specified in the SRS angular unit, in Polar Stereographic (variant A) projection method (EPSG:9810).ER_WARN_DEPRECATED_CLIENT_NO_SCHEMA_OPTION The client is using a deprecated CLIENT_NO_SCHEMA client option. CLIENT_NO_SCHEMA will be removed in a future release.ER_TABLE_NOT_EMPTY Table '%s' is not empty.ER_TABLE_NO_PRIMARY_KEY Table '%s' has no primary key.ER_TABLE_IN_SHARED_TABLESPACE Table '%s' is in a shared tablespace.ER_INDEX_OTHER_THAN_PK Table '%s' has indexes other than primary key.ER_LOAD_BULK_DATA_UNSORTED [IN PRIMARY KEY ORDER] specified but data not sorted: '%s'ER_BULK_EXECUTOR_ERROR Bulk executor error: %sER_BULK_READER_LIBCURL_INIT_FAILED Bulk reader failed to initialize libcurlER_BULK_READER_LIBCURL_ERROR Bulk reader got libcurl error: %sER_BULK_READER_SERVER_ERROR Bulk reader got error response from server: %ldER_BULK_READER_COMMUNICATION_ERROR Bulk reader got error in communication with source server, check the error log for additional details.ER_BULK_LOAD_DATA_FAILED Bulk loader failed in Innodb storage engine, check the error log for additional details.ER_BULK_LOADER_COLUMN_TOO_BIG_FOR_LEFTOVER_BUFFER CSV column too big for leftover buffer.ER_BULK_LOADER_COMPONENT_ERROR Bulk loader component error: %sER_BULK_LOADER_FILE_CONTAINS_LESS_LINES_THAN_IGNORE_CLAUSE The first file being loaded contained less lines than the ignore clauseER_BULK_PARSER_MISSING_ENCLOSED_BY Missing ENCLOSED BY character at row %ld in file '%s'. Add OPTIONALLY to the ENCLOSED BY clause to allow this input.ER_BULK_PARSER_ROW_BUFFER_MAX_TOTAL_COLS_EXCEEDED The number of input columns that need to be buffered for parsing exceeded predefined buffer max size for file '%s'.ER_BULK_PARSER_COPY_BUFFER_SIZE_EXCEEDED The column data that needed to be copied due to escaped characters exceeded the size of the internal copy buffer for file '%s'.ER_BULK_PARSER_UNEXPECTED_END_OF_INPUT Unexpected end of input found at row %ld in file '%s'. Data for some columns is missing.ER_BULK_PARSER_UNEXPECTED_ROW_TERMINATOR Unexpected row terminator found at row %ld in file '%s'. Data for some columns is missing.ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_ENDING_ENCLOSED_BY Unexpected characters after ending ENCLOSED BY character found at row %ld in file '%s'.ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_NULL_ESCAPE Unexpected characters after NULL escape (\\N) found at row %ld in file '%s'.ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_COLUMN_TERMINATOR Unexpected characters after column terminator found at row %ld in file '%s'.ER_BULK_PARSER_INCOMPLETE_ESCAPE_SEQUENCE Unexpected end of input found at row %ld in file '%s' resulting in incomplete escape sequence.ER_LOAD_BULK_DATA_FAILED LOAD BULK DATA into table '%s' failed: %sER_LOAD_BULK_DATA_WRONG_VALUE_FOR_FIELD Incorrect %s value: '%s' for column '%s' at row %ld in file '%s'ER_LOAD_BULK_DATA_WARN_NULL_TO_NOTNULL NULL supplied to NOT NULL column '%s' at row %ld in file '%s'ER_REQUIRE_TABLE_PRIMARY_KEY_CHECK_GENERATE_WITH_GR On a Group Replication channel, setting REQUIRE_TABLE_PRIMARY_KEY_CHECK to 'GENERATE' is not allowed.ER_CANT_CHANGE_SYS_VAR_IN_READ_ONLY_MODE Cannot change the '%s' system variable in read-only mode.ER_INNODB_INSTANT_ADD_DROP_NOT_SUPPORTED_MAX_SIZE Column can't be added or dropped with ALGORITHM=INSTANT as either max possible row size already crosses max permissible row size or may cross it after add. T…ER_INNODB_INSTANT_ADD_NOT_SUPPORTED_MAX_FIELDS Column can't be added to '%s' with ALGORITHM=INSTANT anymore. Please try ALGORITHM=INPLACE/COPY.ER_CANT_SET_PERSISTED Failed to set persisted options.ER_INSTALL_COMPONENT_SET_NULL_VALUE The value supplied for %s in the SET list cannot be nullER_INSTALL_COMPONENT_SET_UNUSED_VALUE The assignment of %s in SET doesn't match any of the variables registered by the component(s)ER_WARN_DEPRECATED_USER_DEFINED_COLLATIONS '%s' is a user defined collation. User defined collations are deprecated and will be removed in a future release. Consider using a compiled collation instead.ER_USER_LOCK_OVERLONG_NAME User-level lock name '%s' should not exceed %d characters.ER_WARN_NO_SPACE_VERSION_COMMENT Immediately starting the version comment after the version number is deprecated and may change behavior in a future release. Please insert a white-space char…ER_VALIDATE_PASSWORD_INSUFFICIENT_CHANGED_CHARACTERS The new password must have at least '%u' characters that are different from the old password. It has only '%u' character(s) different. For this comparison, u…ER_WARN_DEPRECATED_WITH_NOTE '%s' is deprecated and will be removed in a future release. %sER_CANT_RUN_COMMAND_SERVICES_RECURSIVELY Running recursive calls to SQL execution service is not supportedER_WARN_AUDIT_LOG_FILTER_RECOVERY_LOGGING_DISABLED The 'audit_log_filter_recovery_mode' variable is set to LOG_NOTHING_IF_INVALID_FILTER_DETECTED, meaning audit events will not be logged if the filter is inva…ER_CTE_EXPANSION_LIMIT_EXCEEDED Common table expression expansion exceeded an implementation limit. Simplify the query.ER_LANGUAGE_COMPONENT %sER_LANGUAGE_COMPONENT_NOT_AVAILABLE Language component: Not available.ER_LANGUAGE_COMPONENT_UNSUPPORTED_LANGUAGE Language component: Unsupported language '%s'ER_LANGUAGE_COMPONENT_CANNOT_UNINSTALL Language component: Cannot uninstall due to connected sessions. Please disconnect all sessions and try again.ER_SP_NO_ALTER_LANGUAGE Altering the language of an existing routine is not possible.ER_EXPLAIN_INTO_ANALYZE_NOT_SUPPORTED EXPLAIN ANALYZE does not support the INTO clause.ER_EXPLAIN_INTO_IMPLICIT_FORMAT_NOT_SUPPORTED EXPLAIN INTO does not support implicit FORMAT.ER_EXPLAIN_INTO_FORMAT_NOT_SUPPORTED EXPLAIN INTO does not support FORMAT=%s.ER_NULL_CANT_BE_PERSISTED_FOR_READONLY Trying to persist a NULL into a variable '%s' that's settable only on command line is not supportedER_EXPLAIN_INTO_FOR_CONNECTION_NOT_SUPPORTED EXPLAIN FOR CONNECTION does not support the INTO clause.ER_INNODB_IMPORT_WRONG_DROPPED_ENUM_LENGTH Enum element name length %lu, is invalid for column %sER_INNODB_IMPORT_WRONG_NUMBER_OF_INDEXES_ZERO Number of indexes in meta-data file is 0ER_INNODB_IMPORT_WRONG_NUMBER_OF_INDEXES_TOO_HIGH Number of indexes in meta-data file is too high: %lluER_INNODB_IMPORT_DROP_COL_METADATA_MISMATCH DD metadata for INSTANT DROP column %s in target table doesn't match with CFG.ER_INNODB_IMPORT_ENUM_NULL_TERMINATOR_MISSING Enum/Set element name missing null terminator for column '%s'ER_SIMULATED_INJECTION_ERROR %s %s %zu.ER_WARN_DEPRECATED_DYNAMIC_PRIV_IN_GRANT The privilege '%s' is deprecated.ER_BULK_MULTI_READER_OPEN_FILE_FAILED Bulk Multi Reader: Failed to open fileER_BULK_MULTI_READER_READ_FILE_FAILED Bulk Multi Reader: Failed to read fileER_BULK_MERGE_INVALID_CHUNK Bulk Merge Loader: Invalid ChunkER_BULK_MERGE_NOT_ALL_CHUNKS_CONSUMED Bulk Merge Loader: Not all chunks consumedER_BULK_WRITER_LIBCURL_INIT_FAILED Bulk writer failed to initialize libcurlER_BULK_WRITER_LIBCURL_ERROR Bulk writer got libcurl error: %sER_BULK_SORTING_LOADER_WRITE Bulk Sorting Loader: Failed to write data to temporary fileER_BULK_SORTING_LOADER_WAIT Bulk Sorting Loader: Interrupted while waitingER_BULK_READER_OPEN_FILE_FAILED Bulk Reader: Failed to access file %sER_BULK_LOAD_TABLE_HAS_INSTANT_COLS Bulk Loader: Table '%s' has instantly added/dropped columns. Please TRUNCATE TABLE and retry.ER_BULK_LOAD_RESOURCE Bulk Loader: Not enough memory available. Memory needed for loading %s data: %s for %u threads, %s with minimal configuration. Total configured memory is %s,…ER_BULK_LOAD_SECONDARY_ENGINE LOAD DATA with BULK Algorithm is not supported on a table with secondary engine.ER_BULK_READER_ERROR Bulk reader error: %sER_BULK_READER_FILE_DOESNT_EXIST File not found, check whether it exists: %sER_BULK_READER_COULDNT_RESOLVE_HOST Couldn't resolve host: %sER_START_REPLICA_CHANNEL_INVALID_CONFIGURATION Cannot start replication channel '%s' because %s.ER_CANNOT_EXECUTE_IN_PRIMARY '%s' is not supportedER_TOO_MANY_GROUP_BY_MODIFIER_BRANCHES '%s' is supported with maximum %d elements in the GROUP BY listER_WARN_DEPRECATED_ENGINE_SYNTAX_NO_REPLACEMENT '%s' for '%s' storage engine is deprecated and will be removed in a future release.ER_QUALIFY_WITHOUT_WINDOW_FUNCTION QUALIFY clause cannot be used without a window function.ER_SUPPORTED_ONLY_WITH_HYPERGRAPH '%s' can be used only if the hypergraph optimizer is enabled.ER_SPECIFIC_ACCESS_DENIED Access denied; you need %s privilege(s) for this operationER_CANT_SET_GTID_NEXT_TO_AUTOMATIC_TAGGED_WHEN_GTID_MODE_IS_OFF @@SESSION.GTID_NEXT cannot be set to AUTOMATIC:<TAG> when @@GLOBAL.GTID_MODE = OFF or OFF_PERMISSIVEER_GTID_NEXT_TAG_GTID_MODE_OFF @@SESSION.GTID_NEXT cannot be set to UUID:TAG:NUMBER when @@GLOBAL.GTID_MODE = OFF.ER_LH_COL_NOT_NULLABLE Column %d of %s : Column contains null but it is not nullable.ER_LH_WARN_COL_MISSING_NOT_NULLABLE Column %d of %s : Column is missing, but it is not nullable and no explicit default value is provided.ER_LH_COL_IS_EMPTY Column %d of %s : Column is empty.ER_LH_COL_IS_EMPTY_WARN Column %d of %s : Column is empty, setting default value.ER_LH_BAD_VALUE Column %d of %s : Invalid %s value.ER_LH_DECIMAL_UNKNOWN_ERR Column %d of %s : Unknown error while parsing decimal.ER_LH_DECIMAL_OOM_ERR Column %d of %s : Out of memory loading decimal.ER_LH_WARN_DECIMAL_ROUNDING Column %d of %s : Fraction exceeds schema, rounding value.ER_LH_DECIMAL_PRECISION_EXCEEDS_SCHEMA Column %d of %s : decimal precision exceeds schema.ER_LH_EXCEEDS_MIN Column %d of %s : %s exceeds min.ER_LH_EXCEEDS_MAX Column %d of %s : %s exceeds max.ER_LH_WARN_EXCEEDS_MIN_TRUNCATING Column %d of %s : %s exceeds min, setting to min value possible.ER_LH_WARN_EXCEEDS_MAX_TRUNCATING Column %d of %s : %s exceeds max, setting to max value possible.ER_LH_REAL_IS_NAN Column %d of %s : Real value is NaN.ER_LH_OUT_OF_RANGE Column %d of %s : %s value is out of range.ER_LH_DATETIME_FORMAT Column %d of %s : Error while applying %s format.ER_LH_WARN_TRUNCATED Column %d of %s : %s value was truncated.ER_LH_CANNOT_CONVERT_STRING Column %d of %s : Cannot convert string %s.ER_LH_RESOURCE_PRINCIPAL_ERR Resource principal error.ER_LH_AWS_AUTH_ERR AWS authentication error.ER_LH_CSV_PARSING_ERR %s:%lu: Parsing error found. %s.ER_LH_COLUMN_MISMATCH_ERR %s: Mismatch in the number of columns. Expected %u, found %u.ER_LH_COLUMN_MAX_ERR %s: More than %u column(s) found.ER_LH_CHARSET_UNSUPPORTED Column %d in %s: Charset is not supported.ER_LH_PARQUET_DECIMAL_CONVERSION_ERR Column %d in %s: Decimal conversion error.ER_LH_STRING_TOO_LONG Column %d in %s: String is too long.ER_LH_RESOURCE_PRINCIPAL_BUCKET_ERR Resource Principal endpoint is not configured. Cannot access following buckets: %s.ER_LH_NO_FILES_FOUND No files found corresponding to the following data locations: %s.ER_LH_EMPTY_FILE File %s is empty.ER_LH_DUPLICATE_FILE File %s was not processed (duplicate).ER_LH_AVRO_SCHEMA_DEPTH_EXCEEDS_MAX File %s: Avro schema depth exceeds max allowed depth.ER_LH_AVRO_HEADER_MISMATCH File %s: Header does not match other files.ER_LH_AVRO_ENUM_CANNOT_CONVERT_CHARSET File %s: Enum symbol can't convert to column charset.ER_LH_AVRO_ENUM_MISMATCH File %s: Enum symbols are not the same, or are not in the same order.ER_LH_AVRO_TYPE_CANNOT_CONVERT Column %d in %s: Avro value of physical type %.*s logical type %.*s cannot be converted to mysql type %s.ER_LH_AVRO_FILE_ENDS_UNEXPECTEDLY File %.*s: Ends unexpectedly.ER_LH_AVRO_FILE_DATA_CORRUPT File %.*s: File data might be corrupt.ER_LH_AVRO_INVALID_UNION Column %d in %s: Invalid union encountered. Unions are only supported to represent nullable columns. One of the two types of the union must be null.ER_LH_AVRO_INVALID_BLOCK_SIZE File %.*s: Invalid avro block size.ER_LH_AVRO_INVALID_BLOCK_RECORD_COUNT File %.*s: Invalid Avro block record count.ER_LH_FORMAT_HEADER_NO_MAGIC_BYTES File %.*s: Cannot locate %s specific metadata. Either the file is corrupted or this is not an %s file.ER_LH_AVRO_HEADER_METADATA_ERR File %.*s: Could not process Avro header metadata. The metadata is corrupted or invalid.ER_LH_AVRO_HEADER_NO_SCHEMA File %.*s: No schema in Avro header metadata.ER_LH_AVRO_NO_CODEC_IN_HEADER File %.*s: No codec in Avro header metadata.ER_LH_AVRO_INVALID_NAME_IN_SCHEMA File %.*s: Invalid name in Avro schema.ER_LH_AVRO_DECODING_ERR File %.*s: Error decoding Avro %.*s. %sER_LH_PARQUET_NON_UTF8_FILE_ENC Column %d in %s: String with non-utf8 file encoding.ER_LH_PARQUET_SCHEMA_MISMATCH Difference in schema among Parquet files.ER_LH_PARQUET_ROW_GROUP_SIZE_EXCEEDS_MAX File %s: Size of row group %ld is larger than maximum allowed size (%d).ER_LH_PARQUET_CANNOT_LOCATE_OFFSET File %s: Cannot locate offset of row group %ld in metadata.ER_LH_PARQUET_TYPE_CANNOT_CONVERT Column %d in parquet table cannot be converted to mysql format.ER_LH_PARQUET_CANNOT_LOCATE_SCHEMA Cannot locate schema in %s.ER_LH_INFER_SCHEMA_MISMATCH Found files with mismatched schemas.ER_LH_OOM Insufficient memory.ER_LH_WARN_INFER_SKIPPED_LINES Skipped %lu line(s) due to mismatched num of cols.ER_LH_WARN_INFER_SKIPPED_FILES Skipped %lu file(s) due to mismatched num of cols.ER_LH_INFER_FILE_HAS_NO_DATA File %s is skipped because it has no valid data. File is either empty or all rows are skipped.ER_LH_INFER_NO_DATA No valid data found for processing.ER_LH_INFER_NO_FILES No valid files found for processing.ER_LH_WARN_INFER_USE_DEFAULT_COL_NAMES Used default column names for column index(s) %s as they are %s.ER_LH_PARQUET_CANNOT_READ_HEADER File %s: Unable to read Parquet header.ER_LH_INFER_WARN_GOT_EXCEPTION Got an exception while trying to process file task.ER_LH_AVRO_CANNOT_PARSE_HEADER File %.*s: Could not parse avro header. Probably corrupted avro file.ER_LH_PARQUET_CANT_OPEN_FILE Parquet reader cannot open %s. %sER_LH_TOO_LARGE_VALUE_ERR File %.*s: %sER_LH_TOO_LARGE_ROW_ERR File %.*s: %sER_TABLESAMPLE_PERCENTAGE Tablesample percentage should range between 0 and 100.ER_TABLESAMPLE_ONLY_ON_BASE_TABLES Tablesample can be applied only on base tables.ER_RESULT_SIZE_LIMIT_EXCEEDED Result size limit exceeded.ER_LANGUAGE_COMPONENT_INTERNAL Language component: Internal error.ER_LANGUAGE_COMPONENT_CONCURRENCY_LIMIT Language component: Concurrency limit (%s) has been reached.ER_LANGUAGE_COMPONENT_RUNTIME %s> %sER_LANGUAGE_COMPONENT_TIMEZONE %s> Time zone %s is not supported.ER_LANGUAGE_COMPONENT_KEYWORD %s> The identifier '%s' is a reserved word.ER_LANGUAGE_COMPONENT_SET_SYSTEM_VARIABLE Language component: System variable '%s' cannot be configured when component is active.ER_LANGUAGE_COMPONENT_UNSUPPORTED_TYPE %s> %sER_LANGUAGE_COMPONENT_CONVERSION %s> %sER_WARN_SP_STATEMENT_PARTIALLY_EXECUTED Stored program statement is partially completed. Result set might not contain all the rows.ER_STMT_EXECUTION_NOT_ALLOWED_WITHIN_SP_OR_TRG_OR_UDF Executing SQL statement using %s Statement Handle Interface is not allowed within stored function, trigger or loadable function (UDF).ER_LH_JSON_PARSING Column %d of %s : %sER_ENGINE_CANNOT_BE_DEFAULT Engine %s cannot be set as default_storage_engine.ER_PARTITION_PREFIX_KEY_NOT_SUPPORTED Column '%s.%s.%s' having prefix key part '%s(%u)' in the PARTITION BY KEY() clause is not supported.ER_WARN_DEPRECATED_NON_STANDARD_KEY Foreign key '%s' refers to non-unique key or partial key. This is deprecated and will be removed in a future release.ER_FK_NO_UNIQUE_INDEX_PARENT Failed to add the foreign key constraint. Missing unique key for constraint '%s' in the referenced table '%s'ER_ACCESS_DENIED_NO_PROXY_GRANT Access denied for user '%s'@'%s', missing proxy privilege.ER_ACCESS_DENIED_NO_PROXY Access denied for user '%s'@'%s', proxied user doesn't exist.ER_LH_USER_DATA_ACCESS_FAILED Unable to access the following data locations: %sER_BULK_READER_ZSTD_ERROR ZSTD decompression failed: %sER_BULK_PARSER_ERROR %sER_LH_INVALID_JSON_FILE_FORMAT_SCHEMA Invalid json file format schema: %sER_LH_INFER_JSON_INVALID_SCHEMA Inferred invalid schema. A single column with JSON type is the only valid schema for JSON file format.ER_LH_JSON_FILE_FORMAT_WARN_INFER_SCHEMA Altered the inferred schema to a single JSON column.ER_NON_SCALAR_USED_AS_KEY Non-scalar (e.g., vector) column '%s' cannot be used as key.ER_INCOMPATIBLE_TYPE_AGG Columns aggregated with incompatible types: '%s', '%s'.ER_DATA_INCOMPATIBLE_WITH_VECTOR Value of type '%s, size: %zu' cannot be converted to 'vector' type.ER_EXCEEDS_VECTOR_MAX_DIMENSIONS Data size (%zu Bytes, %u dimensions) exceeds VECTOR max (%zu Bytes, %u dimensions) for column: '%s'ER_TO_VECTOR_CONVERSION Data cannot be converted to a valid vector: '%.*s'ER_EXTERNAL_UNSUPPORTED_INDEX_ALGORITHM This storage engine ignores the %s index algorithm.ER_TP_CANNOT_DISABLE_MTL_WITH_DL The variable thread_pool_max_transactions_limit cannot be set to 0 when thread_pool_dedicated_listernes is ON.ER_GRP_RPL_CONNECTION_HANDOFF_BUSY Group Replication connection handoff is busy; retry the connection.CR_UNKNOWN_ERROR Unknown MySQL errorCR_SOCKET_CREATE_ERROR Can't create UNIX socket (%d)CR_CONNECTION_ERROR Can't connect to local MySQL server through socket '%s' (%d)CR_CONN_HOST_ERROR Can't connect to MySQL server on '%s:%u' (%d)CR_IPSOCK_ERROR Can't create TCP/IP socket (%d)CR_UNKNOWN_HOST Unknown MySQL server host '%s' (%d)CR_SERVER_GONE_ERROR MySQL server has gone awayCR_VERSION_ERROR Protocol mismatch; server version = %d, client version = %dCR_OUT_OF_MEMORY MySQL client ran out of memoryCR_WRONG_HOST_INFO Wrong host infoCR_LOCALHOST_CONNECTION Localhost via UNIX socketCR_TCP_CONNECTION %s via TCP/IPCR_SERVER_HANDSHAKE_ERR Error in server handshakeCR_SERVER_LOST Lost connection to MySQL server during queryCR_COMMANDS_OUT_OF_SYNC Commands out of sync; you can't run this command nowCR_NAMEDPIPE_CONNECTION Named pipe: %sCR_NAMEDPIPEWAIT_ERROR Can't wait for named pipe to host: %s pipe: %s (%lu)CR_NAMEDPIPEOPEN_ERROR Can't open named pipe to host: %s pipe: %s (%lu)CR_NAMEDPIPESETSTATE_ERROR Can't set state of named pipe to host: %s pipe: %s (%lu)CR_CANT_READ_CHARSET Can't initialize character set %s (path: %s)CR_NET_PACKET_TOO_LARGE Got packet bigger than 'max_allowed_packet' bytesCR_EMBEDDED_CONNECTION Embedded serverCR_PROBE_REPLICA_STATUS Error on SHOW REPLICA STATUS:CR_PROBE_REPLICA_HOSTS Error on SHOW REPLICA HOSTS:CR_PROBE_REPLICA_CONNECT Error connecting to replica:CR_PROBE_SOURCE_CONNECT Error connecting to source:CR_SSL_CONNECTION_ERROR SSL connection error: %sCR_MALFORMED_PACKET Malformed packetCR_WRONG_LICENSE This client library is licensed only for use with MySQL servers having '%s' licenseCR_NULL_POINTER Invalid use of null pointerCR_NO_PREPARE_STMT Statement not preparedCR_PARAMS_NOT_BOUND No data supplied for parameters in prepared statementCR_DATA_TRUNCATED Data truncatedCR_NO_PARAMETERS_EXISTS No parameters exist in the statementCR_INVALID_PARAMETER_NO Invalid parameter numberCR_INVALID_BUFFER_USE Can't send long data for non-string/non-binary data types (parameter: %d)CR_UNSUPPORTED_PARAM_TYPE Using unsupported buffer type: %d (parameter: %d)CR_SHARED_MEMORY_CONNECTION Shared memory: %sCR_SHARED_MEMORY_CONNECT_REQUEST_ERROR Can't open shared memory; client could not create request event (%lu)CR_SHARED_MEMORY_CONNECT_ANSWER_ERROR Can't open shared memory; no answer event received from server (%lu)CR_SHARED_MEMORY_CONNECT_FILE_MAP_ERROR Can't open shared memory; server could not allocate file mapping (%lu)CR_SHARED_MEMORY_CONNECT_MAP_ERROR Can't open shared memory; server could not get pointer to file mapping (%lu)CR_SHARED_MEMORY_FILE_MAP_ERROR Can't open shared memory; client could not allocate file mapping (%lu)CR_SHARED_MEMORY_MAP_ERROR Can't open shared memory; client could not get pointer to file mapping (%lu)CR_SHARED_MEMORY_EVENT_ERROR Can't open shared memory; client could not create %s event (%lu)CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR Can't open shared memory; no answer from server (%lu)CR_SHARED_MEMORY_CONNECT_SET_ERROR Can't open shared memory; cannot send request event to server (%lu)CR_CONN_UNKNOW_PROTOCOL Wrong or unknown protocolCR_INVALID_CONN_HANDLE Invalid connection handleCR_UNUSED_1 Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)CR_FETCH_CANCELED Row retrieval was canceled by mysql_stmt_close() callCR_NO_DATA Attempt to read column without prior row fetchCR_NO_STMT_METADATA Prepared statement contains no metadataCR_NO_RESULT_SET Attempt to read a row while there is no result set associated with the statementCR_NOT_IMPLEMENTED This feature is not implemented yetCR_SERVER_LOST_EXTENDED Lost connection to MySQL server at '%s', system error: %dCR_STMT_CLOSED Statement closed indirectly because of a preceding %s() callCR_NEW_STMT_METADATA The number of columns in the result set differs from the number of bound buffers. You must reset the statement, rebind the result set columns, and execute th…CR_ALREADY_CONNECTED This handle is already connected. Use a separate handle for each connection.CR_AUTH_PLUGIN_CANNOT_LOAD Authentication plugin '%s' cannot be loaded: %sCR_DUPLICATE_CONNECTION_ATTR There is an attribute with the same name alreadyCR_AUTH_PLUGIN_ERR Authentication plugin '%s' reported error: %sCR_INSECURE_API_ERR Insecure API function call: '%s' Use instead: '%s'CR_FILE_NAME_TOO_LONG File name is too longCR_SSL_FIPS_MODE_ERR Set FIPS mode ON/STRICT failedCR_DEPRECATED_COMPRESSION_NOT_SUPPORTED Compression protocol not supported with asynchronous protocolCR_COMPRESSION_WRONGLY_CONFIGURED Connection failed due to wrongly configured compression algorithmCR_KERBEROS_USER_NOT_FOUND SSO user not found, Please perform SSO authentication using kerberos.CR_LOAD_DATA_LOCAL_INFILE_REJECTED LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.CR_LOAD_DATA_LOCAL_INFILE_REALPATH_FAIL Determining the real path for '%s' failed with error (%d): %sCR_DNS_SRV_LOOKUP_FAILED DNS SRV lookup failed with error : %dCR_MANDATORY_TRACKER_NOT_FOUND Client does not recognise tracker type %d marked as mandatory by server.CR_INVALID_FACTOR_NO Invalid first argument for MYSQL_OPT_USER_PASSWORD option. Valid value should be between 1 and 3 inclusive.CR_CANT_GET_SESSION_DATA Can't get session data: %sCR_INVALID_CLIENT_CHARSET '%s' character set is having more than 1 byte minimum character length, which cannot be used as a client character set. Please use any of the single byte min…CR_TLS_SERVER_NOT_FOUND Server rejected the ssl handshake for specified sni servername, sslerror: %s