mysql-errors-9.2-en
mysql-errors-9.2-en
This is the MySQL 9.2 Error Message Reference. It lists all error messages produced by server and client programs in
MySQL 9.2. This document accompanies Error Messages and Common Problems, in MySQL 9.2 Reference Manual.
For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL
users.
iii
iv
Preface and Legal Notices
This is the MySQL 9.2 Error Message Reference. It lists all error messages produced by server and client
programs in MySQL 9.2.
Legal Notices
Copyright © 1997, 2025, Oracle and/or its affiliates.
License Restrictions
This software and related documentation are provided under a license agreement containing restrictions
on use and disclosure and are protected by intellectual property laws. Except as expressly permitted
in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast,
modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any
means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for
interoperability, is prohibited.
Warranty Disclaimer
The information contained herein is subject to change without notice and is not warranted to be error-free.
If you find any errors, please report them to us in writing.
If this is software, software documentation, data (as defined in the Federal Acquisition Regulation), or
related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S.
Government, then the following notice is applicable:
U.S. GOVERNMENT END USERS: Oracle programs (including any operating system, integrated
software, any programs embedded, installed, or activated on delivered hardware, and modifications
of such programs) and Oracle computer documentation or other Oracle data delivered to or accessed
by U.S. Government end users are "commercial computer software," "commercial computer software
documentation," or "limited rights data" pursuant to the applicable Federal Acquisition Regulation and
agency-specific supplemental regulations. As such, the use, reproduction, duplication, release, display,
disclosure, modification, preparation of derivative works, and/or adaptation of i) Oracle programs (including
any operating system, integrated software, any programs embedded, installed, or activated on delivered
hardware, and modifications of such programs), ii) Oracle computer documentation and/or iii) other Oracle
data, is subject to the rights and limitations specified in the license contained in the applicable contract.
The terms governing the U.S. Government's use of Oracle cloud services are defined by the applicable
contract for such services. No other rights are granted to the U.S. Government.
This software or hardware is developed for general use in a variety of information management
applications. It is not developed or intended for use in any inherently dangerous applications, including
applications that may create a risk of personal injury. If you use this software or hardware in dangerous
applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other
measures to ensure its safe use. Oracle Corporation and its affiliates disclaim any liability for any damages
caused by use of this software or hardware in dangerous applications.
Trademark Notice
Oracle, Java, MySQL, and NetSuite are registered trademarks of Oracle and/or its affiliates. Other names
may be trademarks of their respective owners.
v
Documentation Accessibility
Intel and Intel Inside are trademarks or registered trademarks of Intel Corporation. All SPARC trademarks
are used under license and are trademarks or registered trademarks of SPARC International, Inc. AMD,
Epyc, and the AMD logo are trademarks or registered trademarks of Advanced Micro Devices. UNIX is a
registered trademark of The Open Group.
This software or hardware and documentation may provide access to or information about content,
products, and services from third parties. Oracle Corporation and its affiliates are not responsible for and
expressly disclaim all warranties of any kind with respect to third-party content, products, and services
unless otherwise set forth in an applicable agreement between you and Oracle. Oracle Corporation and its
affiliates will not be responsible for any loss, costs, or damages incurred due to your access to or use of
third-party content, products, or services, except as set forth in an applicable agreement between you and
Oracle.
This documentation is NOT distributed under a GPL license. Use of this documentation is subject to the
following terms:
You may create a printed copy of this documentation solely for your own personal use. Conversion to other
formats is allowed as long as the actual content is not altered or edited in any way. You shall not publish
or distribute this documentation in any form or on any media, except if you distribute the documentation in
a manner similar to how Oracle disseminates it (that is, electronically for download on a Web site with the
software) or on a CD-ROM or similar medium, provided however that the documentation is disseminated
together with the software on the same medium. Any other use, such as any dissemination of printed
copies or use of this documentation, in whole or in part, in another publication, requires the prior written
consent from an authorized representative of Oracle. Oracle and/or its affiliates reserve any and all rights
to this documentation not expressly granted above.
Documentation Accessibility
For information about Oracle's commitment to accessibility, visit the Oracle Accessibility Program website
at
http://www.oracle.com/pls/topic/lookup?ctx=acc&id=docacc.
vi
Chapter 1 MySQL Error Reference
This document provides a reference for the various types of error messages in MySQL:
• Error messages produced only by the server: Chapter 2, Server Error Message Reference
On the server side, error messages may occur during the startup and shutdown processes, as a result of
issues that occur during SQL statement execution, and so forth.
• The MySQL server writes some error messages to its error log. These indicate issues of interest to
database administrators or that require DBA action.
• The server sends other error messages to client programs. These indicate issues pertaining only to
a particular client. The MySQL client library takes errors received from the server and makes them
available to the host client program.
• Error messages that originate only from within the MySQL client library: Chapter 3, Client Error Message
Reference
Client-side error messages are generated from within the MySQL client library, usually involving
problems communicating with the server.
• Error messages that are shared between the server and the client library: Chapter 4, Global Error
Message Reference
Some “global” error messages are shared in the sense that they can be produced by the MySQL server
or by MySQL client programs.
For a description of the types of error information MySQL provides and how to obtain information about
them, see Error Messages and Common Problems, in MySQL 9.2 Reference Manual.
1
2
Chapter 2 Server Error Message Reference
The MySQL server writes some error messages to its error log, and sends others to client programs.
Example server-side error message sent to client programs, as displayed by the mysql client:
mysql> SELECT * FROM no_such_table;
ERROR 1146 (42S02): Table 'test.no_such_table' doesn't exist
Each server error message includes an error code, SQLSTATE value, and message string, as described
in Error Message Sources and Elements. These elements are available as described in Error Information
Interfaces.
In addition to the errors in the following list, the server can also produce error messages that have error
codes in the range from 1 to 999. See Chapter 4, Global Error Message Reference
Message: NO
Message: YES
Extended EXPLAIN format generates Note messages. ER_YES is used in the Code column for these
messages in subsequent SHOW WARNINGS output.
Occurs for failure to create or copy a file needed for some operation.
Possible causes: Permissions problem for source file; destination file already exists but is not writeable.
InnoDB reports this error when a table cannot be created. If the error message refers to error 150, table
creation failed because a foreign key constraint was not correctly formed. If the error message refers
to error −1, table creation probably failed because the table includes a column name that matched the
name of an internal InnoDB table.
3
• Error number: 1007; Symbol: ER_DB_CREATE_EXISTS; SQLSTATE: HY000
Drop the database first if you really want to replace an existing database, or add an IF NOT EXISTS
clause to the CREATE DATABASE statement if to retain an existing database without having the
statement produce an error.
Returned by InnoDB for attempts to access InnoDB INFORMATION_SCHEMA tables when InnoDB is
unavailable.
InnoDB reports this error when the table from the InnoDB data files cannot be found.
4
Message: Error on rename of '%s' to '%s' (errno: %d - %s)
Check the %d value to see what the OS error means. For example, 28 indicates that you have run out of
disk space.
Message: Table storage engine for '%s' doesn't have this option
Message: Out of memory; restart server and try again (needed %d bytes)
Message: Out of sort memory, consider increasing server sort buffer size
Message: 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 you can add more swap space
5
Message: Can't get hostname for your address
Likely cause: A column appears in a query without appropriate qualification, such as in a select list or ON
clause.
Examples:
mysql> SELECT i FROM t INNER JOIN t AS t2;
ERROR 1052 (23000): Column 'i' in field list is ambiguous
Resolution:
6
mysql> SELECT t2.i FROM t INNER JOIN t AS t2;
The message returned with this error uses the format string for ER_DUP_ENTRY_WITH_KEY_NAME.
7
• Error number: 1066; Symbol: ER_NONUNIQ_TABLE; SQLSTATE: 42000
Message: Specified key was too long; max key length is %d bytes
Message: BLOB column '%s' can't be used in key specification with the used table type
Message: Column length too big for column '%s' (max = %lu); use BLOB or TEXT instead
Message: Incorrect table definition; there can be only one auto column and it must be defined as a key
Message: %s: ready for connections. Version: '%s' socket: '%s' port: %d
Message: Table '%s' has no index like the one used in CREATE INDEX; recreate the table
8
• Error number: 1083; Symbol: ER_WRONG_FIELD_TERMINATORS; SQLSTATE: 42000
Message: Field separator argument is not what is expected; check the manual
Message: You can't use fixed rowlength with BLOBs; please use 'fields terminated by'
Message: The file '%s' must be in the database directory or be readable by all
Message: 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 keys
Message: You can't delete all columns with ALTER TABLE; use DROP TABLE instead
Message: You can't specify target table '%s' for update in FROM clause
This error occurs for attempts to select from and modify the same table within a single statement. If the
select attempt occurs within a derived table, you can avoid this error by setting the derived_merge flag
of the optimizer_switch system variable to force the subquery to be materialized into a temporary
table, which effectively causes it to be a different table from the one modified. See Optimizing Derived
Tables, View References, and Common Table Expressions with Merging or Materialization.
9
Message: No tables used
Message: Table '%s' was locked with a READ lock and can't be updated
Message: BLOB, TEXT, GEOMETRY or JSON column '%s' can't have a default value
Message: 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 okay
10
• Error number: 1111; Symbol: ER_INVALID_GROUP_FUNC_USE; SQLSTATE: HY000
Message: Table '%s' uses an extension that doesn't exist in this MySQL version
InnoDB reports this error when the system tablespace runs out of free space. Reconfigure the system
tablespace to add a new data file.
Message: Too many tables; MySQL can only use %d tables in a join
Message: 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 change some columns to TEXT or
BLOBs
Message: Thread stack overrun: Used: %ld of a %ld stack. Use 'mysqld --thread_stack=#' to specify a
bigger stack if needed
Message: Table handler doesn't support NULL in given index. Please change column '%s' to be NOT
NULL or use another handler
11
Message: No paths allowed for shared library
Message: Host '%s' is blocked because of many connection errors; unblock with 'mysqladmin flush-
hosts'
Message: You are using MySQL as an anonymous user and anonymous users are not allowed to
change passwords
Message: You must have privileges to update tables in the mysql database to be able to change
passwords for others
Message: 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 bug
12
Message: Invalid use of NULL value
Message: There is no such grant defined for user '%s' on host '%s'
Message: %s command denied to user '%s'@'%s' for column '%s' in table '%s'
Message: Illegal GRANT/REVOKE command; please consult the manual to see which privileges can be
used
Message: There is no such grant defined for user '%s' on host '%s' on table '%s'
Message: The used command is not allowed with this MySQL version
Message: You have an error in your SQL syntax; check the manual that corresponds to your MySQL
server version for the right syntax to use
13
• Error number: 1155; Symbol: ER_NET_FCNTL_ERROR; SQLSTATE: 08S01
Message: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't
exist
Message: BLOB/TEXT column '%s' used in key specification without a key length
14
• Error number: 1171; Symbol: ER_PRIMARY_CANT_HAVE_NULL; SQLSTATE: 42000
Message: All parts of a PRIMARY KEY must be NOT NULL; if you need NULL in a key, use UNIQUE
instead
Message: You are using safe update mode and you tried to update a table without a WHERE that uses a
KEY column. %s
Message: Aborted connection %u to db: '%s' user: '%s' host: '%s' (%s)
15
• Error number: 1191; Symbol: ER_FT_MATCHING_KEY_NOT_FOUND; SQLSTATE: HY000
Message: Can't execute the given command because you have active locked tables or an active
transaction
Message: Table '%s' is marked as crashed and last (automatic?) repair failed
Message: This operation requires a running replica; configure replica and do START REPLICA
Message: The server is not configured as replica; fix in config file or with CHANGE REPLICATION
SOURCE TO
Message: Could not initialize connection metadata structure; more error messages can be found in the
MySQL error log
16
InnoDB reports this error when lock wait timeout expires. The statement that waited too long was rolled
back (not the entire transaction). You can increase the value of the innodb_lock_wait_timeout
configuration option if SQL statements should wait longer for other transactions to complete, or decrease
it if too many long-running transactions are causing locking problems and reducing concurrency on a
busy system.
Message: The total number of locks exceeds the lock table size
InnoDB reports this error when the total number of locks exceeds the amount of memory devoted to
managing locks. To avoid this error, increase the value of innodb_buffer_pool_size. Within an
individual application, a workaround may be to break a large operation into smaller pieces. For example,
if the error occurs for a large INSERT, perform several smaller INSERT operations.
Message: Deadlock found when trying to get lock; try restarting transaction
InnoDB reports this error when a transaction encounters a deadlock and is automatically rolled back
so that your application can take corrective action. To recover from this error, run all the operations in
this transaction again. A deadlock occurs when requests for locks arrive in inconsistent order between
transactions. The transaction that was rolled back released all its locks, and the other transaction
can now get all the locks it requested. Thus, when you re-run the transaction that was rolled back, it
might have to wait for other transactions to complete, but typically the deadlock does not recur. If you
encounter frequent deadlocks, make the sequence of locking operations (LOCK TABLES, SELECT ...
FOR UPDATE, and so on) consistent between the different transactions or applications that experience
the issue. See Deadlocks in InnoDB for details.
Message: Cannot add or update a child row: a foreign key constraint fails
InnoDB reports this error when you try to add a row but there is no parent row, and a foreign key
constraint fails. Add the parent row first.
17
Message: Cannot delete or update a parent row: a foreign key constraint fails
InnoDB reports this error when you try to delete a parent row that has children, and a foreign key
constraint fails. Delete the children first.
Message: Can't execute the query because you have a conflicting read lock
Message: User '%s' has exceeded the '%s' resource (current value: %ld)
Message: Access denied; you need (at least one of) the %s privilege(s) for this operation
Message: Variable '%s' is a SESSION variable and can't be used with SET GLOBAL
Message: Variable '%s' is a GLOBAL variable and should be set with SET GLOBAL
18
• Error number: 1233; Symbol: ER_VAR_CANT_BE_READ; SQLSTATE: HY000
Message: Got fatal error %d from source when reading data from binary log: '%s'
Message: Replica SQL thread ignored the query because of replicate-*-table rules
19
• Error number: 1249; Symbol: ER_SELECT_REDUCED; SQLSTATE: 01000
Message: Client does not support authentication protocol requested by server; consider upgrading
MySQL client
Message: Uncompressed data size too large; the maximum size is %d (probably, length of
uncompressed data was corrupted)
Message: ZLIB: Not enough room in the output buffer (probably, length of uncompressed data was
corrupted)
Message: Row %ld was truncated; it contained more data than there were input columns
Message: Column set to default value; NULL supplied to NOT NULL column '%s' at row %ld
20
Message: Data truncated for column '%s' at row %ld
Message: Illegal mix of collations (%s,%s) and (%s,%s) for operation '%s'
Message: Can't revoke all privileges for one or more of the requested users
Message: Illegal mix of collations (%s,%s), (%s,%s), (%s,%s) for operation '%s'
Message: 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 with SSL is started
Message: Field or reference '%s%s%s%s%s' of SELECT #%d was resolved in SELECT #%d
Message: 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 unexpected replica's mysqld restart
21
• Error number: 1283; Symbol: ER_BAD_FT_COLUMN; SQLSTATE: HY000
Message: MySQL is started in --skip-name-resolve mode; you must restart it without this switch for this
grant to work
Message: '%s' is deprecated and will be removed in a future release. Please use %s instead
Message: The '%s' feature is disabled; you need MySQL built with '%s' to have it working
Message: The MySQL server is running with the %s option so it cannot execute this statement
Message: This command is not supported in the prepared statement protocol yet
22
• Error number: 1299; Symbol: ER_WARN_INVALID_TIMESTAMP; SQLSTATE: HY000
23
Message: %s is not allowed in stored procedures
Message: The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has
been ignored.
Message: The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has
been translated to SET SQL_LOG_BIN.
24
• Error number: 1329; Symbol: ER_SP_FETCH_NO_DATA; SQLSTATE: 02000
25
Message: Unexpected end of file while skipping unknown parameter '%s'
Message: EXPLAIN/SHOW can not be issued; lacking privileges for underlying table
The named object is incorrect for the type of operation attempted on it. It must be an object of the
named type. Example: HANDLER OPEN requires a base table, not a view. It fails if attempted on an
INFORMATION_SCHEMA table that is implemented as a view on data dictionary tables.
Message: In definition of view, derived table or common table expression, SELECT list and column
names list have different column counts
Message: View merge algorithm can't be used here for now (assumed undefined algorithm)
Message: View being updated does not have complete key of underlying table in it
Message: View '%s.%s' references invalid table(s) or column(s) or function(s) or definer/invoker of view
lack rights to use them
26
• Error number: 1361; Symbol: ER_TRG_ON_VIEW_OR_TEMP_TABLE; SQLSTATE: HY000
Message: Division by 0
27
• Error number: 1377; Symbol: ER_BINLOG_PURGE_FATAL_ERR; SQLSTATE: HY000
Message: The '%s' syntax is reserved for purposes internal to the MySQL server
Message: Can not modify more than one base table through a join view '%s.%s'
Message: Can not insert into join view '%s.%s' without fields list
28
• Error number: 1399; Symbol: ER_XAER_RMFAIL; SQLSTATE: XAE07
Message: XAER_RMFAIL: The command cannot be executed when global transaction is in the %s state
Message: XAER_RMERR: Fatal error occurred in the transaction branch - check your data for
consistency
Message: There is no such grant defined for user '%s' on host '%s' on routine '%s'
Message: %s: ready for connections. Version: '%s' socket: '%s' port: %d %s
Message: Can't load value from file with fixed size rows to variable
29
• Error number: 1414; Symbol: ER_SP_NOT_VAR_ARG; SQLSTATE: 42000
Message: OUT or INOUT argument %d for routine %s is not a variable or NEW pseudo-variable in
BEFORE trigger
Message: Cannot get geometry object from data you send to the GEOMETRY field
Message: 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 log_bin_trust_function_creators
variable)
Message: 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)
Message: Field of view '%s.%s' underlying table doesn't have a default value
Message: Too big scale %d specified for column '%s'. Maximum is %lu.
Message: You can't combine write-locking of system tables with other tables or lock types
30
• Error number: 1430; Symbol: ER_QUERY_ON_FOREIGN_DATA_SOURCE; SQLSTATE: HY000
Message: There was a problem processing the query on the foreign data source. Data source error: %s
Message: The foreign data source you are trying to reference does not exist. Data source error: %s
Message: Can't create federated table. The data source connection string '%s' is not in the correct
format
Message: The data source connection string '%s' is not in the correct format
Message: Thread stack overrun: %ld bytes used of a %ld byte stack, and %ld bytes needed. Use
'mysqld --thread_stack=#' to specify a bigger stack.
Message: Display width out of range for column '%s' (max = %lu)
Message: Can't update table '%s' in stored function/trigger because it is already used by statement
which invoked this stored function/trigger.
Message: 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 recursive manner
31
• Error number: 1445; Symbol: ER_SP_CANT_SET_AUTOCOMMIT; SQLSTATE: HY000
Message: View '%s'.'%s' has no definer information (old table format). Current user is used as definer.
Please recreate the view!
Message: You need the SUPER privilege for creation view with '%s'@'%s' definer
Message: Cannot delete or update a parent row: a foreign key constraint fails%s
InnoDB reports this error when you try to delete a parent row that has children, and a foreign key
constraint fails. Delete the children first.
Message: Cannot add or update a child row: a foreign key constraint fails%s
InnoDB reports this error when you try to add a row but there is no parent row, and a foreign key
constraint fails. Add the parent row first.
Message: No definer attribute for trigger '%s'.'%s'. It's disallowed to create trigger without definer.
Message: '%s' has an old format, you should re-create the '%s' object(s)
Message: Recursive limit %d (as set by the max_sp_recursion_depth variable) was exceeded for routine
%s
Message: Table upgrade required. Please do "REPAIR TABLE `%s`" or dump/reload to fix it!
32
• Error number: 1460; Symbol: ER_SP_NO_AGGREGATE; SQLSTATE: 42000
Message: Can't create more than max_prepared_stmt_count statements (current value: %lu)
Message: String '%s' is too long for %s (should be no longer than %d)
33
Message: First character of the FIELDS TERMINATED string is ambiguous; please use non-optional and
non-empty FIELDS ENCLOSED BY
Message: The foreign server, %s, you are trying to create already exists.
Message: The foreign server name you are trying to reference does not exist. Data source error: %s
Message: Table storage engine '%s' does not support the create option '%s'
Message: Syntax error: %s PARTITIONING requires definition of VALUES %s for each partition
Message: Field in list of fields for partition function not found in table
Message: The partition info in the frm file is not consistent with what can be written into the frm file
Message: VALUES LESS THAN value must be strictly increasing for each partition
34
• Error number: 1494; Symbol: ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR; SQLSTATE: HY000
Message: The mix of handlers in the partitions is not allowed in this version of MySQL
Message: It is only possible to mix RANGE/LIST partitioning with HASH/KEY partitioning for
subpartitioning
Message: A %s must include all columns in the table's partitioning function (prefixed columns are not
considered).
Message: Foreign keys are not yet supported in conjunction with partitioning
35
Message: Cannot remove all partitions, use DROP TABLE instead
Message: REORGANIZE PARTITION can only be used to reorganize partitions not to change their
numbers
Message: REORGANIZE PARTITION without parameters can only be used on auto-partitioned tables
using HASH PARTITIONs
Message: Reorganize of range partitions cannot change total ranges except for last partition where it can
extend the range
Message: Partition function not supported in this version for this handler
36
• Error number: 1524; Symbol: ER_PLUGIN_IS_NOT_LOADED; SQLSTATE: HY000
Message: A size parameter was incorrectly specified, either number or on the form 10M
Message: The size number was correct but we don't allow the digit part to be more than 2 billion
37
• Error number: 1544; Symbol: ER_EVENT_EXEC_TIME_IN_THE_PAST; SQLSTATE: HY000
Message: Event execution time is in the past. Event has been disabled
InnoDB reports this error when you attempt to drop the last index that can enforce a particular referential
constraint.
For optimal performance with DML statements, InnoDB requires an index to exist on foreign key
columns, so that UPDATE and DELETE operations on a parent table can easily check whether
corresponding rows exist in the child table. MySQL creates or drops such indexes automatically when
needed, as a side-effect of CREATE TABLE, CREATE INDEX, and ALTER TABLE statements.
When you drop an index, InnoDB checks if the index is used for checking a foreign key constraint. It
is still OK to drop the index if there is another index that can be used to enforce the same constraint.
InnoDB prevents you from dropping the last index that can enforce a particular referential constraint.
Message: The syntax '%s' is deprecated and will be removed in MySQL %s. Please use %s instead
Message: Upholding foreign key constraints for table '%s', entry '%s', key %d would lead to a duplicate
entry
Message: 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.
Message: Cannot change the binary logging format inside a stored function or trigger
38
• Error number: 1566; Symbol: ER_NULL_IN_VALUES_LESS_THAN; SQLSTATE: HY000
Message: ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry '%s' for key
'%s'
Message: 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'
39
• Error number: 1585; Symbol: ER_NATIVE_FCT_NAME_COLLISION; SQLSTATE: HY000
Message: This function '%s' has the same name as a native function
The format string for this error is also used with ER_DUP_ENTRY.
Message: Too many files opened, please execute the command again
Message: Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event
was dropped immediately after creation.
Message: 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.
Message: Unsafe statement written to the binary log using statement format since BINLOG_FORMAT =
STATEMENT. %s
40
• Error number: 1605; Symbol: ER_EVENT_INVALID_CREATION_CTX; SQLSTATE: HY000
Message: The BINLOG statement of type `%s` was not preceded by a format description BINLOG
statement.
Message: XA_RBTIMEOUT: Transaction branch was rolled back: took too long
Message: XA_RBDEADLOCK: Transaction branch was rolled back: deadlock was detected
Message: Storage engine %s does not support rollback for this statement. Transaction rolled back and
must be restarted
41
Message: The requested value for the heartbeat period is either negative or exceeds the maximum
allowed (%s seconds).
Message: The maximum supported character limit for the field, '%s', has been exceeded (max = %lu)
Message: FUNCTION %s does not exist. Check the 'Function Name Parsing and Resolution' section in
the Reference Manual
Message: Database
Message: Table
Message: Partition
Message: Subpartition
Message: Temporary
Message: Renamed
42
• Error number: 1639; Symbol: ER_DEBUG_SYNC_TIMEOUT; SQLSTATE: HY000
Message: The requested server id %d clashes with the replica startup option --replicate-same-server-id
43
Message: Too many fields in '%s'
Message: Cannot have more than one value for this type of %s partitioning
Message: Row expressions in VALUES IN only allowed for multi-field column partitioning
Message: Field '%s' is of a not allowed type for this type of partitioning
Message: Cannot execute statement: impossible to write to binary log since both row-incapable engines
and statement-incapable engines are involved.
Message: 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 logging.
Message: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage
engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. %s
Message: 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 statement-based logging.
Message: 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 logging.%s
Message: Cannot execute statement: impossible to write to binary log since statement is in row format
and BINLOG_FORMAT = STATEMENT.
Message: Cannot execute statement: impossible to write to binary log since more than one engine is
involved and at least one engine is self-logging.
44
• Error number: 1668; Symbol: ER_BINLOG_UNSAFE_LIMIT; SQLSTATE: HY000
Message: The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of
rows included cannot be predicted.
Message: 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 replicas.
Message: 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.
Message: Statement is unsafe because it uses a UDF which may not return the same value on the
replica.
Message: Statement is unsafe because it uses a system variable that may have a different value on the
replica.
Message: Statement is unsafe because it uses a system function that may return a different value on the
replica.
Message: %s Statement: %s
45
• Error number: 1683; Symbol: ER_WRONG_PERFSCHEMA_USAGE; SQLSTATE: HY000
Message: Table '%s'.'%s' was skipped since its definition is being modified by concurrent DDL statement
Message: Cannot change the binlog direct flag inside a stored function or trigger
Message: Statement accesses nontransactional table as well as transactional or temporary table, and
writes to any of them.
46
Message: VALUES value for partition '%s' must have type INT
Message: 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.
Message: 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 timeout.
Message: Primary key/partition key update is not allowed since the table is updated both as '%s' and
'%s'.
Message: Table rebuild required. Please do "ALTER TABLE `%s` FORCE" or dump/reload to fix it!
Message: The value of '%s' should be no less than the value of '%s'
Message: Index column size too large. The maximum column size is %lu bytes.
47
• Error number: 1713; Symbol: ER_UNDO_RECORD_TOO_BIG; SQLSTATE: HY000
Message: 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 be predicted and may differ on
source and the replica.
Message: 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. This order cannot be
predicted and may differ on source and the replica.
Message: 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 predicted and may differ on source
and the replica.
Message: 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 be predicted and may differ on
source and the replica.
Message: 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 be predicted and may differ
on source and the replica.
Message: 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 on source and the replica.
Message: Plugin '%s' is marked as not dynamically uninstallable. You have to stop the server to uninstall
it.
Message: Plugin '%s' is marked as not dynamically installable. You have to stop the server to install it.
Message: 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 determines what (if any) rows will be written.
This order cannot be predicted and may differ on source and the replica.
Message: 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 any) rows are inserted. This
order cannot be predicted and may differ on source and the replica.
48
• Error number: 1724; Symbol: ER_BINLOG_UNSAFE_INSERT_TWO_KEYS; SQLSTATE: HY000
Message: INSERT... ON DUPLICATE KEY UPDATE on a table with more than one UNIQUE KEY is
unsafe
Message: Storage engine '%s' does not support system tables. [%s.%s]
Message: INSERT into autoincrement field which is not the first part in the composed primary key is
unsafe.
Message: The requested value %s for the source delay exceeds the maximum %u
Message: Only Format_description_log_event and row events are allowed in BINLOG statements (but
%s was provided)
49
• Error number: 1738; Symbol: ER_BINLOG_CACHE_SIZE_GREATER_THAN_MAX; SQLSTATE: HY000
Message: Cannot use %s access on index '%s' due to type or collation conversion on field '%s'
Message: Table to exchange with partition has foreign key references: '%s'
Message: The creation of some temporary tables could not be rolled back.
Message: Some temporary tables were dropped, but these operations could not be rolled back.
Message: The number of modified databases exceeds the maximum %d; the database names will not
be included in the replication event metadata.
50
• Error number: 1755; Symbol: ER_MTA_CANT_PARALLEL; SQLSTATE: HY000
Message: 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 group in parallel mode. Reason: %s.
Message: %s
Message: Storing MySQL user name or password information in the connection metadata repository
is not secure and is therefore not recommended. Please consider using the USER and PASSWORD
connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for
more information.
Message: Foreign key constraint for table '%s', record '%s' would lead to a duplicate entry in table '%s',
key '%s'
Message: Foreign key constraint for table '%s', record '%s' would lead to a duplicate entry in a child table
Message: Setting authentication options is not possible when only the Replica SQL Thread is being
started.
Message: The table does not have FULLTEXT index to support this query
Message: The system variable %s cannot be set when there is an ongoing transaction.
51
Message: The statement 'SET %s' cannot invoke a stored function.
Message: Impossible to generate GTID: the integer component reached the maximum value. Restart the
server with a new server_uuid.
Message: Cannot execute statements with implicit commit inside a transaction when
@@SESSION.GTID_NEXT == 'UUID:NUMBER'.
52
• Error number: 1783; Symbol:
ER_CANT_SET_GTID_NEXT_LIST_TO_NON_NULL_WHEN_GTID_MODE_IS_OFF; SQLSTATE: HY000
Message: Statement violates GTID consistency: Updates to non-transactional tables can only be done in
either autocommitted statements or single-statement transactions, and never in the same statement as
updates to transactional tables.
Message: 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 stepped up or
down simultaneously on all servers. See the Manual for instructions.
Message: Cannot replicate because the source purged required binary logs. Replicate the missing
transactions from elsewhere, or provision a new replica from backup. Consider increasing the source's
binary log expiration period. %s
Message: @@SESSION.GTID_NEXT cannot be changed by a client that owns a GTID. The client owns
%s. Ownership is released on COMMIT or ROLLBACK.
Message: Comment for table partition '%s' is too long (max = %lu)
Message: 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 messages can be found in the MySQL error log.
53
• Error number: 1797; Symbol: ER_INNODB_FT_WRONG_DOCID_COLUMN; SQLSTATE: HY000
Message: 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 UNTIL.
Message: Cannot recover after REPLICA errored out in parallel execution mode. Additional error
messages can be found in the MySQL error log.
Message: Cannot clean up worker info tables. Additional error messages can be found in the MySQL
error log.
Message: Column count of %s.%s is wrong. Expected %d, found %d. The table is probably corrupted
Message: There is a foreign key check running on table '%s'. Cannot discard the table.
54
• Error number: 1811; Symbol: ER_IO_WRITE_ERROR; SQLSTATE: HY000
Message: ALTER TABLE %s IMPORT TABLESPACE failed with error %lu : '%s'
Message: Your password does not satisfy the current policy requirements
Message: You must reset your password using ALTER USER statement before executing this
statement.
Message: Failed to add the foreign key constraint. Missing index for constraint '%s' in the foreign table
'%s'
Message: Failed to add the foreign key constraint. Missing index for constraint '%s' in the referenced
table '%s'
Message: Failed to add the foreign key constraint '%s' to system tables
55
Message: Failed to add the foreign key constraint on table '%s'. Incorrect options in FOREIGN KEY
constraint '%s'
Message: Cannot drop column '%s': needed in a foreign key constraint '%s'
Message: Cannot drop column '%s': needed in a foreign key constraint '%s' of table '%s'
Message: Column '%s' cannot be NOT NULL: needed in a foreign key constraint '%s' SET NULL
Message: Duplicate index '%s' defined on the table '%s.%s'. This is deprecated and will be disallowed in
a future release.
Message: Cannot change column '%s': used in a foreign key constraint '%s'
Message: Cannot change column '%s': used in a foreign key constraint '%s' of table '%s'
Message: 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 page for detailed
explanation. Current @@SESSION.GTID_NEXT is '%s'.
56
• Error number: 1841; Symbol: ER_CANT_SET_GTID_PURGED_WHEN_OWNED_GTIDS_IS_NOT_EMPTY;
SQLSTATE: HY000
Message: @@GLOBAL.GTID_PURGED can only be set when there are no ongoing transactions (not
even in other clients).
Message: Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT =
STATEMENT, and both replicated and non replicated tables are written to.
Message: Dropping a primary key is not allowed without also adding a new primary key
57
Message: Adding an auto-increment column requires a lock
Message: Long database name and identifier for object resulted in path length exceeding %d characters.
Path: '%s'.
Message: Your password has expired. To log in you must change it using a client that supports expired
passwords.
Message: 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.
Message: file %s was not purged because it was being read by %d thread(s), purged only %d out of %d
files.
Message: file %s was not purged because it is the active log file.
58
• Error number: 1869; Symbol: ER_AUTO_INCREMENT_CONFLICT; SQLSTATE: HY000
Message: Row events are not logged for %s statements that modify BLACKHOLE tables in row format.
Table(s): '%s'
Message: Replica failed to initialize connection metadata structure from the repository
Message: Replica failed to initialize applier metadata structure from the repository
Message: Access denied trying to change to user '%s'@'%s' (using password: %s). Disconnecting.
Message: 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.
Message: 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.
Message: Operation cannot be performed. The table '%s.%s' is missing, corrupt or contains bad data.
Message: Upgrade index name failed, please use create index(alter table) algorithm copy to rebuild
index.
Message: TIME/TIMESTAMP/DATETIME columns of old format have been upgraded to the new format.
Message: The initialization vector supplied to %s is too short. Must be at least %d bytes long
59
• Error number: 1883; Symbol: ER_PLUGIN_CANNOT_BE_UNINSTALLED; SQLSTATE: HY000
Message: 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:NUMBER'.
Message: 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., after a power failure when
sync_binlog != 1. The source may have rolled back transactions that were already replicated to the
replica. Replicate any transactions that source has rolled back from replica to source, and/or commit
empty transactions on source to account for transactions that have been committed on source but are
not included in GTID_EXECUTED.
Message: The table '%s.%s' does not have the necessary key(s) defined on it. Please check the table
definition and create index(s) accordingly.
Message: 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 sure that your source
is ok, run this query manually on the replica and then restart the replica with SET GLOBAL
SQL_REPLICA_SKIP_COUNTER=1; START REPLICA;. Query:'%s'
Message: Statement is unsafe because it uses a fulltext parser plugin which may not return the same
value on the replica.
60
Message: Cannot DISCARD/IMPORT tablespace associated with temporary table
Message: 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.
Message: Referenced trigger '%s' for the given action time and event type does not exist.
Message: Table storage engine '%s' found required create option missing
Message: This operation cannot be performed with a running replica sql thread; run STOP REPLICA
SQL_THREAD first
61
Message: This operation cannot be performed with a running replica io thread; run STOP REPLICA
IO_THREAD FOR CHANNEL '%s' first.
Message: 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 by any replicated DROP statement. Suggest
to wait until replica_open_temp_tables = 0.
Message: Query execution was interrupted, maximum statement execution time exceeded
Message: Expression #%u of ORDER BY contains aggregate function and applies to a UNION,
EXCEPT or INTERSECT
Message: Expression #%u of ORDER BY contains aggregate function and applies to the result of a non-
aggregated query
Message: Replica worker has stopped after at least one previous worker encountered an error when
replica-preserve-commit-order was enabled. To preserve commit order, the last transaction executed
by this thread has not been committed. When restarting the replica after fixing any failed threads, you
should fix this worker as well.
Message: Binary geometry function %s given two geometries of different srids: %u and %u, which
should have been identical.
62
Geometry values passed as arguments to spatial functions must have the same SRID value.
A spatial function was called with a combination of argument types that the function does not support.
A spatial function was called with an argument not recognized as a valid geometry value.
Message: Geometry overlay calculation error: geometry data is invalid in function %s.
Message: Geometry turn info calculation error: geometry data is invalid in function %s.
63
• Error number: 3047; Symbol: ER_STD_INVALID_ARGUMENT; SQLSTATE: HY000
Message: The password provided for the replication user exceeds the maximum length of 32 characters
Message: Incorrect user-level lock name '%s'. The name is empty, NULL, or can not be expressed in the
current character-set.
Message: Deadlock found when trying to get user-level lock; try rolling back transaction/releasing locks
and restarting lock acquisition.
This error is returned when the metdata locking subsystem detects a deadlock for an attempt to acquire
a named lock with GET_LOCK.
Message: REPLACE cannot be executed as it requires deleting rows that are not in the view
64
Message: Do not support online operation on table with GIS index
Message: Expression #%u of ORDER BY clause is not in SELECT list, references column '%s' which is
not in SELECT list; this is incompatible with %s
Message: Expression #%u of ORDER BY clause is not in SELECT list, contains aggregate function; this
is incompatible with %s
Message: Supplied filter list contains a value which is not in the required format
'db_pattern.table_pattern'
Message: Invalid GeoJSON data provided to function %s: Missing required member '%s'
Message: Invalid GeoJSON data provided to function %s: Member '%s' must be of type '%s'
Message: Unsupported number of coordinate dimensions in function %s: Found %u, expected %u
65
Message: Couldn't create channel: Channel name is either invalid or too long.
Message: To have multiple channels, repository cannot be of type FILE; Please check the repository
configuration and convert them to TABLE.
Message: Multiple channels exist on the replica. Please provide channel name as an argument.
Message: This operation cannot be performed with running replication threads; run STOP REPLICA
FOR CHANNEL '%s' first
Message: This operation requires running replication threads; configure replica and run START
REPLICA FOR CHANNEL '%s'
Message: This operation cannot be performed with a running replica sql thread; run STOP REPLICA
SQL_THREAD FOR CHANNEL '%s' first.
Message: 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_counter can only be used by one
SQL thread at a time. Please use 'START REPLICA [SQL_THREAD] FOR CHANNEL' to start the SQL
thread which will use the value of sql_replica_skip_counter.
Message: 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 is incompatible with
sql_mode=only_full_group_by
Message: In aggregated query without GROUP BY, expression #%u of %s contains nonaggregated
column '%s'; this is incompatible with sql_mode=only_full_group_by
66
Message: Updating '%s' is deprecated. It will be made read-only in a future release.
Message: Changing sql mode '%s' is deprecated. It will be removed in a future release.
Message: 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 was not written
to the binary log. Fix this as follows: (1) remove all files from the database directory %s; (2) SET
GTID_NEXT='%s'; (3) DROP DATABASE `%s`.
Message: The server is not configured properly to be an active member of the group. Please see more
details on error log.
Message: The START GROUP_REPLICATION command failed since the group is already running.
Message: The START GROUP_REPLICATION command failed as the applier module failed to start.
Message: 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 current task is complete.
Message: The START GROUP_REPLICATION command failed as there was an error when initializing
the group communication layer.
Message: The START GROUP_REPLICATION command failed as there was an error when joining the
communication group.
Message: The table does not comply with the requirements by an external plugin.
Message: Cannot change the value of variable %s without binary log format as ROW.
67
Message: Plugin instructed the server to rollback the current transaction.
When using Group Replication, this means that a transaction failed the group certification process, due
to one or more members detecting a potential conflict, and was thus rolled back. See Group Replication.
Message: INPLACE ADD or DROP of virtual columns cannot be combined with other ALTER TABLE
actions
Message: The value specified for generated column '%s' in table '%s' is not allowed.
Message: Generated column can refer only to generated columns defined prior to it.
To address this issue, change the table definition to define each generated column later than any
generated columns to which it refers.
You cannot drop or rename a generated column if another column refers to it. You must either drop
those columns as well, or redefine them not to refer to the generated column.
Message: The '%s' feature is not available; you need to remove '%s' or use MySQL built with '%s'
68
Message: The replication receiver thread%s cannot start in AUTO_POSITION mode: this server uses
@@GLOBAL.GTID_MODE = OFF.
ER_CANT_SET_ENFORCE_GTID_CONSISTENCY_ON_WITH_ONGOING_GTID_VIOLATING_TRANSACTIONS
was renamed to ER_CANT_ENFORCE_GTID_CONSISTENCY_WITH_ONGOING_GTID_VIOLATING_TX.
ER_SET_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_GTID_VIOLATING_TRANSACTIONS
was renamed to ER_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_GTID_VIOLATING_TX.
The account was locked with CREATE USER ... ACCOUNT LOCK or ALTER USER ... ACCOUNT
LOCK. An administrator can unlock it with ALTER USER ... ACCOUNT UNLOCK.
69
The MAX_EXECUTION_TIME optimizer hint is supported only for SELECT statements.
Message: 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 GTID state.
A locking service name was specified as NULL, the empty string, or a string longer than 64 characters.
Namespace and lock names must be non-NULL, nonempty, and no more than 64 characters long.
Message: Deadlock found when trying to get locking service lock; try releasing locks and restarting lock
acquisition.
Message: Parameter %s exceeds the maximum number of points in a geometry (%lu) in function %s.
The client has set its version_tokens_session system variable to the list of tokens it requires the
server to match, but the server token list has at least one matching token name that has a value different
from what the client requires. See Version Tokens.
70
• Error number: 3137; Symbol: ER_VTOKEN_PLUGIN_TOKEN_NOT_FOUND; SQLSTATE: HY000
The client has set its version_tokens_session system variable to the list of tokens it requires the
server to match, but the server token list is missing at least one of those tokens. See Version Tokens.
Message: Variable %s cannot be changed by a client that owns a GTID. The client owns %s. Ownership
is released on COMMIT or ROLLBACK.
Message: Invalid JSON text: "%s" at position %u in value for column '%s'.
Message: Invalid JSON text in argument %u to function %s: "%s" at position %u.%s
Message: Invalid JSON path expression. The error is around character position %u.%s
Message: Cannot create a JSON value from a string with CHARACTER SET '%s'.
Message: Invalid JSON character data provided to function %s: '%s'; utf8 is required.
Message: Invalid data type for JSON data in argument %u to function %s; a JSON string or JSON type
is required.
Message: A path expression must be encoded in the utf8 character set. The path expression '%s' is
encoded in character set '%s'.
Message: In this situation, path expressions may not contain the * and ** tokens or an array range.
71
Message: The JSON value is too big to be stored in a JSON column.
Message: The JSON object contains a key name that is too long.
Message: JSON column '%s' supports indexing only via generated columns on a specified JSON path.
Message: The oneOrAll argument to %s may take these values: 'one' or 'all'.
Message: Out of range JSON value for CAST to %s%s from column %s at row %ld
Message: Invalid JSON value for CAST to %s%s from column %s at row %ld
With the require_secure_transport system variable, clients can connect only using secure
transports. Qualifying connections are those using SSL, a Unix socket file, or shared memory.
Message: No secure transports (SSL or Shared Memory) are configured, unable to set --
require_secure_transport=ON.
The require_secure_transport system variable cannot be enabled if the server does not support
at least one secure transport. Configure the server with the required SSL keys/certificates to enable SSL
connections, or enable the shared_memory system variable to enable shared-memory connections.
An attempt was made to create a table or tablespace using a storage engine listed in the value of the
disabled_storage_engines system variable, or to change an existing table or tablespace to such
an engine. Choose a different storage engine.
72
Message: Authorization ID %s does not exist.
This error indicates that an audit plugin terminated execution of an event. The message typically
indicates the event subclass name and a numeric status value.
Message: The '%s' feature is disabled; see the documentation for '%s'
Message: The client holds ownership of the GTID %s. Therefore, WAIT_FOR_EXECUTED_GTID_SET
cannot wait for this GTID.
Message: Cannot add foreign key on the base column of indexed virtual column.
Message: Cannot create index on virtual column whose base column has foreign constraint.
73
Message: 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 it can lead to an inconsistent GTID
state, if necessary you can modify it with a non-XA transaction.
Message: Write to binlog failed. However, master key rotation has been completed successfully.
Message: Can't find master key from keyring, please check in the server log if a keyring is loaded and
initialized successfully.
Message: Function '%s' failed because underlying keyring service returned an error. Please check if a
keyring is installed and that provided arguments are valid for the keyring you are using.
Message: 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.
74
Message: RESET BINARY LOGS AND GTIDS is not allowed because %s.
Message: The START GROUP_REPLICATION command failed since the group already has 9
members.
Message: Cannot add foreign key on the base column of stored column.
Message: Cannot complete the operation because table is referenced by another connection.
Message: The resource manager is not able to commit the transaction branch at this time. Please retry
later.
Message: The size of writeset data for the current transaction exceeds a limit imposed by an external
component. If using Group Replication check 'group_replication_transaction_size_limit'.
Message: KDF method name is not valid. Please use hkdf or pbkdf2_hmac method name
75
• Error number: 3236; Symbol: ER_AES_INVALID_KDF_ITERATIONS; SQLSTATE: HY000
Message: 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 iterations < 65535
Message: 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 better security.
Message: KDF option size is invalid, please provide valid size < %d bytes and not NULL
Message: The ACL operation failed due to the following error from SE: errcode %d - %s
Message: This storage engine does not support the %s index algorithm, storage engine default was
used instead.
76
• Error number: 3511; Symbol: ER_TOO_LONG_ROUTINE_COMMENT; SQLSTATE: HY000
Message: Aggregate bitwise functions cannot accept arguments longer than 511 bytes; consider using
the SUBSTRING() function
Message: Can't parse the spatial reference system definition of SRID %u.
Message: The spatial reference system definition for SRID %u does not specify the mandatory %s
(EPSG %u) projection parameter.
Message: Function %s is only defined for Cartesian spatial reference systems, but one of its arguments
is in SRID %u, which is not Cartesian.
Message: Function %s is only defined for Cartesian spatial reference systems, but one of its arguments
is in SRID %u, which has not been defined.
77
• Error number: 3525; Symbol: ER_OPEN_ROLE_TABLES; SQLSTATE: HY000
Message: Cannot acquire scheme load service implementation for schema '%s' in specified URN: '%s'.
Message: Cannot satisfy dependency for service '%s' required by component '%s'.
Message: Component specified by URN '%s' to unload has not been loaded before.
78
Message: Release of previously acquired service implementation failed.
Message: Unregistration of service implementation '%s' provided by component '%s' failed during
unloading of the component.
Message: The Persistent Dynamic Loader was used to unload a component '%s', but it was not used to
load that component before.
Message: Failed to manipulate component '%s' persistence data. Error code %d from storage engine.
Message: The component with specified URN: '%s' was specified in group more than once.
79
Message: Access to system tablespace '%s' is rejected.
Message: table
Message: The string '%s' is not a valid key %c value pair in function %s.
Message: The options argument in function %s starts with the invalid character '%c'.
Message: The options argument in function %s ends with the invalid character '%c'.
Message: The options argument in function %s contains the invalid character sequence '%s'.
Message: There's no spatial reference system with SRID %u. The axis order is unknown.
Message: The requested value '%llu' for the next binary log index is out of range. Please use a value
between '1' and '%lu'.
80
• Error number: 3568; Symbol: ER_UNRESOLVED_TABLE_LOCK; SQLSTATE: HY000
Message: Statement is unsafe because it uses SKIP LOCKED. The set of inserted values is non-
deterministic.
Message: Statement is unsafe because it uses NOWAIT. Whether the command will succeed or fail is
not deterministic.
Message: Statement aborted because lock(s) could not be acquired immediately and NOWAIT is set.
Message: Recursive Common Table Expression '%s' should have one or more non-recursive query
blocks followed by one or more recursive ones
Message: Recursive Common Table Expression '%s' can contain neither aggregation nor window
functions in recursive query block
Message: 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 to be non-first with join order hints
Message: In recursive query block of Recursive Common Table Expression '%s', the recursive table
must be referenced only once, and not in any subquery
81
• Error number: 3581; Symbol: ER_WINDOW_NO_CHILD_PARTITIONING; SQLSTATE: HY000
Message: Window '%s' has a frame definition, so cannot be referenced by another window.
Message: Window '%s' cannot inherit '%s' since both contain an ORDER BY clause.
Message: Window '%s': frame start or end is negative, NULL or of non-integral type
Message: Window '%s' with RANGE N PRECEDING/FOLLOWING frame requires exactly one ORDER
BY expression, of numeric or temporal type
Message: Window '%s' with RANGE frame has ORDER BY expression of datetime type. Only
INTERVAL bound value allowed.
Message: Window '%s' with RANGE frame has ORDER BY expression of numeric type, INTERVAL
bound value not allowed.
Message: Window '%s': ORDER BY or PARTITION BY uses legacy position indication which is not
supported, use expression.
Message: You cannot use the window function '%s' in this context.'
Message: You cannot use the alias '%s' of an expression containing a window function in this context.'
82
• Error number: 3595; Symbol: ER_WINDOW_NESTED_WINDOW_FUNC_USE_IN_WINDOW_SPEC;
SQLSTATE: HY000
Message: You cannot nest a window function in the specification of window '%s'.
Message: Window '%s': INTERVAL can only be used with RANGE frames.
Message: ASC or DESC with GROUP BY isn't allowed with window functions; put ASC or DESC in
ORDER BY
Message: Window function '%s' ignores the frame clause of window '%s' and aggregates over the whole
partition
Message: Too many arguments for function %s: %lu; maximum allowed is %s.
Message: Storage engine can't drop table '%s' because it is missing. Use DROP TABLE IF EXISTS to
remove it from data-dictionary.
Message: Problem while dropping database. Can't remove database directory (%s). Please remove it
manually.
83
• Error number: 3609; Symbol: ER_IMP_SCHEMA_DOES_NOT_EXIST; SQLSTATE: HY000
Message: Imported sdi version (%llu) is not compatible with current (%llu)
Message: Longitude %f is out of range in function %s. It must be within (%f, %f].
Message: Latitude %f is out of range in function %s. It must be within [%f, %f].
Message: %s(%s) has not been implemented for geographic spatial reference systems.
Message: DROP FUNCTION can't drop a dynamically registered user defined function
84
Message: Unable to store column statistics for column '%s' in table '%s'.'%s'
Message: Unable to update column statistics for column '%s' in table '%s'.'%s'
Message: Unable to remove column statistics for column '%s' in table '%s'.'%s'
Message: Unable to build histogram statistics for column '%s' in table '%s'.'%s'
Message: 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 mandatory_roles.
Message: Concurrent DDL is performed during clone operation. Please try again.
Message: The table in transaction %s does not comply with the requirements by an external plugin.
Message: Cannot use these credentials for '%.*s@%.*s' because they contradict the password history
policy
85
Message: Non-zero password history clauses ignored for user '%s'@'%s' as its authentication plugin %s
does not support password history
Message: Tablespace '%s' was skipped since its definition is being modified by concurrent DDL
statement
Message: Engine '%s' does not match stored engine '%s' for tablespace '%s'
Message: 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 the SRID of the geometry or the
SRID property of the column.
Message: 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 the SRID specification.
Message: When %s, the option binlog_row_value_options=%s will be ignored and updates will be written
in full format to binary log.
Message: 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 space due to binlog_row_value_options
is limited to less than 50%%.
Message: Could not apply JSON diff in table %.*s, column %s.
86
• Error number: 3653; Symbol: ER_INVALID_VCPU_RANGE; SQLSTATE: HY000
Message: Invalid thread priority value %d for %s resource group %s. Allowed range is [%d, %d].
Message: Can't store an array or an object in the scalar JSON_TABLE column '%s'
87
• Error number: 3668; Symbol: ER_TF_FORBIDDEN_JOIN_TYPE; SQLSTATE: HY000
Message: INNER or LEFT JOIN must be used for LATERAL references made by '%s'
Message: More than supported %u NESTED PATHs were found in JSON_TABLE '%s'
Message: The selected authentication method %.*s does not support password expiration
Message: Invalid GeoJSON data provided to function %s: Member 'crs' must be specified in the top level
object.
Message: 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 to the column.
Message: Schema directory '%s' already exists. This must be resolved manually (e.g. by moving the
schema directory to another location).
Message: 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).
88
• Error number: 3682; Symbol: ER_ONLY_IMPLEMENTED_FOR_SRID_0_AND_4326; SQLSTATE: 22S00
Message: The regular expression contains a feature that is not implemented in this library version.
Message: The regular expression contains an [x-y] character range where x comes after y.
89
Message: Overflow in the regular expression backtrack stack.
Message: 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 listed more than once.
Message: %s(%s) has not been implemented for Cartesian spatial reference systems.
Message: %s(%s) has not been implemented for projected spatial reference systems.
Message: Invalid radius provided to function %s: Radius must be greater than zero.
Message: The spatial reference system name can't be an empty string or start or end with whitespace.
Message: The organization name can't be an empty string or start or end with whitespace.
90
• Error number: 3713; Symbol: ER_WARN_SRS_ID_ALREADY_EXISTS; SQLSTATE: 01S00
Message: 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.
Message: Can't modify SRID %u. There is at least one column depending on it.
Message: '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 be unambiguous.
Message: 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 UTF8MB4 in order
to be unambiguous.
Message: The table '%s' may not be created in the reserved tablespace '%s'.
Message: 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 the action taken by the replica and
source might differ. Check that their states have not diverged before proceeding.
91
Message: Function %s is only defined for geographic spatial reference systems, but one of its arguments
is in SRID %u, which is not geographic.
Message: Function %s encountered a polygon that was too large. Polygons must cover less than half
the planet.
Message: Cannot drop table '%s' referenced by a foreign key constraint '%s' on table '%s'.
Message: A parameter of function %s contains a geometry with longitude %f, which is out of range. It
must be within (%f, %f].
Message: A parameter of function %s contains a geometry with latitude %f, which is out of range. It must
be within [%f, %f].
Message: Foreign key '%s' uses virtual column '%s' which is not supported.
Message: Failed to add the foreign key constraint. Missing column '%s' for constraint '%s' in the
referenced table '%s'
Message: %s: Could not add suppression rule for code "%s". Rule-set may be full, or code may not
correspond to an error-log message.
Message: 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 EAST or WEST.
Message: The inverse flattening must be larger than 1.0, or 0.0 if the ellipsoid is a sphere.
92
• Error number: 3739; Symbol: ER_SRS_INVALID_ANGULAR_UNIT; SQLSTATE: SR002
Message: The prime meridian must be within (-180, 180] degrees, specified in the SRS angular unit.
Message: Transformation from SRID %u is not supported. The spatial reference system has no
TOWGS84 clause.
Message: Transformation to SRID %u is not supported. The spatial reference system has no TOWGS84
clause.
Message: 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 try again.
Message: Statement violates GTID consistency: CREATE TEMPORARY TABLE and DROP
TEMPORARY TABLE are not allowed inside a transaction or inside a procedure in a transactional
context when @@session.binlog_format=STATEMENT.
Message: 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 this variable to avoid this
message. Note that tables without a primary key can cause performance problems in row-based
replication, so please consult your DBA before changing this setting.
93
• Error number: 3751; Symbol: ER_WARN_DATA_TRUNCATED_FUNCTIONAL_INDEX; SQLSTATE: 01000
Message: Value is out of range for functional index '%s' at row %ld
Message: Cannot create a functional index on a function that returns a JSON or GEOMETRY value.
Message: Cannot drop column '%s' because it is used by a functional index. In order to drop the column,
you must remove the functional index.
Message: Cannot create a functional index on an expression that returns a BLOB or TEXT. Please
consider using CAST.
Message: The used storage engine cannot index the expression '%s'.
Message: Functional index on a column is not supported. Consider using a regular index instead.
94
Message: Expression of generated column '%s' cannot refer to a row value.
Message: Expression of generated column '%s' cannot refer user or system variables.
Message: Column '%s' of table '%s' has a default value expression dependency and cannot be dropped
or renamed.
Message: 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.
Message: Default value expression of column '%s' cannot refer to an auto-increment column.
Message: Default value expression of column '%s' contains a disallowed function: %s.
Message: Default value expression of column '%s' cannot refer to a row value.
Message: Default value expression of column '%s' cannot refer user or system variables.
Message: Statement violates GTID consistency: ALTER TABLE ... ADD COLUMN .. with expression as
DEFAULT.
Message: Cannot change table's storage engine because the table participates in a foreign key
constraint.
95
Message: Setting user variables within expressions is deprecated and will be removed in a future
release. Consider alternatives: 'SET variable=expression, ...', or 'SELECT expression(s) INTO
variables(s)'.
Message: '%s' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4
with an appropriate collation instead.
Message: Nested comment syntax is deprecated and will be removed in a future release.
Message: Referencing column '%s' and referenced column '%s' in foreign key constraint '%s' are
incompatible.
Message: Timeout exceeded for held statement while new Group Replication primary member is
applying backlog.
Message: Held statement aborted because Group Replication plugin got shut down or thread was killed
while new primary member was applying backlog.
Message: Held statement was aborted due to member being in error state, while backlog is being
applied during Group Replication primary election.
Message: Failed to fetch key from keyring, please check if keyring is loaded.
Message: Can't find key from keyring, please check in the server log if a keyring is loaded and initialized
successfully.
Message: Failed to rotate some logs after changing binlog encryption settings. Please fix the problem
and rotate the logs manually.
96
Message: Key %s exists unexpected.
Message: Unable to recover binlog encryption master key, please check if keyring is loaded.
Message: slow query log file format changed as requested, but setting will have no effect when not
actually logging to a file.
Message: The option group_replication_consistency cannot be used on the current member state.
Message: Error while waiting for transactions with group_replication_consistency= 'AFTER' to commit.
Message: The Group Replication plugin is stopping, therefore new transactions are not allowed to start.
97
• Error number: 3802; Symbol: ER_PAGE_TRACKING_NOT_STARTED; SQLSTATE: HY000
Message: Tracking was not enabled for the LSN range specified
Message: Cannot purge data when concurrent clone is in progress. Try later.
Message: Cannot rotate binary log master key when 'binlog-encryption' is off.
Message: 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.
Message: 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 use, the keyring, binary and relay log
files are unchanged, and the server could not start using a new binary log master key for encrypting new
binary and relay log files.
Message: 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. There may still exist binary or relay
log files using the previous binary log master key.
Message: %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 using the previous binary log master key.
Message: 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 in the keyring, and they will be removed
upon server restart or next 'ALTER INSTANCE ROTATE BINLOG MASTER KEY' execution.
Message: 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 process did not finish as expected and the
cleanup will take place upon server restart or next 'ALTER INSTANCE ROTATE BINLOG MASTER KEY'
execution.
98
• Error number: 3812; Symbol: ER_NON_BOOLEAN_EXPR_FOR_CHECK_CONSTRAINT; SQLSTATE:
HY000
Message: An expression of a check constraint '%s' cannot refer to a user or system variable.
Message: Column '%s' cannot be used in a check constraint '%s': needed in a foreign key constraint '%s'
referential action.
99
• Error number: 3825; Symbol: ER_INVALID_ENCRYPTION_REQUEST; SQLSTATE: HY000
Message: Table encryption differ from its database default encryption, and user doesn't have enough
privilege.
Message: Database default encryption differ from 'default_table_encryption' setting, and user doesn't
have enough privilege.
Message: Tablespace encryption differ from 'default_table_encryption' setting, and user doesn't have
enough privilege.
Message: This tablespace can't be encrypted, because one of table's schema has default encryption
OFF and user doesn't have enough privilege.
Message: This tablespace can't be decrypted, because one of table's schema has default encryption ON
and user doesn't have enough privilege.
Message: Either some of the authorization IDs in the AS clause are invalid or the current user lacks
privileges to execute the statement.
Message: Column '%s' has a functional index dependency and cannot be dropped or renamed.
100
Message: Plugin '%s' is not to be used as an "early" plugin. Don't add it to --early-plugin-load, keyring
migration etc.
Message: Redo log archiving start prohibits path name in 'subdir' argument
Message: Redo log archive directory '%s' does not exist or is not a directory
Message: Redo log archive directory '%s' is in, under, or over server directory '%s' - '%s'
Message: Cannot create redo log archive file '%s' (OS errno: %d - %s)
Message: Redo log archiving has been started on '%s' - Call innodb_redo_log_archive_stop() first
Message: Redo log archiving has not been started by this session
101
• Error number: 3852; Symbol: ER_STD_REGEX_ERROR; SQLSTATE: HY000
Message: Column '%s' has a partitioning function dependency and cannot be dropped or renamed.
Message: AUTO_INCREMENT support for FLOAT/DOUBLE columns is deprecated and will be removed
in a future release. Consider removing AUTO_INCREMENT from column '%s'.
Message: Cannot stop the replica SQL thread while the instance is locked for backup. Try running
`UNLOCK INSTANCE` first.
Message: Specifying number of digits for floating point data types is deprecated and will be removed in a
future release.
Message: UNSIGNED for decimal and floating point data types is deprecated and support for it will be
removed in a future release.
Message: Integer display width is deprecated and will be removed in a future release.
Message: 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 CHAR column.
Message: Clone Donor MySQL version: %s is different from Recipient MySQL version %s.
102
Message: Clone Donor OS: %s is different from Recipient OS: %s.
Message: Clone Configuration %s: Donor value: %s is different from Recipient value: %s.
Message: Clone cannot use loop back connection while cloning into current data directory.
Message: Clone estimated database size is %s. Available space %s is not enough.
Message: %s
Message: Empty password can not be retained as second password for user '%s'@'%s'.
103
Message: Cannot set mandatory_roles: AuthId `%s`@`%s` has '%s' privilege.
Message: Gtid table is not ready to be used. Table '%s.%s' cannot be opened.
Message: The geometry passed to function %s is in SRID 0, which doesn't specify a length unit. Can't
convert to '%s'.
Message: Storage engine could not allocate temporary tablespace for this session.
Message: Could not change column '%s' of table '%s'. The resulting size of index '%s' would exceed the
max key length of %d bytes.
Message: Failed to set up SSL because of the following SSL library error: %s
Message: You cannot perform DDLs on a table that has a secondary engine defined.
Message: Incorrect current password. Specify the correct password which has to be replaced.
Message: Current password needs to be specified in the REPLACE clause in order to change it.
Message: Do not specify the current password while changing it for other users.
104
Message: Current password can not be retained for user '%s'@'%s' because authentication plugin is
being changed.
Message: Current password can not be retained for user '%s'@'%s' because new password is empty.
Message: At least one partial revoke exists on a database. The system variable '@@partial_revokes'
must be set to ON.
Message: AuthId `%s`@`%s` is set as mandatory_roles. Cannot grant the '%s' privilege.
Message: The use of replication filters with XA transactions is not supported, and can lead to an
undefined state in the replica.
Message: '%s' privilege for database '%s' exists both as partial revoke and mysql.db simultaneously. It
could mean that the 'mysql' schema is corrupted.
Message: Invalid JSON value for CAST for functional index '%s'.
Message: Out of range JSON value for CAST for functional index '%s'.
Message: Exceeded max number of values per record for multi-valued index '%s' by %u value(s).
Message: Exceeded max total length of values per record for multi-valued index '%s' by %u bytes.
105
Message: Data too long for functional index '%s'.
Message: Cannot store an array or an object in a scalar key part of the index '%s'.
Message: Cannot use functional index '%s' due to type or collation conversion.
Message: Cannot update GTID_PURGED with the Group Replication plugin running
Message: Grouping on temporal is non-deterministic for timezones having DST. Please consider
switching to UTC for this query.
Message: 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.
Message: Request ignored for '%s'@'%s'. Role needed to perform operation: '%s'
Message: A plugin was loaded or unloaded during a query, a system variable table was changed.
Message: A plugin was loaded or unloaded during a query, a global status variable was changed.
Message: The START GROUP_REPLICATION command failed to start its message service.
106
Message: Invalid compression algorithm '%s'.
Message: Specified compression algorithm list '%s' exceeds total count of 3 for channel '%s'.
Message: PRIVILEGE_CHECKS_USER for replication channel '%s' was set to ``@`%s`, but anonymous
users are disallowed for PRIVILEGE_CHECKS_USER.
Message: PRIVILEGE_CHECKS_USER for replication channel '%s' was set to `%s`@`%s`, but this is
not an existing user.
Message: PRIVILEGE_CHECKS_USER for replication channel '%s' was set to `%s`@`%s`, but this user
does not have REPLICATION_APPLIER privilege.
107
Message: %s.
Message: Invalid character set '%s' was specified. It must be either character set name or collation name
as supported by server.
• Error number: 3936; Symbol: ER_DA_UDF_INVALID_CHARSET; SQLSTATE: HY000
Message: Invalid character set '%s' was specified. It must be a character set name as supported by
server.
• Error number: 3937; Symbol: ER_DA_UDF_INVALID_COLLATION; SQLSTATE: HY000
Message: Invalid collation '%s' was specified. It must be a collation name as supported by server.
Message: Invalid extension argument type '%s' was specified. Refer the MySQL manual for the valid
UDF extension arguments type.
Message: Table has multiple constraints with the name '%s'. Please use constraint specific '%s' clause.
Message: Altering constraint enforcement is not supported for the constraint '%s'. Enforcement state
alter is not supported for the PRIMARY, UNIQUE and FOREIGN KEY type constraints.
Message: Each row of a VALUES clause must have at least one column, unless when used as source in
an INSERT statement.
Message: A VALUES clause cannot use DEFAULT values, unless used as a source in an INSERT
statement.
Message: The query does not comply with variable require_row_format restrictions.
108
Message: Failed to acquire lock on user management service, unable to determine if role `%s`@`%s` is
mandatory
Message: Failed to acquire lock on user management service, unable to fetch mandatory role list
Message: Loading local data is disabled; this must be enabled on both the client and server sides
Message: Failed to import %s because the CFG file version (%u) is not compatible with the current
version (%u)
Message: Character set can be set only for the UDF argument type STRING.
Message: Character set can be set only for the UDF RETURN type STRING.
Message: Misplaced INTO clause, INTO is not allowed inside subqueries, and must be placed at end of
UNION clauses.
Message: Access denied for user '%s'@'%s'. Account is blocked for %s day(s) (%s day(s) remaining)
due to %u consecutive failed logins.
Message: UNSIGNED for the YEAR data type is deprecated and support for it will be removed in a
future release.
109
• Error number: 3959; Symbol: ER_DEPENDENT_BY_CHECK_CONSTRAINT; SQLSTATE: HY000
Message: Check constraint '%s' uses column '%s', hence column cannot be dropped or renamed.
Message: This operation cannot be performed while Group Replication is running; run STOP
GROUP_REPLICATION first
Message: 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. Specify ON EMPTY before ON
ERROR instead.
Message: 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 statement instead.
Message: 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 VALUES clause of the INSERT statement,
consider using an alias (INSERT INTO ... VALUES (...) AS alias) and reference alias.col instead of
VALUES(col) in the ON DUPLICATE KEY UPDATE clause.
Message: FOUND_ROWS() is deprecated and will be removed in a future release. Consider using
COUNT(*) instead.
Message: More than one value was found by '%s' on the specified path.
Message: The START GROUP_REPLICATION command failed since the username provided for
recovery channel is empty.
110
Message: The START GROUP_REPLICATION command failed since the USER option was not
provided with PASSWORD for recovery channel.
Message: The START GROUP_REPLICATION command failed since the password provided for the
recovery channel exceeds the maximum length of 32 characters.
Message: Invalid input value for recovery socket endpoints '%s'. Please, provide a valid, comma
separated, list of endpoints (IP:port).
Message: The server is not listening on endpoint '%s'. Only endpoints that the server is listening on are
valid recovery endpoints.
Message: Only BINLOG INSERT, COMMIT and ROLLBACK statements are allowed after CREATE
TABLE with START TRANSACTION statement.
Message: Foreign key creation is not allowed with CREATE TABLE as SELECT and CREATE TABLE
with START TRANSACTION statement.
111
Message: Cannot perform operation as InnoDB redo logging is disabled. Please retry after enabling redo
log with ALTER INSTANCE
Message: Cannot perform operation as InnoDB is archiving redo log. Please retry after stopping redo
archive by invoking innodb_redo_log_archive_stop()
Message: 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 a SQL numeric type with
JSON_VALUE RETURNING
Message: The function %s does not support the character set '%s'.
Message: Failed to enable Asynchronous Replication Connection Failover feature. The CHANGE
REPLICATION SOURCE TO SOURCE_CONNECTION_AUTO_FAILOVER = 1 can only be set when
@@GLOBAL.GTID_MODE = ON.
Message: Failed to enable Asynchronous Replication Connection Failover feature. The CHANGE
REPLICATION SOURCE TO SOURCE_CONNECTION_AUTO_FAILOVER = 1 can only be set when
SOURCE_AUTO_POSITION option of CHANGE REPLICATION SOURCE TO is enabled.
112
• Error number: 3994; Symbol: ER_INVALID_PARAMETER_USE; SQLSTATE: HY000
Message: Character set '%s' cannot be used in conjunction with '%s' in call to %s.
Message: Changing %s not supported on this platform. Falling back to the default.
Message: 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 available in performance_schema.error_log.
Message: @@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 affected a log-event.
113
• Error number: 4009; Symbol: WARN_UNSUPPORTED_ACL_TABLES_READ; SQLSTATE: HY000
Message: Reads with serializable isolation/SELECT FOR SHARE are not supported for ACL tables.
Message: 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 have same effect on source and
replica.
Message: 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 complete.
Message: The value of sql_replica_skip_counter will only take effect for channels running with
ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS <> OFF.
114
• Error number: 4019; Symbol:
ER_CANT_SET_SQL_AFTER_OR_BEFORE_GTIDS_WITH_ANONYMOUS_TO_GTID; SQLSTATE: HY000
Message: 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. Please check database/table locks, including
the ones created by backup tools.
Message: User account %s is directly or indirectly granted to the role %s. The GRANT would create a
loop
115
• Error number: 4030; Symbol: ER_WARN_ASYNC_CONN_FAILOVER_NETWORK_NAMESPACE; SQLSTATE:
HY000
Message: The parameter network_namespace is reserved for future use. Please use the CHANGE
REPLICATION SOURCE command to set channel network_namespace parameter.
Message: The client was disconnected by the server because of inactivity. See wait_timeout and
interactive_timeout for configuring this behavior.
Message: Invalid cast from %s to %s. A polygon ring is in the wrong direction.
Message: Arguments to function %s contains geometries with different SRIDs: %u and %u. All
geometries must have the same SRID.
Message: Keyring reload failed. Please check error log for more details.
116
Message: 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 ignored
Message: 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.
Message: Create/Alter user has failed, Configured user realm as authentication string is empty, Please
make sure to configure authentication string as user realm.
Message: %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 flush filed-based logs may affect log-rotation.
Message: 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 internally what
gaps may exist in the relay log transaction execution. To close any execution gaps use either the
SQL_BEFORE_GTIDS or SQL_AFTER_GTIDS until clause.
Message: This operation cannot be performed on a Group Replication secondary member, it must be
done on the group primary.
117
Message: IDENTIFIED BY clause during "%s" not supported for plugin "%s".
Message: Authentication plugin requires registration. Please refer ALTER USER syntax or set --register-
factor command line option to do registration.
Message: %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 existing %d factor
authentication method.
Message: %d factor authentication method doesn't exist. Please do ALTER USER... ADD %d factor...
before doing this operation.
Message: %d factor authentication method does not match against authentication policy. Please refer
@@authentication_policy system variable.
Message: The registration for %d factor authentication method is already completed. You cannot
perform registration multiple times.
Message: The registration operation is not allowed for user '%s'@'%s'. The operation can only be
performed in user's own session.
Message: %d factor authentication method should be added before %d factor authentication method.
Message: The operation "%s" cannot be performed for user '%s'@'%s' configured to connect without a
password.
118
Message: GTID_ONLY cannot be enabled for replication channel '%s'. You need GTID_MODE = ON,
SOURCE_AUTO_POSITION = 1 and REQUIRE_ROW_FORMAT = 1.
Message: 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.
Message: When disabling SOURCE_AUTO_POSITION FOR CHANNEL '%s' you must provide
SOURCE_LOG_FILE and SOURCE_LOG_POS as source positions are invalid.
Message: When configuring a group replication channel you must do it when GTID_MODE = ON.
Message: 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 used in some cases so, in order to update
them, we suggest that you start the replication to receive and apply at least one transaction, which will
set the positions to valid values.
Message: %s=%llu is outside the valid range [%llu,%llu]. %llu will be used.
119
Message: MATCH does not support ROLLUP columns.
Message: '%s' is a collation of the deprecated character set %s. Please consider using %s with an
appropriate collation instead.
Message: 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.
Message: Connection closed. Global connection memory limit %llu bytes exceeded. Consumed %llu
bytes.
Message: Connection closed. Connection memory limit %llu bytes exceeded. Consumed %llu bytes.
Message: 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.
Message: Could not purge binary logs since another session is executing LOCK INSTANCE FOR
BACKUP. Wait for that session to release the lock.
Message: Too many windows in SELECT: %d. Maximum allowed is %d. Use named windows to share
windows between window functions.
Message: %s
120
Message: Comment for %s '%s' contains an invalid %s character string: '%s'.
Message: Maximum row versions reached for table %s. No more columns can be added or dropped
instantly. Please use COPY/INPLACE.
Message: Delimiter '%s' in position %d in datetime value '%s' at row %d is deprecated. Prefer the
standard '%c'.
Message: Delimiter '%s' in position %d in datetime value '%s' at row %d is superfluous and is
deprecated. Please remove.
Message: Cannot persist SENSITIVE system variable '%s' because keyring component support is
unavailable.
Message: SENSITIVE system variable '%s' was persisted without encryption. Consider restarting server
with keyring component support to persist SENSITIVE variables securely.
Message: Trigger '%s'.'%s' already exists on a different table. The 'IF NOT EXISTS' clause is only
supported for triggers associated with the same table.
121
• Error number: 4101; Symbol:
ER_IF_NOT_EXISTS_UNSUPPORTED_UDF_NATIVE_FCT_NAME_COLLISION; SQLSTATE: HY000
Message: 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 as a native function.
Message: 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 using ALTER USER instead if
you want to change authentication parameters.
Message: Latitude of origin must be within [-90, 90] degrees, specified in the SRS angular unit.
Message: Longitude of origin must be within (-180, 180] degrees, specified in the SRS angular unit.
Message: The spatial reference system definition for SRID %u contains unused projection parameter
"%s".
Message: Failed to generate invisible primary key. Column 'my_row_id' already exists.
Message: Failed to generate invisible primary key. Auto-increment column already exists.
Message: Altering generated invisible primary key column 'my_row_id' is not allowed.
Message: Please drop primary key column to be able to drop generated invisible primary key.
Message: Generating an invisible primary key for a table created using CREATE TABLE ... SELECT ...
is disallowed when binlog_format=STATEMENT. It cannot be guaranteed that the SELECT retrieves
rows in the same order on source and replica. Therefore, it cannot be guaranteed that the value
generated for the generated implicit primary key column will be the same on source and replica for all
rows. Use binlog_format=ROW or MIXED to execute this statement.
Message: Error when trying to fetch information from security context object, when trying to connect the
server.
122
• Error number: 4116; Symbol: ER_COMMAND_SERVICE_BACKEND_FAILED; SQLSTATE: HY000
Message: The PRIVILEGE_CHECKS_USER for channel '%s' would need FILE privilege to execute a
LOAD DATA INFILE statement replicated in statement format. Consider using binlog_format=ROW on
source. If the replicated events are trusted, recover from the failure by temporarily granting FILE to the
PRIVILEGE_CHECKS_USER.
Message: Using %s as unquoted identifier is deprecated, please use quotes or rename the identifier.
Message: 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 limit per group
Message: Latitude of origin must be +-90 degrees, specified in the SRS angular unit, in Polar
Stereographic (variant A) projection method (EPSG:9810).
123
• Error number: 4128; Symbol: ER_WARN_DEPRECATED_CLIENT_NO_SCHEMA_OPTION; SQLSTATE:
HY000
Message: [IN PRIMARY KEY ORDER] specified but data not sorted: '%s'
Message: Bulk reader got error in communication with source server, check the error log for additional
details.
Message: Bulk loader failed in Innodb storage engine, check the error log for additional details.
124
• Error number: 4142; Symbol:
ER_BULK_LOADER_FILE_CONTAINS_LESS_LINES_THAN_IGNORE_CLAUSE; SQLSTATE: HY000
Message: The first file being loaded contained less lines than the ignore clause
Message: The number of input columns that need to be buffered for parsing exceeded predefined buffer
max size for file '%s'.
Message: The column data that needed to be copied due to escaped characters exceeded the size of
the internal copy buffer for file '%s'.
Message: Unexpected end of input found at row %ld in file '%s'. Data for some columns is missing.
Message: Unexpected row terminator found at row %ld in file '%s'. Data for some columns is missing.
Message: Unexpected characters after ending ENCLOSED BY character found at row %ld in file '%s'.
Message: Unexpected characters after NULL escape (\\N) found at row %ld in file '%s'.
Message: Unexpected characters after column terminator found at row %ld in file '%s'.
Message: Unexpected end of input found at row %ld in file '%s' resulting in incomplete escape
sequence.
Message: Incorrect %s value: '%s' for column '%s' at row %ld in file '%s'
125
• Error number: 4154; Symbol: ER_LOAD_BULK_DATA_WARN_NULL_TO_NOTNULL; SQLSTATE: HY000
Message: NULL supplied to NOT NULL column '%s' at row %ld in file '%s'
Message: 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. Try ALGORITHM=INPLACE/
COPY.
Message: Column can't be added to '%s' with ALGORITHM=INSTANT anymore. Please try
ALGORITHM=INPLACE/COPY.
Message: The value supplied for %s in the SET list cannot be null
Message: The assignment of %s in SET doesn't match any of the variables registered by the
component(s)
Message: '%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.
Message: Immediately starting the version comment after the version number is deprecated and may
change behavior in a future release. Please insert a white-space character after the version number.
126
Message: 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, uppercase letters and lowercase
letters are considered to be equal.
Message: %s
Message: Language component: Cannot uninstall due to connected sessions. Please disconnect all
sessions and try again.
Message: Trying to persist a NULL into a variable '%s' that's settable only on command line is not
supported
Message: EXPLAIN FOR CONNECTION does not support the INTO clause.
127
• Error number: 6012; Symbol: ER_INNODB_IMPORT_WRONG_NUMBER_OF_INDEXES_TOO_HIGH;
SQLSTATE: HY000
Message: DD metadata for INSTANT DROP column %s in target table doesn't match with CFG.
Message: Enum/Set element name missing null terminator for column '%s'
Message: %s %s %zu.
128
• Error number: 6026; Symbol: ER_BULK_LOAD_TABLE_HAS_INSTANT_COLS; SQLSTATE: HY000
Message: Bulk Loader: Table '%s' has instantly added/dropped columns. Please TRUNCATE TABLE
and retry.
Message: 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, Available memory is %s.
Message: LOAD DATA with BULK Algorithm is not supported on a table with secondary engine.
Message: '%s' for '%s' storage engine is deprecated and will be removed in a future release.
129
Message: @@SESSION.GTID_NEXT cannot be set to AUTOMATIC:<TAG> when
@@GLOBAL.GTID_MODE = OFF or OFF_PERMISSIVE
Message: Column %d of %s : Column is missing, but it is not nullable and no explicit default value is
provided.
130
• Error number: 6054; Symbol: ER_LH_REAL_IS_NAN; SQLSTATE: HY000
Message: %s: Mismatch in the number of columns. Expected %u, found %u.
Message: Resource Principal endpoint is not configured. Cannot access following buckets: %s.
131
Message: File %s is empty.
Message: File %s: Avro schema depth exceeds max allowed depth.
Message: File %s: Enum symbols are not the same, or are not in the same order.
Message: Column %d in %s: Avro value of physical type %.*s logical type %.*s cannot be converted to
mysql type %s.
Message: 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.
Message: File %.*s: Cannot locate %s specific metadata. Either the file is corrupted or this is not an %s
file.
Message: File %.*s: Could not process Avro header metadata. The metadata is corrupted or invalid.
132
• Error number: 6084; Symbol: ER_LH_AVRO_NO_CODEC_IN_HEADER; SQLSTATE: HY000
Message: File %s: Size of row group %ld is larger than maximum allowed size (%d).
Message: File %s: Cannot locate offset of row group %ld in metadata.
Message: File %s is skipped because it has no valid data. File is either empty or all rows are skipped.
133
• Error number: 6099; Symbol: ER_LH_INFER_NO_FILES; SQLSTATE: HY000
Message: Used default column names for column index(s) %s as they are %s.
Message: File %.*s: Could not parse avro header. Probably corrupted avro file.
Message: %s> %s
134
Message: %s> The identifier '%s' is a reserved word.
Message: Language component: System variable '%s' cannot be configured when component is active.
Message: %s> %s
Message: %s> %s
Message: Stored program statement is partially completed. Result set might not contain all the rows.
Message: Executing SQL statement using %s Statement Handle Interface is not allowed within stored
function, trigger or loadable function (UDF).
Message: Column %d of %s : %s
Message: Column '%s.%s.%s' having prefix key part '%s(%u)' in the PARTITION BY KEY() clause is not
supported.
Message: Foreign key '%s' refers to non-unique key or partial key. This is deprecated and will be
removed in a future release.
Message: Failed to add the foreign key constraint. Missing unique key for constraint '%s' in the
referenced table '%s'
Message: Access denied for user '%s'@'%s', proxied user doesn't exist.
135
• Error number: 6129; Symbol: ER_BULK_READER_ZSTD_ERROR; SQLSTATE: HY000
Message: %s
Message: Inferred invalid schema. A single column with JSON type is the only valid schema for JSON
file format.
Message: Value of type '%s, size: %zu' cannot be converted to 'vector' type.
Message: Data size (%zu Bytes, %u dimensions) exceeds VECTOR max (%zu Bytes, %u dimensions)
for column: '%s'
136
• Error number: 6404; Symbol: ER_LH_UNSTRUCTURED_ENCODING_ERR; SQLSTATE: HY000
Message: Defined schema does not match expected for column: %s.
Message: Combining the storage engines %s and %s is deprecated, but the statement or transaction
updates both the %s table %s.%s and the %s table %s.%s.
Message: Column data bigger than %zu bytes for column='%s' of table='%s'
137
• Error number: 6418; Symbol: ER_LH_CP_TOO_MANY_CHANGES; SQLSTATE: HY000
Message: More than %llu changes detected. Certain changes are ignored.
Message: Lakehouse Incremental Load is not supported for vector store tables.
Message: Column %d in %s: Vector has more entries than its dimension: %s
Message: Unexpected enclosed by character found inside unenclosed string at row %ld in file '%s'
resulting in malformed CSV.
Message: Result of SHOW was redacted due to insufficient privileges for table %s.
138
• Error number: 6433; Symbol: ER_LIBRARIES_NOT_SUPPORTED; SQLSTATE: HY000
Message: Skip re-populating collations and character sets tables in %s%sread-only mode.
Message: Cannot open %s; check privileges, or remove syseventlog from --log-error-services!
Message: either restart the query logging by using "SET GLOBAL SLOW_QUERY_LOG=ON" or
Message: either restart the query logging by using "SET GLOBAL GENERAL_LOG=ON" or
Message: Gtid table is not ready to be used. Table '%s.%s' cannot be opened.
139
• Error number: MY-010016; Symbol: ER_SYSTEM_SCHEMA_NOT_FOUND; SQLSTATE: HY000
Message: View '%s'.'%s': unknown charset name and/or collation name (client: '%s'; connection: '%s').
Message: Error in allocating memory for character set name for view %s.%s.
Message: Unable to start server. Cannot find the meta data for data dictionary table '%s'.
140
• Error number: MY-010032; Symbol: ER_RPL_REPO_HAS_GAPS; SQLSTATE: HY000
Message: It is not possible to change the type of the relay log's repository because there are workers'
repositories with gaps. Please, fix the gaps first before doing such change.
Message: option 'enforce-gtid-consistency': value '%s' was not recognized. Setting enforce-gtid-
consistency to OFF.
Message: %*s
141
• Error number: MY-010046; Symbol: ER_EVENT_EXECUTION_FAILED; SQLSTATE: HY000
Message: Event scheduler: Failed to start scheduler, Can not create thread for event scheduler (errno=
%d)
Message: Event Scheduler: Serious error during getting next event to execute. Stopping
Message: Event_scheduler::execute_top: Can not create event worker thread (errno=%d). Stopping
event scheduler
Message: IP address '%s' has been resolved to the host name '%s', which resembles IPv4-address
itself.
142
• Error number: MY-010060; Symbol: ER_ADDRESSES_FOR_HOSTNAME_LIST_ITEM; SQLSTATE:
HY000
Message: - %s
Message: Definer clause is missing in Trigger of Table %s. Rebuild Trigger to fix definer.
Message: Client character set is missing for trigger of table %s. Using default character set.
Message: Failed to set up SSL because of the following SSL library error: %s
Message: Failed to generate a server UUID because it is failed to allocate the THD.
Message: Salting uuid generator variables, current_pid: %lu, server_start_time: %lu, bytes_sent: %llu,
143
• Error number: MY-010074; Symbol: ER_UUID_SCRUB; SQLSTATE: HY000
Message: Garbage characters found at the end of the server_uuid value in auto.cnf file. It should be of
length '%d' (UUID_LENGTH). Clear it and restart the server.
Message: No existing UUID has been found, so we assume that this is the first time that this server has
been started. Generating a new UUID: %s.
Message: Initialization of the server's UUID failed because it could not be read from the auto.cnf file. If
this is a new server, the initialization failed because it was not possible to generate a new UUID.
Message: The use of InnoDB is mandatory since MySQL 5.7. The former options like '--innodb=0/1/OFF/
ON' or '--skip-innodb' are ignored.
Message: --verbose is for use with --help; did you mean --log-error-verbosity?
Message: net_buffer_length (%lu) is set to be larger than max_allowed_packet (%lu). Please rectify.
144
• Error number: MY-010089; Symbol: ER_CONNECTION_HANDLING_OOM; SQLSTATE: HY000
Message: Failed to access directory for --secure-file-priv. Please make sure that directory exists and is
accessible by MySQL Server. Supplied value : %s
Message: Insecure configuration for --secure-file-priv: Current value does not restrict location of
generated files. Consider setting it to a valid, non-empty path.
Message: --secure-file-priv is set to NULL. Operations related to importing and exporting data are
disabled
Message: Insecure configuration for --secure-file-priv: Location is accessible to all OS users. Consider
choosing a different directory.
145
Message: Value for --secure-file-priv is longer than maximum limit of %d
Message: setrlimit could not change the size of core files to 'infinity'; We may not be able to generate a
core file on signals
Message: Current time has got past year 2038. Validating current time with %d iterations before initiating
the normal server shutdown process.
Message: Iteration %d: Current time obtained from system is greater than 2038
Message: This MySQL server doesn't support dates later then 2038
146
• Error number: MY-010117; Symbol: ER_SHUTTING_DOWN_REPLICA_THREADS; SQLSTATE: HY000
Message: Aborting
Message: One can only use the --user switch if running as root
Message: Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
Message: Fatal error: Can't change to run as user '%s' ; Please check that the user exists!
Message: Server is started with --require-secure-transport=ON but no secure transports (SSL or Shared
Memory) are configured.
Message: setgid: %s
Message: setuid: %s
Message: setregid: %s
Message: setreuid: %s
Message: chroot: %s
147
• Error number: MY-010132; Symbol: ER_NOT_RIGHT_NOW; SQLSTATE: HY000
Message: '%s' can not be used as client character set. '%s' will be used as default client character set.
Message: Could not increase number of max_open_files to more than %lu (request: %lu)
Message: Ignoring user change to '%s' because the user was set to '%s' earlier on the command line
Message: The variable session_track_system_variables either has duplicate values or invalid values.
148
• Error number: MY-010147; Symbol: ER_EXCESS_ARGUMENTS; SQLSTATE: HY000
Message: There were other values specified to log-output besides NONE. Disabling slow and general
logs anyway.
Message: CSV engine is not present, falling back to the log files
Message: Although a path was specified for the %s, log tables are used. To enable logging to files use
the --log-output=file option.
Message: The server option 'lower_case_table_names' is configured to use case sensitive table
names but the data directory is on a case-insensitive file system which is an unsupported combination.
Please consider either using a case sensitive file system for your data directory or switching to a case-
insensitive table name mode.
149
Message: lower_case_table_names was set to 2, even though your the file system '%s' is case
sensitive. Now setting lower_case_table_names to 0 to avoid future problems.
Message: Path '%s' is a directory name, please specify a file name for %s option
Message: No argument was provided to --log-bin, and --log-bin-index was not used; so replication may
break when this MySQL server acts as a source and has his hostname changed!! Please use '--log-bin=
%s' to avoid this problem.
Message: You have enabled the binary log, but you haven't provided the mandatory server-id. Please
refer to the proper server start-up parameters documentation
Message: Unable to create replication path names: out of memory or path names too long (path name
exceeds %d or file name exceeds %d).
Message: Can't read data directory's stats (%d): %s. Assuming that it's not owned by the same user/
group
150
• Error number: MY-010175; Symbol: ER_CANT_SET_UP_PERSISTED_VALUES; SQLSTATE: HY000
Message: Failed to save the set of Global Transaction Identifiers of the last binary log into the
mysql.gtid_executed table while the server was shutting down. The next server restart will make another
attempt to save Global Transaction Identifiers into the table.
Message: An error occurred while building do_table and ignore_table rules to hashes for global
replication filter.
Message: Found %s, %s and %s in data directory. Trying to enable SSL support using them.
151
• Error number: MY-010190; Symbol: ER_RPL_INFINITY_IGNORED; SQLSTATE: HY000
Message: %s
Message: Unable to start server. The data dictionary tablespace '%s' does not exist.
Message: Connection collation is missing for trigger of table %s. Using default connection collation.
Message: Database collation is missing for trigger of table %s. Using Default character set.
Message: Resolving dependency for the view '%s.%s' failed. View is no more valid to use
Message: %s.%s has no definer (as per an old view format). Current user is used as definer. Please
recreate the view.
152
• Error number: MY-010205; Symbol: ER_RPL_BINLOG_TRANSMIT_DELEGATES_INIT_FAILED;
SQLSTATE: HY000
Message: Persisted config file is corrupt. Please ensure mysqld-auto.cnf file is valid JSON.
Message: VALGRIND_DO_QUICK_LEAK_CHECK
Message: LOAD DATA INFILE in the replica SQL Thread can only read from --replica-load-tmpdir.
Please, report a bug.
153
• Error number: MY-010220; Symbol: ER_UDF_CANT_ALLOC_FOR_STRUCTURES; SQLSTATE: HY000
Message: Could not open the mysql.func table. Please perform the MySQL upgrade procedure.
Message: --tc-heuristic-recover rollback strategy is not safe on systems with more than one 2-phase-
commit-capable storage engine. Aborting crash recovery.
Message: Found %d prepared transactions! It means that mysqld was not shut down properly last time
and critical recovery information (last binlog or %s file) was manually deleted after a crash. You have to
start mysqld with --tc-heuristic-recover switch to commit or rollback pending transactions.
Message: Following users were specified in CREATE USER IF NOT EXISTS but they already exist.
Corresponding entry in binary log used default authentication plugin '%s' to rewrite authentication
information (if any) for them: %s
154
Message: Following users were specified in ALTER USER IF EXISTS but they do not exist.
Corresponding entry in binary log used default authentication plugin '%s' to rewrite authentication
information (if any) for them: %s
Message: Table '%s' corrupted: row in wrong partition: %s -- Please REPAIR the table!
Message: Storage engine '%s' has conflicting typecode. Assigning value %d.
155
Message: Failed to create a socket for %s '%s': errno: %d.
Message: Failed to reset IPV6_V6ONLY flag (error: %d). The server will listen to IPv6 addresses only.
156
Message: - '%s' resolves to '%s';
Message: Could not write unix socket lock file %s errno %d.
157
Message: Could not remove unix socket lock file %s errno %d.
Message: Could not sync unix socket lock file %s errno %d.
Message: Could not close unix socket lock file %s errno %d.
Message: RSA %s key file not found: %s. Some authentication plugins will not work.
Message: RSA key files not found. Some authentication plugins will not work.
Message: Connection attributes of length %lu were truncated (%d bytes lost) for connection %llu, user
%s@%s (as %s), auth: %s
Message: Could not generate RSA private key required for X.509 certificate.
158
• Error number: MY-010294; Symbol: ER_X509_CANT_WRITE_KEY; SQLSTATE: HY000
Message: Skipping generation of SSL certificates as options related to SSL are specified.
Message: Skipping generation of SSL certificates as certificate files are present in data directory.
Message: Skipping generation of RSA key pair through %s as options related to RSA keys are specified.
159
Message: Skipping generation of RSA key pair through %s as key files are present in data directory.
Message: Auto generated RSA key files through %s are placed in data directory.
Message: The plugin '%.*s' used to authenticate user '%s'@'%.*s' is not loaded. Nobody can currently
login using this account.
Message: The plugin '%s' is used to authenticate user '%s'@'%.*s', %s configured. Nobody can currently
login using this account.
Message: Fatal error: Could not read the column 'authentication_string' from table 'mysql.user'. Please
perform the MySQL upgrade procedure.
Message: User entry '%s'@'%s' has a deprecated pre-4.1 password. The user will be ignored and no
one can login with this user anymore.
Message: User entry '%s'@'%s' has an empty plugin value. The user will be ignored and no one can
login with this user anymore.
Message: 'user' entry '%s@%s' has the password ignore flag raised, but its authentication plugin doesn't
support password expiration. The user id will be ignored.
160
• Error number: MY-010321; Symbol: ER_NO_SUPER_WITHOUT_USER_PLUGIN; SQLSTATE: HY000
Message: Some of the user accounts with SUPER privileges were disabled because of empty
mysql.user.plugin value. If you are upgrading from MySQL 5.6 to MySQL 5.7 it means that substitution
for the empty plugin column was not possible. Probably because of pre 4.1 password hash. If your
account is disabled you will need to perform the MySQL upgrade procedure. For complete instructions
on how to upgrade MySQL to a new version please see the 'Upgrading MySQL' section from the MySQL
manual.
Message: Found an entry in the 'db' table with empty database name; Skipped
Message: 'db' entry '%s %s@%s' had database in mixed case that has been forced to lowercase
because lower_case_table_names is set. It will not be possible to remove this privilege using REVOKE.
Message: The system table mysql.proxies_priv is missing. Please perform the MySQL upgrade
procedure.
Message: Failed to add %s in extra_users. Binary log entry may miss some of the users.
161
• Error number: MY-010332; Symbol: ER_DD_SCHEMA_NOT_FOUND; SQLSTATE: HY000
Message: Unable to start server. The data dictionary schema '%s' does not exist.
Message: Unable to start server. The data dictionary table '%s' does not exist.
Message: Found partially upgraded DD. Aborting upgrade and deleting all DD tables. Start the upgrade
process again.
Message: Found .frm file with same name as one of the Dictionary Tables.
Message: Can't find error-message file '%s'. Check error-message file location and 'lc-messages-dir'
configuration directive.
Message: Error message file '%s' had only %d error messages, but it should contain at least %d error
messages. Check that the above file is the right version for this program!
Message: Found incompatible DECIMAL field '%s' in %s; Please do "ALTER TABLE `%s` FORCE" to fix
it!
Message: Found incompatible YEAR(x) field '%s' in %s; Please do "ALTER TABLE `%s` FORCE" to fix
it!
Message: '%s' had no or invalid character set, and default character set is multi-byte, so character
column sizes may have changed
162
• Error number: MY-010346; Symbol: ER_TABLE_WRONG_KEY_DEFINITION; SQLSTATE: HY000
Message: Found wrong key definition in %s; Please do "ALTER TABLE `%s` FORCE " to fix it!
Message: Table '%s' was created with a different version of MySQL and cannot be read
Message: Can't open and lock time zone table: %s trying to live without them
163
Message: Fatal error: While loading mysql.time_zone_leap_second table: too much leaps
Message: Error while loading time zone description from mysql.time_zone_transition_type table: too big
transition type id
Message: Error while loading time zone description from mysql.time_zone_transition_type table: not
enough room for abbreviations
Message: Error while loading time zone description from mysql.time_zone_transition_type table
Message: Error while loading time zone description from mysql.time_zone_transition table: too much
transitions
Message: Error while loading time zone description from mysql.time_zone_transition table: bad transition
type id
Message: Error while loading time zone description from mysql.time_zone_transition table
164
Message: loading time zone without transition types
Message: Fatal error: Out of memory while setting new time zone
Message: Replica SQL thread stopped because it reached its UNTIL position %llu
Message: Replica SQL thread stopped because UNTIL SQL_BEFORE_GTIDS %s is already applied
Message: The transaction owned GTID is already in the %s table, which is caused by an explicit
modifying from user client.
165
• Error number: MY-010383; Symbol: ER_FAILED_TO_DELETE_FROM_GTID_EXECUTED_TABLE;
SQLSTATE: HY000
Message: Failed to delete the row: '%s' from the gtid_executed table.
Message: Failed to compress the gtid_executed table, because it is failed to allocate the THD.
Message: Can not create thread to compress gtid_executed table (errno= %d)
Message: Info table is not ready to be used. Table '%s.%s' cannot be opened.
Message: Info table is not ready to be used. Table '%s.%s' cannot be scanned.
166
Message: Info table has a problem with its key field(s). Table '%s.%s' expected field #%u to be '%s' but
found '%s' instead.
Message: Transaction %s sequence number in file %s is inconsistent with that of a preceding one:
sequence_number (%lld) <= previous sequence_number (%lld). There may be a bug in how these
timestamps were generated. Transaction will be applied in isolation
Message: For the creation of replication channels the server id must be different from 0
Message: Could not store the reset Replica Worker state into the replica info repository.
Message: Replica: %s
167
Message: Replica: This replica was a multisourced replica previously which is supported only by both
TABLE based connection metadata and applier metadata repositories. Found one or both of the info
repos to be type FILE. Set both repos to type TABLE.
Message: Replica: Failed to initialize the connection metadata structure for channel '%s'; its record may
still be present in the applier metadata repository, consider deleting it.
Message: Failed to create a new info file (file '%s', errno %d)
Message: Failed to open the existing info file (file '%s', errno %d)
Message: Server overcomes the temporary 'out of memory' in '%d' tries while allocating a new chunk of
intervals for storing GTIDs.
Message: Invalid value for cost constant "%s" in mysql.server_cost table: %.1f
168
Message: Unknown storage engine "%s" in mysql.engine_cost table
Message: Invalid device type %d for "%s" storage engine for cost constant "%s" in mysql.engine_cost
table
Message: Invalid value for cost constant "%s" for "%s" storage engine and device type %d in
mysql.engine_cost table: %.1f
Message: Event Scheduler: [%s].[%s.%s] execution failed, failed to authenticate the user.
169
Message: Event Scheduler: [%s].[%s.%s] execution failed, user no longer has EVENT privilege.
Message: In RBR mode, Replica received incompatible DECIMAL field (old-style decimal field) from
Source while creating conversion table. Please consider changing datatype on Source to new style
decimal by executing ALTER command for column Name: %s.%s.%s.
Message: root@localhost is created with an empty password ! Please consider switching off the --
initialize-insecure option.
Message: --initialize specified but the data directory has files in it. Aborting.
Message: --initialize specified but the data directory exists and the path is too long. Aborting.
Message: --initialize specified but the data directory exists and is not writable. Aborting.
170
Message: Start binlog_dump to source_thread_id(%u) replica_server(%u), pos(%s, %llu)
Message: Source is configured to log replication events with checksum, but will not send such events to
replicas that cannot process them
Message: Plugin %s is deinitializing a thread but left a session attached. Detaching it forcefully.
171
• Error number: MY-010519; Symbol: ER_DBUG_CHECK_SHARES_DROPPED; SQLSTATE: HY000
Message: Recovery failed! You must enable exactly %d storage engines that support two-phase commit
protocol
Message: Crash recovery failed. Either correct the problem (if it's, for example, out of memory error) and
restart, or delete tc log and start mysqld with --tc-heuristic-recover={commit|rollback}
Message: Detected misconfiguration: replication channel '%s' was configured with AUTO_POSITION
= 1, but the server was started with --gtid-mode=off. Either reconfigure replication using CHANGE
REPLICATION SOURCE TO SOURCE_AUTO_POSITION = 0 FOR CHANNEL '%s', or change
GTID_MODE to some value other than OFF, before starting the replica receiver thread.
172
• Error number: MY-010531; Symbol: ER_RPL_REPLICA_CANT_START_REPLICA_FOR_CHANNEL;
SQLSTATE: HY000
Message: Replica: Could not start replica for channel '%s'. operation discontinued
Message: Replica: Could not stop replica for channel '%s' operation discontinued
Message: Error during --relay-log-recovery: Could not locate rotate event from the source.
Message: Error during --relay-log-recovery: Error reading events from relay log: %d
Message: Error during --relay-log-recovery: Could not read relay log index file due to an IO error.
Message: Recovery from source pos %ld and file %s%s. Previous relay log pos and relay log file had
been set to %lld, %s respectively.
Message: Error during --relay-log-recovery: replicate_same_server_id is in use and sql thread's positions
are not initialized, hence relay log recovery cannot happen.
Message: MTA recovery: failed to start the coordinator thread. Check the error log for additional details.
173
Message: MTA recovery: automatic recovery failed. Either the replica server had stopped due to an error
during an earlier session or relay logs are corrupted.Fix the cause of the replica side error and restart the
replica server or consider using RESET REPLICA.
Message: The replica IO thread%s was killed while executing initialization query '%s'
Message: Found a source with MySQL server version older than 5.0. With checksums enabled on the
replica, replication might not work correctly. To ensure correct replication, restart the replica server with
--replica_sql_verify_checksum=0.
Message: The length of report_host is %zu. It is larger than the max length(%d), so this replica cannot
be registered to the source%s.
Message: The length of report_user is %zu. It is larger than the max length(%d), so this replica cannot
be registered to the source%s.
174
Message: The length of report_password is %zu. It is larger than the max length(%d), so this replica
cannot be registered to the source%s.
Message: Replica%s: received end packet from server due to dump thread being killed on source. Dump
threads are killed for example during source shutdown, explicitly by a user, or when the source receives
a binlog send request from a duplicate server UUID <%s> : Error %s
Message: Multi-threaded replica statistics%s: seconds elapsed = %lu; events assigned = %llu; worker
queues filled over overrun level = %lu; waited due a Worker queue full = %lu; waited due the total size =
%lu; waited at clock conflicts = %llu waited (count) when Workers occupied = %lu waited when Workers
occupied = %llu
Message: Replica%s: MTA Recovery has completed at relay log %s, position %llu source log %s,
position %llu.
175
Message: Log entry on source is longer than replica_max_allowed_packet (%lu) on replica. If the entry is
correct, restart the server with a higher value of replica_max_allowed_packet
Message: Stopping replica I/O thread due to out-of-memory error from source
Message: Replica I/O thread aborted while waiting for relay log space
Message: Replica: MTA group recovery applier metadata based on Worker-Id %lu,
group_relay_log_name %s, group_relay_log_pos %llu group_source_log_name %s,
group_source_log_pos %llu
176
• Error number: MY-010579; Symbol: ER_RPL_REPLICA_FAILED_TO_INIT_PARTITIONS_HASH;
SQLSTATE: HY000
Message: Replica SQL thread%s initialized, starting replication in log '%s' at position %s, relay log '%s'
position: %s
Message: Error loading user-defined library, replica SQL thread aborted. Install the missing library, and
restart the replica SQL thread with "START REPLICA". We stopped at log '%s' position %s
Message: Error running query, replica SQL thread aborted. Fix the problem, and restart the replica SQL
thread with "START REPLICA". We stopped at log '%s' position %s
Message: Replica SQL thread%s exiting, replication stopped in log '%s' at position %s
Message: Read invalid event from source: '%s', source could be corrupt but a more likely cause of this is
a bug
Message: The queue event failed for channel '%s' as its configuration is invalid.
Message: An unexpected event sequence was detected by the IO thread while queuing the event
received from source '%s' binary log file, at position %llu.
177
Message: '%s' can not be used as client character set. '%s' will be used as default client character set
while connecting to source.
Message: Replica SQL thread%s: I/O error reading event (errno: %d cur_log->error: %d)
Message: Replica: Cannot create new connection metadata structure when repositories are of type
FILE. Convert replica repositories to TABLE to replicate from multiple sources.
Message: Could not find first log while counting relay log space.
Message: Path '%s' is a directory name, please specify a file name for --relay-log option.
178
• Error number: MY-010603; Symbol: ER_RPL_RELAY_LOG_INDEX_NEEDS_FILE_NOT_DIRECTORY;
SQLSTATE: HY000
Message: Path '%s' is a directory name, please specify a file name for --relay-log-index option.
Message: Neither --relay-log nor --relay-log-index were used; so replication may break when this MySQL
server acts as a replica and has his hostname changed!! Please use '--relay-log=%s' to avoid this
problem.
Message: Use_count: Wrong count for key at %p, %lu should be %lu
179
• Error number: MY-010716; Symbol: ER_WRONG_COUNT_OF_ELEMENTS; SQLSTATE: HY000
Message: Error when worker read relay log events,relay log name %s, position %llu
Message: Failed to find next relay log when retrying the transaction, current relay log is %s
Message: Failed to write the DROP statement for temporary tables to binary log
Message: When opening HEAP table, could not allocate memory to write 'DELETE FROM `%s`.`%s`' to
the binary log
180
Message: Error reading source configuration.
Message: SSL information in the connection metadata repository are ignored because this MySQL
replica was compiled without SSL support.
Message: Could not open the mysql.plugin table. Please perform the MySQL upgrade procedure.
Message: Server variable %s of plugin %s was forced to be read-only: string variable without
update_func and PLUGIN_VAR_MEMALLOC flag
181
• Error number: MY-010743; Symbol: ER_PLUGIN_VARIABLE_NOT_ALLOCATED_THREAD_LOCAL;
SQLSTATE: HY000
182
• Error number: MY-010757; Symbol: ER_RECOVERING_TABLE; SQLSTATE: HY000
Message: Unable to open db.opt file %s. Using default Character set.
183
• Error number: MY-010771; Symbol: ER_CANT_IDENTIFY_CHARSET_USING_DEFAULT; SQLSTATE:
HY000
Message: Unable to identify the charset in %s. Using default character set.
Message: db.opt file not found for %s database. Using default Character set.
This error can occur for upgrades to MySQL 8.0 from previous versions. During the upgrade process, the
server reads the mysql.event system table and migrates its contents to the internal data dictionary.
This error can occur for upgrades to MySQL 8.0 from previous versions. During the upgrade process, the
server reads the mysql.event system table and migrates its contents to the internal data dictionary.
This error can occur for upgrades to MySQL 8.0 from previous versions. During the upgrade process, the
server reads the mysql.event system table and migrates its contents to the internal data dictionary.
This error can occur for upgrades to MySQL 8.0 from previous versions. During the upgrade process, the
server reads the mysql.event system table and migrates its contents to the internal data dictionary.
This error can occur for upgrades to MySQL 8.0 from previous versions. During the upgrade process, the
server reads the mysql.event system table and migrates its contents to the internal data dictionary.
This error can occur for upgrades to MySQL 8.0 from previous versions. During the upgrade process, the
server reads the mysql.proc system table and migrates its contents to the internal data dictionary.
184
Message: Failed to read mysql.proc table.
This error can occur for upgrades to MySQL 8.0 from previous versions. During the upgrade process, the
server reads the mysql.proc system table and migrates its contents to the internal data dictionary.
Message: Found %s file in mysql schema. DD will create .ibd file with same name. Please rename table
and start upgrade process again.
Message: Unable to open the data directory %s during clean up after upgrade failed
Message: Event Error: An error occurred while creating query string, before writing it into binary log.
Message: Event Scheduler: Error while loading events from mysql.events.The table probably contains
bad data or is corrupted
185
Message: file %s was not purged because it was being read by thread number %u
Message: I/O error reading the header from the binary log, errno=%d, io cache code=%d
Message: Log filename extension number exhausted: %06lu. Please fix this by archiving old logs and
updating the index files.
Message: Log filename too large: %s%s (%zu). Please fix this by archiving old logs and updating the
index files.
Message: Next log extension: %lu. Remaining log filename extensions: %lu. Please consider archiving
some logs.
Message: Could not open %s for logging (error %d). Turning logging off for the whole duration of the
MySQL server process. To turn it on again: fix the cause, shutdown the MySQL server and restart it.
Message: %lu events read in relaylog file '%s' for updating Retrieved_Gtid_Set and/or IO thread
transaction parser state.
Message: Read %lu events from binary log file '%s' to determine the GTIDs purged from binary logs.
186
• Error number: MY-010823; Symbol: ER_BINLOG_FAILED_TO_SYNC_INDEX_FILE_IN_OPEN;
SQLSTATE: HY000
Message: Could not use %s for logging (error %d). Turning logging off for the whole duration of the
MySQL server process. To turn it on again: fix the cause, shutdown the MySQL server and restart it.
Message: While rebuilding index file %s: Failed to close the index file.
Message: While rebuilding index file %s: Failed to delete the existing index file. It could be that file is
being used by some other process.
Message: While rebuilding index file %s: Failed to rename the new index file to the existing index file.
Message: After rebuilding the index file %s: Failed to open the index file.
Message: MYSQL_BIN_LOG::add_log_to_index failed to append log file name: %s, to crash safe index
file.
187
• Error number: MY-010836; Symbol: ER_BINLOG_CANT_COPY_INDEX_TO_TMP; SQLSTATE: HY000
Message: MYSQL_BIN_LOG::purge_logs was called with file %s not listed in the index.
188
Message: MYSQL_BIN_LOG::purge_index_entry error %d reading from register file.
Message: Failed to delete log file '%s'; consider examining correspondence of your binlog index file to
the actual binlog files
Message: Failed to delete file '%s' and read the binlog index file
Message: %s An incident event has been written to the binary log which will stop the replicas.
Message: Failed to open the crashed binlog file when source server is recovering it.
Message: Failed to trim the crashed binlog file when source server is recovering it.
Message: Crashed binlog file %s size is %llu, but recovered up to %llu. Binlog trimmed to %llu bytes.
Message: Failed to clear LOG_EVENT_BINLOG_IN_USE_F for the crashed binlog file when source
server is recovering it.
189
• Error number: MY-010861; Symbol: ER_TURNING_LOGGING_OFF_FOR_THE_DURATION; SQLSTATE:
HY000
Message: %s Hence turning logging off for the whole duration of the MySQL server process. To turn it
on again: fix the cause, shutdown the MySQL server and restart it.
Message: The following warning was suppressed %d times during the last %d seconds in the error log
Message: NDB: %s
Message: InnoDB: innodb_buffer_pool_filename cannot have colon (:) in the file name.
190
Message: Transaction not registered for MySQL 2PC, but transaction is active
Message: MySQL is closing a connection that has an active InnoDB transaction. %llu row modifications
will roll back.
Message: InnoDB: fail to allocate memory for index translation table. Number of Index:%lu, array size:
%lu
• Error number: MY-010879; Symbol: ER_INNODB_CANT_FIND_INDEX_IN_INNODB_DD; SQLSTATE:
HY000
Message: Found index %s whose column info does not match that of MySQL.
Message: Table %s has a primary key in InnoDB data dictionary, but not in MySQL!
Message: Table %s has no primary key in InnoDB data dictionary, but has one in MySQL! If you created
the table with a MySQL version < 3.23.54 and did not define a primary key, but defined a unique key with
all non-NULL columns, then MySQL internally treats that key as the primary key. You can fix this error by
dump + DROP + CREATE + reimport of the table.
Message: Table %s key_used_on_scan is %lu even though there is no primary key inside InnoDB.
Message: Cannot replace error message (%s,%s,%s) "%s" with "%s"; wrong number or type of %%
subsitutions.
Message: %s: %s
191
Message: Table '%s': Delete from part %d failed with error %d. But it was already inserted into part %d,
when moving the misplaced row! Please manually fix the duplicate row: %s
Message: Command '%s' cannot be aborted. The trigger error was (%d) [%s]: %s
Message: Event '%s' cannot be aborted. The trigger error was (%d) [%s]: %s
Message: Storing MySQL user name or password information in the connection metadata repository
is not secure and is therefore not recommended. Please consider using the USER and PASSWORD
connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for
more information.
Message: Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported
platform or insufficient privilege.
192
• Error number: MY-010907; Symbol: ER_FAILED_TO_WRITE_TO_FILE; SQLSTATE: HY000
Message: %s Statement: %s
Message: Cannot have same base name '%s' for both binary and relay logs. Please check %s (default
'%s' if --log-bin option is not used, default '%s' if --log-bin option is used without argument) and %s
(default '%s') options to ensure they do not conflict.
Message: You have not provided a mandatory server-id. Servers in a replication topology must have
unique server-ids. Please refer to the proper server start-up parameters documentation.
Message: Aborted connection %u to db: '%s' user: '%s' host: '%s' (%s).
Message: '%s' is deprecated and will be removed in a future release. Please use %s instead.
193
Message: '%s' has an old format, you should re-create the '%s' object(s)
Message: Table upgrade required. Please do "REPAIR TABLE `%s`" or dump/reload to fix it!
Message: Storage engine '%s' does not support system tables. [%s.%s].
Message: %s: ready for connections. Version: '%s' socket: '%s' port: %d %s.
Message: 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 you can add more swap space
Message: Out of memory; restart server and try again (needed %d bytes)
194
• Error number: MY-010937; Symbol: ER_CANT_START_ERROR_LOG_SERVICE; SQLSTATE: HY000
Message: Failed to set %s at or around "%s" -- service is valid, but can not be initialized; please check
its configuration and make sure it can read its input(s) and write to its output(s).
195
• Error number: MY-010951; Symbol: ER_RPL_FILTER_ADD_WILD_IGNORE_TABLE_FAILED;
SQLSTATE: HY000
Message: The privilege system failed to initialize correctly. For complete instructions on how to upgrade
MySQL to a new version please see the 'Upgrading MySQL' section from the MySQL manual.
Message: %s.
Message: Relaylog file %s size was %llu, but was truncated at %llu.
Message: Replica: failed in copying the global filters to its own per-channel filters on configuration for
channel '%s'.
Message: There are per-channel replication filter(s) configured for channel '%s' which does not exist.
The filter(s) have been discarded.
Message: The system table mysql.global_grants is missing. Please perform the MySQL upgrade
procedure.
196
• Error number: MY-010967; Symbol:
ER_ANONYMOUS_AUTH_ID_NOT_ALLOWED_IN_MANDATORY_ROLES; SQLSTATE: HY000
Message: Can't set mandatory_role %s@%s: Anonymous authorization IDs are not allowed as roles.
Message: Table '%s' failed to move/insert a row from part %d into part %d: %s.
Message: Skipped updating resource group metadata in InnoDB read only mode.
197
Message: Unable to apply resource group controller %s.
Message: Unable to acquire lock on the resource group %s. Hint to switch resource group shall be
ignored.
Message: Unable to bind thread id %llu to cpu ids (error code %d - %s).
Message: Setting thread priority %d to thread id %llu failed. (error code %d - %s).
Message: Resource group feature shall not be available. Incompatible thread handling option.
Message: Invalid thread priority %d for a %s resource group. Allowed range is [%d, %d].
198
• Error number: MY-010992; Symbol: ER_RES_GRP_SOLARIS_PROCESSOR_BIND_TO_CPUID_FAILED;
SQLSTATE: HY000
Message: bind_to_cpu failed: processor_bind for cpuid %u failed (error code %d - %s).
Message: bind_to_cpu failed: processor_bind for thread %%llx with cpu id %u (error code %d - %s).
Message: Error in resolving Engine name for tablespace %s with engine %s.
199
Message: Could not open the upgrade info file '%s' in the MySQL servers datadir, errno: %d.
Message: Could not close the upgrade info file '%s' in the MySQL servers datadir, errno: %d.
Message: Error in creating TABLE statistics entry. Fix statistics data by using ANALYZE command.
Message: Error in creating Index statistics entry. Fix statistics data by using ANALYZE command.
Message: Found partially upgraded DD. Aborting upgrade and deleting all DD tables. Start the upgrade
process again.
Message: Found partially upgraded DD. Upgrade will continue and start the server.
200
• Error number: MY-011017; Symbol: ER_DD_UPGRADE_SDI_INFO_UPDATE_FAILED; SQLSTATE:
HY000
Message: The row data is greater than 4GB, which is too big to write to the binary log.
Message: %s%s.
Message: Failed registering on source, reconnecting to try again, log '%s' at position %s. %s.
Message: Some of the channels are not created/initialized properly. Check for additional messages
above. You will not be able to start replication on those channels until the issue is resolved and the
server restarted.
201
Message: Failed to add a replication filter into filter map for channel '%s'.
Message: There are per-channel replication filter(s) configured for group replication channel '%s' which is
disallowed. The filter(s) have been discarded.
Message: There are per-channel replication filter(s) configured for channel '%s' which does not exist.
The filter(s) have been discarded.
Message: An error occurred while building do_table and ignore_table rules to hashes for per-channel
filter.
Message: The CYCLE timer is not available. WAIT events in the performance_schema will not be timed.
Message: Failed to allocate memory for %zu chunks each of size %zu for buffer '%s' due to overflow.
Message: Failed to allocate %zu bytes for buffer '%s' due to out-of-memory.
202
Message: InnoDB could not find index %s key no %u for table %s through its index translation table.
Message: InnoDB could not find key no %u with name %s from dict cache for table %s.
Message: Stored ref len is %lu, but table ref len is %lu.
Message: MySQL is trying to create a column prefix index field, on an inappropriate data type. Table
name %s, column name %s.
Message: Found index %s in InnoDB index list but not its MySQL index number. It could be an InnoDB
internal index.
Message: InnoDB: Table %s contains %lu indexes inside InnoDB, which is different from the number of
indexes %u defined in MySQL.
Message: Table %s contains fewer indexes inside InnoDB than are defined in the MySQL. Have you
mixed up with data dictionary from different installation?
Message: Monitor counter '%s' cannot be turned on/off individually. Please use its module name to turn
on/off the counters in the module as a group.
203
Message: Default value is not defined for this set option. Please specify correct counter or module name.
Message: %s.
Message: %s.
Message: %s.
Message: %s.
Message: %s.
Message: %s.
Message: %s
204
Message: The syntax '%s' is deprecated and will be removed in a future release. Please use %s instead.
Message: The syntax '%s' is deprecated and will be removed in a future release.
Message: %s
Message: Problem while dropping database. Can't remove database directory (%s). Please remove it
manually.
Message: malformed or very old relay log which does not have FormatDescriptor.
Message: Upgrade of view '%s.%s' failed. Re-create the view with the explicit column name lesser than
64 characters.
205
Message: Table upgrade required for `%s`.`%s`. Please dump/reload table to fix it!
Message: Received RESTART from user %s. Restarting mysqld (Version: %s).
Message: Different lower_case_table_names settings for server ('%u') and data dictionary ('%u').
Message: Data dictionary upgrade prohibited by the command line option '--no_dd_upgrade'.
Message: Upgrading the data dictionary from dictionary version '%u' is not supported.
Message: Upgrading the data dictionary failed, temporary schema name '%s' not available.
Message: Minor downgrade of the Data dictionary from dictionary version '%u' is not supported.
206
• Error number: MY-011097; Symbol: ER_THREAD_POOL_NOT_SUPPORTED_ON_PLATFORM; SQLSTATE:
HY000
Message: thread_pool_size=0 means thread pool disabled, Allowed range of thread_pool_size is %d-
%d.
Message: thread_pool_size=%lu is too high, %d is maximum, thread pool is disabled. Allowed range of
thread_pool_size is %d-%d.
Message: thread_pool_algorithm can be set to 0 and 1, 0 indicates the default low concurrency
algorithm, 1 means a high concurrency algorithm.
207
Message: Failed to create thd and authenticate connection.
Message: Rearm failed even after 30 seconds, can't continue without notify socket.
Message: Mecab v%s is not supported, the lowest version supported is v%s.
Message: Mecab v%s is not verified, the highest version supported is v%s.
208
Message: Mecab: parse() failed: out of memory.
Message: %s: binlog write out-of-order, tail (%s, %lu), new node (%s, %lu).
209
Message: Read semi-sync reply magic number error.
210
Message: %s: init wait position (%s, %lu).
Message: Timeout waiting for reply of binlog (file: %s, pos: %lu), semi-sync up to file %s, position %lu.
Message: Assessment of waiting time for commitTrx failed at wait position (%s, %lu).
Message: No enough space in the packet for semi-sync extra header, semi-sync replication disabled.
Message: Semi-sync failed to insert tranx_node for binlog file: %s, position: %lu.
Message: Semi-sync source failed on net_flush() before waiting for replica reply.
211
Message: Update an exsiting ack in slot %u.
Message: Failed to start semi-sync ACK receiver thread, could not create thread(errno:%d).
212
Message: Semisync replica socket fd is %u. select() cannot handle if the socket fd is bigger than %u
(FD_SETSIZE).
Message: Missing magic number for semi-sync packet, packet len: %lu.
Message: Replica I/O thread: Start %s replication to source '%s@%s:%d' in log '%s' at position %lu.
Message: Source server does not support semi-sync, fallback to asynchronous replication
213
Message: Failed to register dynamic privileges
Message: %s
Message: Audit Log plugin supports filtering mode, which has not been installed yet. Audit Log plugin will
run in the legacy mode, which will be removed in the next release.
Message: Previously exclude list is used, now we start using include list, exclude list is set to NULL.
214
• Error number: MY-011201; Symbol: ER_AUDIT_LOG_ONLY_INCLUDE_LIST_USED; SQLSTATE:
HY000
Message: Both include and exclude lists provided, include list is preferred, exclude list is set to NULL.
Message: File '%s' should not exist. It may be incomplete. The server crashed.
Message: Could not rename file from '%s' to '%s'. Remove the file manually.
Message: Audit log file (%s) must be manually renamed before audit_log_flush is set to true.
Message: %s
215
• Error number: MY-011213; Symbol: ER_AUDIT_LOG_JSON_READER_FAILED_TO_PARSE; SQLSTATE:
HY000
Message: Buffer is too small to hold JSON event. Number of events skipped: %zu.
Message: Could not open JSON file for reading. Reading next file if exists.
216
• Error number: MY-011227; Symbol:
ER_AUDIT_LOG_FILTER_FLD_FILTERNAME_CANNOT_BE_EMPTY; SQLSTATE: HY000
Message: %s
217
• Error number: MY-011242; Symbol: ER_XPLUGIN_FAILED_TO_USE_SSL_CONF; SQLSTATE: HY000
Message: Neither MySQL Server nor Mysqlx Plugin has valid SSL configuration
Message: For more information, please see the Using Secure Connections with X Plugin section in the
MySQL documentation
Message: %s
Message: Failed to parse stored authentication string for %s. Please check if mysql.user table not
corrupted
Message: Error in generating multi-round hash for %s. Plugin can not perform authentication without it.
This may be a transient problem
Message: %s
Message: %s
218
• Error number: MY-011254; Symbol: ER_GRP_RPL_ERROR_MSG; SQLSTATE: HY000
Message: %s
Message: variable %s of component %s was forced to be read-only: string variable without update_func
and PLUGIN_VAR_MEMALLOC flag.
Message: The log-filter component "%s" got confused at "%s" (state: %s) ...
Message: Waiting until I/O thread for channel '%s' finish writing to disk before stopping. Free some disk
space or use 'KILL' to abort I/O thread operation. Notice that aborting the I/O thread while rotating the
relay log might corrupt the relay logs, requiring a server restart to fix it.
Message: Could not use %s for logging (error %d - %s). Turning logging off for the server process. To
turn it on again: fix the cause, then%s restart the MySQL server.
Message: The storage engine '%s' does not provide dynamic table statistics
219
Message: SSL fips mode error: %s
Message: init_connect variable is ignored for user: %s host: %s due to expired password.
Message: Got error from storage engine while refreshing rewrite rules.
220
Message: %s: Force stopping client because exception occurred: %s
Message: Unable to use user mysql.session account when connecting the server for internal plugin
requests.
Message: For more information, please see the X Plugin User Account section in the MySQL
documentation
221
• Error number: MY-011298; Symbol: ER_XPLUGIN_TASK_SCHEDULING_FAILED; SQLSTATE: HY000
Message: %s
222
Message: %s: peer disconnected while reading message body
Message: Please see the MySQL documentation for '%s' system variables to fix the error
Message: Using existing %s account for authentication. Incomplete grants will be fixed
223
Message: Unable to get creation stmt for collection \'%s\'; query result size: %lu
Message: Unable to get engine info for collection \'%s\'; creation stmt: %s
Message: Failed to reset IPV6_V6ONLY flag (error: %d). The server will listen to IPv6 addresses only.
224
• Error number: MY-011362; Symbol: ER_KEYRING_FOUND_MALFORMED_BACKUP_FILE; SQLSTATE:
HY000
Message: Error while restoring keyring from backup file cannot overwrite keyring with backup
Message: Error while reading stat for %s.Please check if file %s was not removed. OS returned this
error: %s
Message: %s
Message: Error while loading keyring content. The keyring might be malformed
225
• Error number: MY-011376; Symbol: ER_KEYRING_OKV_INCORRECT_KEY_VAULT_CONFIGURED;
SQLSTATE: HY000
Message: For keyring_okv to be initialized, please point keyring_okv_conf_dir variable to a directory with
Oracle Key Vault configuration file and ssl materials
Message: keyring_okv initialization failure. Please check that the keyring_okv_conf_dir points to a
readable directory and that the directory contains Oracle Key Vault configuration file and ssl materials.
Please also check that Oracle Key Vault is up and running.
Message: keyring_okv initialization failure due to internal exception inside the plugin
Message: Failed to generate a key due to internal exception inside keyring_okv plugin
Message: Could not find entry for standby server in configuration file %s
Message: Could not load keys' uids from the OKV server
226
Message: Could not initialize OKV client
Message: Could not store/generate the key - failed to set key attribute x-key-ready
227
• Error number: MY-011400; Symbol: ER_KEYRING_OKV_FAILED_TO_SET_KEY_FILE; SQLSTATE:
HY000
Message: Private key does not match the certificate public key
Message: keyring_aws_cmk_id cannot be set to the new value as AWS KMS seems to not understand
the id provided. Please check that CMK id provided is correct.
Message: keyring_aws_region cannot be set to the new value as AWS KMS seems to not understand
the region provided. Please check that region provided is correct.
Message: Could not open keyring_aws configuration file: %s. OS returned this error: %s
Message: Could not read AWS access key id from keyring_aws configuration file: %s. OS returned this
error: %s
Message: Could not read AWS access key from keyring_aws configuration file: %s. OS returned this
error: %s
228
• Error number: MY-011424; Symbol:
ER_KEYRING_AWS_FAILED_TO_INIT_DUE_TO_INTERNAL_ERROR; SQLSTATE: HY000
Message: keyring_aws initialization failed due to internal error when initializing synchronization primitive
- %s. OS returned this error: %s:
Message: Could not access keyring_aws storage file in the path provided. Please check if the
keyring_aws directory can be accessed by MySQL Server
Message: Could not get AWS KMS credentials from the configuration file
Message: keyring_aws initialization failure due to internal exception inside the plugin
Message: Failed to generate a key due to internal exception inside keyring_file plugin
Message: Error while restoring keyring from backup file cannot overwrite keyring with backup
229
• Error number: MY-011436; Symbol: ER_KEYRING_AWS_INCORRECT_REGION; SQLSTATE: HY000
Message: Could not connect to AWS KMS with the credentials provided. Please make sure they are
correct. AWS KMS returned this error: %s
Message: Could not generate a new key. AWS KMS returned this error: %s
Message: Could not encrypt key. AWS KMS returned this error: %s
Message: Could not re-encrypt key. AWS KMS returned this error: %s
Message: Could not decrypt key. AWS KMS returned this error: %s
Message: Could not rotate the CMK. AWS KMS returned this error: %s
Message: The requested GTID '%s:%lld' was already used, the transaction will rollback.
Message: Error when extracting group GTID execution information, some recovery operations may face
future issues.
230
Message: Unblocking the group replication thread waiting for applier to start, as the start group
replication was killed.
Message: The group replication applier pipeline was not properly disposed. Check the error log for
further info.
Message: The applier thread execution was aborted. Unable to process more transactions, this member
will now leave the group.
Message: Fatal error during execution on the Applier process of Group Replication. The server will now
leave the group.
Message: Error stopping all replication channels while server was leaving the group. %s
Message: Error sending single primary message informing that primary did apply relay logs.
Message: Unable to add the group_sid in the group_gtid_sid_map during the Certification module
initialization.
Message: Error updating group_gtid_executed GITD set during the Certification module initialization.
Message: Unable to handle the donor's transaction information when initializing the conflict detection
component. Possible out of memory error.
231
Message: Error when establishing a server connection during the Certification module initialization.
Message: Error when extracting this member GTID executed set. Certification module can't be properly
initialized.
Message: Error while adding the server GTID EXECUTED set to the group_gtid_execute during the
Certification module initialization.
Message: Error when extracting this member retrieved set for its applier. Certification module can't be
properly initialized.
Message: Error while adding the member retrieved set to the group_gtid_executed during the
Certification module initialization.
Message: Unable to update last conflict free transaction, this transaction will not be tracked on
performance_schema.replication_group_member_stats.last_conflict_free_transaction.
Message: Error updating transaction snapshot version reference for internal storage.
Message: Impossible to generate Global Transaction Identifier: the integer component reached the
maximal value. Restart the group with a new group_replication_group_name.
232
• Error number: MY-011475; Symbol: ER_GRP_RPL_RECEIVED_SET_MISSING_GTIDS; SQLSTATE:
HY000
Message: There was an error when filling the missing GTIDs on the applier channel received set.
Despite not critical, on the long run this may cause performance issues.
Message: Error reading the write set item '%s' from the View_change_log_event.
Message: Primary had applied all relay logs, disabled conflict detection.
Message: Message received while the plugin is not ready, message discarded.
233
• Error number: MY-011489; Symbol: ER_GRP_RPL_SRV_NOT_ONLINE; SQLSTATE: HY000
Message: This server was not declared online since it is on status %s.
Message: This server was declared online within the replication group.
Message: When declaring the plugin online it was not possible to disable the server read mode settings.
Try to disable it manually.
Message: The member with address %s:%u was declared online within the replication group.
Message: This server is not able to reach a majority of members in the group. This server will now block
all updates. The server will remain blocked until contact with the majority is restored. It is possible to use
group_replication_force_members to force a new group membership.
Message: This server is not able to reach a majority of members in the group. This server will now
block all updates. The server will remain blocked for the next %lu seconds. Unless contact with the
majority is restored, after this time the member will error out and leave the group. It is possible to use
group_replication_force_members to force a new group membership.
Message: A group membership change was received but the plugin is already leaving due to the
configured timeout on group_replication_unreachable_majority_timeout option.
Message: The member has resumed contact with a majority of the members in the group. Regular
operation is restored and transactions are unblocked.
Message: Primary server with address %s left the group. Electing new Primary.
234
Message: Members joined the group: %s
Message: There was a previous plugin error while the member joined the group. The member will now
exit the group.
Message: Group membership changed: This member has left the group.
Message: Member was expelled from the group due to network failures, changing member status to
ERROR.
Message: Unable to disable super read only flag. Try to disable it manually
Message: Unable to set super read only flag. Try to set it manually.
Message: This server is working as secondary member with primary member address %s:%u.
Message: Error when activating super_read_only mode on start. The member will now exit the group.
235
• Error number: MY-011514; Symbol: ER_GRP_RPL_EXCEEDS_AUTO_INC_VALUE; SQLSTATE: HY000
Message: Member with address '%s:%u' didn't provide any data during the last group change. Group
information can be outdated and lead to errors on recovery.
Message: There is already a member with server_uuid %s. The member will now exit the group.
Message: Error when extracting this member GTID executed set. Operations and checks made to group
joiners may be incomplete.
Message: Error when extracting this member retrieved set for its applier. Operations and checks made to
group joiners may be incomplete.
Message: The START GROUP_REPLICATION command failed since the group already has 9
members.
Message: The member contains transactions not present in the group. The member will now exit the
group.
Message: It was not possible to assess if the member has more transactions than the group. The
member will now exit the group.
Message: Member version is lower than some group member, but since option
'group_replication_allow_local_lower_version_join is enabled, member will be allowed to join.
Message: Error processing local GTID sets when comparing this member transactions against the
group.
236
• Error number: MY-011526; Symbol: ER_GRP_RPL_MEMBER_TRANS_GREATER_THAN_GRP; SQLSTATE:
HY000
Message: This member has more executed transactions than those present in the group. Local
transactions: %s > Group transactions: %s
Message: The member is configured with a transaction-write-set-extraction option value '%s' different
from the group '%s'. The member will now exit the group.
Message: The member configuration is not compatible with the group configuration. Variables such as
group_replication_single_primary_mode or group_replication_enforce_update_everywhere_checks
must have the same value on every server in the group. (member configuration option: [%s], group
configuration option: [%s]).
Message: Error stopping all replication channels while server was leaving the group. %s
Message: Detected previous RESET BINARY LOGS AND GTIDS invocation or an issue exists in the
group replication applier relay log. Purging existing applier logs.
Message: Failed to fetch transaction data containing required transaction info for applier
237
Message: Can't start replica IO THREAD of channel '%s' when group replication is running with single-
primary mode and the primary member is not known.
Message: Can't start replica SQL THREAD of channel '%s' when group replication is running with single-
primary mode on a secondary member.
Message: Table %s does not use the InnoDB storage engine. This is not compatible with Group
Replication.
Message: Table %s does not have any PRIMARY KEY. This is not compatible with Group Replication.
Message: Table %s has a foreign key with 'CASCADE', 'SET NULL' or 'SET DEFAULT' clause. This is
not compatible with Group Replication.
Message: Failed to fetch transaction context containing required transaction info for certification
238
Message: Failed to fetch Format_description_log_event containing required server info for applier
Message: Failed to read snapshot version from transaction context event required for certification
Message: Failed to fetch Gtid_log_event containing required transaction info for certification
Message: Unable to add gtid information to the group_gtid_executed set when gtid was provided for
local transactions
Message: Unable to add gtid information to the group_gtid_executed set when no gtid was provided for
local transactions
Message: Unable to add gtid information to the group_gtid_executed set when gtid was provided for
remote transactions
Message: Unable to add gtid information to the group_gtid_executed set when gtid was not provided for
remote transactions
239
Message: Failed to fetch Log_event containing required server info for applier
Message: Unable to start Group Replication. Replication applier infrastructure is not initialized since the
server was started with --initialize, --initialize-insecure or --upgrade=MINIMAL on a server upgrade.
Message: Unable to create a session for executing the queries on the server
Message: The member with address %s:%u has unexpectedly disappeared, killing the current group
replication recovery connection
Message: Maximum number of retries when trying to connect to a donor reached. Aborting group
replication incremental recovery.
240
• Error number: MY-011576; Symbol: ER_GRP_RPL_ESTABLISH_RECOVERY_WITH_DONOR; SQLSTATE:
HY000
Message: Establishing group recovery connection with a possible donor. Attempt %d/%d
Message: Retrying group recovery connection with another donor. Attempt %d/%d
Message: Error when configuring the asynchronous recovery channel connection to the donor.
Message: Error while creating the group replication recovery channel with donor %s at %s port: %d.
Message: There was an error when connecting to the donor server. Please check that
group_replication_recovery channel credentials and all MEMBER_HOST column values of
performance_schema.replication_group_members table are correct and DNS resolvable.
Message: Error while starting the group replication incremental recovery receiver/applier threads
Message: Terminating existing group replication donor connection and purging the corresponding logs.
Message: Error when stopping the group replication incremental recovery's donor connection
Message: Error when purging the group replication recovery's relay logs
Message: Unable to kill the current group replication recovery donor connection after an applier error.
Incremental recovery will shutdown.
241
• Error number: MY-011589; Symbol: ER_GRP_RPL_UNABLE_TO_KILL_CONN_REC_DONOR_FAILOVER;
SQLSTATE: HY000
Message: Unable to kill the current group replication recovery donor connection during failover.
Incremental recovery will shutdown.
Message: Unexpected error when notifying an internal component named %s regarding a group
membership event.
Message: An undefined error was found while broadcasting an internal group membership notification!
This is likely to happen if your components or plugins are not properly loaded or are malfunctioning!
Message: An undefined error was found while broadcasting an internal group member status notification!
This is likely to happen if your components or plugins are not properly loaded or are malfunctioning!
Message: Transaction isolation level (tx_isolation) is set to SERIALIZABLE, which is not compatible with
Group Replication
Message: Transaction cannot be executed while Group Replication is recovering. Try again when the
server is ONLINE.
242
• Error number: MY-011601; Symbol: ER_GRP_RPL_CANNOT_EXECUTE_TRANS_IN_ERROR_STATE;
SQLSTATE: HY000
Message: Transaction cannot be executed while Group Replication is on ERROR state. Check for errors
and restart the plugin
Message: Transaction cannot be executed while Group Replication is OFFLINE. Check for errors and
restart the plugin
Message: Failed to extract the set of items written during the execution of the current transaction on
session %u
Message: Failed to gather the set of items written during the execution of the current transaction on
session %u
Message: Error on session %u. Transaction of size %llu exceeds specified limit %lu. To increase the
limit please adjust group_replication_transaction_size_limit option.
Message: Unable to register for getting notifications regarding the outcome of the transaction on session
%u
243
Message: Error broadcasting transaction to the group on session %u. Message is too big.
Message: Error while waiting for conflict detection procedure to finish on session %u
Message: Fatal error during the incremental recovery process of Group Replication. The server will leave
the group.
Message: Unable to evaluate the group replication applier execution status. Group replication recovery
will shutdown to avoid data corruption.
Message: Only one server alive. Declaring this server as online within the replication group
Message: Error when processing certification information in the incremental recovery process
Message: Unable to ensure the execution of group transactions received during recovery.
Message: Error while sending message in the group replication incremental recovery process.
Message: Unable to read the server values for the read_only and super_read_only variables.
Message: Unable to reset the server read mode settings. Try to reset them manually.
Message: Due to a plugin error, some transactions were unable to be certified and will now rollback.
244
Message: Error when trying to unblock non certified or consistent transactions. Check for consistency
errors when restarting the service
Message: Unable to start Group Replication. Replication applier infrastructure is not initialized since the
server was started with server_id=0. Please, restart the server with server_id larger than 0.
Message: It was not possible to guarantee the initialization of plugin structures on server start
Message: Could not enable the server read only mode and guarantee a safe recovery execution
Message: Can't start group replication on secondary member with single-primary mode while
asynchronous replication channels are running.
245
Message: Member configuration: member_id: %lu; member_uuid: "%s"; single-primary mode: "%s";
group_replication_auto_increment_increment: %lu; group_replication_view_change_uuid: "%s";
Message: Unable to confirm whether the server has left the group or not. Check
performance_schema.replication_group_members to check group membership information.
Message: Skipping leave operation: concurrent attempt to leave the group is on-going.
Message: While leaving the group due to a stop, shutdown or failure there was a timeout receiving a
view change. This can lead to a possible inconsistent state. Check the log for more details
Message: On plugin shutdown it was not possible to enable the server read only mode. Local
transactions will be accepted and committed.
Message: On shutdown there was a timeout on the Group Replication recovery module termination.
Check the log for more details
Message: On shutdown there was a timeout on the Group Replication applier termination.
246
• Error number: MY-011655; Symbol: ER_GRP_RPL_FAILED_TO_SHUTDOWN_REGISTRY_MODULE;
SQLSTATE: HY000
Message: All Group Replication server observers have been successfully unregistered
247
Message: Unable to parse the group_replication_group_name.
Message: Cannot start the Group Replication applier as a previous shutdown is still running: The thread
will stop once its task is complete.
Message: MySQL server does not have SSL support and group_replication_ssl_mode is "%s", START
GROUP_REPLICATION will abort
248
Message: Connection metadata repository must be set to TABLE.
Message: In order to use parallel applier on Group Replication, parameter replica-parallel-type must be
set to 'LOGICAL_CLOCK'.
Message: error_message: %s
Message: The group_replication_group_name '%s' is not a valid UUID, its length is too big
249
• Error number: MY-011691; Symbol: ER_GRP_RPL_INVALID_SSL_RECOVERY_STRING; SQLSTATE:
HY000
Message: The given value for recovery ssl option 'group_replication_%s' is invalid as its length is beyond
the limit
Message: Unable to bootstrap group replication event handling infrastructure. Unknown handler type:
%d
Message: One of the group replication applier handlers is null due to an initialization error
Message: A group replication applier handler role, that was marked as unique, is already in use.
Message: Error when initializing a session thread for internal server connection.
Message: Error running internal SQL query: %s. The internal server communication session is not
initialized
250
• Error number: MY-011703; Symbol: ER_GRP_RPL_SQL_SERVICE_SERVER_SESSION_KILLED;
SQLSTATE: HY000
Message: Error running internal SQL query: %s. The internal server session was killed or server is
shutting down.
Message: Error running internal SQL query: %s. Got internal SQL error: %s(%d)
Message: Error, maximum number of retries exceeded when waiting for the internal server session state
to be operating
Message: Error when trying to fetch security context when contacting the server for internal plugin
requests.
Message: There was an error when trying to access the server with user: %s. Make sure the user is
present in the server and that the MySQL upgrade procedure was run correctly.
Message: Failed to establish an internal server connection to execute plugin operations since the server
does not have available connections, please increase @@GLOBAL.MAX_CONNECTIONS. Server
error: %i.
Message: Failed to establish an internal server connection to execute plugin operations. Server error:
%i. Server error message: %s
Message: This member could not reach a majority of the members for more than %ld seconds. The
member will now leave the group as instructed by the group_replication_unreachable_majority_timeout
option.
Message: The server was automatically set into read only mode after an error was detected.
251
• Error number: MY-011713; Symbol:
ER_GRP_RPL_GMS_LISTENER_FAILED_TO_LOG_NOTIFICATION; SQLSTATE: HY000
Message: Unable to log notification to table (errno: %lu) (res: %d)! Message: %s
Message: Error calling group communication interfaces while trying to leave the group
Message: Member is not ONLINE, it is not possible to force a new group membership
Message: The group_replication_force_members value '%s' was set in the group communication
interfaces
Message: Timeout on wait for view after setting group_replication_force_members value '%s' into group
communication interfaces
252
• Error number: MY-011726; Symbol: ER_GRP_RPL_MEMBER_STATS_INFO; SQLSTATE: HY000
Message: Flow control - update member stats: %s stats certifier_queue %d, applier_queue %d certified
%ld (%ld), applied %ld (%ld), local %ld (%ld), quota %ld (%ld) mode=%d
Message: Unable to convert the event into a packet on the applier. Error: %s
Message: %s
Message: The replica IO thread of channel '%s' is unblocked as the member is declared ONLINE now.
Message: The replica applier thread of channel '%s' is unblocked as the member is declared ONLINE
now.
253
Message: The replica applier thread of channel '%s' will error out as the member failed to come ONLINE.
Message: LDAP authentication initialize: failed to create/ get connection from the pool.
254
Message: LDAP pool is re-initializing
Message: For user %s has multiple user group names. Please check if group attribute name is correct
255
Message: Failed to pool de-initialized: pool is already reconstructing
Message: Ldap_connetion_pool::get LDAP maximum connection allowed size is reached. Increase the
maximum limit.
256
• Error number: MY-011778; Symbol: ER_LDAP_AUTH_GETTING_CONNECTION_FROM_POOL;
SQLSTATE: HY000
Message: Ldap_connection_creator::Ldap_connection_creator
257
• Error number: MY-011791; Symbol: ER_LDAP_AUTH_METHOD_TO_CLIENT; SQLSTATE: HY000
Message: %s
258
• Error number: MY-011804; Symbol: ER_LDAP_AUTH_FAILED_TO_SEARCH_DN; SQLSTATE: HY000
Message: The path '%s', from the NOTIFY_SOCKET environment variable, is too long. At %u bytes it
exceeds the limit of %u bytes for an AF_UNIX socket.
Message: Failed to connect to systemd notification socket named %s. Error: '%s'
Message: Cannot replicate to server with server_uuid='%s' because the present server has purged
required binary logs. The connecting server needs to replicate the missing transactions from elsewhere,
or be replaced by a new server created from a more recent backup. To prevent this error in the future,
consider increasing the binary log expiration period on the present server. %s.
Message: Insecure configuration for --pid-file: Location '%s' in the path is accessible to all OS users.
Consider choosing a different directory.
259
Message: failed to convert the password string to lower case
Message: Since the validate_password_policy is mentioned as Strong, dictionary file must be specified
Message: Please specify options specific to keyring migration. Any additional options can be ignored.
NOTE: Although some options are valid, migration tool can still report error example: plugin variables for
which plugin is not loaded yet.
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
260
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
261
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
262
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
263
Message: %s
Message: %s
Message: %s
Message: Failed to set NUMA memory policy of buffer pool page frames with mbind(%p,%zu,%s,...,...,
%s) failed with %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
264
• Error number: MY-011891; Symbol: ER_IB_MSG_66; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
265
• Error number: MY-011906; Symbol: ER_IB_MSG_81; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
266
• Error number: MY-011929; Symbol: ER_IB_MSG_104; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
267
• Error number: MY-011950; Symbol: ER_IB_MSG_125; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
268
• Error number: MY-011965; Symbol: ER_IB_MSG_140; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
269
• Error number: MY-011980; Symbol: ER_IB_CLONE_GTID_PERSIST; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
270
• Error number: MY-011995; Symbol: ER_IB_MSG_170; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: Waited for %u secs for hash index ref_count (%zu) to drop to 0. index: "%s" table: "%s"
Message: %s
Message: %s
Message: %s
271
• Error number: MY-012012; Symbol: ER_IB_MSG_187; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
272
• Error number: MY-012027; Symbol: ER_IB_MSG_202; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
273
• Error number: MY-012042; Symbol: ER_IB_MSG_217; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
274
• Error number: MY-012059; Symbol: ER_IB_MSG_234; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
275
• Error number: MY-012074; Symbol: ER_IB_MSG_249; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
276
• Error number: MY-012089; Symbol: ER_IB_MSG_264; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: Table flags are 0x%lx in the data dictionary but the flags in file %s are 0x%llx!
Message: %s
Message: %s
Message: %s
Message: %s
277
• Error number: MY-012109; Symbol: ER_IB_MSG_284; SQLSTATE: HY000
Message: You must raise the value of innodb_open_files in my.cnf! Remember that InnoDB keeps all
redo log files and all system tablespace files open for the whole time mysqld is running, and needs to
open also some .ibd files if the file-per-table storage model is used. Current open files %zu, max allowed
open files %zu.
Message: Trying to close/delete tablespace '%s' but there are %lu pending operations on it.
Message: Trying to delete/close tablespace '%s' but there are %lu flushes and %zu pending I/O's on it.
Message: %s
Message: While deleting tablespace %lu in DISCARD TABLESPACE. File rename/delete failed: %s
Message: Cannot rename '%s' to '%s' for space ID %lu because the source file does not exist.
Message: Cannot rename '%s' to '%s' for space ID %lu because the target file exists. Remove the target
file and try again.
Message: Cannot rename file '%s' (space id %lu) retried %llu times. There are either pending IOs or
flushes or the file is being extended.
Message: Cannot find space id %lu in the tablespace memory cache, though the file '%s' in a rename
operation should have that ID.
278
Message: Cannot find tablespace for '%s' in the tablespace memory cache
Message: Cannot find tablespace for '%s' in the tablespace memory cache
Message: The file '%s' already exists though the corresponding table did not exist. Have you moved
InnoDB .ibd files around without using the SQL commands DISCARD TABLESPACE and IMPORT
TABLESPACE, or did mysqld crash in the middle of CREATE TABLE? You can resolve the problem by
removing the file '%s' under the 'datadir' of MySQL.
Message: posix_fallocate(): Failed to preallocate data for file %s, desired size %llu Operating system
error number %d - %s. Check that the disk is not full or a disk quota exceeded. Make sure the file
system supports this function. Refer to your operating system documentation for operating system error
code information.
Message: Ignoring data file '%s' with space ID %lu. Another data file called '%s' exists with the same
space ID
Message: %s
Message: %s
Message: %s
279
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
280
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
281
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: The datafile '%s' for tablespace %s is in an unprotected location. This file cannot be recovered
after a crash until this location is added to innodb_directories.
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
282
• Error number: MY-012184; Symbol: ER_IB_MSG_359; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
283
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: A general tablespace cannot be located under the datadir. Cannot open file '%s'.
Message: A file-per-table tablespace cannot be located in the datadir. Cannot open file '%s'.
284
• Error number: MY-012215; Symbol: ER_IB_MSG_390; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
285
• Error number: MY-012231; Symbol: ER_IB_MSG_406; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
286
• Error number: MY-012246; Symbol: ER_IB_MSG_421; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
287
• Error number: MY-012261; Symbol: ER_IB_MSG_436; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
288
• Error number: MY-012277; Symbol: ER_IB_MSG_452; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
289
• Error number: MY-012292; Symbol: ER_IB_MSG_467; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
290
• Error number: MY-012307; Symbol: ER_IB_MSG_482; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
291
• Error number: MY-012322; Symbol: ER_IB_MSG_497; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
292
• Error number: MY-012337; Symbol: ER_IB_MSG_512; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
293
• Error number: MY-012352; Symbol: ER_IB_MSG_527; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
294
• Error number: MY-012372; Symbol: ER_IB_MSG_547; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
295
• Error number: MY-012387; Symbol: ER_IB_MSG_562; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: Cannot create a tablespace for table %s because the directory is not a valid location. %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
296
• Error number: MY-012406; Symbol: ER_IB_MSG_581; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
297
• Error number: MY-012421; Symbol: ER_IB_MSG_596; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
298
• Error number: MY-012437; Symbol: ER_IB_MSG_612; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: ibuf cursor restoration fails!. ibuf record inserted to page %s:%s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
299
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: Blocked High Priority Transaction (ID %llu, Thread ID %s) forces rollback of the blocking
transaction (ID %llu - %s).
Message: %s
Message: %s
Message: Blocked High Priority Transaction (Thread ID %s) waking up the blocking transaction (ID %llu)
by pretending it's a deadlock victim.
Message: %s
Message: %s
Message: %s
Message: %s
300
• Error number: MY-012471; Symbol: ER_IB_MSG_646; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
301
• Error number: MY-012486; Symbol: ER_IB_MSG_661; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: Log record type %d, page %lu:%lu. Log parsing proceeded successfully up to %llu. Previous
log record type %d, is multi %llu Recv offset %zd, prev %llu
Message: Hex dump starting %llu bytes before and ending %llu bytes after the corrupted record:
Message: The redo log file may have been corrupt and it is possible that the log scan did not proceed
far enough in recovery! Please run CHECK TABLE on your InnoDB tables to check that they are ok! If
mysqld crashes after this recovery; %s
Message: Upgrade after a crash is not supported. This redo log was created with %s, and it appears
corrupted. Please follow the instructions at %s
Message: Upgrade is not supported after a crash or shutdown with innodb_fast_shutdown = 2. This redo
log was created with %s, and it appears logically non empty. Please follow the instructions at %s
Message: Redo log format is v%lu. The redo log was created before MySQL 8.0.30.
Message: Unknown redo log format (v%lu) in file %s. Please follow the instructions at %s
302
• Error number: MY-012531; Symbol: ER_IB_MSG_RECOVERY_CHECKPOINT_NOT_FOUND; SQLSTATE:
HY000
Message: No valid checkpoint found (corrupted redo log). You can try --innodb-force-recovery=6 as a
last resort.
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: Extending tablespace : %lu space name: %s to new size: %lu pages during recovery.
Message: Could not extend tablespace: %lu space name: %s to new size: %lu pages during recovery.
Message: Log block %lu at lsn %llu has valid header, but checksum field contains %lu, should be %lu.
303
Message: Skipped necessary redo log applying, --innodb-read-only set!
Message: Log parsing buffer overflow. Recovery may have failed! Please set log_buffer_size to a value
higher than %lu.
Message: The user has set SRV_FORCE_NO_LOG_REDO on, skipping log redo
Message: The redo log file was created by mysqlbackup --apply-log at %s. The following crash recovery
is part of a normal restore.
Message: Are you sure you are using the right redo log files to start up the database? Log sequence
number in the redo log files is %llu, less than the log sequence number in the first system tablespace file
header, %llu.
304
Message: The log sequence number %llu in the system tablespace does not match the log sequence
number %llu in the redo log files!
Message: We scanned the log up to %llu. A checkpoint was at %llu and the maximum LSN on a
database page was %llu. It is possible that the database is now corrupt!
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
305
• Error number: MY-012575; Symbol: ER_IB_MSG_750; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
306
• Error number: MY-012590; Symbol: ER_IB_MSG_765; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
307
• Error number: MY-012605; Symbol: ER_IB_MSG_780; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
308
• Error number: MY-012620; Symbol: ER_IB_MSG_795; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
309
• Error number: MY-012636; Symbol: ER_IB_MSG_811; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
310
• Error number: MY-012651; Symbol: ER_IB_MSG_826; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
311
Message: %s
Message: %s
Message: %s
Message: Decryption of redo log block at offset %llu in file %s failed because there's no keyring
configured
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
312
• Error number: MY-012682; Symbol: ER_IB_MSG_857; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
313
• Error number: MY-012697; Symbol: ER_IB_MSG_872; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
314
• Error number: MY-012712; Symbol: ER_IB_MSG_887; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
315
• Error number: MY-012727; Symbol: ER_IB_MSG_902; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
316
• Error number: MY-012742; Symbol: ER_IB_MSG_917; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
317
• Error number: MY-012757; Symbol: ER_IB_MSG_932; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
318
• Error number: MY-012772; Symbol: ER_IB_IMPORT_INDEX_METADATA_READ_FAILED; SQLSTATE:
HY000
Message: IO Error: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
319
• Error number: MY-012787; Symbol: ER_IB_MSG_962; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
320
• Error number: MY-012802; Symbol: ER_IB_MSG_977; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
321
• Error number: MY-012817; Symbol: ER_IB_MSG_992; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
322
• Error number: MY-012832; Symbol: ER_IB_MSG_1007; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
323
• Error number: MY-012847; Symbol: ER_IB_MSG_1022; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
324
• Error number: MY-012862; Symbol: ER_IB_MSG_1037; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: Old log sequence number %llu was greater than the new log sequence number %llu. Please
submit a bug report to http://bugs.mysql.com
Message: Semaphore wait has lasted > %llu seconds. We intentionally crash the server because it
appears to be hung.
Message: Waiting for change buffer merge to complete number of bytes of change buffer just merged:
%llu
325
Message: Can't set undo tablespace '%s' to be encrypted.
Message: Can't set undo tablespace '%s' to be encrypted. Failed to write header page.
Message: Redo log encryption is enabled, but the keyring is not loaded.
326
Message: Failed to create redo log file %s (error: %d) for start LSN %llu
Message: Cannot create construction log file '%s' for undo tablespace '%s'.
Message: Undo tablespace number %lu was being truncated when mysqld quit.
Message: Cannot create %s because %s already uses Space ID=%lu! Did you change
innodb_undo_directory?
327
• Error number: MY-012907; Symbol: ER_IB_MSG_1082; SQLSTATE: HY000
Message: Cannot create undo tablespaces since innodb_%s has been set. Using %llu existing undo
tablespaces.
Message: Cannot continue InnoDB startup in %s mode because there are no existing undo tablespaces
found.
Message: Unable to create encrypted undo tablespace number %lu. please check if the keyring is
initialized correctly
Message: Unable to initialize the header page in undo tablespace number %lu.
Message: Cannot delete old undo tablespaces because they contain undo logs for XA PREPARED
transactions.
Message: Upgrading %zu existing undo tablespaces that were tracked in the system tablespace to %lu
new independent undo tablespaces.
328
• Error number: MY-012921; Symbol: ER_IB_MSG_1096; SQLSTATE: HY000
Message: Deleting %llu new independent undo tablespaces that we just created.
Message: InnoDB Database creation was aborted %swith error %s. You may need to delete the ibdata1
file before trying to start up again.
Message: Size of InnoDB's ulint is %zu but size of void* is %zu. The sizes should be the same so that on
a 64-bit platforms you can allocate more than 4 GB of memory.
329
Message: Database upgrade cannot be accomplished in read-only mode.
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: MySQL was built without a memory barrier capability on this architecture, which might allow a
mutex/rw_lock violation under high thread concurrency. This may cause a hang.
Message: %s
Message: Startup called second time during the process lifetime. In the MySQL Embedded Server
Library you cannot call server_init() more than once during the process lifetime.
330
• Error number: MY-012951; Symbol: ER_IB_MSG_1126; SQLSTATE: HY000
Message: %s
Message: Initializing buffer pool, total size = %lf%c, instances = %lu, chunk size =%lf%c
Message: Small buffer pool size (%lluM), the flst_validate() debug function can cause a deadlock if the
buffer pool fills up.
Message: Could not open or create the system tablespace. If you tried to add new data files to the
system tablespace, and it failed here, you should now edit innodb_data_file_path in my.cnf back to what
it was, and remove the new ibdata files InnoDB created in this failed attempt. InnoDB only wrote those
files full of zeros, but did not yet use them in any way. But be careful: do not remove old data files which
contain your precious data!
Message: Cannot create redo log files because data files are corrupt or the database was not shut down
cleanly after creating the data files.
Message: The redo log file %s size %llu is not a multiple of innodb_page_size
Message: The redo log file %s is of different size %llu bytes than other log files %llu bytes!
331
• Error number: MY-012964; Symbol: ER_IB_MSG_1139; SQLSTATE: HY000
Message: Use --innodb-directories to find the tablespace files. If that fails then use --innodb-force-
recovery=1 to ignore this and to permanently lose all changes to the missing tablespace(s)
Message: The redo log file may have been corrupt and it is possible that the log scan or parsing did not
proceed far enough in recovery. Please run CHECK TABLE on your InnoDB tables to check that they
are ok! It may be safest to recover your InnoDB database from a backup!
Message: %s
Message: %s
Message: Tablespace size stored in header is %lu pages, but the sum of data file sizes is %lu pages
Message: Cannot start InnoDB. The tail of the system tablespace is missing. Have you edited
innodb_data_file_path in my.cnf in an inappropriate way, removing ibdata files from there? You can
set innodb_force_recovery=1 in my.cnf to force a startup if you are trying to recover a badly corrupt
database.
Message: Tablespace size stored in header is %lu pages, but the sum of data file sizes is only %lu
pages
Message: Cannot start InnoDB. The tail of the system tablespace is missing. Have you edited
innodb_data_file_path in my.cnf in an InnoDB: inappropriate way, removing ibdata files from there? You
can set innodb_force_recovery=1 in my.cnf to force InnoDB: a startup if you are trying to recover a badly
corrupt database.
332
Message: Waiting for purge to complete
Message: Query counter shows %lld queries still inside InnoDB at shutdown
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: Unable to read the existing undo truncate log file '%s'. The error is %s
333
• Error number: MY-012994; Symbol: ER_IB_MSG_UNDO_TRUNCATE_START; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: Trying to access update undo rec field %llu in index %s of table %s but index has only %llu
fields. %s. Run also CHECK TABLE %s. n_fields = %llu, i = %llu, ptr = %p.
Message: %s
Message: %s
334
• Error number: MY-013012; Symbol: ER_IB_MSG_1187; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
335
• Error number: MY-013027; Symbol: ER_IB_MSG_1202; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: Blocked High Priority Transaction (ID %llu, Thread ID %s) killed the blocking transaction (ID
%llu - %s) by rolling it back.
Message: %s
Message: %s
336
Message: Resizing redo log from %lluM to %lluM (LSN=%llu) synchronously. If this takes too long,
consider starting the server with large --innodb_redo_log_capacity, and resizing the redo log online using
SET.
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
337
• Error number: MY-013058; Symbol: ER_IB_MSG_1233; SQLSTATE: HY000
Message: %s
Message: Out of space in the redo log. Checkpoint LSN: %llu. Consider increasing
innodb_redo_log_capacity.
Message: %s
Message: Log writer waited too long for redo-archiver to advance (1 second). There are unarchived: %llu
bytes. Archiver LSN: %llu. Aborted the redo-archiver. Consider increasing innodb_redo_log_capacity.
Message: Log writer is waiting for redo-archiver to catch up unarchived: %llu bytes. Archiver LSN: %llu.
Consider increasing innodb_redo_log_capacity.
Message: %s
Message: %s
Message: %s
338
Message: Waiting for %s to exit.
Message: MySQL has requested a very fast shutdown without flushing the InnoDB buffer pool to data
files. At the next mysqld startup InnoDB will do a crash recovery!
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
339
• Error number: MY-013089; Symbol: ER_IB_MSG_LOG_FILE_HEADER_INVALID_CHECKSUM;
SQLSTATE: HY000
Message: Unsupported redo log format (v%lu). The redo log was created before MySQL 5.7.9
Message: %s
Message: Cannot continue operation. The innodb_redo_log_capacity=%lluM is too small for the
innodb_thread_concurrency=%lu. The capacity of redo should be >= %lluM. To get mysqld running, set
innodb_thread_concurrency to a smaller value or increase innodb_redo_log_capacity. %s
Message: %s
Message: %s
Message: 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.
Message: 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.
Message: Statement violates GTID consistency: Updates to non-transactional tables can only be done in
either autocommitted statements or single-statement transactions, and never in the same statement as
updates to transactional tables.
340
Message: When %s, the option binlog_row_value_options=%s will be ignored and updates will be written
in full format to binary log.
Message: The member is configured with a lower_case_table_names option value '%u' different from
the group '%u'. The member will now exit the group. If there is existing data on member, it may be
incompatible with group if it was created with a lower_case_table_names value different from the group.
Message: An out-of-memory error occurred while saving the set of GTIDs from the last binary log into
the mysql.gtid_executed table
Message: The lower_case_table_names setting for the data dictionary was not found. Starting the server
using lower_case_table_names = '%u'.
Message: Got fatal error %d from source when reading data from binary log: '%s'
341
Message: Replication event checksum verification failed while reading from network.
Message: Replica failed to initialize connection metadata structure from the repository
Message: Replica failed to initialize applier metadata structure from the repository
Message: A message intended for a client cannot be sent there as no client-session is attached.
Therefore, we're sending the information to the error-log instead: MY-%06d - %s
Message: Aborted connection %u to db: '%s' user: '%s' host: '%s' (%s; diagnostics area: MY-%06d - %s)
342
• Error number: MY-013131; Symbol: ER_SERVER_OUT_OF_SORTMEMORY; SQLSTATE: HY000
Message: Out of sort memory, consider increasing server sort buffer size!
Message: Incorrect definition of table %s.%s: expected column '%s' at position %d, found '%s'.
Message: 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.
Message: Column count of %s.%s is wrong. Expected %d, found %d. The table is probably corrupted.
Message:
343
• Error number: MY-013145; Symbol: ER_SERVER_REPLICA_INIT_QUERY_FAILED; SQLSTATE:
HY000
Message: Replica SQL thread aborted. Can't execute init_replica query, MY-%06d - '%s'
Message: Column %d (counting the first column as number 1) of table '%s.%s' cannot be converted from
type '%s' to type '%s'
Message: Replica SQL thread ignored the query because of replicate-*-table rules
Message: Cannot replicate anonymous transaction when AUTO_POSITION = 1, at file %s, position %lld.
Message: Cannot replicate anonymous transaction when @@GLOBAL.GTID_MODE = ON, at file %s,
position %lld.
Message: %s
344
• Error number: MY-013157; Symbol: ER_AUDIT_LOG_USER_NAME_INVALID_CHARACTER; SQLSTATE:
HY000
Message: Request ignored for '%s'@'%s'. SUPER or AUDIT_ADMIN needed to perform operation
Message: Audit log encryption password has not been set; it will be generated automatically. Use
audit_log_encryption_password_get to obtain the password or audit_log_encryption_password_set to
set a new one.
Message: Could not create AES key. OpenSSL's EVP_BytesToKey function failed.
Message: Audit log encryption password cannot be fetched from the keyring. Password used so far is
used for encryption.
345
Message: %s (mysqld %s) initializing of server in progress as process %lu
Message: Cannot boot server version %lu on data directory built by version %llu. Downgrade is not
supported
Message: Received SHUTDOWN from user %s. Shutting down mysqld (Version: %s).
Message: '%s.%s' table definition has not been upgraded; Please perform the MySQL upgrade
procedure.
Message: Execution of server-side SQL statement '%s' failed with error code = %d, error message =
'%s'.
Message: %s
Message: One or several locations were inaccessible while checking PID filepath.
Message: Currently unknown variable '%s' was read from the persisted config file.
346
• Error number: MY-013186; Symbol: ER_FAILED_TO_HANDLE_DEFAULTS_FILE; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
347
• Error number: MY-013202; Symbol:
ER_CANT_SET_ERROR_SUPPRESSION_LIST_FROM_COMMAND_LINE; SQLSTATE: HY000
Message: %s: Could not add suppression rule for code "%s". Rule-set may be full, or code may not
correspond to an error-log message.
Message: A member cannot join the group while a group configuration operation '%s' is running initiated
by '%s'.
Message: A member is joining the group while a group configuration operation '%s' is running initiated by
'%s'. The member will now leave the group.
Message: Can't start %s for channel '%s' when group replication is running a group configuration
operation '%s' initiated by '%s'.
Message: A primary election was invoked but the requested primary member is not in the group.
Request ignored.
348
• Error number: MY-013213; Symbol: ER_GRP_RPL_CONFIGURATION_ACTION_LOCAL_TERMINATION;
SQLSTATE: HY000
Message: A configuration change was killed in this member. The member will now leave the group as its
configuration may have diverged.
Message: There was an issue on the primary election process: %s The member will now leave the
group.
Message: It was not possible to initialize stage logging for this task. The operation will still run without
stage tracking.
Message: Could not execute the installation of Group Replication UDF function: %s. Check if the
function is already present, if so, try to remove it
Message: Could not uninstall Group Replication UDF functions. Try to remove them manually if present.
Message: Could not execute the installation of Group Replication UDF functions. Check for other errors
in the log and try to reinstall the plugin
349
• Error number: MY-013228; Symbol: ER_COULD_NOT_CREATE_WINDOWS_REGISTRY_KEY; SQLSTATE:
HY000
Message: %s was unable to create a new Windows registry key %s for %s; continuing to use the
previous ident.
Message: Statement violates GTID consistency: CREATE TEMPORARY TABLE and DROP
TEMPORARY TABLE are not allowed inside a transaction or inside a procedure in a transactional
context when @@session.binlog_format=STATEMENT.
Message: Statement violates GTID consistency: ALTER TABLE ... ADD COLUMN .. with expression as
DEFAULT.
Message: The designated data directory %s is unusable. You can remove all files that the server added
to it.
Message: Partitioned table '%s' is not allowed to use shared tablespace '%s'. Please move all partitions
to file-per-table tablespaces before upgrade.
350
Message: %s: '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 be unambiguous.
Message: The SSL library function %s failed. This is typically caused by the SSL library already being
used. As a result the SSL memory allocation will not be instrumented.
Message: Failed to allocate memory for a pool of size %zu bytes. Will wait for %zu seconds for a thread
to free a resource.
Message: %s Unable to save the current state of tablespace '%s' to the data dictionary
• Error number: MY-013254; Symbol: ER_IB_MSG_MAX_UNDO_SPACES_REACHED; SQLSTATE: HY000
Message: Cannot create undo tablespace %s at %s because %d undo tablespaces already exist.
351
Message: SDI Compression failed, Z_BUF_ERROR
Message: %s
Message: Expected to find undo tablespace '%s' for Space ID=%lu, but found '%s' instead! Did you
change innodb_undo_directory?
Message: Cannot use %s as an undo tablespace because it does not end with '.ibu'.
Message: %s
352
• Error number: MY-013274; Symbol: ER_THREAD_POOL_PFS_TABLES_INIT_FAILED; SQLSTATE:
HY000
Message: Failed to fetch key from keyring, please check if keyring is loaded.
Message: Can't find key from keyring, please check in the server log if a keyring is loaded and initialized
successfully.
Message: Failed to rotate some logs after changing binlog encryption settings. Please fix the problem
and rotate the logs manually.
353
Message: Failed to store key, please check if keyring is loaded.
Message: Unable to recover binlog encryption master key, please check if keyring is loaded.
Message: Failed to rotate binlog encryption master key at startup, please check if keyring is loaded.
Message: RETAIN CURRENT PASSWORD ignored for user '%s'@'%s' as its authentication plugin %s
does not support multiple passwords.
Message: DISCARD OLD PASSWORD ignored for user '%s'@'%s' as its authentication plugin %s does
not support multiple passwords.
Message: Can not read and process value of User_attributes column from mysql.user table for user:
'%s@%s'; Ignoring user.
354
• Error number: MY-013300; Symbol:
ER_MYSQL_NATIVE_PASSWORD_SECOND_PASSWORD_USED_INFORMATION; SQLSTATE: HY000
Message: Error sending transaction '%s:%lld' prepared message from session '%u'.
Message: Error releasing transaction '%s:%lld' for commit on session '%u' after being prepared on all
group members.
Message: Transaction '%s:%lld' already exists on Group Replication consistency manager while being
registered after conflict detection.
Message: Error registering transaction '%s:%lld' on Group Replication consistency manager after conflict
detection.
Message: Error registering transaction '%s:%lld' from session '%u' to wait for being prepared on all group
members.
Message: Error on transaction '%s:%lld' from session '%u' while waiting for being prepared on all group
members.
Message: Transaction '%s:%lld' does not exist on Group Replication consistency manager while
receiving remote transaction prepare.
355
Message: Error releasing transaction '%s:%lld' for execution on session '%u' after its dependencies did
complete commit.
Message: Error registering transaction from session '%u' to wait for its dependencies to complete
commit.
Message: Error on session '%u' while waiting for its dependencies to complete commit.
Message: Error registering transaction from session '%u' to wait for sync before execution.
Message: Error sending sync before execution message from session '%u'.
Message: Error on transaction from session '%u' while waiting for sync before execution.
Message: Error releasing transaction for execution on session '%u' after wait for sync before execution.
Message: Error waiting for group executed transactions commit on session '%u'.
Message: Error when extracting the group_replication_applier channel received transactions set. Unable
to ensure the execution of group transactions received during recovery.
356
Message: Failed to encrypt content to write into binlog file: %s.
Message: Cannot get the server version number from the dictionary tablespace header.
• Error number: MY-013325; Symbol: ER_CANNOT_SET_SERVER_VERSION_IN_TABLESPACE_HEADER;
SQLSTATE: HY000
Message: Cannot set the server version number in the dictionary tablespace header.
• Error number: MY-013326; Symbol: ER_SERVER_UPGRADE_VERSION_NOT_SUPPORTED; SQLSTATE:
HY000
Message: Upgrading the server from server version '%u' is not supported.
Message: The certification information could not be set in this server: '%s'
Message: A request to force a new group membership was issued when the member is leaving the
group.
Message: Trigger %s.%s for table %s.%s is listed in wrong order. Please drop and recreate all triggers
for the table.
Message: User group retrieval: no group attribute found. Incorrect group search attribute.
357
Message: User group retrieval: Group attribute values is NULL.
Message: Get user proxy: User doesn't belongs to any group, user name will be treated as authenticated
user.
Message: Get user proxy: User doesn't have group mapping information, First LDAP group will be
treated as authenticated user.
Message: Processing delimiter, failed to get data for = separator try for separator ,.
358
Message: Processing delimiter, separator , not found, resetting position
Message: '%s' is deprecated and will be removed in a future release. Please use %s instead
359
Message: 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.
Message: 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 process did not finish as expected and the
cleanup will take place upon server restart or next 'ALTER INSTANCE ROTATE BINLOG MASTER KEY'
execution.
Message: At least one partial revoke exists on a database. Turning ON the system variable
'@@partial_revokes'.
Message: For user '%s'@'%s', one or more privileges granted through mysql.db for database '%s',
conflict with partial revoke. It could mean 'mysql' schema is corrupted.
Message: For user %s, ignored restrictions for privilege(s) '%s' for database '%s' as these are not valid
database privileges.
Message: For user %s, ignored restrictions for privilege(s) '%s' for database '%s' as corresponding
global privilege(s) are not granted.
Message: Timeout while waiting for a view change event during the auto-rejoin procedure
Message: Auto-rejoin procedure attempt %lu of %lu finished. Member was%s able to join the group.
Message: The member is configured with a default_table_encryption option value '%d' different from the
group '%d'. The member will now exit the group.
360
• Error number: MY-013377; Symbol: ER_SERVER_UPGRADE_OFF; SQLSTATE: HY000
Message: Server shutting down because upgrade is required, yet prohibited by the command line option
'--upgrade=NONE'.
Message: Server upgrade started with version %d, but server upgrade of version %d is still pending.
• Error number: MY-013380; Symbol: ER_SERVER_UPGRADE_FAILED; SQLSTATE: HY000
Message: Could not open server upgrade info file '%s' for writing. Please make sure the file is writable.
Message: A sys schema exists with a sys.version view, but it returns no results.
361
Message: Found outdated sys schema version %s.
Message: Found %d sys %s, but expected %d. Re-installing the sys schema.
Message: Too many concurrent transactions while clearing the DDL Log. Please increase the number of
Rollback Segments.
Message: '%s' statement is unsafe because it uses a system function that may return a different value
on the replica.
Message: Unable to create a new binlog file: Table `mysql.gtid_executed` couldn't be opened. %s
362
Message: Unknown network namespace '%s'
Message: Wildcard address value not allowed for multivalued bind address
Message: The path to a special network namespace file is too long. (got %u > max %u)
Message: Cannot create tablespace '%s'. The filepath is too long for this OS.
Message: The last block of redo had corrupted first_rec_group and became fixed (%u -> %u).
Message: Truncated a user name for %s that was too long while reading the persisted variables file
Message: Truncated a host name for %s that was too long while reading the persisted variables file
Message: The wait_timeout period was exceeded, the idle time since last command was too long.
Message: '%s' found not encrypted while '%s' is ON. Trying to encrypt it now.
Message: CLOCK_MONOTONIC is unsupported, so do not change the system time when MySQL is
running !
363
Message: Plugin '%s' is not to be used as an "early" plugin. Don't add it to --early-plugin-load, keyring
migration etc.
Message: Plugin '%s' is marked as not dynamically installable. You have to stop the server to install it.
Message: The statement is unsafe because it invokes a trigger or a stored function that modifies a table
that has a column with a DEFAULT expression that may return a different value on the replica.
Message: Cannot process audit log file. File name does not have required format: '%s'
Message: Cannot process audit log file. File name keyring ID value is missing: '%s'
Message: Could not open audit log file for reading: '%s'
364
• Error number: MY-013436; Symbol: ER_AUDIT_LOG_CANNOT_STORE_PASSWORD; SQLSTATE: HY000
Message: 'audit_log' password has been copied into '%s' and will be removed with first purged
password.
Message: Empty user dn or password is not allowed, not attempting LDAP bind.
Message: The current layout of the ACL tables does not conform to the server's expected layout. They're
either altered, missing or not upgraded from a previous version. However a best effort attempt to read
data from these tables will still be made.
Message: The newly created data directory %s by --initialize is unusable. You can remove it.
Message: No. of B-tree level created for index %s has crossed the permissible limit. If debug option
innodb_limit_optimistic_insert_debug is being used try tweaking it to include more records in a page.
365
Message: %s
Message: %s
Message: %s
Message: Clone shutting down server as RESTART failed. Please start server to complete clone
operation.
Message: Error when extracting this member GTID purged set. Operations and checks made to group
joiners may be incomplete.
Message: There was an issue when configuring the remote cloning process: %s
Message: There was an issue when trying to evaluate the best distributed recovery strategy while
joining.%s
Message: No valid or ONLINE members exist to get the missing data from the group. For cloning check
if donors of the same version and with clone plugin installed exist. For incremental recovery check if you
have donors where the required data was not purged from the binary logs.
Message: The group replication plugin could not kill the plugin routine for %s. %s
Message: This member will start distributed recovery using clone. It is due to the number of missing
transactions being higher than the configured threshold of %llu.
366
• Error number: MY-013470; Symbol: ER_GRP_RPL_RECOVERY_STRAT_CLONE_PURGED; SQLSTATE:
HY000
Message: This member will start distributed recovery using clone. It is due to no ONLINE member has
the missing data for recovering in its binary logs.
Message: Due to some issue on the previous step distributed recovery is now executing: %s
Message: Due to a critical cloning error or lack of donors, distributed recovery cannot be executed. The
member will now leave the group.
Message: The '%s' thread of channel '%s' will error out as the server will attempt to clone another server
Message: Long database name and identifier for object resulted in path length exceeding %d characters.
Path: '%s'.
Message: XA: Failed to take MDL Lock backup of PREPARED XA transaction during client disconnect.
Message: audit_log plugin has not been installed using INSTALL PLUGIN syntax.
367
• Error number: MY-013482; Symbol:
ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_TYPE; SQLSTATE: HY000
Message: The server was automatically set into offline mode after an error was detected.
Message: A message sent through the Group Replication message deliver service was not delivered
successfully. The server will now leave the group. Try to add the server back to the group and check if
the problem persists, or check previous messages in the log for hints of what could be the problem.
Message: %s
Message: PRIVILEGE_CHECKS_USER for replication channel '%s' was set to `%s`@`%s`, but this is
not an existing user. Correct this before starting replication threads.
368
• Error number: MY-013495; Symbol: ER_WARN_LOG_PRIVILEGE_CHECKS_USER_CORRUPT;
SQLSTATE: HY000
Message: PRIVILEGE_CHECKS_USER for replication channel '%s' was set to `%s`@`%s`, but this user
does not have REPLICATION_APPLIER privilege. Correct this before starting the replication threads.
Message: The PRIVILEGE_CHECKS_USER for channel '%s' would need FILE privilege to execute a
LOAD DATA INFILE statement replicated in statement format. Consider using binlog_format=ROW on
source. If the replicated events are trusted, recover from the failure by temporarily granting FILE to the
PRIVILEGE_CHECKS_USER.
Message: Replica SQL thread%s initialized, starting replication in log '%s' at position %s, relay log '%s'
position: %s, user: '%s'@'%s', roles: %s
Message: Failed to generate a random password for root. Probabably not enough enthropy.
Message: Cannot set mandatory_roles: AuthId `%s`@`%s` has '%s' privilege. AuthId(s) set in the
mandatory_roles are ignored.
Message: Server was not able to find a rotate event from source server to initialize relay log recovery for
channel '%s'. Skipping relay log recovery for the channel.
369
Message: Rolling back LOB for transaction %llu undo number %llu : current index length %llu. (iteration
%llu)
Message: Error in processing (possibly deprecated) expression or function '%s' for generated column
%s.%s.%s
Message: The queue event failed for channel '%s' as an invalid event according to
REQUIRE_ROW_FORMAT was found.
Message: The application of relay events failed for channel '%s' as an invalid event according to
REQUIRE_ROW_FORMAT was found.
Message: PRIVILEGE_CHECKS_USER for replication channel '%s' can't be set to `%s`@`%s` unless
REQUIRE_ROW_FORMAT is also set to %d.
Message: An unexpected event sequence was detected by the SQL thread while applying an event.
Message: Updating partition file name '%s' to '%s' and all other partition files during upgrade
Message: Updating partition file name '%s' to '%s' and all other partition files during downgrade
Message: Unable to open partition file with new name '%s'. Please check if innodb_directories is set to
include all external file paths
Message: %s DD ID: %llu - Partition tablespace %u, name '%s' is corrected to '%s'
370
Message: %s DD ID: %llu - Tablespace %u, name '%s', '%s' is moved to '%s'
Message: %s DD ID: %llu - Partition tablespace %u, name '%s', '%s' is updated to '%s'
Message: %s Too many files have been moved, disabling logging of detailed messages
Message: Schema name '%s' containing upper case characters is not allowed with
lower_case_table_names = 1.
Message: Table name '%s.%s' containing upper case characters is not allowed with
lower_case_table_names = 1.
Message: Schema name '%s' containing upper case characters, used by foreign key '%s' in table '%s.
%s', is not allowed with lower_case_table_names = 1.
Message: Table name '%s.%s' containing upper case characters, used by foreign key '%s' in table '%s.
%s', is not allowed with lower_case_table_names = 1.
Message: Access denied for user '%s'@'%s'. Account is blocked for %s day(s) (%s day(s) remaining)
due to %u consecutive failed logins. Use FLUSH PRIVILEGES or ALTER USER to reset.
Message: %s
Message: Could not allocate memory for key_info when migrating table %s.%s
371
• Error number: MY-013529; Symbol: ER_RPL_RELAY_LOG_RECOVERY_INFO_AFTER_CLONE;
SQLSTATE: HY000
Message: Applier metadata information for channel '%s' was found after a clone operation. Relay
log recovery will be executed to adjust positions and file information for this new server. Should that
automatic procedure fail please adjust the positions through 'CHANGE REPLICATION SOURCE TO'
Message: Cannot create doublewrite buffer: you must increase your buffer pool size. Cannot continue
operation.
Message: The page in the doublewrite file is corrupt. Cannot continue operation. You can try to recover
the database with innodb_force_recovery=6
Message: %s
Message: %s
372
Message: Dump of the data file page:
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
373
Message: %s
Message: %s
Message: %s
Message: Doublewrite load file %s size %llu is not a multiple of the configured page size %zu
Message: Doublewrite open or create file %s size %llu is not a multiple of the configured page size %zu
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: Could not flush all GTIDs during slow shutdown. Will recover GTIDs when server restarts.
374
• Error number: MY-013573; Symbol: ER_NDBINFO_NOT_UPGRADING_SCHEMA; SQLSTATE: HY000
Message: Unable to flush. Page archiving data may be corrupt in case of a crash.
Message: Invalid archived file name format. The archived file is supposed to have the format %s + [0-9]*.
Message: X Plugins UNIX socket must use different file than MySQL server. X Plugin won't be
accessible through UNIX socket
Message: %s
375
Message: Cannot create tablespace %s because the directory is not a valid location. %s
Message: Scanned file '%s' for tablespace %s cannot be opened because it is not in a sub-directory
named for the schema.
Message: Cannot find undo tablespace %s with filename '%s' as indicated by the Data Dictionary. Did
you move or delete this tablespace? Any undo logs in it cannot be used.
Message: Invalid input value for recovery socket endpoints '%s'. Please, provide a valid, comma
separated, list of endpoints (IP:port).
Message: The server is not listening on endpoint '%s'. Only endpoints that the server is listening on are
valid recovery endpoints.
Message: Received invalid recovery endpoints configuration from donor. This member is not a valid
donor for recovery, so it will be skipped.
Message: Failed to initialize TLS for channel: %s. See below for the description of exact issue.
Message: Validation of value '%s' set to `Mysqlx_bind_address` failed: %s. Skipping this value.
Message: Value '%s' set to `Mysqlx_bind_address`, X Plugin can't bind to it. Skipping this value.
Message: Server was killed when InnoDB redo logging was disabled. Data files could be corrupt. You
can try to restart the database with innodb_force_recovery=6
376
• Error number: MY-013599; Symbol: ER_IB_WRN_FAST_SHUTDOWN_REDO_DISABLED; SQLSTATE:
HY000
Message: InnoDB redo logging is disabled. All data could be lost in case of a server crash.
Message: InnoDB redo logging is enabled. Data is now safe and can be recovered in case of a server
crash.
Message: Channel %s configured to support TLS. Encrypted connections are now supported for this
channel.
Message: No TLS configuration was given for channel %s; re-using TLS configuration of channel %s.
Message: Skipping InnoDB tablespace path validation. Manually moved tablespace files will not be
detected!
Message: The user name '%s' exceeds the maximum number of allowed characters %d and is
trunkated.
Message: The host name '%s' exceeds the maximum number of allowed characters %d and is
trunkated.
Message: Found an entry in the 'role_edges' table with empty authorization ID; Skipped
377
Message: Found an entry in the 'role_edges' table with unknown authorization ID '%s'; Skipped
Message: Found an entry in the 'default_roles' table with empty authorization ID; Skipped
Message: Found an entry in the 'default_roles' table with unknown authorization ID '%s'; Skipped
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
378
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
379
• Error number: MY-013642; Symbol: ER_IB_ERR_ZLIB_MEM_ERROR; SQLSTATE: HY000
Message: %s
Message: %s
• Error number: MY-013645; Symbol: ER_IB_MSG_1381; SQLSTATE: HY000
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
Message: %s
380
Message: Delaying truncate of undo tablespace %s due to a metadata lock.
Message: Timeout while waiting for a view change event during the leave step before a auto-rejoin
attempt.
Message: Failed to automatically re-connect to a different source, for channel '%s', because %s. To fix
this %s.
Message: Could not execute the installation of UDF functions. Check for other errors in the log
Message: Could not execute the installation of UDF function: %s. Check if the function is already
present, if so, try to remove it.
Message: Could not uninstall UDF functions. Try to remove them manually if present.
Message: An empty or illegal privilege identifier was ignored when global privileges were read from disk.
Message: %s
Message: A tmpdir temporary path "%s" is too long (> %zu) for this OS. This would not leave enough
space for a temporary filename of length %zu within it.
Message: Error-log destination "%s" is not a file. Can not restore error log messages from previous run.
Message: 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 available in performance_schema.error_log.
381
Message: The schema "%s" referenced by %s "%s" does not exist. Please clean up any orphan %s
before upgrading.
Message: The InnoDB Encryption Master Key has been rotated in %d tablespaces.
Message: Failed to decompress a DBLWR page (err=%d). The original size is %d. Reporting the dblwr
page as corrupted.
Message: The Monitor IO thread failed to connect to the source (host:%s port:%u network_namespace:
%s) for channel '%s', thence it will try to connect to another source.
Message: The source (host:%s port:%u network_namespace:%s) for channel '%s' has joined the group
(group_name: %s), and so added its entry into replication_asynchronous_connection_failover table.
Message: The source (host:%s port:%u network_namespace:%s) for channel '%s' has left the group
(group_name: %s), and so removed its entry from replication_asynchronous_connection_failover table.
382
• Error number: MY-013682; Symbol: ER_RPL_ASYNC_CHANNEL_STOPPED_QUORUM_LOST; SQLSTATE:
HY000
Message: The Monitor IO thread detected that the source (host:%s port:%u network_namespace:%s)
does not belong to the group majority, thence the channel '%s' will try to connect to another source.
Message: The IO thread detected that the source (host:%s port:%u network_namespace:%s) does not
belong to the group majority, thence the channel '%s' will try to connect to another source.
Message: The group (group_name: %s) for the channel '%s' has been removed, and so removed its
entry from replication_asynchronous_connection_failover_managed and all the group members from
replication_asynchronous_connection_failover table.
Message: The group (group_name: %s) for the channel '%s' has been added, and so
added its entry in replication_asynchronous_connection_failover_managed and source to
replication_asynchronous_connection_failover table.
Message: Error %s the channel '%s', the operation will be automatically retried.
383
group_replication_group_name. To fix this issue, either change the group_replication_group_name or
use a different value for ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS.
Message: The group_replication_group_name '%s' is the same as the UUID value for
ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS in a server channel
Message: The integer component of the GTID number is high. Suggest restarting the server with a new
server_uuid to prevent it from reaching the maximum number 2^63-1, which will make it impossible to
write the binary log and invoke the behavior specified by binlog_error_action.
Message: %s
Message: %s
Message: %s
Message: %s: Warning Level 1 (%llu MiB): mount point = '%s', available = %llu MiB, total = %llu MiB,
used = %.2f%%, low limit = %llu MiB, critical level = %llu MiB
Message: %s: Warning Level 2 (%llu MiB): mount point = '%s', available = %llu MiB, total = %llu MiB,
used = %.2f%%, low limit = %llu MiB, critical level = %llu MiB
Message: %s: Warning Level 3 (%llu MiB): mount point = '%s', available = %llu MiB, total = %llu MiB,
used = %.2f%%, low limit = %llu MiB, critical level = %llu MiB
Message: InnoDB: Size of tablespace %s is more than the maximum size allowed.
Message: The group_replication_applier channel is still running, most likely it is waiting for a database/
table lock, which is preventing the channel from stopping. Please check database/table locks, including
the ones created by backup tools.
384
Message: Detected misconfiguration: replication channel \'%s\' was configured with
SOURCE_CONNECTION_AUTO_FAILOVER = 1, but the server was started with a value other
then --gtid-mode = ON. Either reconfigure replication using CHANGE REPLICATION SOURCE TO
SOURCE_CONNECTION_AUTO_FAILOVER = 0 FOR CHANNEL \'%s\', or change GTID_MODE to
value ON, before starting the replica receiver thread.
• Error number: MY-013703; Symbol: ER_FIREWALL_SERVICES_NOT_ACQUIRED; SQLSTATE: HY000
Message: %s
Message: Received an error while unloading components read from manifest file: %s
Message: Manifest file '%s' is not read-only. For better security, please make sure that the file is read-
only.
385
Message: The component is not initialized properly. Error: %s. Make sure that configuration is proper
and use ALTER INSTANCE RELOAD KEYRING to reinitialize the component.
Message: Keyring component encountered an exception while executing : '%s' API of service: '%s'
Message: Failed to allocated memory for '%s' while executing: '%s' API of service: '%s'
Message: Empty or 0 values for AES encryption mode and/or block size are not permitted.
Message: A valid data identifier is required in order to fetch the key required for the AES operation.
Message: Key identified by Data ID: '%s' and Auth ID: '%s' is not of type AES.
Message: Encountered error: '%s' while executing '%s' API of keyring_aes service. Key details are Data
ID: '%s' and Auth ID: '%s'.
Message: Could not find the data corresponding to Data ID: '%s', Auth ID: '%s'.
Message: Error writing data for Data ID: '%s', Auth ID: '%s'. Either data already exists with same
identifier or keyring backend encountered an error.
Message: Error removing data for Data ID: '%s', Auth ID: '%s'. Either data does not exists with same
identifier or keyring backend encountered an error.
386
Message: Error generating data for Data ID: '%s', Auth ID: '%s'. Either data already exists with same
identifier or keyring backend encountered an error.
Message: Failed to get metadata from current keys metadata iterator position.
Message: Column %s of type GEOMETRY is in old (5.6) format which could be deprecated in the future.
To change the format to latest, please consider rebuilding the table after the upgrade.
Message: 'wait_timeout' period of %s seconds was exceeded for %s. The idle time since last command
was too long.
Message: The member action "%s" for event "%s" with priority "%u" will be run.
Message: The member action "%s" for event "%s" with priority "%u" failed, this error is ignored as
instructed. Please check previous messages in the error log for hints about what could have caused this
failure.
Message: The member action "%s" for event "%s" with priority "%u" failed. Please check previous
messages in the error log for hints about what could have caused this failure.
Message: Unable to parse the member actions configuration sent by the primary.
Message: Unable to update the member actions configuration with the one sent by
the primary. Please check the tables 'mysql.replication_group_member_actions' and
'mysql.replication_group_configuration_version'.
387
Message: Unable to read the member actions configuration during group membership
change. Please check the tables 'mysql.replication_group_member_actions' and
'mysql.replication_group_configuration_version'.
Message: This member joined a group on which all members do not support member actions, as such it
did reset its member configuration to the default one.
Message: Unable to reset to member actions default configuration on member join. Please check the
tables 'mysql.replication_group_member_actions' and 'mysql.replication_group_configuration_version'.
Message: Unable to parse the member actions configuration sent by the group on member join.
Message: Unable to update the member actions configuration on member join. Please check the tables
'mysql.replication_group_member_actions' and 'mysql.replication_group_configuration_version'.
Message: The group members were unable to send their member actions
configuration. Please check the tables 'mysql.replication_group_member_actions' and
'mysql.replication_group_configuration_version' on all members.
Message: Member action enabled: "%s", type: "%s", event: "%s", priority: "%u", error_handling: "%s".
Message: Member action disabled: "%s", type: "%s", event: "%s", priority: "%u", error_handling: "%s".
Message: User profile \'%s\' loaded. Firewall user profiles are deprecated, consider migrating to group
profiles.
Message: Invalid input value for group_replication_view_change_uuid '%s'. Please, provide a valid
UUID.
388
• Error number: MY-013749; Symbol: ER_GRP_RPL_VIEW_CHANGE_UUID_SAME_AS_GROUP_NAME;
SQLSTATE: HY000
Message: Variable 'group_replication_view_change_uuid' cannot be set to the value of '%s'. If you want
to use the UUID of 'group_replication_group_name' for the UUID of View_change_log_events, please
set 'group_replication_view_change_uuid' to AUTOMATIC.
Message: The group_replication_view_change_uuid '%s' is the same as the UUID value for
ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS in a server channel
389
• Error number: MY-013758; Symbol:
ER_GRP_RPL_UPDATE_GRPGTID_VIEW_CHANGE_UUID_EXECUTED_ERROR; SQLSTATE: HY000
Message: Error updating group_gtid_executed GTID set with view change uuid during the Certification
module initialization.
Message: Unable to handle the donor's view change uuid transaction information when initializing the
conflict detection component. Possible out of memory error.
Message: 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.
Message: %s
Message: The variable %s has been renamed to %s, and the old name deprecated. Only the old name
was found in the persisted variable file. Next time the file is saved, both names will be stored. Issue any
SET PERSIST command to save the file, get rid of this warning, and prepare the persisted configuration
for when the variable is removed in a future version.
390
Message: %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 flush filed-based logs may affect log-rotation.
Message: Tablespace key for %s has been re-encrypted using the latest InnoDB master key. However,
we recommend that you rebuild the table for better security.
Message: Tablespace key for %s has been re-encrypted using the latest InnoDB master key. However,
we recommend that you reencrypt the tablespace for better security.
Message: Page Archiver's doublewrite buffer initialisation failed. Page tracking is at risk of losing tracked
information.
Message: There is not enough free space in the redo log during recovery to perform pending ibuf
merges. Please retry starting MySQL with --innodb-force-recovery=4.
Message: There is not enough free space in the redo log during recovery, restore from backup (or retry
with --innodb-force-recovery=6).
Message: DDL failed to create a thread to load an index, fall back to single thread
391
• Error number: MY-013780; Symbol:
ER_GRP_RPL_MYSQL_NETWORK_PROVIDER_CLIENT_ERROR_CONN_ERR; SQLSTATE: HY000
Message: Failed to establish MySQL client connection in Group Replication. Error establishing
connection. Please refer to the manual to make sure that you configured Group Replication properly to
work with MySQL Protocol connections.
Message: Failed to establish MySQL client connection in Group Replication. Error sending connection
delegation command. Please refer to the manual to make sure that you configured Group Replication
properly to work with MySQL Protocol connections.
Message: Unable to read the replication failover channels configuration during group membership
change. Please check the tables 'mysql.replication_asynchronous_connection_failover',
'mysql.replication_asynchronous_connection_failover_managed' and
'mysql.replication_group_configuration_version'.
Message: This member joined a group on which all members do not support replication failover channels
integration on Group Replication, as such it did reset its replication failover channels configuration to the
default one.
Message: Unable to parse the replication failover channels configuration sent by the group on member
join.
392
Message: This server is not able to reach a majority of members in the group. This server will skip the
replication failover channels handling until this server is back to the group majority.
Message: This server is back to the group majority. Replication failover channels handling is resumed.
Message: Error incrementing member action configuration version for %s.%s table.
Message: The '%s' thread of channel '%s' will error out as this server is a group secondary.
Message: Ignoring encryption INFO size in redo log: %zu, expected: %zu
Message: Option --authentication-policy is set to an invalid value. Please check if the specified
authentication plugins are valid.
393
Message: FIDO device authenticator data corrupt.
Message: Replication channel '%s' is configured with GTID_ONLY=1, which is invalid when
GTID_MODE <> ON. If you intend to disable GTIDs in the replication topology, change GTID_ONLY to
0.
Message: 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 used in some cases so, in order to update
them, we suggest that you start the replication to receive and apply at least one transaction, which will
set the positions to valid values.
Message: Cannot obtain the OCI configuration from the IMDS service.
394
Message: Cannot initialize the IAM service.
Message: None of the groups returned by IAM matches any of the entries from authentication string.
Message: User is not part of any groups. However, account is configured to use group mapping.
Message: Received OpenSSL error: %s while authenticating user %s with fingerprint %s in tenancy %s .
Message: %s: Warning Level 1 (%llu MiB): available=%llu MiB, total=%llu MiB, used=%.2f%%, mysqld=
%llu MiB
Message: %s: Warning Level 2 (%llu MiB): available=%llu MiB, total=%llu MiB, used=%.2f%%, mysqld=
%llu MiB
Message: %s: Warning Level 3 (%llu MiB): available=%llu MiB, total=%llu MiB, used=%.2f%%, mysqld=
%llu MiB
Message: The member %s:%u, with UUID: %s, was set as the single preferred consensus leader.
Message: Something went wrong trying to set the member %s:%u, with
UUID: %s, as the single preferred consensus leader. Please query the
performance_schema.replication_group_communication_information table to see whether the operation
took effect, i.e. whether the preferred consensus leader matches the current primary. If not, consider
electing a different primary to try again. Please check the error log and GCS_DEBUG_TRACE for more
information that may help understanding what went wrong.
395
• Error number: MY-013823; Symbol: ER_GRP_RPL_ERROR_SET_MULTI_CONSENSUS_LEADER;
SQLSTATE: HY000
Message: Something went wrong trying to set all members as consensus leaders. Please query the
performance_schema.replication_group_communication_information table to see whether the operation
took effect, i.e. whether the consensus leaders match all members. If not, consider resetting the group
communication protocol to a version < 8.0.22, or switch to single-primary mode and back again to multi-
primary mode, to try again. Please check the error log and GCS_DEBUG_TRACE for more information
that may help understanding what went wrong.
Message: Invalid and/or corrupted multi factor authentication methods in User_attributes column in
mysql.user table. "%s".
Message: %s: The character set %s is deprecated and will be removed in a future release. Please
consider using %s instead.
Message: %s: '%s' is a collation of the deprecated character set %s. Please consider using %s with an
appropriate collation instead.
Message: More than 90%% of files opened out of the innodb_open_files limit are files that are not easy
to close. The performance of system may degrade. Consider increasing value of the innodb_open_files
system variable. There are %zu such files opened out of the total limit for all files opened of %zu.
Message: Trying to open a file for %lld seconds. Configuration only allows for %zu open files. Consider
setting innobase_open_files higher.
Message: Connection closed. Global connection memory limit %llu bytes exceeded. Consumed %llu
bytes.
396
Message: Connection closed. Connection memory limit %llu bytes exceeded. Consumed %llu bytes.
Message: Relay log recovery on channel with GTID_ONLY=1. The channel will switch to a new relay log
and the GTID protocol will be used to replicate unapplied transactions.
Message: Cannot persist SENSITIVE system variables because keyring component support is
unavailable and persist_sensitive_variables_in_plaintext is set to OFF. Please make sure that keyring
services are active and required keys are available.
Message: Cannot interpret persisted SENSITIVE system variables. Please make sure that keyring
services are active and required keys are available.
Message: Keyring has to be loaded through manifest file in order to support secure storage for persisted
variables
397
Message: Failed to encrypt %s using %s
Message: Persisting SENSITIVE variables in encrypted form requires keyring component loaded through
manifest file.
Message: %s.
Message: %s.
Message: %s.
Message: Password for the account '%s'@'%s' has expired. To log in, either change it using a client that
supports expired passwords or send the change request to an administrator.
Message: %s
Message: %s
Message: The redo log file %s is empty, which indicates it was not generated by InnoDB or become
corrupted. Please restore the correct file or try recovering without the redo files, in read-only mode, by
providing --innodb-force-recovery=6.
398
Message: The redo log file %s is smaller than %llu bytes, which indicates it was not generated by
InnoDB or become corrupted. Please restore the correct file.
Message: The redo log file %s is larger than %llu bytes, which indicates it was not generated by InnoDB
or become corrupted. Please restore the correct file.
Message: --initialize specified but the redo log directory %s has redo log files inside. Aborting.
Message: Failed to list redo log files in the redo log directory %s
Message: Cannot restore cloned data directory, InnoDB running in read-only mode!
Message: Error %d encountered when writing to the redo log file: %s.
Message: Redo log writer is waiting for a new redo log file. Consider increasing
innodb_redo_log_capacity.
Message: Found checkpoint LSN %llu in a redo log file %s, but the file represents range of LSN values
[%llu, %llu), so the file is corrupted.
Message: Redo log is running out of free space, pausing user threads... Consider increasing
innodb_redo_log_capacity.
Message: Redo log reclaimed some free space, resuming user threads.
399
• Error number: MY-013869; Symbol: ER_IB_MSG_LOG_PARAMS_FILE_SIZE_UNUSED; SQLSTATE:
HY000
Message: Cannot upgrade format (v%lu) of redo log files when innodb-force-recovery > 0.
Message: Cannot upgrade format (v%lu) of redo log files in read-only mode (--innodb-read-only).
Message: Cannot upgrade format (v%lu) of redo log files on cloned data directory. Please use an older
version of MySQL - recover and shutdown (with innodb-fast-shutdown < 2).
Message: Cannot upgrade format (v%lu) of redo log files because they are marked as uninitialized.
Please use an older version of MySQL - recover and shutdown (with innodb-fast-shutdown < 2).
Message: Cannot upgrade format (v%lu) of redo log files when the redo log is corrupted. Please use an
older version of MySQL - recover and shutdown (with innodb-fast-shutdown < 2).
Message: The redo log file %s comes from other data directory than redo log file %s.
Message: The redo log file %s has start_lsn %llu but expected %llu (end_lsn of the previous redo log
file).
400
Message: The latest found checkpoint is at lsn = %llu in redo log file %s.
Message: Redo log has been requested to resize from %lluM to %lluM.
Message: Failed to rename %s when creating redo log file %s (error: %d)
Message: Found existing redo log files, but at least one is missing. It is unknown if recovery could reach
physically consistent state. Please consider restoring from backup or providing --innodb-force-recovery >
0.
Message: Found redo log file %s which has format (v%lu) and is stored outside #innodb_redo.
Message: Found redo log file %s which has format (v%lu) and is stored inside #innodb_redo.
401
• Error number: MY-013896; Symbol: ER_IB_MSG_LOG_FILE_DIFFERENT_FORMATS; SQLSTATE:
HY000
Message: Found redo log files with different formats: %s has format v%lu, %s has format v%lu.
Message: Failed to initialize services required to handle redo log PFS tables.
Message: Failed to mark unused redo log file %s as in use (by renaming to %s).
Message: Failed to mark redo log file %s as unused (by renaming to %s).
402
• Error number: MY-013907; Symbol: ER_IB_MSG_LOG_PARAMS_LEGACY_USAGE; SQLSTATE: HY000
Message: This member was unable to log the View_change_log_event into the binary log, hence it will
leave the group. Please check that there is available disk space and add the member back to the group.
Message: Found invalid event sequence while recovering from binary log file '%s', between positions
%llu and %llu: %s. The recovery process was stopped early and no transaction was recovered. Side
effects may be transactions in an inconsistent state between the binary log and the storage engines, or
transactions kept by storage engines in a prepared state (possibly holding locks). Either fix the issues
with the binary log or, to release possibly acquired locks, disable the binary log during server recovery.
Note that disabling the binary log may lead to loss of transactions that were already acknowledged as
successful to client connections and may have been replicated to other servers in the topology.
Message: Storage engines failed to recover one or more transactions. The recovery process was
stopped early, check previous messages for the details on failed transactions. Side effects may be
transactions in an inconsistent state between the binary log and the storage engines, or transactions
kept by storage engines in a prepared state (possibly holding locks). Either fix the issues with the
storage engine (out-of-memory, no disk space, etc) or, to release possibly acquired locks held by XA
transactions, disable the binary log during server recovery and check consistency between storage
engines and binary log files.
403
• Error number: MY-013915; Symbol: ER_COMPONENT_EE_SYS_VAR_REGISTRATION_FAILURE;
SQLSTATE: HY000
Message: Cannot register variable '%s'. Please check if it is not already registered by another
component.
Message: Cannot unregister variable '%s'. Please check if it was registered properly in the first place.
Message: Cannot register function '%s'. Please check if it is not already registered.
Message: Cannot unregister function '%s'. Please check if it was registered properly in the first place.
Message: Invalid key length '%d' for function '%s' with algorithm '%s'. Please provide a value between
[%d, %d].
Message: Failed to generate private key of length '%d' with algorithm '%s' in function '%s'. More details
about the error would have been logged before this message.
Message: Failed to generate public key with algorithm '%s' for given private key in function '%s'. More
details about the error would have been logged before this message.
Message: Invalid data length '%d' (in bytes) for function '%s' with algorithm '%s'. The maximum support
data length for given private key is %d (in bytes).
404
• Error number: MY-013925; Symbol: ER_COMPONENT_EE_DATA_ENCRYPTION_ERROR; SQLSTATE:
HY000
Message: Could not encrypt data in function '%s' using algorithm '%s'. Data length was '%d' bytes. More
details about the error would have been logged before this message.
Message: Could not decrypt data in function '%s' using algorithm '%s'. Data length was '%d' bytes. More
details about the error would have been logged before this message.
Message: Could not sign data in function '%s' using algorithm '%s' and digest type '%s'. More details
about the error would have logged before this message.
Message: Received OpenSSL error in function '%s' for algorithm '%s': '%s'
Message: In function '%s' with algorithm '%s': insufficient output buffer length '%zu'. Required length
'%zu'.
Message: %s%s
Message: Setting session values for system variables only makes sense in a user session (failed to set
'%s').
Message: BuildID[sha1]=%s
Message: Redo log writer is waiting for %s redo log consumer which is currently reading
LSN=%llu preventing reclamation of subsequent portion of the redo log. Consider increasing
innodb_redo_log_capacity.
Message: %s
405
Message: Recovery: Generating index information for INSTANT DDL Table in 8.0.29 format
Message: Duplicate key found in keyring with Name: %s and Owner: %s.
Message: %s
406
Message: Status code %u: %u%% complete
Message: 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 limit per group
Message: Found page type mismatch. Expected %u, found %u, in page: space_id=%lu page_no= %lu
Message: %s: Over 67 percent of the buffer pool (curr_size=%zu MB) is occupied by lock heaps or the
adaptive hash index or BUF_BLOCK_MEMORY pages. Check that your transactions do not set too
many row locks. Maybe you should make the buffer pool bigger?. Starting the InnoDB Monitor to print
diagnostics.
Message: %s: Over 95 percent of the buffer pool (curr_size=%zu MB) is occupied by lock heaps or the
adaptive hash index or BUF_BLOCK_MEMORY pages. Check that your transactions do not set too
many row locks. Maybe you should make the buffer pool bigger?. We intentionally generate a seg fault
to print a stack trace on Linux!
407
• Error number: MY-013964; Symbol: ER_REPLICATION_INCOMPATIBLE_TABLE_WITH_GIPK;
SQLSTATE: HY000
Message: Failed to apply row event with %d columns, originating from a server of version %s on
table '%s.%s', which has %d columns, one of which is a generated implicit primary key. Replication
is unsupported when the source server is older than 8.0.30, the replica table has a generated implicit
primary key, and there is a difference in column count, not counting the replica's generated implicit
primary key. Align the table schemas on source and replica, and restart replication.
Message: The first file being loaded contained less lines than the ignore clause
Message: Bulk reader got error in communication with source server, check the error log for additional
details
Message: The number of input columns that need to be buffered for parsing exceeded predefined buffer
max size for file '%s'.
408
Message: The column data that needed to be copied due to escaped characters exceeded the size of
the internal copy buffer for file '%s'.
Message: Unexpected end of input found at row %ld in file '%s'. Data for some columns is missing.
Message: Unexpected row terminator found at row %ld in file '%s'. Data for some columns is missing.
Message: Unexpected characters after ending ENCLOSED BY character found at row %ld in file '%s'.
Message: Unexpected characters after NULL escape (\\N) found at row %ld in file '%s'.
Message: Unexpected characters after column terminator found at row %ld in file '%s'.
Message: Unexpected end of input found at row %ld in file '%s' resulting in incomplete escape
sequence.
Message: Incorrect %s value: '%s' for column '%s' at row %ld in file '%s'
Message: NULL supplied to NOT NULL column '%s' at row %ld in file '%s'
Message: %s: LOAD BULK DATA thread failure (err=%lu), table=%s, index=%s
Message: %s: Failed to merge sub-trees in LOAD BULK DATA, table=%s, index=%s, details=%s
Message: LOAD BULK DATA: Buffer pool size is %zu. Reducing concurrency from %zu to %zu. table=
%s.
409
• Error number: MY-013987; Symbol: ER_PLUGIN_EXCEPTION_OPERATION_FAILED; SQLSTATE:
HY000
Message: Replication configuration appears to be corrupted. On Group Replication channel '%s', setting
REQUIRE_TABLE_PRIMARY_KEY_CHECK to 'GENERATE' is not allowed. Run RESET REPLICA ALL
to reset it.
Message: Ignored the innodb-redo-log-capacity option in the Innodb read-only mode. Server is using
active redo log files.
Message: Unexpected INSTANTLY Added / Dropped column: '%s' at position %lu for Table '%s', Index
'%s' while getting Primary Key for row logging
Message: %s
Message: Column name %s and internally generated INSTANT DROP column name %s is causing a
conflict.
Message: Field number: %llu too large, Total fields in Record: %zu.
Message: %s
Message: The connection has timed out after %lu retries connecting to '%s@%s:%d'%s, and therefore
the MySQL server is going to attempt an asynchronous replication connection failover, to '%s@%s:%d'
410
• Error number: MY-013998; Symbol: ER_RPL_REPLICA_SOURCE_UUID_HAS_NOT_CHANGED;
SQLSTATE: HY000
Message: The Replica which was connected to source \'%s:%d\', is now connected to new source \'%s:
%d\', but still has the same server_uuid %s.
Message: The server_uuid for source server \'%s:%d\' has changed from %s to %s. This should not
happen unless you have changed it manually.
Message: The source server has changed from \'%s:%d\' with server_uuid %s, to \'%s:%d\' with
server_uuid %s.
Message: Loader::build_all(): Completed building %zu indexes for old_table=%s, new_table=%s, err=
%zu.
Message: %s: '%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.
Message: Builder::init(): Initialize for building index=%s of table=%s, n_threads=%zu, sort buffer size=
%zu bytes, i/o buffer size=%zu bytes.
Message: Index log version %u did not match. Max index version is %u. Recovery can't continue. Please
make sure server is not starting up with the datadir generated in future version.
411
• Error number: MY-014009; Symbol:
ER_WARN_COMPONENTS_INFRASTRUCTURE_MANIFEST_MULTIPLE_KEYRING; SQLSTATE: HY000
Message: Multiple keyring component URNs '%s' found in manifest file '%s'. Only one keyring
component can be loaded at a time.
Message: Minimum record flag is wrongly set to rec on page '%lu' at level '%lu' for index '%s' of table
'%s'.
Message: Minimum record flag is not set to first rec on page '%lu' at level '%lu' for index '%s' of table
'%s'.
Message: Cannot free resources stored by component '%s' in thread with ID: '%d'. Component failed to
free required resources.
412
Message: Total records resurrected: %lu - Total pages read: %lu - Total tables acquired: %lu
Message: Unknown user/tenancy (user: %s tenancy: %s) found in security token provided by '%s' for
'%s'@'%s'.
Message: Verification failed for security token provided by '%s' for '%s'@'%s' : %s.
Message: Could not download IDDP Public key. Please check if security token provided by '%s' for
'%s'@'%s' is valid.
Message: Cannot register variable '%s'. Please check if it is not already registered by another
component.
Message: Cannot unregister variable '%s'. Please check if it was registered properly in the first place.
Message: Cannot register function '%s'. Please check if it is not already registered by another
component.
Message: Cannot unregister function '%s'. Please check if it was registered properly in the first place.
Message: Cannot register privilege '%s'. Please check if it is not already registered.
413
Message: Cannot unregister privilege '%s'. Please check if it was registered properly in the first place.
Message: %s failed.
Message: %s failed.
Message: Cannot recover from detect_only doublewrite buffer as page %u from batch doublewrite file is
corrupted.
414
Message: Database page corruption of tablespace %s space_id: %u page_num: %u. Cannot recover it
from the doublewrite buffer because it was written in detect_only-doublewrite mode.
Message: init_connect variable is ignored for user: %s host: %s due to multi-factor registration required
sandboxing
Message: Invalid flush interval specified: %lu. Valid values are 0 (off) or greater than or equal to %d.
Adjusting to %d
Message: Could not purge binary logs since another session is executing LOCK INSTANCE FOR
BACKUP. Wait for that session to release the lock.
Message: Invalid MySQL server downgrade: Cannot downgrade from %u to %u. Target MySQL server
version is lower than the server downgrade threshold %u.
Message: Invalid MySQL server upgrade: Cannot upgrade from %u to %u. Target MySQL server version
is lower than the server upgrade threshold %u.
Message: Invalid MySQL server upgrade: Cannot upgrade from %u to %u. Upgrade to next major
version is only allowed from the last LTS release, which version %u is not.
415
Message: Invalid MySQL server downgrade: Cannot downgrade from %u to %u. Downgrade is only
permitted between patch releases.
Message: Value for option '%s' contains cipher '%s' that is either blocked or deprecated (and will be
removed in a future release). Please refer to the documentation for more details.
Message: DDL failed as Builder is already freed. Builder: state=%u, error_state=%u. Index: id=%zu,
name='%s', space_id=%u, page=%u. Table: old_name='%s', new_name='%s'.
Message: Member identified %s: '%s' does not exist on Group Replication membership during %s.
Message: Waiting for THDs in partition %u to be closed, %u still left. %u THDs left in total for all
partitions.
416
Message: %s
Message: %s
Message: %s
Message: Server certificate %s verification has failed. Check logs for more details
Message: %s
Message: %s
Message: %s
417
• Error number: MY-015015; Symbol: ER_SRV_START; SQLSTATE: HY000
Message: MySQL Server: Components Shutdown - end (with return value = %d).
Message: Failed to accept a MySQL connection for Group Replication. %s. Please retry.
418
• Error number: MY-015029; Symbol:
ER_WARN_OPTION_RESET_AND_IGNORED_DURING_INITIALIZE; SQLSTATE: HY000
Message: Invalid reload interval specified: %lu. Valid values are 0 (off) or greater than or equal to %d.
Adjusting to %d.
Message: Sync read to fix wrong page_id failed: buf_block_t[space_id=%zu, page_no=%zu], file=%s,
err=%zu, retry=%zu
419
• Error number: MY-015043; Symbol:
ER_START_REPLICA_CHANNEL_INVALID_CONFIGURATION_LOG; SQLSTATE: HY000
Message: The member %s:%u will be the one sending the recovery metadata message.
Message: This member %s:%u will be the one sending the recovery metadata message.
Message: Error while compressing data using %s compression. Data cannot be decompressed.
Message: Error while compressing data using %s compression. The operation could
not be performed as buffer size exceeded configured maximum size. Please wait until
the value of the column COUNT_TRANSACTIONS_ROWS_VALIDATING of the table
performance_schema.replication_group_member_stats decreases and try to join the new member
again.
Message: Error while compressing data using %s compression. The operation could not be performed
as memory allocation failed.
420
• Error number: MY-015053; Symbol: ER_GROUP_REPLICATION_DECOMPRESS_EXCEEDS_MAX_SIZE;
SQLSTATE: HY000
Message: Error while decompressing data using %s compression. The operation could
not be performed as buffer size exceeded configured maximum size. Please wait until
the value of the column COUNT_TRANSACTIONS_ROWS_VALIDATING of the table
performance_schema.replication_group_member_stats decreases and try to join the new member
again.
Message: Error while decompressing data using %s compression. The operation could not be performed
as memory allocation failed.
Message: Error while decompressing data using %s compression. The operation could not be performed
as all the input provided to decompress is consumed, but the decompressed output produced is less
than required.
Message: Error while decompressing data using %s compression. The operation could not be performed
as the compression library reported an error.
Message: Error while decompressing data using %s compression. The operation could not be performed
as no more input bytes remaining to decompress. The decompressed output has not been changed.
Message: Error while decompressing data using %s compression. Data cannot be decompressed.
Message: View_change_log_event will not be logged further on the binary log, as all members of the
group are 8.3.0 or greater.
Message: Error while parsing serialzed Certification_info from received Recovery Metadata to Protobuf
format using Protobuf library.
421
Message: Error received while the Recovery thread was waiting for the Recovery Metadata. The
Recovery will be terminated.
Message: Error fetching AFTER_GTIDS from Recovery Metadata by Recovery thread. The Recovery
thread timeout after waiting for %d seconds. The Recovery will be terminated.
Message: Error while decoding the received Recovery Metadata Message. The received payload is
empty which could be due to error in decoding of received Recovery Metadata Message. The joining
member will leave the group.
Message: The %s payload type of the received Recovery Metadata Message is empty.
Message: Error reading gtid_executed from the received Recovery Metadata Message.
Message: The group was unable to send the Recovery Metadata to a joining member.
Message: Error while processing received Certification Information from the Recovery Metadata
Message.
Message: Error Certification Information packet from the received Recovery Metadata Message is
empty.
Message: Error while sending Recovery metadata error message. If this is a temporary failure of send
message and member itself hasn't left the group, then joiner will timeout waiting for Recovery metadata
422
message. If this is a permanent failure, the member will leave the group and another member will send
the Recovery metadata message.
Message: Error when transferring Recovery Metadata Message to Recovery. The joining member will
leave the group.
Message: Error while %s. The operation could not be performed as memory allocation failed.
Message: The group replication recovery is skipped as the joiner's gtid executed set %s already has all
the transactions of the donor's gtid set %s.
Message: Error in Group Replication Recovery while getting member's global GTID executed set.
Message: Error in Group Replication Recovery while adding GTIDs in string format to Gtid_set.
Message: Error computing the current Recovery metadata sender. Check if this MEMBER is not leaving
the group and the joiner is able to successfully fetch the recovery metadata or not.
Message: Error in the received Recovery Metadata Message the number of compressed Certification
Information packet count mismatch with the number of sent compressed Certification Information
packets.
Message: Error while encoding Certification Information for the Recovery Metadata Message.
423
• Error number: MY-015083; Symbol: ER_GROUP_REPLICATION_METADATA_NO_VALID_DONOR;
SQLSTATE: HY000
Message: There are no valid recovery metadata donors. The joining member will leave the group.
Message: No donor available to provide the certification information, part of the required information to
the new member join the group. Please wait until there are ONLINE members on the group and try to
join the new member again.
Message: The group replication recovery is complete, joiner gtid executed set has all the transactions of
the donor's gtid set %s.
Message: The Monitor IO thread encountered an error while executing the query to check connection
to the source server. Error: %s. The query failed to execute on the source (host:%s port:%u
network_namespace:%s) for channel '%s'.
Message: The Monitor IO thread failed to detect if the source belongs to the group majority. Error: %s.
The query failed to execute on the source (host:%s port:%u network_namespace:%s) for channel '%s'.
Message: The replica IO thread failed to detect if the source belongs to the group majority. Error: %s.
The query failed to execute on the source (host:%s port:%u network_namespace:%s) for channel '%s'.
Message: The Monitor IO thread failed to get group membership details. Error: %s. The query failed to
execute on the source (host:%s port:%u network_namespace:%s) for channel '%s'.
Message: Tablespace '%u' mentioned in the redo log is corrupted in a way it is unrecoverable by double-
write buffer, so further redo log recovery is not possible!
Message: Invalid flush interval specified: %lu. Valid values are 0 (off) or greater than or equal to %d.
Adjusting to %d.
424
• Error number: MY-015093; Symbol: ER_COMPONENT_MASKING_VAR_REGISTRATION_FAILURE;
SQLSTATE: HY000
Message: Masking component failed to register notification service. Periodical masking dictionaries flush
will not work.
Message: The Applier process of Group Replication found an error and was requested to stop: %s
Message: Value for option '%s' contains cipher '%s' that is blocked. Please refer to the documentation for
allowed ciphers.
425
• Error number: MY-015105; Symbol: ER_KEYRING_COMPONENT_KEYRING_FILE_NAME_EMPTY;
SQLSTATE: HY000
Message: %*s
426
• Error number: MY-015117; Symbol: ER_IB_MSG_SUBMIT_DETAILED_BUG_REPORT; SQLSTATE:
HY000
Message: AUTO_INCREMENT is not supported with DOUBLE/FLOAT field. Please consider fixing
(Schema:%s, Table:%s, Column:%s).
Message: Could not find data pointed by data_id: %s, auth_id: %s. Skipping.
Message: A connection from %s was closed by the server due to a timeout in the communication layer
(vio:%d, packet:%d) %ld seconds after the last command started. Currently configured wait_timeout is
%ld seconds.
Message: Still rolling back transaction %llu; %llu undo records rolled back out of %llu total (%lu%%
complete). Transaction info: last state: %s
Message: Still rolling back transaction %llu; %llu undo records rolled back out of %llu total (%lu%%
complete).
427
• Error number: MY-015129; Symbol: ER_WARN_LOG_DEPRECATED_NON_STANDARD_KEY; SQLSTATE:
HY000
Message: Foreign key '%s' on table '%s'.'%s' refers to non-unique key or partial key. This is deprecated
and will be removed in a future release.
Message: Disabling MTL in thread group %u since it has %u (=MTL per group) long running
transactions.
Message: Re-enabling MTL in thread group %u since it is down to %u long running transactions.
Message: Column '%s.%s.%s' having prefix key part '%s(%u)' in the PARTITION BY KEY() clause is not
supported.
Message: Access denied for user '%s'@'%s', missing proxy privilege to '%s'.
Message: Access denied for user '%s'@'%s', proxied user '%s' doesn't exist.
Message: Distributed recovery will wait until the transactions '%s' contained on the
'group_replication_applier' channel are applied.
Message: Distributed recovery finished applying the transactions '%s' contained on the
'group_replication_applier' channel.
Message: %s
428
• Error number: MY-015141; Symbol: ER_BULK_SCANNER_INFO; SQLSTATE: HY000
Message: Combining the storage engines %s and %s is deprecated, but the statement or transaction
updates both the %s table %s.%s and the %s table %s.%s.
Message: Failed to update data directory flag for dd table with tablespace id '%llu' when ibd file for '%s' is
moved to new location '%s' during server shutdown
Message: %s DD ID: %llu - Tablespace %u, name '%s', found at '%s' outside default data directory, but
DD misses info about DATA DIRECTORY
Message: Issuer (%s) found in identity token provided by '%s' for '%s'@'%s' does not match the issuer in
the configuration.
Message: Unknown subject (%s) found in identity token provided by '%s' for '%s'@'%s'.
Message: Verification failed for identity token provided by '%s' for '%s'@'%s' : %s.
Message: The Client-Server connection is not secure. Please make sure either a TLS, socket or shared
memory connection is established between the client and the server.
429
• Error number: MY-015153; Symbol: ER_AUTHENTICATION_OPENID_READ_PACKET; SQLSTATE:
HY000
Message: The ID token is not acceptable. Token size should be less than 10k.
Message: The provided identity provider in the auth string is not supported.
Message: The configuration for the plugin is not set. Please set
authentication_openid_connect_configuration before a login attempt or user creation.
Message: %s
Message: Upon reconnection with the replica, while initializing the dump thread for %s <%s>, an existing
dump thread with the same %s was detected. The source is terminating the previous dump thread (%u),
which is normal and expected.
Message: The transaction '%s' will commit out of order with respect to its source to follow the group
global order.
430
Message: %s
Message: %s
Message: %s
Message: %s
Message: TP conn (init: in, queue, auth, err, ok. port: managed(delta), active, opened, closed, added,
dropped): %s
431
Message: Thread pool epoll_wait() error: errno=%d.
432
Message: Failed keyring cache operation %s.
Message: CMK was changed and the keyring must be re-encrypted, but the keyring is read only. Set the
read_only config parameter to false for re-encryption and reload the component.
Message: Unexpected enclosed by character found inside unenclosed string at row %ld in file '%s'
resulting in malformed CSV.
Message: %s
Message: Unable to create the thread that periodically tracks the replication features. The server will
continue its bootstrap.
433
• Error number: MY-015540; Symbol:
ER_CONNECTION_CONTROL_VARIABLE_REGISTRATION_FAILED; SQLSTATE: HY000
Message: Replication channel lag retrieval failed due to query execution error. Retrying in 5 seconds.
Message: Failed to acquire Group Replication management service. Verify Group Replication status and
configuration.
Message: Member threshold exceeded: applier channel lag of %d seconds exceeded tolerance
threshold configured to %d seconds. However, since it joined %d seconds ago and the quarantine period
is configured to %d seconds, the member will not leave the group.
434
• Error number: MY-015551; Symbol:
ER_GR_RM_GR_MEMBER_NOT_REMOVED_RECOVERY_THRESHOLD_HIT_QUARANTINE; SQLSTATE:
HY000
Message: Member threshold exceeded: recovery channel lag of %d seconds exceeded tolerance
threshold configured to %d seconds. However, since it joined %d seconds ago and the quarantine period
is configured to %d seconds, the member will not leave the group.
Message: Member threshold exceeded: memory used of %d%% exceeded tolerance threshold
configured to %d%%. However, since it joined %d seconds ago and the quarantine period is configured
to %d seconds, the member will not leave the group.
Message: Member threshold exceeded: applier channel lag of %d seconds exceeded tolerance
threshold configured to %d seconds. However, the group has less than 3 members, the member will not
leave the group.
Message: Member threshold exceeded: recovery channel lag of %d seconds exceeded tolerance
threshold configured to %d seconds. However, the group has less than 3 members, the member will not
leave the group.
Message: Member threshold exceeded: memory used of %d%% exceeded tolerance threshold
configured to %d%%. However, the group has less than 3 members, the member will not leave the
group.
Message: Member exiting group: applier channel lag of %d seconds exceeded tolerance threshold
configured to %d seconds.
Message: Member exiting group: recovery channel lag of %d seconds exceeded tolerance threshold
configured to %d seconds.
Message: Member exiting group: memory used of %d%% exceeded tolerance threshold configured to
%d%%.
435
436
Chapter 3 Client Error Message Reference
Client error messages originate from within the MySQL client library. Here is an example client error
message, as displayed by the mysql client:
$> mysql -h no-such-host
ERROR 2005 (HY000): Unknown MySQL server host 'no-such-host' (0)
Each client error message includes an error code, SQLSTATE value, and message string, as described
in Error Message Sources and Elements. These elements are available as described in Error Information
Interfaces. For client errors, the SQLSTATE value is always 'HY000' (general error), so it is not
meaningful for distinguishing one client error from another.
The client library also makes available to host client programs any errors that originate on the server side
and are recieved by the client from the server. For a list of server-side errors, see Chapter 2, Server Error
Message Reference.
In addition to the errors in the following list, the client library can also produce error messages that have
error codes in the range from 1 to 999. See Chapter 4, Global Error Message Reference
Message: Can't connect to local MySQL server through socket '%s' (%d)
437
• Error number: 2010; Symbol: CR_LOCALHOST_CONNECTION;
Message: Commands out of sync; you can't run this command now
Commands were executed in an improper order. This error occurs when a function is called that is not
appropriate for the current state of the connection. For example, if mysql_stmt_fetch() is not called
enough times to read an entire result set (that is, enough times to return MYSQL_NO_DATA), this error
may occur for the following C API call.
438
• Error number: 2024; Symbol: CR_PROBE_REPLICA_CONNECT;
Message: This client library is licensed only for use with MySQL servers having '%s' license
A key name was empty or the amount of connection attribute data for mysql_options4() exceeds the
64KB limit.
Message: Can't send long data for non-string/non-binary data types (parameter: %d)
439
Message: Shared memory: %s
Message: Can't open shared memory; client could not create request event (%lu)
Message: Can't open shared memory; no answer event received from server (%lu)
Message: Can't open shared memory; server could not allocate file mapping (%lu)
Message: Can't open shared memory; server could not get pointer to file mapping (%lu)
Message: Can't open shared memory; client could not allocate file mapping (%lu)
Message: Can't open shared memory; client could not get pointer to file mapping (%lu)
Message: Can't open shared memory; client could not create %s event (%lu)
Message: Can't open shared memory; cannot send request event to server (%lu)
Message: Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth'
enabled)
440
• Error number: 2052; Symbol: CR_NO_STMT_METADATA;
Message: Attempt to read a row while there is no result set associated with the statement
Message: 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 the statement again
Message: This handle is already connected. Use a separate handle for each connection.
An insecure function call was detected. Modify the application to use the suggested alternative function
instead.
441
Message: Compression protocol not supported with asynchronous protocol
Message: SSO user not found, Please perform SSO authentication using kerberos.
Message: LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.
Message: Determining the real path for '%s' failed with error (%d): %s
Message: Client does not recognise tracker type %d marked as mandatory by server.
Message: Invalid first argument for MYSQL_OPT_USER_PASSWORD option. Valid value should be
between 1 and 3 inclusive.
Message: '%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 minimum ones, e.g. utf8mb4, latin1 etc.
Message: Server rejected the ssl handshake for specified sni servername, sslerror: %s
442
Chapter 4 Global Error Message Reference
This document lists “global” error messages that are shared in the sense that they can be produced by the
MySQL server or by MySQL client programs. These errors have error codes in the range from 1 to 999.
Each global error message includes an error code, SQLSTATE value, and message string, as described
in Error Message Sources and Elements. These elements are available as described in Error Information
Interfaces. For global errors, the SQLSTATE value is always 'HY000' (general error), so it is not
meaningful for distinguishing one client error from another.
If the server writes a message to the error log that has a global error code, it pads the error code with
leading zeros to six digits and adds a prefix of MY- (example: MY-000022). The following list displays error
codes in that format.
If a client returns a message with a global error code, it adds no zero-padding or prefix to the error code.
Message: Unexpected EOF found when reading file '%s' (OS errno %d - %s)
443
Message: Can't read dir of '%s' (OS errno %d - %s)
Message: Disk is full writing '%s' (OS errno %d - %s). Waiting for someone to free space...
Message: Character set '%s' is not a compiled character set and is not specified in the '%s' file
Message: Out of resources when opening file '%s' (OS errno %d - %s)
444
Message: Can't sync file '%s' to disk (OS errno %d - %s)
Message: Collation '%s' is not a compiled collation and is not specified in the '%s' file
Message: Cannot change ownership of the file '%s' (OS errno %d - %s)
Message: Cannot change permissions of the file '%s' (OS errno %d - %s)
Message: Disk is full writing '%s' (OS errno %d - %s). Waiting for someone to free space... Retry in %d
secs. Message reprinted in %d secs.
Message: Failed to create event to interrupt timer notifier thread (OS errno %d).
Message: Failed to register timer event with queue (OS errno %d), exiting timer notifier thread.
445
• Error number: 42; Symbol: EE_WIN_LIBRARY_LOAD_FAILED;
Message: %s.
Message: Skipping '%s' directive as maximum include recursion level was reached in file %s at line %d.
Message: Found option without preceding group in config file %s at line %d.
446
• Error number: 57; Symbol: EE_USING_PASSWORD_ON_CLI_IS_INSECURE;
Message: Unknown suffix '%c' used for variable '%s' (value '%s').
Message: %d %s.
Message: %s.
447
• Error number: 72; Symbol: EE_SHORT_OPTION_REQUIRES_ARGUMENT;
Message: option '%s': boolean value '%s' was not recognized. Set to OFF.
Message: %s.
448
• Error number: 87; Symbol: EE_FAILED_TO_RESET_BEFORE_TERTIARY_IGNORABLE_CHAR;
449
450
CR_PROBE_REPLICA_CONNECT error code, 439
Index CR_PROBE_REPLICA_HOSTS error code, 438
CR_PROBE_REPLICA_STATUS error code, 438
C CR_PROBE_SOURCE_CONNECT error code, 439
CR_ALREADY_CONNECTED error code, 441 CR_SERVER_GONE_ERROR error code, 437
CR_AUTH_PLUGIN_CANNOT_LOAD error code, 441 CR_SERVER_HANDSHAKE_ERR error code, 438
CR_AUTH_PLUGIN_ERR error code, 441 CR_SERVER_LOST error code, 438
CR_CANT_GET_SESSION_DATA error code, 442 CR_SERVER_LOST_EXTENDED error code, 441
CR_CANT_READ_CHARSET error code, 438 CR_SHARED_MEMORY_CONNECTION error code,
CR_COMMANDS_OUT_OF_SYNC error code, 438 440
CR_COMPRESSION_WRONGLY_CONFIGURED error CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR
code, 442 error code, 440
CR_CONNECTION_ERROR error code, 437 CR_SHARED_MEMORY_CONNECT_ANSWER_ERROR
CR_CONN_HOST_ERROR error code, 437 error code, 440
CR_CONN_UNKNOW_PROTOCOL error code, 440 CR_SHARED_MEMORY_CONNECT_FILE_MAP_ERROR
CR_DATA_TRUNCATED error code, 439 error code, 440
CR_DEPRECATED_COMPRESSION_NOT_SUPPORTED CR_SHARED_MEMORY_CONNECT_MAP_ERROR
error code, 442 error code, 440
CR_DNS_SRV_LOOKUP_FAILED error code, 442 CR_SHARED_MEMORY_CONNECT_REQUEST_ERROR
CR_DUPLICATE_CONNECTION_ATTR error code, 441 error code, 440
CR_EMBEDDED_CONNECTION error code, 438 CR_SHARED_MEMORY_CONNECT_SET_ERROR
CR_FETCH_CANCELED error code, 440 error code, 440
CR_FILE_NAME_TOO_LONG error code, 441 CR_SHARED_MEMORY_EVENT_ERROR error code,
CR_INSECURE_API_ERR error code, 441 440
CR_INVALID_BUFFER_USE error code, 439 CR_SHARED_MEMORY_FILE_MAP_ERROR error
CR_INVALID_CLIENT_CHARSET error code, 442 code, 440
CR_INVALID_CONN_HANDLE error code, 440 CR_SHARED_MEMORY_MAP_ERROR error code, 440
CR_INVALID_FACTOR_NO error code, 442 CR_SOCKET_CREATE_ERROR error code, 437
CR_INVALID_PARAMETER_NO error code, 439 CR_SSL_CONNECTION_ERROR error code, 439
CR_IPSOCK_ERROR error code, 437 CR_SSL_FIPS_MODE_ERR error code, 441
CR_KERBEROS_USER_NOT_FOUND error code, 442 CR_STMT_CLOSED error code, 441
CR_LOAD_DATA_LOCAL_INFILE_REALPATH_FAIL CR_TCP_CONNECTION error code, 438
error code, 442 CR_TLS_SERVER_NOT_FOUND error code, 442
CR_LOAD_DATA_LOCAL_INFILE_REJECTED error CR_UNKNOWN_ERROR error code, 437
code, 442 CR_UNKNOWN_HOST error code, 437
CR_LOCALHOST_CONNECTION error code, 438 CR_UNSUPPORTED_PARAM_TYPE error code, 439
CR_MALFORMED_PACKET error code, 439 CR_UNUSED_1 error code, 440
CR_MANDATORY_TRACKER_NOT_FOUND error CR_VERSION_ERROR error code, 437
code, 442 CR_WRONG_HOST_INFO error code, 437
CR_NAMEDPIPEOPEN_ERROR error code, 438 CR_WRONG_LICENSE error code, 439
CR_NAMEDPIPESETSTATE_ERROR error code, 438
CR_NAMEDPIPEWAIT_ERROR error code, 438 E
CR_NAMEDPIPE_CONNECTION error code, 438
EE_ADJUSTED_DOUBLE_VALUE_FOR_OPTION error
CR_NET_PACKET_TOO_LARGE error code, 438
code, 448
CR_NEW_STMT_METADATA error code, 441
EE_ADJUSTED_SIGNED_VALUE_FOR_OPTION error
CR_NOT_IMPLEMENTED error code, 441
code, 448
CR_NO_DATA error code, 440
EE_ADJUSTED_ULONGLONG_VALUE_FOR_OPTION
CR_NO_PARAMETERS_EXISTS error code, 439
error code, 448
CR_NO_PREPARE_STMT error code, 439
EE_ADJUSTED_UNSIGNED_VALUE_FOR_OPTION
CR_NO_RESULT_SET error code, 441
error code, 448
CR_NO_STMT_METADATA error code, 441
EE_BADCLOSE error code, 443
CR_NULL_POINTER error code, 439
EE_CANTCREATEFILE error code, 443
CR_OUT_OF_MEMORY error code, 437
EE_CANTLOCK error code, 443
CR_PARAMS_NOT_BOUND error code, 439
451
EE_CANTUNLOCK error code, 443 EE_IGNORE_WORLD_WRITABLE_CONFIG_FILE error
EE_CANT_CHSIZE error code, 444 code, 446
EE_CANT_MKDIR error code, 444 EE_INCORRECT_BOOLEAN_VALUE_FOR_OPTION
EE_CANT_OPEN_STREAM error code, 444 error code, 448
EE_CANT_READLINK error code, 444 EE_INCORRECT_GRP_DEFINITION_IN_CONFIG_FILE
EE_CANT_SEEK error code, 445 error code, 446
EE_CANT_SYMLINK error code, 444 EE_INCORRECT_INT_VALUE_FOR_OPTION error
EE_CAPACITY_EXCEEDED error code, 445 code, 448
EE_CHANGE_OWNERSHIP error code, 445 EE_INCORRECT_UINT_VALUE_FOR_OPTION error
EE_CHANGE_PERMISSIONS error code, 445 code, 448
EE_COLLATION_PARSER_ERROR error code, 448 EE_INVALID_DECIMAL_VALUE_FOR_OPTION error
EE_CONFIG_FILE_PERMISSION_ERROR error code, code, 448
446 EE_LINK error code, 443
EE_DEBUG_INFO error code, 447 EE_LINK_WARNING error code, 444
EE_DELETE error code, 443 EE_NET_SEND_ERROR_IN_BOOTSTRAP error code,
EE_DIR error code, 444 447
EE_DISK_FULL error code, 444 EE_OPEN_WARNING error code, 444
EE_DISK_FULL_WITH_RETRY_MSG error code, 445 EE_OPTION_IGNORED_DUE_TO_INVALID_VALUE
EE_EOFERR error code, 443 error code, 448
EE_EXITING_TIMER_NOTIFY_THREAD error code, EE_OPTION_REQUIRES_ARGUMENT error code, 447
445 EE_OPTION_WITHOUT_ARGUMENT error code, 447
EE_FAILED_PROCESSING_DIRECTIVE error code, EE_OPTION_WITHOUT_GRP_IN_CONFIG_FILE error
449 code, 446
EE_FAILED_TO_ASSIGN_MAX_VALUE_TO_OPTION EE_OPTION_WITH_EMPTY_VALUE error code, 448
error code, 448 EE_OUTOFMEMORY error code, 443
EE_FAILED_TO_CREATE_IO_COMPLETION_PORT EE_OUT_OF_FILERESOURCES error code, 444
error code, 446 EE_PACKETS_OUT_OF_ORDER error code, 447
EE_FAILED_TO_CREATE_TIMER error code, 445 EE_PTHREAD_KILL_FAILED error code, 449
EE_FAILED_TO_CREATE_TIMER_NOTIFY_THREAD_INTERRUPT_EVENT
EE_PUBLIC_KEY_NOT_IN_PEM_FORMAT error code,
error code, 445 447
EE_FAILED_TO_CREATE_TIMER_QUEUE error code, EE_READ error code, 443
445 EE_REALPATH error code, 444
EE_FAILED_TO_DELETE_TIMER error code, 445 EE_RESET_CHAR_OUT_OF_RANGE error code, 449
EE_FAILED_TO_DETERMINE_LARGE_PAGE_SIZE EE_SETWD error code, 444
error code, 446 EE_SHIFT_CHAR_OUT_OF_RANGE error code, 449
EE_FAILED_TO_HANDLE_DEFAULTS_FILE error EE_SHORT_OPTION_REQUIRES_ARGUMENT error
code, 446 code, 448
EE_FAILED_TO_KILL_ALL_THREADS error code, 446 EE_SKIPPING_DIRECTIVE_DUE_TO_MAX_INCLUDE_RECURSION
EE_FAILED_TO_LOCATE_SERVER_PUBLIC_KEY error code, 446
error code, 447 EE_SSL_ERROR error code, 447
EE_FAILED_TO_OPEN_DEFAULTS_FILE error code, EE_SSL_ERROR_FROM_FILE error code, 447
446 EE_STAT error code, 444
EE_FAILED_TO_RESET_BEFORE_PRIMARY_IGNORABLE_CHAR
EE_SYNC error code, 445
error code, 448 EE_UNKNOWN_CHARSET error code, 444
EE_FAILED_TO_RESET_BEFORE_SECONDARY_IGNORABLE_CHAR
EE_UNKNOWN_COLLATION error code, 445
error code, 449 EE_UNKNOWN_LDML_TAG error code, 449
EE_FAILED_TO_RESET_BEFORE_TERTIARY_IGNORABLE_CHAR
EE_UNKNOWN_OPTION error code, 447
error code, 449 EE_UNKNOWN_PROTOCOL_OPTION error code, 447
EE_FAILED_TO_SET_OPTION_VALUE error code, 448 EE_UNKNOWN_SHORT_OPTION error code, 447
EE_FAILED_TO_START_TIMER_NOTIFY_THREAD EE_UNKNOWN_SUFFIX_FOR_VARIABLE error code,
error code, 445 447
EE_FILENOTFOUND error code, 445 EE_UNKNOWN_VARIABLE error code, 447
EE_FILE_NOT_CLOSED error code, 445 EE_USING_DISABLED_OPTION error code, 446
EE_GETWD error code, 444
452
EE_USING_DISABLED_SHORT_OPTION error code, CR_NO_STMT_METADATA, 441
446 CR_NULL_POINTER, 439
EE_USING_PASSWORD_ON_CLI_IS_INSECURE error CR_OUT_OF_MEMORY, 437
code, 447 CR_PARAMS_NOT_BOUND, 439
EE_WIN_LIBRARY_LOAD_FAILED error code, 446 CR_PROBE_REPLICA_CONNECT, 439
EE_WIN_RUN_TIME_ERROR_CHECK error code, 446 CR_PROBE_REPLICA_HOSTS, 438
EE_WRITE error code, 443 CR_PROBE_REPLICA_STATUS, 438
EE_WRONG_DIRECTIVE_IN_CONFIG_FILE error CR_PROBE_SOURCE_CONNECT, 439
code, 446 CR_SERVER_GONE_ERROR, 437
error code CR_SERVER_HANDSHAKE_ERR, 438
CR_ALREADY_CONNECTED, 441 CR_SERVER_LOST, 438
CR_AUTH_PLUGIN_CANNOT_LOAD, 441 CR_SERVER_LOST_EXTENDED, 441
CR_AUTH_PLUGIN_ERR, 441 CR_SHARED_MEMORY_CONNECTION, 440
CR_CANT_GET_SESSION_DATA, 442 CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR,
CR_CANT_READ_CHARSET, 438 440
CR_COMMANDS_OUT_OF_SYNC, 438 CR_SHARED_MEMORY_CONNECT_ANSWER_ERROR,
CR_COMPRESSION_WRONGLY_CONFIGURED, 440
442 CR_SHARED_MEMORY_CONNECT_FILE_MAP_ERROR,
CR_CONNECTION_ERROR, 437 440
CR_CONN_HOST_ERROR, 437 CR_SHARED_MEMORY_CONNECT_MAP_ERROR,
CR_CONN_UNKNOW_PROTOCOL, 440 440
CR_DATA_TRUNCATED, 439 CR_SHARED_MEMORY_CONNECT_REQUEST_ERROR,
CR_DEPRECATED_COMPRESSION_NOT_SUPPORTED, 440
442 CR_SHARED_MEMORY_CONNECT_SET_ERROR,
CR_DNS_SRV_LOOKUP_FAILED, 442 440
CR_DUPLICATE_CONNECTION_ATTR, 441 CR_SHARED_MEMORY_EVENT_ERROR, 440
CR_EMBEDDED_CONNECTION, 438 CR_SHARED_MEMORY_FILE_MAP_ERROR, 440
CR_FETCH_CANCELED, 440 CR_SHARED_MEMORY_MAP_ERROR, 440
CR_FILE_NAME_TOO_LONG, 441 CR_SOCKET_CREATE_ERROR, 437
CR_INSECURE_API_ERR, 441 CR_SSL_CONNECTION_ERROR, 439
CR_INVALID_BUFFER_USE, 439 CR_SSL_FIPS_MODE_ERR, 441
CR_INVALID_CLIENT_CHARSET, 442 CR_STMT_CLOSED, 441
CR_INVALID_CONN_HANDLE, 440 CR_TCP_CONNECTION, 438
CR_INVALID_FACTOR_NO, 442 CR_TLS_SERVER_NOT_FOUND, 442
CR_INVALID_PARAMETER_NO, 439 CR_UNKNOWN_ERROR, 437
CR_IPSOCK_ERROR, 437 CR_UNKNOWN_HOST, 437
CR_KERBEROS_USER_NOT_FOUND, 442 CR_UNSUPPORTED_PARAM_TYPE, 439
CR_LOAD_DATA_LOCAL_INFILE_REALPATH_FAIL, CR_UNUSED_1, 440
442 CR_VERSION_ERROR, 437
CR_LOAD_DATA_LOCAL_INFILE_REJECTED, 442 CR_WRONG_HOST_INFO, 437
CR_LOCALHOST_CONNECTION, 438 CR_WRONG_LICENSE, 439
CR_MALFORMED_PACKET, 439 EE_ADJUSTED_DOUBLE_VALUE_FOR_OPTION,
CR_MANDATORY_TRACKER_NOT_FOUND, 442 448
CR_NAMEDPIPEOPEN_ERROR, 438 EE_ADJUSTED_SIGNED_VALUE_FOR_OPTION,
CR_NAMEDPIPESETSTATE_ERROR, 438 448
CR_NAMEDPIPEWAIT_ERROR, 438 EE_ADJUSTED_ULONGLONG_VALUE_FOR_OPTION,
CR_NAMEDPIPE_CONNECTION, 438 448
CR_NET_PACKET_TOO_LARGE, 438 EE_ADJUSTED_UNSIGNED_VALUE_FOR_OPTION,
CR_NEW_STMT_METADATA, 441 448
CR_NOT_IMPLEMENTED, 441 EE_BADCLOSE, 443
CR_NO_DATA, 440 EE_CANTCREATEFILE, 443
CR_NO_PARAMETERS_EXISTS, 439 EE_CANTLOCK, 443
CR_NO_PREPARE_STMT, 439 EE_CANTUNLOCK, 443
CR_NO_RESULT_SET, 441 EE_CANT_CHSIZE, 444
453
EE_CANT_MKDIR, 444 EE_INVALID_DECIMAL_VALUE_FOR_OPTION, 448
EE_CANT_OPEN_STREAM, 444 EE_LINK, 443
EE_CANT_READLINK, 444 EE_LINK_WARNING, 444
EE_CANT_SEEK, 445 EE_NET_SEND_ERROR_IN_BOOTSTRAP, 447
EE_CANT_SYMLINK, 444 EE_OPEN_WARNING, 444
EE_CAPACITY_EXCEEDED, 445 EE_OPTION_IGNORED_DUE_TO_INVALID_VALUE,
EE_CHANGE_OWNERSHIP, 445 448
EE_CHANGE_PERMISSIONS, 445 EE_OPTION_REQUIRES_ARGUMENT, 447
EE_COLLATION_PARSER_ERROR, 448 EE_OPTION_WITHOUT_ARGUMENT, 447
EE_CONFIG_FILE_PERMISSION_ERROR, 446 EE_OPTION_WITHOUT_GRP_IN_CONFIG_FILE,
EE_DEBUG_INFO, 447 446
EE_DELETE, 443 EE_OPTION_WITH_EMPTY_VALUE, 448
EE_DIR, 444 EE_OUTOFMEMORY, 443
EE_DISK_FULL, 444 EE_OUT_OF_FILERESOURCES, 444
EE_DISK_FULL_WITH_RETRY_MSG, 445 EE_PACKETS_OUT_OF_ORDER, 447
EE_EOFERR, 443 EE_PTHREAD_KILL_FAILED, 449
EE_EXITING_TIMER_NOTIFY_THREAD, 445 EE_PUBLIC_KEY_NOT_IN_PEM_FORMAT, 447
EE_FAILED_PROCESSING_DIRECTIVE, 449 EE_READ, 443
EE_FAILED_TO_ASSIGN_MAX_VALUE_TO_OPTION, EE_REALPATH, 444
448 EE_RESET_CHAR_OUT_OF_RANGE, 449
EE_FAILED_TO_CREATE_IO_COMPLETION_PORT, EE_SETWD, 444
446 EE_SHIFT_CHAR_OUT_OF_RANGE, 449
EE_FAILED_TO_CREATE_TIMER, 445 EE_SHORT_OPTION_REQUIRES_ARGUMENT, 448
EE_FAILED_TO_CREATE_TIMER_NOTIFY_THREAD_INTERRUPT_EVENT,
EE_SKIPPING_DIRECTIVE_DUE_TO_MAX_INCLUDE_RECURSI
445 446
EE_FAILED_TO_CREATE_TIMER_QUEUE, 445 EE_SSL_ERROR, 447
EE_FAILED_TO_DELETE_TIMER, 445 EE_SSL_ERROR_FROM_FILE, 447
EE_FAILED_TO_DETERMINE_LARGE_PAGE_SIZE, EE_STAT, 444
446 EE_SYNC, 445
EE_FAILED_TO_HANDLE_DEFAULTS_FILE, 446 EE_UNKNOWN_CHARSET, 444
EE_FAILED_TO_KILL_ALL_THREADS, 446 EE_UNKNOWN_COLLATION, 445
EE_FAILED_TO_LOCATE_SERVER_PUBLIC_KEY, EE_UNKNOWN_LDML_TAG, 449
447 EE_UNKNOWN_OPTION, 447
EE_FAILED_TO_OPEN_DEFAULTS_FILE, 446 EE_UNKNOWN_PROTOCOL_OPTION, 447
EE_FAILED_TO_RESET_BEFORE_PRIMARY_IGNORABLE_CHAR,
EE_UNKNOWN_SHORT_OPTION, 447
448 EE_UNKNOWN_SUFFIX_FOR_VARIABLE, 447
EE_FAILED_TO_RESET_BEFORE_SECONDARY_IGNORABLE_CHAR,
EE_UNKNOWN_VARIABLE, 447
449 EE_USING_DISABLED_OPTION, 446
EE_FAILED_TO_RESET_BEFORE_TERTIARY_IGNORABLE_CHAR,
EE_USING_DISABLED_SHORT_OPTION, 446
449 EE_USING_PASSWORD_ON_CLI_IS_INSECURE,
EE_FAILED_TO_SET_OPTION_VALUE, 448 447
EE_FAILED_TO_START_TIMER_NOTIFY_THREAD, EE_WIN_LIBRARY_LOAD_FAILED, 446
445 EE_WIN_RUN_TIME_ERROR_CHECK, 446
EE_FILENOTFOUND, 445 EE_WRITE, 443
EE_FILE_NOT_CLOSED, 445 EE_WRONG_DIRECTIVE_IN_CONFIG_FILE, 446
EE_GETWD, 444 ER_ABORTING, 147
EE_IGNORE_WORLD_WRITABLE_CONFIG_FILE, ER_ABORTING_CONNECTION, 13
446 ER_ABORTING_USER_CONNECTION, 193
EE_INCORRECT_BOOLEAN_VALUE_FOR_OPTION, ER_ACCESS_DENIED_CHANGE_USER_ERROR,
448 59
EE_INCORRECT_GRP_DEFINITION_IN_CONFIG_FILE, ER_ACCESS_DENIED_ERROR, 6
446 ER_ACCESS_DENIED_ERROR_WITHOUT_PASSWORD,
EE_INCORRECT_INT_VALUE_FOR_OPTION, 448 194
EE_INCORRECT_UINT_VALUE_FOR_OPTION, 448
454
ER_ACCESS_DENIED_ERROR_WITH_PASSWORD, ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FTS
194 58
ER_ACCESS_DENIED_FOR_USER_ACCOUNT_BLOCKED_BY_PASSWORD_LOCK,
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_GIS
371 65
ER_ACCESS_DENIED_FOR_USER_ACCOUNT_LOCKED,ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_HID
194 58
ER_ACCESS_DENIED_NO_PASSWORD_ERROR, ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOP
47 57
ER_ACCESS_DENIED_NO_PROXY, 135 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOT
ER_ACCESS_DENIED_NO_PROXY_GRANT, 135 58
ER_ACCESS_DENIED_NO_PROXY_GRANT_WITH_NAME,
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_PAR
428 57
ER_ACCESS_DENIED_NO_PROXY_WITH_NAME, ER_AMBIGUOUS_FIELD_TERM, 34
428 ER_ANONYMOUS_AUTH_ID_NOT_ALLOWED_IN_MANDATO
ER_ACCOUNT_HAS_BEEN_LOCKED, 69 197
ER_ACCOUNT_WITH_EXPIRED_PASSWORD, 398 ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_GROUP_NAM
ER_ACL_OPERATION_FAILED, 76 115
ER_ACL_WRONG_OR_MISSING_ACL_TABLES_LOG, ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_VIEW_CHAN
365 116
ER_ADDRESSES_FOR_HOSTNAME_HEADER, 142 ER_APPLIER_LOG_EVENT_VALIDATION_ERROR,
ER_ADDRESSES_FOR_HOSTNAME_LIST_ITEM, 85
143 ER_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_R
ER_ADD_PARTITION_NO_NEW_PARTITION, 36 114
ER_ADD_PARTITION_SUBPART_ERROR, 36 ER_ATTRIBUTE_IGNORED, 87
ER_ADMIN_WRONG_MRG_TABLE, 33 ER_AUDIT_API_ABORT, 73
ER_AES_INVALID_IV, 59 ER_AUDIT_CANT_ABORT_COMMAND, 192
ER_AES_INVALID_KDF_ITERATIONS, 76 ER_AUDIT_CANT_ABORT_EVENT, 192
ER_AES_INVALID_KDF_NAME, 75 ER_AUDIT_LOG_CANNOT_GENERATE_PASSWORD,
ER_AES_INVALID_KDF_OPTION_SIZE, 76 369
ER_AGGREGATE_IN_ORDER_NOT_SELECT, 65 ER_AUDIT_LOG_CANNOT_READ_PASSWORD,
ER_AGGREGATE_ORDER_FOR_UNION, 62 364
ER_AGGREGATE_ORDER_NON_AGG_QUERY, 62 ER_AUDIT_LOG_CANNOT_REMOVE_PASSWORD,
ER_ALTER_CONSTRAINT_ENFORCEMENT_NOT_SUPPORTED,
365
108 ER_AUDIT_LOG_CANNOT_SET_LOG_POLICY_WITH_OTHE
ER_ALTER_FILEGROUP_FAILED, 37 214
ER_ALTER_INFO, 9 ER_AUDIT_LOG_CANNOT_STORE_PASSWORD,
ER_ALTER_OPERATION_NOT_SUPPORTED, 57 365
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON, ER_AUDIT_LOG_COULD_NOT_CREATE_AES_KEY,
57 345
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_AUTOINC,
ER_AUDIT_LOG_COULD_NOT_OPEN_FILE_FOR_READING
58 364
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_CHANGE_FTS,
ER_AUDIT_LOG_EC_WRITER_FAILED_TO_CREATE_FILE,
58 215
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE,
ER_AUDIT_LOG_EC_WRITER_FAILED_TO_INIT_COMPRES
57 215
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE_INSTANT,
ER_AUDIT_LOG_EC_WRITER_FAILED_TO_INIT_ENCRYPTI
120 215
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COPY,
ER_AUDIT_LOG_ENCRYPTION_PASSWORD_CANNOT_BE_
57 345
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_CHECK,
ER_AUDIT_LOG_ENCRYPTION_PASSWORD_HAS_NOT_BE
57 345
ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_RENAME,
ER_AUDIT_LOG_FILE_AUTO_PRUNED, 385
57 ER_AUDIT_LOG_FILE_HAS_BEEN_SUCCESSFULLY_PROC
364
455
ER_AUDIT_LOG_FILE_NAME_DOES_NOT_HAVE_REQUIRED_FORMAT,
ER_AUDIT_LOG_JSON_USER_NAME_CANNOT_BE_EMPTY,
364 345
ER_AUDIT_LOG_FILE_NAME_KEYRING_ID_VALUE_IS_MISSING,
ER_AUDIT_LOG_KEYRING_ID_TIMESTAMP_VALUE_IS_INVALID
364 364
ER_AUDIT_LOG_FILE_NAME_TIMESTAMP_VALUE_IS_MISSING_OR_INVALID,
ER_AUDIT_LOG_NO_KEYRING_PLUGIN_INSTALLED,
364 345
ER_AUDIT_LOG_FILE_PRUNE_FAILED, 385 ER_AUDIT_LOG_ONLY_INCLUDE_LIST_USED, 215
ER_AUDIT_LOG_FILTER_FAILED_TO_CLOSE_TABLE_AFTER_READING,
ER_AUDIT_LOG_PASSWORD_HAS_BEEN_COPIED,
216 365
ER_AUDIT_LOG_FILTER_FAILED_TO_DELETE_FROM_TABLE,
ER_AUDIT_LOG_RENAME_LOG_FILE_BEFORE_FLUSH,
216 215
ER_AUDIT_LOG_FILTER_FAILED_TO_INIT_TABLE_FOR_READ,
ER_AUDIT_LOG_SUPER_PRIVILEGE_REQUIRED,
216 367
ER_AUDIT_LOG_FILTER_FAILED_TO_INSERT_INTO_TABLE,
ER_AUDIT_LOG_SWITCHING_TO_INCLUDE_LIST,
216 214
ER_AUDIT_LOG_FILTER_FAILED_TO_READ_TABLE, ER_AUDIT_LOG_TABLE_DEFINITION_NOT_UPDATED,
216 346
ER_AUDIT_LOG_FILTER_FAILED_TO_STORE_TABLE_FLDS,
ER_AUDIT_LOG_UDF_INSUFFICIENT_PRIVILEGE,
216 345
ER_AUDIT_LOG_FILTER_FAILED_TO_UPDATE_TABLE, ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_COUNT,
216 367
ER_AUDIT_LOG_FILTER_FLD_FILTERNAME_CANNOT_BE_EMPTY,
ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_TYPE,
217 367
ER_AUDIT_LOG_FILTER_IS_NOT_INSTALLED, 214 ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_
ER_AUDIT_LOG_FILTER_RESULT_MSG, 215 368
ER_AUDIT_LOG_FILTER_USER_AND_HOST_CANNOT_BE_EMPTY,
ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_
216 75
ER_AUDIT_LOG_HAS_NOT_BEEN_INSTALLED, ER_AUDIT_LOG_USER_FIRST_CHARACTER_MUST_BE_ALPHA
367 345
ER_AUDIT_LOG_HOST_NAME_INVALID_CHARACTER, ER_AUDIT_LOG_USER_NAME_INVALID_CHARACTER,
345 345
ER_AUDIT_LOG_INDEX_MAP_CANNOT_ACCESS_DIR, ER_AUDIT_LOG_WRITER_DEST_FILE_ALREADY_EXISTS,
215 215
ER_AUDIT_LOG_INSUFFICIENT_PRIVILEGE, 106 ER_AUDIT_LOG_WRITER_FAILED_TO_WRITE_TO_FILE,
ER_AUDIT_LOG_INVALID_FILE_CONTENT, 364 215
ER_AUDIT_LOG_INVALID_FLUSH_INTERVAL_VALUE, ER_AUDIT_LOG_WRITER_INCOMPLETE_FILE_RENAMED,
415 215
ER_AUDIT_LOG_JSON_FILTERING_NOT_ENABLED, ER_AUDIT_LOG_WRITER_RENAME_FILE_FAILED,
344 215
ER_AUDIT_LOG_JSON_FILTER_DOES_NOT_EXIST, ER_AUDIT_LOG_WRITER_RENAME_FILE_FAILED_REMOVE_F
345 215
ER_AUDIT_LOG_JSON_FILTER_NAME_CANNOT_BE_EMPTY,
ER_AUDIT_PLUGIN_DOES_NOT_SUPPORT_AUDIT_AUTH_EVE
344 163
ER_AUDIT_LOG_JSON_FILTER_PARSING_ERROR, ER_AUDIT_PLUGIN_HAS_INVALID_DATA, 163
344 ER_AUDIT_WARNING, 192
ER_AUDIT_LOG_JSON_READER_BUF_TOO_SMALL, ER_AUTHCACHE_CANT_INIT_GRANT_SUBSYSTEM,
216 161
ER_AUDIT_LOG_JSON_READER_FAILED_TO_OPEN_FILE,
ER_AUTHCACHE_CANT_OPEN_AND_LOCK_PRIVILEGE_TABLE
216 161
ER_AUDIT_LOG_JSON_READER_FAILED_TO_PARSE, ER_AUTHCACHE_DB_ENTRY_LOWERCASED_REVOKE_WILL_
216 161
ER_AUDIT_LOG_JSON_READER_FILE_PARSING_ERROR,ER_AUTHCACHE_DB_IGNORED_EMPTY_NAME,
216 161
456
ER_AUTHCACHE_DB_SKIPPED_NEEDS_RESOLVE, ER_AUTHENTICATION_OCI_TOKEN_NOT_VERIFIED,
161 413
ER_AUTHCACHE_DEFAULT_ROLES_IGNORED_EMPTY_NAME,ER_AUTHENTICATION_OPENID_CONFIGURATION_NOT_S
378 430
ER_AUTHCACHE_DEFAULT_ROLES_UNKNOWN_AUTHORIZATION_ID,
ER_AUTHENTICATION_OPENID_FAILED_TO_UPDATE_CON
378 430
ER_AUTHCACHE_EXPIRED_PASSWORD_UNSUPPORTED, ER_AUTHENTICATION_OPENID_INSECURE_CONNECTION
160 429
ER_AUTHCACHE_PLUGIN_CONFIG, 160 ER_AUTHENTICATION_OPENID_INVALID_CONFIGURATION
ER_AUTHCACHE_PLUGIN_MISSING, 160 429
ER_AUTHCACHE_PROCS_PRIV_ENTRY_IGNORED_BAD_ROUTINE_TYPE,
ER_AUTHENTICATION_OPENID_INVALID_IDENTITY_PROV
161 430
ER_AUTHCACHE_PROCS_PRIV_SKIPPED_NEEDS_RESOLVE,ER_AUTHENTICATION_OPENID_INVALID_TOKEN,
161 429
ER_AUTHCACHE_PROXIES_PRIV_SKIPPED_NEEDS_RESOLVE,
ER_AUTHENTICATION_OPENID_INVALID_TOKEN_SIZE,
160 430
ER_AUTHCACHE_ROLE_EDGES_IGNORED_EMPTY_NAME, ER_AUTHENTICATION_OPENID_ISSUER_MISMATCH,
377 429
ER_AUTHCACHE_ROLE_EDGES_UNKNOWN_AUTHORIZATION_ID,
ER_AUTHENTICATION_OPENID_OPTION_DEREGISTER,
378 433
ER_AUTHCACHE_TABLES_PRIV_SKIPPED_NEEDS_RESOLVE,
ER_AUTHENTICATION_OPENID_OPTION_REGISTER,
161 433
ER_AUTHCACHE_TABLE_PROXIES_PRIV_MISSING, ER_AUTHENTICATION_OPENID_READ_PACKET,
161 430
ER_AUTHCACHE_USER_IGNORED_DEPRECATED_PASSWORD,ER_AUTHENTICATION_OPENID_TOKEN_NOT_VERIFIED,
160 429
ER_AUTHCACHE_USER_IGNORED_INVALID_PASSWORD, ER_AUTHENTICATION_OPENID_USER_MISMATCH,
160 429
ER_AUTHCACHE_USER_IGNORED_NEEDS_PLUGIN, ER_AUTHENTICATION_PLUGIN_AUTH_DATA_CORRUPT,
160 394
ER_AUTHCACHE_USER_SKIPPED_NEEDS_RESOLVE, ER_AUTHENTICATION_PLUGIN_LOG, 394
160 ER_AUTHENTICATION_PLUGIN_OOM, 394
ER_AUTHCACHE_USER_TABLE_DODGY, 160 ER_AUTHENTICATION_PLUGIN_REGISTRATION_FAILED,
ER_AUTHENTICATION_OCI_DOWNLOAD_IDDP_PUBLIC_KEY,
393
413 ER_AUTHENTICATION_PLUGIN_REGISTRATION_INSUFFIC
ER_AUTHENTICATION_OCI_DOWNLOAD_PUBLIC_KEY, 393
394 ER_AUTHENTICATION_PLUGIN_SIGNATURE_CORRUPT,
ER_AUTHENTICATION_OCI_IAM, 395 394
ER_AUTHENTICATION_OCI_IMDS, 394 ER_AUTHENTICATION_PLUGIN_VERIFY_SIGNATURE_FAIL
ER_AUTHENTICATION_OCI_INVALID_AUTHENTICATION_STRING,
394
395 ER_AUTHENTICATION_POLICY_MISMATCH, 118
ER_AUTHENTICATION_OCI_INVALID_TOKEN, 413 ER_AUTH_CANT_ACTIVATE_ROLE, 158
ER_AUTHENTICATION_OCI_NONCE, 395 ER_AUTH_CANT_CREATE_RSA_PAIR, 159
ER_AUTHENTICATION_OCI_NO_GROUPS_FOUND, ER_AUTH_CANT_WRITE_PRIVKEY, 159
395 ER_AUTH_CANT_WRITE_PUBKEY, 159
ER_AUTHENTICATION_OCI_NO_MATCHING_GROUPS, ER_AUTH_CERTS_SAVED_TO_DATADIR, 159
395 ER_AUTH_CERT_GENERATION_DISABLED, 159
ER_AUTHENTICATION_OCI_PLUGIN_NOT_INITIALIZED, ER_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATOR
394 359
ER_AUTHENTICATION_OCI_PRIVATE_KEY_ERROR, ER_AUTH_KERBEROS_LOGGER_GENERIC_MSG,
394 390
ER_AUTHENTICATION_OCI_TOKEN_DETAILS_MISMATCH, ER_AUTH_KEYS_SAVED_TO_DATADIR, 160
413 ER_AUTH_KEY_GENERATION_DISABLED, 160
457
ER_AUTH_KEY_GENERATION_SKIPPED_PAIR_PRESENT,
ER_BINLOG_CANT_DELETE_FILE_AND_READ_BINLOG_INDEX
160 189
ER_AUTH_LDAP_ERROR_LOGGER_ERROR_MSG, ER_BINLOG_CANT_DELETE_LOG_FILE_DOES_INDEX_MATCH
218 189
ER_AUTH_RSA_CANT_FIND, 158 ER_BINLOG_CANT_FIND_LOG_IN_INDEX, 189
ER_AUTH_RSA_CANT_PARSE, 158 ER_BINLOG_CANT_GENERATE_NEW_FILE_NAME,
ER_AUTH_RSA_CANT_READ, 158 186
ER_AUTH_RSA_CONF_PREVENTS_KEY_GENERATION, ER_BINLOG_CANT_LOCATE_OLD_BINLOG_OR_RELAY_LOG_F
159 187
ER_AUTH_RSA_FILES_NOT_FOUND, 158 ER_BINLOG_CANT_MOVE_TMP_TO_INDEX, 188
ER_AUTH_SSL_CONF_PREVENTS_CERT_GENERATION,ER_BINLOG_CANT_OPEN_CRASHED_BINLOG,
159 189
ER_AUTH_USING_EXISTING_CERTS, 159 ER_BINLOG_CANT_OPEN_FOR_LOGGING, 186
ER_AUTOINC_READ_FAILED, 33 ER_BINLOG_CANT_OPEN_TMP_INDEX, 187
ER_AUTO_CONVERT, 19 ER_BINLOG_CANT_RESIZE_CACHE, 185
ER_AUTO_INCREMENT_CONFLICT, 59 ER_BINLOG_CANT_SET_TMP_INDEX_NAME, 187
ER_AUTO_INCREMENT_NOT_SUPPORTED_FOR_FLOAT_DOUBLE,
ER_BINLOG_CANT_TRIM_CRASHED_BINLOG, 189
427 ER_BINLOG_CANT_USE_FOR_LOGGING, 187
ER_AUTO_OPTIONS_FAILED, 151 ER_BINLOG_CRASHED_BINLOG_TRIMMED, 189
ER_AUTO_POSITION_REQUIRES_GTID_MODE_NOT_OFF,
ER_BINLOG_CRASH_RECOVERY_COMMIT_FAILED,
52 403
ER_BACKGROUND_HISTOGRAM_UPDATE, 426 ER_BINLOG_CRASH_RECOVERY_ENGINE_RESULTS,
ER_BACK_IN_TIME, 146 403
ER_BAD_DB_ERROR, 6 ER_BINLOG_CRASH_RECOVERY_ERROR_RETURNED_SE,
ER_BAD_FIELD_ERROR, 7 403
ER_BAD_FT_COLUMN, 22 ER_BINLOG_CRASH_RECOVERY_MALFORMED_LOG,
ER_BAD_HOST_ERROR, 6 403
ER_BAD_LOG_STATEMENT, 39 ER_BINLOG_CRASH_RECOVERY_PREPARE_FAILED,
ER_BAD_NULL_ERROR, 6 403
ER_BAD_NULL_ERROR_NOT_IGNORED, 88 ER_BINLOG_CRASH_RECOVERY_ROLLBACK_FAILED,
ER_BAD_REPLICA, 16 403
ER_BAD_REPLICA_AUTO_POSITION, 52 ER_BINLOG_CREATE_ROUTINE_NEED_SUPER,
ER_BAD_REPLICA_UNTIL_COND, 21 30
ER_BAD_TABLE_ERROR, 6 ER_BINLOG_END, 147
ER_BAD_TIMESTAMP_FORMAT, 123 ER_BINLOG_ERROR_READING_GTIDS_FROM_BINARY_LOG,
ER_BASE64_DECODE_ERROR, 39 186
ER_BASEDIR_SET_TO, 195 ER_BINLOG_ERROR_READING_GTIDS_FROM_RELAY_LOG,
ER_BEFORE_DML_VALIDATION_ERROR, 67 186
ER_BEG_INITFILE, 148 ER_BINLOG_EVENTS_READ_FROM_APPLIER_METADATA,
ER_BEYOND_SERVER_DOWNGRADE_THRESHOLD, 186
415 ER_BINLOG_EVENTS_READ_FROM_BINLOG_INFO,
ER_BEYOND_SERVER_UPGRADE_THRESHOLD, 186
415 ER_BINLOG_EVENT_WRITE_TO_STMT_CACHE_FAILED,
ER_BINLOG_CACHE_SIZE_GREATER_THAN_MAX, 196
50 ER_BINLOG_FAILED_TO_CLOSE_INDEX_FILE_WHILE_REBUIL
ER_BINLOG_CACHE_SIZE_TOO_LARGE, 192 187
ER_BINLOG_CANT_APPEND_LOG_TO_TMP_INDEX, ER_BINLOG_FAILED_TO_DELETE_INDEX_FILE_WHILE_REBUI
187 187
ER_BINLOG_CANT_CLEAR_IN_USE_FLAG_FOR_CRASHED_BINLOG,
ER_BINLOG_FAILED_TO_DELETE_LOG_FILE, 189
189 ER_BINLOG_FAILED_TO_OPEN_INDEX_FILE_AFTER_REBUILD
ER_BINLOG_CANT_CLOSE_TMP_INDEX, 188 187
ER_BINLOG_CANT_COPY_INDEX_TO_TMP, 188 ER_BINLOG_FAILED_TO_OPEN_REGISTER_FILE,
ER_BINLOG_CANT_DELETE_FILE, 187 188
458
ER_BINLOG_FAILED_TO_OPEN_TEMPORARY_INDEX_FILE,
ER_BINLOG_PURGE_FATAL_ERR, 28
187 ER_BINLOG_PURGE_LOGS_CALLED_WITH_FILE_NOT_IN_
ER_BINLOG_FAILED_TO_READ_REGISTER_FILE, 188
189 ER_BINLOG_PURGE_LOGS_CANT_COPY_TO_REGISTER_
ER_BINLOG_FAILED_TO_REINIT_REGISTER_FILE, 188
188 ER_BINLOG_PURGE_LOGS_CANT_FLUSH_REGISTER_FIL
ER_BINLOG_FAILED_TO_RENAME_INDEX_FILE_WHILE_REBUILDING,
188
187 ER_BINLOG_PURGE_LOGS_CANT_SYNC_INDEX_FILE,
ER_BINLOG_FAILED_TO_RUN_AFTER_FLUSH_HOOK, 188
190 ER_BINLOG_PURGE_LOGS_CANT_UPDATE_INDEX_FILE,
ER_BINLOG_FAILED_TO_RUN_AFTER_SYNC_HOOK, 188
189 ER_BINLOG_PURGE_LOGS_FAILED_TO_PURGE_LOG,
ER_BINLOG_FAILED_TO_SET_PURGE_INDEX_FILE_NAME,
188
188 ER_BINLOG_PURGE_PROHIBITED, 27
ER_BINLOG_FAILED_TO_SYNC_INDEX_FILE, 186 ER_BINLOG_RECOVERING_AFTER_CRASH_USING,
ER_BINLOG_FAILED_TO_SYNC_INDEX_FILE_IN_OPEN, 189
187 ER_BINLOG_ROW_ENGINE_AND_STMT_ENGINE,
ER_BINLOG_FAILED_TO_WRITE_DROP_FOR_TEMP_TABLES,
44
180 ER_BINLOG_ROW_INJECTION_AND_STMT_ENGINE,
ER_BINLOG_FATAL_ERROR, 40 44
ER_BINLOG_FILE_BEING_READ_NOT_PURGED, ER_BINLOG_ROW_INJECTION_AND_STMT_MODE,
186 44
ER_BINLOG_FILE_EXTENSION_NUMBER_EXHAUSTED, ER_BINLOG_ROW_LOGGING_FAILED, 37
186 ER_BINLOG_ROW_MODE_AND_STMT_ENGINE, 44
ER_BINLOG_FILE_EXTENSION_NUMBER_RUNNING_LOW, ER_BINLOG_ROW_VALUE_OPTION_IGNORED,
186 341
ER_BINLOG_FILE_NAME_TOO_LONG, 186 ER_BINLOG_ROW_VALUE_OPTION_USED_ONLY_FOR_AF
ER_BINLOG_FILE_OPEN_FAILED, 196 341
ER_BINLOG_IO_ERROR_READING_HEADER, 186 ER_BINLOG_STMT_CACHE_SIZE_GREATER_THAN_MAX,
ER_BINLOG_LOGGING_IMPOSSIBLE, 40 50
ER_BINLOG_LOGGING_INCIDENT_TO_STOP_REPLICAS, ER_BINLOG_STMT_CACHE_SIZE_TOO_LARGE,
189 192
ER_BINLOG_LOGGING_NOT_POSSIBLE, 205 ER_BINLOG_STMT_MODE_AND_NO_REPL_TABLES,
ER_BINLOG_LOGICAL_CORRUPTION, 58 57
ER_BINLOG_MALFORMED_OR_OLD_RELAY_LOG, ER_BINLOG_STMT_MODE_AND_ROW_ENGINE, 44
205 ER_BINLOG_UNABLE_TO_ROTATE_GTID_TABLE_READON
ER_BINLOG_MASTER_KEY_RECOVERY_OUT_OF_COMBINATION,
362
98 ER_BINLOG_UNSAFE_ACL_TABLE_READ_IN_DML_DDL,
ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_AUX_KEY,
114
98 ER_BINLOG_UNSAFE_AND_STMT_ENGINE, 44
ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_UNUSED_KEYS,
ER_BINLOG_UNSAFE_AUTOINC_COLUMNS, 45
98 ER_BINLOG_UNSAFE_AUTOINC_NOT_FIRST, 49
ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_OPERATE_KEY,
ER_BINLOG_UNSAFE_CREATE_IGNORE_SELECT,
98 48
ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_REENCRYPT_LOG,
ER_BINLOG_UNSAFE_CREATE_REPLACE_SELECT,
98 48
ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_ROTATE_LOGS,
ER_BINLOG_UNSAFE_CREATE_SELECT_AUTOINC,
98 48
ER_BINLOG_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE,
ER_BINLOG_UNSAFE_DEFAULT_EXPRESSION_IN_SUBST
44 364
ER_BINLOG_NEEDS_SERVERID, 150 ER_BINLOG_UNSAFE_FULLTEXT_PLUGIN, 60
ER_BINLOG_OOM_WRITING_DELETE_WHILE_OPENING_HEAP_TABLE,
ER_BINLOG_UNSAFE_INSERT_IGNORE_SELECT,
180 48
ER_BINLOG_PURGE_EMFILE, 40
459
ER_BINLOG_UNSAFE_INSERT_SELECT_UPDATE, ER_BULK_LOADER_COMPONENT_ERROR, 124
48 ER_BULK_LOADER_FILE_CONTAINS_LESS_LINES_THAN_IGN
ER_BINLOG_UNSAFE_INSERT_TWO_KEYS, 49 125
ER_BINLOG_UNSAFE_LIMIT, 45 ER_BULK_LOADER_FILE_CONTAINS_LESS_LINES_THAN_IGN
ER_BINLOG_UNSAFE_MESSAGE_AND_STATEMENT, 408
193 ER_BULK_LOADER_INFO, 408
ER_BINLOG_UNSAFE_MIXED_STATEMENT, 46 ER_BULK_LOAD_DATA_FAILED, 124
ER_BINLOG_UNSAFE_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE,
ER_BULK_LOAD_RESOURCE, 129
46 ER_BULK_LOAD_SECONDARY_ENGINE, 129
ER_BINLOG_UNSAFE_NONTRANS_AFTER_TRANS, ER_BULK_LOAD_TABLE_HAS_INSTANT_COLS,
45 129
ER_BINLOG_UNSAFE_NOWAIT, 81 ER_BULK_MERGE_INVALID_CHUNK, 128
ER_BINLOG_UNSAFE_REPLACE_SELECT, 48 ER_BULK_MERGE_LOADER_INFO, 419
ER_BINLOG_UNSAFE_ROUTINE, 30 ER_BULK_MERGE_NOT_ALL_CHUNKS_CONSUMED,
ER_BINLOG_UNSAFE_SKIP_LOCKED, 81 128
ER_BINLOG_UNSAFE_STATEMENT, 40 ER_BULK_MULTI_READER_INFO, 419
ER_BINLOG_UNSAFE_SYSTEM_FUNCTION, 45 ER_BULK_MULTI_READER_OPEN_FILE_FAILED,
ER_BINLOG_UNSAFE_SYSTEM_TABLE, 45 128
ER_BINLOG_UNSAFE_SYSTEM_VARIABLE, 45 ER_BULK_MULTI_READER_READ_FILE_FAILED,
ER_BINLOG_UNSAFE_UDF, 45 128
ER_BINLOG_UNSAFE_UPDATE_IGNORE, 48 ER_BULK_PARSER_COPY_BUFFER_SIZE_EXCEEDED,
ER_BINLOG_UNSAFE_WRITE_AUTOINC_SELECT, 125
48 ER_BULK_PARSER_COPY_BUFFER_SIZE_EXCEEDED_LOG,
ER_BINLOG_UNSAFE_XA, 75 409
ER_BINLOG_WARNING_SUPPRESSED, 190 ER_BULK_PARSER_ERROR, 136
ER_BLOBS_AND_NO_TERMINATED, 9 ER_BULK_PARSER_INCOMPLETE_ESCAPE_SEQUENCE,
ER_BLOB_CANT_HAVE_DEFAULT, 10 125
ER_BLOB_FIELD_IN_PART_FUNC_ERROR, 35 ER_BULK_PARSER_INCOMPLETE_ESCAPE_SEQUENCE_LOG
ER_BLOB_KEY_WITHOUT_LENGTH, 14 409
ER_BLOB_USED_AS_KEY, 8 ER_BULK_PARSER_MISSING_ENCLOSED_BY, 125
ER_BLOCKED_CIPHER, 425 ER_BULK_PARSER_MISSING_ENCLOSED_BY_LOG,
ER_BOOST_GEOMETRY_CENTROID_EXCEPTION, 408
63 ER_BULK_PARSER_ROW_BUFFER_MAX_TOTAL_COLS_EXCE
ER_BOOST_GEOMETRY_EMPTY_INPUT_EXCEPTION, 125
63 ER_BULK_PARSER_ROW_BUFFER_MAX_TOTAL_COLS_EXCE
ER_BOOST_GEOMETRY_INCONSISTENT_TURNS_EXCEPTION,
408
69 ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_COLUMN_T
ER_BOOST_GEOMETRY_OVERLAY_INVALID_INPUT_EXCEPTION,
125
63 ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_COLUMN_T
ER_BOOST_GEOMETRY_SELF_INTERSECTION_POINT_EXCEPTION,
409
63 ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_ENDING_EN
ER_BOOST_GEOMETRY_TURN_INFO_EXCEPTION, 125
63 ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_ENDING_EN
ER_BOOST_GEOMETRY_UNKNOWN_EXCEPTION, 409
63 ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_NULL_ESCA
ER_BOOTSTRAP_CANT_THREAD, 139 125
ER_BUFPOOL_RESIZE_INPROGRESS, 73 ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_NULL_ESCA
ER_BUILD_ID, 405 409
ER_BULK_BLOB_TOO_BIG, 137 ER_BULK_PARSER_UNEXPECTED_ENCLOSED_BY_CHARACT
ER_BULK_EXECUTOR_ERROR, 124 138
ER_BULK_EXECUTOR_INFO, 408 ER_BULK_PARSER_UNEXPECTED_ENCLOSED_BY_CHARACT
ER_BULK_JSON_INVALID, 137 433
ER_BULK_LOADER_COLUMN_TOO_BIG_FOR_LEFTOVER_BUFFER,
ER_BULK_PARSER_UNEXPECTED_END_OF_INPUT,
124 125
460
ER_BULK_PARSER_UNEXPECTED_END_OF_INPUT_LOG,ER_CANNOT_GET_SERVER_VERSION_FROM_TABLESPAC
409 357
ER_BULK_PARSER_UNEXPECTED_ROW_TERMINATOR,ER_CANNOT_GRANT_ROLES_TO_ANONYMOUS_USER,
125 103
ER_BULK_PARSER_UNEXPECTED_ROW_TERMINATOR_LOG,
ER_CANNOT_GRANT_SYSTEM_PRIV_TO_MANDATORY_R
409 105
ER_BULK_READER_COMMUNICATION_ERROR, ER_CANNOT_INTERPRET_PERSISTED_SENSITIVE_VARIA
124 397
ER_BULK_READER_COMMUNICATION_ERROR_LOG, ER_CANNOT_LOAD_FROM_TABLE_V2, 49
408 ER_CANNOT_LOCK_USER_MANAGEMENT_CACHES,
ER_BULK_READER_COULDNT_RESOLVE_HOST, 79
129 ER_CANNOT_LOG_PARTIAL_DROP_DATABASE_WITH_GT
ER_BULK_READER_ERROR, 129 67
ER_BULK_READER_FILE_DOESNT_EXIST, 129 ER_CANNOT_PERSIST_SENSITIVE_VARIABLES,
ER_BULK_READER_INFO, 408 121
ER_BULK_READER_LIBCURL_ERROR, 124 ER_CANNOT_PURGE_BINLOG_WITH_BACKUP_LOCK,
ER_BULK_READER_LIBCURL_ERROR_LOG, 408 120
ER_BULK_READER_LIBCURL_INIT_FAILED, 124 ER_CANNOT_SET_DATABASE_ENCRYPTION, 100
ER_BULK_READER_LIBCURL_INIT_FAILED_LOG, ER_CANNOT_SET_LOG_ERROR_SERVICES, 196
408 ER_CANNOT_SET_SERVER_VERSION_IN_TABLESPACE_H
ER_BULK_READER_OPEN_FILE_FAILED, 128 357
ER_BULK_READER_SERVER_ERROR, 124 ER_CANNOT_SET_TABLESPACE_ENCRYPTION,
ER_BULK_READER_SERVER_ERROR_LOG, 408 100
ER_BULK_READER_ZSTD_ERROR, 136 ER_CANNOT_SET_TABLE_ENCRYPTION, 100
ER_BULK_READER_ZSTD_ERROR_LOG, 428 ER_CANNOT_USER, 28
ER_BULK_SCANNER_INFO, 429 ER_CANNOT_USER_REFERENCED_AS_DEFINER,
ER_BULK_SORTING_LOADER_INFO, 419 113
ER_BULK_SORTING_LOADER_WAIT, 128 ER_CANNOT_USE_AUTOEXTEND_SIZE_CLAUSE,
ER_BULK_SORTING_LOADER_WRITE, 128 115
ER_BULK_WRITER_INFO, 419 ER_CANNOT_USE_ENCRYPTION_CLAUSE, 100
ER_BULK_WRITER_LIBCURL_ERROR, 128 ER_CANT_ACCESS_CAPATH, 151
ER_BULK_WRITER_LIBCURL_ERROR_LOG, 419 ER_CANT_AGGREGATE_2COLLATIONS, 21
ER_BULK_WRITER_LIBCURL_INIT_FAILED, 128 ER_CANT_AGGREGATE_3COLLATIONS, 21
ER_BULK_WRITER_LIBCURL_INIT_FAILED_LOG, ER_CANT_AGGREGATE_NCOLLATIONS, 21
419 ER_CANT_ALLOC_TABLE_OBJECT, 183
ER_CACHING_SHA2_PASSWORD_SECOND_PASSWORD_USED_INFORMATION,
ER_CANT_CHANGE_SYS_VAR_IN_READ_ONLY_MODE,
355 126
ER_CALL_ME_LOCALHOST, 147 ER_CANT_CHANGE_TX_CHARACTERISTICS, 39
ER_CANNOT_ADD_FOREIGN, 17 ER_CANT_CHECK_PID_PATH, 259
ER_CANNOT_ADD_FOREIGN_BASE_COL_STORED, ER_CANT_CHOWN_DATADIR, 150
75 ER_CANT_COMBINE_ANONYMOUS_TO_GTID_AND_AUTOP
ER_CANNOT_ADD_FOREIGN_BASE_COL_VIRTUAL, 114
73 ER_CANT_CREATE_ADMIN_THREAD, 354
ER_CANNOT_ALTER_SRID_DUE_TO_INDEX, 86 ER_CANT_CREATE_CACHE_FOR_DB_OPT, 183
ER_CANNOT_CHANGE_TO_ROOT_DIR, 195 ER_CANT_CREATE_DB, 3
ER_CANNOT_CONVERT_STRING, 102 ER_CANT_CREATE_FILE, 3
ER_CANNOT_CREATE_VIRTUAL_INDEX_CONSTRAINT, ER_CANT_CREATE_GEOMETRY_OBJECT, 30
73 ER_CANT_CREATE_HANDLER_FILE, 35
ER_CANNOT_DISCARD_TEMPORARY_TABLE, 61 ER_CANT_CREATE_HANDLER_OBJECT_FOR_TABLE,
ER_CANNOT_DROP_COLUMN_FUNCTIONAL_INDEX, 183
94 ER_CANT_CREATE_HANDLE_MGR_THREAD, 140
ER_CANNOT_EXECUTE_IN_PRIMARY, 129 ER_CANT_CREATE_INTERRUPT_THREAD, 146
ER_CANNOT_FIND_KEY_IN_KEYRING, 74 ER_CANT_CREATE_NAMED_PIPES_THREAD, 146
ER_CANT_CREATE_PID_FILE, 145
461
ER_CANT_CREATE_SCHEDULER_THREAD, 142 ER_CANT_OPEN_DB_OPT_USING_DEFAULT_CHARSET,
ER_CANT_CREATE_SHM_THREAD, 146 183
ER_CANT_CREATE_SHUTDOWN_THREAD, 145 ER_CANT_OPEN_DIR, 185
ER_CANT_CREATE_TABLE, 3 ER_CANT_OPEN_ERROR_LOG, 151
ER_CANT_CREATE_TABLE_SHARE_FROM_FRM, ER_CANT_OPEN_FILE, 4
183 ER_CANT_OPEN_FRM_FILE, 163
ER_CANT_CREATE_TCPIP_THREAD, 146 ER_CANT_OPEN_LIBRARY, 12
ER_CANT_CREATE_TEST_FILE, 145 ER_CANT_OPEN_TABLE_MYSQL_PROC, 184
ER_CANT_CREATE_THREAD, 12 ER_CANT_PARSE_STORED_ROUTINE_BODY, 184
ER_CANT_CREATE_USER_WITH_GRANT, 29 ER_CANT_PROCESS_EXPRESSION_FOR_GENERATED_COLU
ER_CANT_CREATE_UUID, 144 370
ER_CANT_DETACH_SESSION_LEFT_BY_PLUGIN, ER_CANT_READ_DIR, 4
171 ER_CANT_READ_ERRMSGS, 149
ER_CANT_DO_IMPLICIT_COMMIT_IN_TRX_WHEN_GTID_NEXT_IS_SET,
ER_CANT_READ_FRM_FILE, 163
52 ER_CANT_READ_TABLE_MYSQL_PROC, 185
ER_CANT_DO_THIS_DURING_AN_TRANSACTION, ER_CANT_REMOVE_ALL_FIELDS, 9
15 ER_CANT_REMOVE_PID_FILE, 145
ER_CANT_DROP_FIELD_OR_KEY, 9 ER_CANT_RENAME_LOG_TABLE, 39
ER_CANT_ENFORCE_GTID_CONSISTENCY_WITH_ONGOING_GTID_VIOLATING_TX,
ER_CANT_REOPEN_TABLE, 12
69 ER_CANT_REPLICATE_ANONYMOUS_WITH_AUTO_POSITION,
ER_CANT_EXECUTE_COMMAND_WITH_ASSIGNED_GTID_NEXT,
344
121 ER_CANT_REPLICATE_ANONYMOUS_WITH_GTID_MODE_ON,
ER_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION, 344
53 ER_CANT_REPLICATE_GTID_WITH_GTID_MODE_OFF,
ER_CANT_FIND_DL_ENTRY, 12 344
ER_CANT_FIND_SYSTEM_REC, 4 ER_CANT_RESET_SOURCE, 75
ER_CANT_FIND_UDF, 11 ER_CANT_SAVE_GTIDS, 151
ER_CANT_GET_STAT, 4 ER_CANT_SET_DATA_DIR, 353
ER_CANT_HASH_DO_AND_IGNORE_RULES, 151 ER_CANT_SET_ERROR_LOG_SERVICE, 90
ER_CANT_IDENTIFY_CHARSET_USING_DEFAULT, ER_CANT_SET_ERROR_SUPPRESSION_LIST, 92
184 ER_CANT_SET_ERROR_SUPPRESSION_LIST_FROM_COMMAN
ER_CANT_INCREASE_MAX_OPEN_FILES, 148 348
ER_CANT_INITIALIZE_BUILTIN_PLUGINS, 150 ER_CANT_SET_GTID_MODE, 68
ER_CANT_INITIALIZE_DYNAMIC_PLUGINS, 150 ER_CANT_SET_GTID_NEXT_LIST_TO_NON_NULL_WHEN_GTID
ER_CANT_INITIALIZE_EARLY_PLUGINS, 150 53
ER_CANT_INITIALIZE_GTID, 150 ER_CANT_SET_GTID_NEXT_TO_ANONYMOUS_WHEN_GTID_M
ER_CANT_INITIALIZE_UDF, 11 52
ER_CANT_INIT_DBS, 149 ER_CANT_SET_GTID_NEXT_TO_AUTOMATIC_TAGGED_WHEN
ER_CANT_INIT_SCHEDULER_THREAD, 142 130
ER_CANT_INIT_TC_LOG, 141 ER_CANT_SET_GTID_NEXT_TO_GTID_WHEN_GTID_MODE_IS
ER_CANT_INIT_TIMER, 151 52
ER_CANT_JOIN_SHUTDOWN_THREAD, 151 ER_CANT_SET_GTID_NEXT_WHEN_OWNING_GTID,
ER_CANT_LOCK, 4 53
ER_CANT_LOCK_LOG_TABLE, 38 ER_CANT_SET_GTID_PURGED_DUE_SETS_CONSTRAINTS,
ER_CANT_LOCK_TABLE, 183 79
ER_CANT_LOCK_TABLESPACE, 183 ER_CANT_SET_GTID_PURGED_WHEN_GTID_EXECUTED_IS_N
ER_CANT_MODIFY_SRID_0, 91 56
ER_CANT_MODIFY_SRS_USED_BY_COLUMN, 91 ER_CANT_SET_GTID_PURGED_WHEN_OWNED_GTIDS_IS_NO
ER_CANT_OPEN_AND_LOCK_PRIVILEGE_TABLES, 57
163 ER_CANT_SET_HANDLER_REFERENCE_FOR_TABLE,
ER_CANT_OPEN_CA, 151 183
ER_CANT_OPEN_DATADIR_AFTER_UPGRADE_FAILURE,ER_CANT_SET_PATH_FOR, 185
185 ER_CANT_SET_PERSISTED, 126
462
ER_CANT_SET_SQL_AFTER_OR_BEFORE_GTIDS_WITH_ANONYMOUS_TO_GTID,
ER_CHANGE_RPL_SRC_WRONG_COMPRESSION_ALGOR
115 116
ER_CANT_SET_UP_PERSISTED_VALUES, 151 ER_CHANGE_SOURCE_PASSWORD_LENGTH, 64
ER_CANT_SET_VARIABLE_WHEN_OWNING_GTID, ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORI
71 106
ER_CANT_START_ERROR_LOG_SERVICE, 195 ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORI
ER_CANT_STAT_DATADIR, 150 107
ER_CANT_STAT_FILE, 189 ER_CHANGE_SOURCE_WRONG_COMPRESSION_LEVEL_C
ER_CANT_UPDATE_TABLE_IN_CREATE_TABLE_SELECT,
106
50 ER_CHARACTER_SET_MISMATCH, 113
ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG, ER_CHECKING_TABLE, 182
31 ER_CHECKREAD, 4
ER_CANT_UPDATE_WITH_READLOCK, 18 ER_CHECK_CONSTRAINT_CLAUSE_USING_FK_REFER_AC
ER_CANT_UPGRADE_GENERATED_COLUMNS_TO_DD,99
183 ER_CHECK_CONSTRAINT_DUP_NAME, 99
ER_CANT_USE_ANONYMOUS_TO_GTID_WITH_GTID_MODE_NOT_ON,
ER_CHECK_CONSTRAINT_FUNCTION_IS_NOT_ALLOWED,
114 99
ER_CANT_USE_AUTO_POSITION_WITH_GTID_MODE_OFF,
ER_CHECK_CONSTRAINT_NAMED_FUNCTION_IS_NOT_AL
69 99
ER_CANT_USE_GTID_ONLY_WITH_GTID_MODE_NOT_ON,
ER_CHECK_CONSTRAINT_NOT_FOUND, 99
119 ER_CHECK_CONSTRAINT_REFERS_AUTO_INCREMENT_C
ER_CANT_USE_OPTION_HERE, 19 99
ER_CANT_USE_SAME_UUID_AS_GROUP_NAME, ER_CHECK_CONSTRAINT_REFERS_UNKNOWN_COLUMN,
115 99
ER_CANT_USE_SAME_UUID_AS_VIEW_CHANGE_UUID,ER_CHECK_CONSTRAINT_ROW_VALUE, 99
116 ER_CHECK_CONSTRAINT_VARIABLES, 99
ER_CANT_WAIT_FOR_EXECUTED_GTID_SET_WHILE_OWNING_A_GTID,
ER_CHECK_CONSTRAINT_VIOLATED, 99
73 ER_CHECK_NOT_IMPLEMENTED, 15
ER_CAPACITY_EXCEEDED, 73 ER_CHECK_NO_SUCH_TABLE, 15
ER_CAPACITY_EXCEEDED_IN_PARSER, 74 ER_CHECK_TABLE_INSTANT_VERSION_BIT_SET,
ER_CAPACITY_EXCEEDED_IN_RANGE_OPTIMIZER, 410
73 ER_CHECK_TABLE_MIN_REC_FLAG_NOT_SET,
ER_CA_SELF_SIGNED, 143 412
ER_CHANGED_ENFORCE_GTID_CONSISTENCY, ER_CHECK_TABLE_MIN_REC_FLAG_SET, 412
141 ER_CLAUSE_IGNORED, 138
ER_CHANGED_GTID_MODE, 141 ER_CLIENT_DOES_NOT_SUPPORT, 86
ER_CHANGED_MAX_CONNECTIONS, 148 ER_CLIENT_FILE_PRIVILEGE_FOR_REPLICATION_CHECK
ER_CHANGED_MAX_OPEN_FILES, 148 123
ER_CHANGED_TABLE_OPEN_CACHE, 148 ER_CLIENT_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE
ER_CHANGE_REPLICATION_SOURCE_NO_OPTIONS_FOR_GTID_ONLY,
93
119 ER_CLIENT_INTERACTION_TIMEOUT, 116
ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POSITION_WITH_GTID_ONLY,
ER_CLIENT_KEYRING_UDF_KEY_INVALID, 107
119 ER_CLIENT_KEYRING_UDF_KEY_TOO_LONG, 107
ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POS_WITHOUT_POSITIONS,
ER_CLIENT_KEYRING_UDF_KEY_TYPE_INVALID,
119 107
ER_CHANGE_REP_SOURCE_CANT_DISABLE_GTID_ONLY_WITHOUT_POSITIONS,
ER_CLIENT_KEYRING_UDF_KEY_TYPE_TOO_LONG,
119 107
ER_CHANGE_REP_SOURCE_CANT_DISABLE_REQ_ROW_FORMAT_WITH_GTID_ONLY,
ER_CLIENT_LOCAL_FILES_DISABLED, 109
119 ER_CLIENT_PRIVILEGE_CHECKS_USER_CANNOT_BE_AN
ER_CHANGE_REP_SOURCE_GR_CHANNEL_WITH_GTID_MODE_NOT_ON,
107
119 ER_CLIENT_PRIVILEGE_CHECKS_USER_CORRUPT,
ER_CHANGE_RPL_INFO_REPOSITORY_FAILURE, 107
50 ER_CLIENT_PRIVILEGE_CHECKS_USER_DOES_NOT_EXIS
107
463
ER_CLIENT_PRIVILEGE_CHECKS_USER_NEEDS_RPL_APPLIER_PRIV,
ER_COMPONENTS_CANT_SATISFY_DEPENDENCY,
107 78
ER_CLIENT_QUERY_FAILURE_INVALID_NON_ROW_FORMAT,
ER_COMPONENTS_CANT_UNLOAD, 79
108 ER_COMPONENTS_FAILED_TO_ACQUIRE_SERVICE_IMPLEME
ER_CLONE_CHARSET, 103 205
ER_CLONE_CLIENT_TRACE, 352 ER_COMPONENTS_INFRASTRUCTURE_BOOTSTRAP,
ER_CLONE_CONFIG, 103 143
ER_CLONE_CREATE_HANDLER_FAIL_TRACE, 202 ER_COMPONENTS_INFRASTRUCTURE_MANIFEST_DEINIT,
ER_CLONE_DDL_IN_PROGRESS, 85 385
ER_CLONE_DISALLOWED, 103 ER_COMPONENTS_INFRASTRUCTURE_MANIFEST_INIT,
ER_CLONE_DISK_SPACE, 103 385
ER_CLONE_DONOR, 102 ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN,
ER_CLONE_DONOR_TRACE, 352 143
ER_CLONE_DONOR_VERSION, 102 ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN_END,
ER_CLONE_ENCRYPTION, 103 418
ER_CLONE_HANDLER_EXIST_TRACE, 202 ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN_START,
ER_CLONE_IN_PROGRESS, 103 418
ER_CLONE_LOOPBACK, 103 ER_COMPONENTS_LOAD_CANT_INITIALIZE, 78
ER_CLONE_NETWORK_PACKET, 109 ER_COMPONENTS_LOAD_CANT_REGISTER_SERVICE_IMPLE
ER_CLONE_OS, 103 78
ER_CLONE_PLATFORM, 103 ER_COMPONENTS_NO_SCHEME, 78
ER_CLONE_PLUGIN_MATCH, 103 ER_COMPONENTS_NO_SCHEME_SERVICE, 78
ER_CLONE_PLUGIN_NOT_LOADED_TRACE, 202 ER_COMPONENTS_PERSIST_LOADER_BOOTSTRAP,
ER_CLONE_PROTOCOL, 102 143
ER_CLONE_PROTOCOL_TRACE, 352 ER_COMPONENTS_UNLOAD_CANT_DEINITIALIZE,
ER_CLONE_SERVER_TRACE, 352 78
ER_CLONE_SHUTDOWN_TRACE, 366 ER_COMPONENTS_UNLOAD_CANT_UNREGISTER_SERVICE,
ER_CLONE_SYS_CONFIG, 103 79
ER_CLONE_TOO_MANY_CONCURRENT_CLONES, ER_COMPONENTS_UNLOAD_DUPLICATE_IN_GROUP,
85 79
ER_CMD_NEED_SUPER_OR_CREATE_SPATIAL_REFERENCE_SYSTEM,
ER_COMPONENTS_UNLOAD_NOT_LOADED, 78
138 ER_COMPONENT_EE_DATA_DECRYPTION_ERROR,
ER_COALESCE_ONLY_ON_HASH_PARTITION, 36 405
ER_COALESCE_PARTITION_NO_PARTITION, 36 ER_COMPONENT_EE_DATA_ENCRYPTION_ERROR,
ER_COLLATION_CHARSET_MISMATCH, 20 405
ER_COLUMNACCESS_DENIED_ERROR, 13 ER_COMPONENT_EE_DATA_LENGTH_OUT_OF_RAGE,
ER_COLUMN_CHANGE_SIZE, 104 404
ER_COLUMN_CHECK_CONSTRAINT_REFERENCES_OTHER_COLUMN,
ER_COMPONENT_EE_DATA_SIGN_ERROR, 405
99 ER_COMPONENT_EE_FUNCTION_DEREGISTRATION_FAILURE
ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2, 404
54 ER_COMPONENT_EE_FUNCTION_INVALID_ALGORITHM,
ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE, 404
38 ER_COMPONENT_EE_FUNCTION_INVALID_ARGUMENTS,
ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE_V2,
404
61 ER_COMPONENT_EE_FUNCTION_KEY_LENGTH_OUT_OF_RA
ER_COMMAND_BACKEND_FAILED_TO_FETCH_SECURITY_CTX,
404
122 ER_COMPONENT_EE_FUNCTION_PRIVATE_KEY_GENERATIO
ER_COMMAND_SERVICE_BACKEND_FAILED, 123 404
ER_COMMENT_CONTAINS_INVALID_STRING, 121 ER_COMPONENT_EE_FUNCTION_PUBLIC_KEY_GENERATION
ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG, 30 404
ER_COMPONENTS_CANT_ACQUIRE_SERVICE_IMPLEMENTATION,
ER_COMPONENT_EE_FUNCTION_REGISTRATION_FAILURE,
78 404
ER_COMPONENTS_CANT_LOAD, 78 ER_COMPONENT_EE_INSUFFICIENT_LENGTH,
ER_COMPONENTS_CANT_RELEASE_SERVICE, 79 405
464
ER_COMPONENT_EE_OPENSSL_ERROR, 405 ER_CONNECTION_CONTROL_STATUS_VAR_REG_FAILED
ER_COMPONENT_EE_SYS_VAR_DEREGISTRATION_FAILURE,
433
404 ER_CONNECTION_CONTROL_STATUS_VAR_UNREG_FAIL
ER_COMPONENT_EE_SYS_VAR_REGISTRATION_FAILURE,
433
404 ER_CONNECTION_CONTROL_VARIABLE_REGISTRATION_
ER_COMPONENT_FILTER_CONFUSED, 219 434
ER_COMPONENT_FILTER_DIAGNOSTICS, 90 ER_CONNECTION_CONTROL_VARIABLE_UNREGISTRATIO
ER_COMPONENT_FILTER_FLABBERGASTED, 84 434
ER_COMPONENT_FILTER_WRONG_VALUE, 341 ER_CONNECTION_HANDLING_OOM, 145
ER_COMPONENT_KEYRING_OCI_CREATE_PRIVATE_KEY,
ER_CONNECTION_METADATA, 16
406 ER_CONNECT_TO_FOREIGN_DATA_SOURCE, 30
ER_COMPONENT_KEYRING_OCI_INVALID_CONFIG_VAR,
ER_CONNECT_TO_SOURCE, 18
418 ER_CONN_ATTR_TRUNCATED, 158
ER_COMPONENT_KEYRING_OCI_OPEN_KEY_FILE, ER_CONN_CONTROL_DELAY_ACTION_INIT_FAILED,
406 220
ER_COMPONENT_KEYRING_OCI_READ_KEY_FILE, ER_CONN_CONTROL_ERROR_MSG, 218
406 ER_CONN_CONTROL_EVENT_COORDINATOR_INIT_FAILE
ER_COMPONENT_LOCK, 414 220
ER_COMPONENT_MANIPULATE_ROW_FAILED, 79 ER_CONN_CONTROL_FAILED_TO_SET_CONN_DELAY,
ER_COMPONENT_MASKING_ABI, 414 220
ER_COMPONENT_MASKING_ABI_REASON, 414 ER_CONN_CONTROL_FAILED_TO_UPDATE_CONN_DELAY
ER_COMPONENT_MASKING_CANNOT_ACCESS_TABLE,220
414 ER_CONN_CONTROL_INVALID_CONN_DELAY_TYPE,
ER_COMPONENT_MASKING_INVALID_FLUSH_INTERVAL_VALUE,
220
424 ER_CONN_CONTROL_STAT_CONN_DELAY_TRIGGERED_R
ER_COMPONENT_MASKING_NOTIFICATION_REGISTRATION_FAILURE,
220
425 ER_CONN_CONTROL_STAT_CONN_DELAY_TRIGGERED_U
ER_COMPONENT_MASKING_OTHER_ERROR, 414 220
ER_COMPONENT_MASKING_RANDOM_CREATE, ER_CONN_INIT_CONNECT_IGNORED, 220
414 ER_CONN_INIT_CONNECT_IGNORED_MFA, 415
ER_COMPONENT_MASKING_RANDOM_CREATE_REASON,ER_CONN_LIMIT, 397
414 ER_CONN_PER_THREAD_NO_THREAD, 155
ER_COMPONENT_MASKING_VAR_REGISTRATION_FAILURE,
ER_CONN_PIP_CANT_CREATE_EVENT, 155
425 ER_CONN_PIP_CANT_CREATE_PIPE, 155
ER_COMPONENT_SERVICE_CALL, 414 ER_CONN_SHM_CANT_CREATE_CONNECTION,
ER_COMPONENT_SERVICE_CALL_RESULT, 414 155
ER_COMPONENT_TABLE_INCORRECT, 79 ER_CONN_SHM_CANT_CREATE_SERVICE, 155
ER_COMPONENT_UNLOCK, 414 ER_CONN_SHM_LISTENER, 155
ER_CONCURRENT_PROCEDURE_USAGE, 120 ER_CONN_SOCKET_ACCEPT_FAILED, 158
ER_CONDITIONAL_DEBUG, 405 ER_CONN_SOCKET_SELECT_FAILED, 158
ER_COND_ITEM_TOO_LONG, 43 ER_CONN_TCP_ADDRESS, 156
ER_CONFIG_OPTION_WITHOUT_GROUP, 153 ER_CONN_TCP_BIND_FAIL, 156
ER_CONFIRMING_THE_FUTURE, 146 ER_CONN_TCP_BIND_RETRY, 156
ER_CONFLICTING_DECLARATIONS, 23 ER_CONN_TCP_CANT_RESET_V6ONLY, 156
ER_CONFLICT_FN_PARSE_ERROR, 42 ER_CONN_TCP_CANT_RESOLVE_HOSTNAME,
ER_CONNECTIONS_SHUTDOWN_END, 418 156
ER_CONNECTIONS_SHUTDOWN_START, 418 ER_CONN_TCP_CREATED, 156
ER_CONNECTION_ABORTED, 341 ER_CONN_TCP_ERROR_WITH_STRERROR, 156
ER_CONNECTION_CONTROL_FAILED_DEINIT, 434 ER_CONN_TCP_IPV6_AVAILABLE, 156
ER_CONNECTION_CONTROL_FAILED_TO_GET_ATTRIBUTE_FROM_SECURITY_CTX,
ER_CONN_TCP_IPV6_UNAVAILABLE, 156
434 ER_CONN_TCP_IP_NOT_LOGGED, 156
ER_CONNECTION_CONTROL_FAILED_TO_GET_SECURITY_CTX,
ER_CONN_TCP_IS_THERE_ANOTHER_USING_PORT,
434 156
ER_CONN_TCP_LISTEN_FAIL, 157
465
ER_CONN_TCP_NO_SOCKET, 156 ER_CTE_RECURSIVE_REQUIRES_SINGLE_REFERENCE,
ER_CONN_TCP_RESOLVE_INFO, 157 81
ER_CONN_TCP_START_FAIL, 157 ER_CTE_RECURSIVE_REQUIRES_UNION, 81
ER_CONN_UNIX_IS_THERE_ANOTHER_USING_SOCKET, ER_CURRENT_PASSWORD_CANNOT_BE_RETAINED,
156 105
ER_CONN_UNIX_LISTEN_FAILED, 157 ER_CURRENT_PASSWORD_NOT_REQUIRED, 104
ER_CONN_UNIX_LOCK_FILE_CANT_CLOSE, 158 ER_CUT_VALUE_GROUP_CONCAT, 20
ER_CONN_UNIX_LOCK_FILE_CANT_CREATE, 157 ER_CYCLE_TIMER_IS_NOT_AVAILABLE, 202
ER_CONN_UNIX_LOCK_FILE_CANT_DELETE, 158 ER_DATABASE_NAME, 42
ER_CONN_UNIX_LOCK_FILE_CANT_OPEN, 157 ER_DATA_DIRECTORY_UNUSABLE, 350
ER_CONN_UNIX_LOCK_FILE_CANT_READ, 157 ER_DATA_DIRECTORY_UNUSABLE_DELETABLE,
ER_CONN_UNIX_LOCK_FILE_CANT_SYNC, 158 365
ER_CONN_UNIX_LOCK_FILE_CANT_WRITE, 157 ER_DATA_INCOMPATIBLE_WITH_VECTOR, 136
ER_CONN_UNIX_LOCK_FILE_EMPTY, 157 ER_DATA_OUT_OF_RANGE, 46
ER_CONN_UNIX_LOCK_FILE_FAIL, 157 ER_DATA_TOO_LONG, 29
ER_CONN_UNIX_LOCK_FILE_GIVING_UP, 157 ER_DATETIME_FUNCTION_OVERFLOW, 31
ER_CONN_UNIX_LOCK_FILE_PIDLESS, 157 ER_DA_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATOR
ER_CONN_UNIX_NO_BIND_NO_START, 157 104
ER_CONN_UNIX_NO_FD, 157 ER_DA_CANT_OPEN_ERROR_LOG, 113
ER_CONN_UNIX_PATH_TOO_LONG, 157 ER_DA_CONN_LIMIT, 120
ER_CONN_UNIX_PID_CLAIMED_SOCKET_FILE, ER_DA_ERROR_LOG_COMPONENT_FLUSH_FAILED,
156 117
ER_CONSECUTIVE_REORG_PARTITIONS, 36 ER_DA_ERROR_LOG_MULTIPLE_FILTERS, 113
ER_CONSTRAINT_NOT_FOUND, 108 ER_DA_ERROR_LOG_TABLE_DISABLED, 113
ER_CONVERT_MULTI_VALUE, 415 ER_DA_GLOBAL_CONN_LIMIT, 120
ER_CON_COUNT_ERROR, 5 ER_DA_GRP_RPL_RECOVERY_ENDPOINT_FORMAT,
ER_CORE_VALUES, 146 111
ER_CORRUPTED_JSON_DIFF, 86 ER_DA_GRP_RPL_RECOVERY_ENDPOINT_INVALID,
ER_CORRUPT_HELP_DB, 19 111
ER_COULD_NOT_APPLY_JSON_DIFF, 86 ER_DA_GRP_RPL_STARTED_AUTO_REJOIN, 106
ER_COULD_NOT_CREATE_WINDOWS_REGISTRY_KEY,ER_DA_INVALID_CONDITION_NUMBER, 51
350 ER_DA_NO_ERROR_LOG_PARSER_CONFIGURED,
ER_COULD_NOT_REINITIALIZE_AUDIT_LOG_FILTERS, 113
345 ER_DA_OOM, 109
ER_CRASHED_ON_REPAIR, 16 ER_DA_PLUGIN_INSTALL_ERROR, 104
ER_CRASHED_ON_USAGE, 16 ER_DA_RPL_GTID_TABLE_CANNOT_OPEN, 104
ER_CREATED_SYSTEM_WITH_VERSION, 201 ER_DA_SSL_FIPS_MODE_ERROR, 119
ER_CREATE_FILEGROUP_FAILED, 37 ER_DA_SSL_LIBRARY_ERROR, 104
ER_CREATE_SELECT_WITH_GIPK_DISALLOWED_IN_SBR,ER_DA_UDF_INVALID_ARGUMENT_TO_SET_CHARSET,
122 109
ER_CREATING_NEW_UUID, 144 ER_DA_UDF_INVALID_CHARSET, 108
ER_CREATING_NEW_UUID_FIRST_START, 195 ER_DA_UDF_INVALID_CHARSET_SPECIFIED, 108
ER_CREDENTIALLESS_AUTO_USER_BAD, 144 ER_DA_UDF_INVALID_COLLATION, 108
ER_CREDENTIALS_CONTRADICT_TO_HISTORY, ER_DA_UDF_INVALID_EXTENSION_ARGUMENT_TYPE,
85 108
ER_CTE_MAX_RECURSION_DEPTH, 85 ER_DA_UDF_INVALID_RETURN_TYPE_TO_SET_CHARSET,
ER_CTE_RECURSIVE_FORBIDDEN_JOIN_ORDER, 109
81 ER_DA_UNKNOWN_ERROR_NUMBER, 104
ER_CTE_RECURSIVE_FORBIDS_AGGREGATION, ER_DBACCESS_DENIED_ERROR, 6
81 ER_DBUG_CHECK_SHARES_DROPPED, 172
ER_CTE_RECURSIVE_NOT_UNION, 122 ER_DBUG_CHECK_SHARES_INFO, 171
ER_CTE_RECURSIVE_REQUIRES_NONRECURSIVE_FIRST,ER_DBUG_CHECK_SHARES_OPEN, 171
81 ER_DB_ACCESS_DENIED, 103
ER_DB_CREATE_EXISTS, 4
466
ER_DB_DROP_EXISTS, 4 ER_DD_UPGRADE_FAILED_TO_CREATE_INDEX_STATS,
ER_DB_DROP_RMDIR, 4 200
ER_DB_DROP_RMDIR2, 83 ER_DD_UPGRADE_FAILED_TO_CREATE_TABLE_STATS,
ER_DB_OPT_NOT_FOUND_USING_DEFAULT_CHARSET,200
184 ER_DD_UPGRADE_FAILED_TO_FETCH_TABLES,
ER_DDL_MSG_1, 391 199
ER_DD_ABORTING_PARTIAL_UPGRADE, 162 ER_DD_UPGRADE_FAILED_TO_FETCH_TABLESPACES,
ER_DD_CACHE_NOT_EMPTY_AT_SHUTDOWN, 199
140 ER_DD_UPGRADE_FAILED_TO_RESOLVE_TABLESPACE_E
ER_DD_CANT_CREATE_OBJECT_KEY, 140 199
ER_DD_CANT_CREATE_SP, 183 ER_DD_UPGRADE_FAILED_TO_UPDATE_VER_NO_IN_TAB
ER_DD_CANT_FETCH_TABLE_DATA, 183 206
ER_DD_CANT_FIX_SE_DATA, 183 ER_DD_UPGRADE_FOUND_PARTIALLY_UPGRADED_DD_A
ER_DD_CANT_GET_OBJECT_KEY, 140 200
ER_DD_CANT_RESOLVE_VIEW, 152 ER_DD_UPGRADE_FOUND_PARTIALLY_UPGRADED_DD_C
ER_DD_CREATED_FOR_UPGRADE, 162 200
ER_DD_ERROR_CREATING_ENTRY, 183 ER_DD_UPGRADE_INDEX_STATS_MIGRATE_COMPLETED
ER_DD_FAILSAFE, 139 200
ER_DD_FRM_EXISTS_FOR_TABLE, 162 ER_DD_UPGRADE_INFO_FILE_CLOSE_FAILED,
ER_DD_INITIALIZE, 206 200
ER_DD_INITIALIZE_SQL_ERROR, 346 ER_DD_UPGRADE_INFO_FILE_OPEN_FAILED, 200
ER_DD_INIT_FAILED, 140 ER_DD_UPGRADE_OFF, 206
ER_DD_INIT_UPGRADE_FAILED, 140 ER_DD_UPGRADE_RENAME_IDX_STATS_FILE_FAILED,
ER_DD_METADATA_NOT_FOUND, 140 199
ER_DD_MINOR_DOWNGRADE, 206 ER_DD_UPGRADE_SCHEMA_UNAVAILABLE, 206
ER_DD_MINOR_DOWNGRADE_VERSION_NOT_SUPPORTED,
ER_DD_UPGRADE_SDI_INFO_UPDATE_FAILED,
206 201
ER_DD_NO_VERSION_FOUND, 206 ER_DD_UPGRADE_SE_LOGS_FAILED, 200
ER_DD_NO_WRITES_NO_REPOPULATION, 139 ER_DD_UPGRADE_START, 200
ER_DD_OBJECT_RELEASER_REMAINS, 140 ER_DD_UPGRADE_TABLESPACE_MIGRATION_FAILED,
ER_DD_OBJECT_REMAINS, 140 200
ER_DD_OBJECT_REMAINS_IN_RELEASER, 140 ER_DD_UPGRADE_TABLE_INTACT_ERROR, 204
ER_DD_RESTART, 206 ER_DD_UPGRADE_TABLE_STATS_MIGRATE_COMPLETED
ER_DD_SCHEMA_NOT_FOUND, 162 200
ER_DD_SE_INIT_FAILED, 162 ER_DD_UPGRADE_VERSION_NOT_SUPPORTED,
ER_DD_TABLESPACE_NOT_FOUND, 152 206
ER_DD_TABLE_NOT_FOUND, 162 ER_DD_UPGRADE_VIEW_COLUMN_NAME_TOO_LONG,
ER_DD_TRG_CANT_ADD, 152 205
ER_DD_TRG_CONNECTION_COLLATION_MISSING, ER_DD_VERSION_FOUND, 139
152 ER_DD_VERSION_INSTALLED, 139
ER_DD_TRG_DB_COLLATION_MISSING, 152 ER_DD_VERSION_UNSUPPORTED, 139
ER_DD_TRG_DEFINER_OOM, 152 ER_DD_VIEW_CANT_ALLOC_CHARSET, 140
ER_DD_TRG_FILE_UNREADABLE, 152 ER_DD_VIEW_CANT_CREATE, 140
ER_DD_UPDATE_DATADIR_FLAG_FAIL, 429 ER_DD_VIEW_WITHOUT_DEFINER, 152
ER_DD_UPDATING_PLUGIN_MD_FAILED, 140 ER_DEBUG_SYNC_EXECUTED, 141
ER_DD_UPGRADE, 206 ER_DEBUG_SYNC_HIT, 141
ER_DD_UPGRADE_COMPLETED, 363 ER_DEBUG_SYNC_HIT_LIMIT, 43
ER_DD_UPGRADE_DD_OPEN_FAILED, 199 ER_DEBUG_SYNC_OOM, 141
ER_DD_UPGRADE_DD_POPULATED, 199 ER_DEBUG_SYNC_THREAD_MAX, 141
ER_DD_UPGRADE_FAILED_FIND_VALID_DATA_DIR, ER_DEBUG_SYNC_TIMEOUT, 43
200 ER_DEFAULT_AS_VAL_GENERATED, 95
ER_DD_UPGRADE_FAILED_INIT_DD_SE, 200 ER_DEFAULT_SE_UNAVAILABLE, 151
ER_DD_UPGRADE_FAILED_TO_ACQUIRE_TABLESPACE,
ER_DEFAULT_VAL_GENERATED_FUNCTION_IS_NOT_ALL
199 95
467
ER_DEFAULT_VAL_GENERATED_NAMED_FUNCTION_IS_NOT_ALLOWED,
ER_DROP_INDEX_FK, 38
95 ER_DROP_LAST_PARTITION, 36
ER_DEFAULT_VAL_GENERATED_NON_PRIOR, 95 ER_DROP_PARTITION_NON_EXISTENT, 35
ER_DEFAULT_VAL_GENERATED_REF_AUTO_INC, ER_DROP_PK_COLUMN_TO_DROP_GIPK, 122
95 ER_DUPLICATED_VALUE_IN_TYPE, 22
ER_DEFAULT_VAL_GENERATED_ROW_VALUE, 95 ER_DUPLICATE_OPTION_KEY, 80
ER_DEFAULT_VAL_GENERATED_VARIABLES, 95 ER_DUPLICATE_SYS_VAR, 347
ER_DEFINITION_CONTAINS_INVALID_STRING, ER_DUPLICATE_TABLE_LOCK, 81
121 ER_DUP_ARGUMENT, 18
ER_DEPART_WITH_GRACE, 143 ER_DUP_ENTRY, 7
ER_DEPENDENT_BY_CHECK_CONSTRAINT, 110 ER_DUP_ENTRY_AUTOINCREMENT_CASE, 39
ER_DEPENDENT_BY_DEFAULT_GENERATED_VALUE, ER_DUP_ENTRY_WITH_KEY_NAME, 40
95 ER_DUP_FD_OPEN_FAILED, 195
ER_DEPENDENT_BY_FUNCTIONAL_INDEX, 100 ER_DUP_FIELDNAME, 7
ER_DEPENDENT_BY_GENERATED_COLUMN, 68 ER_DUP_INDEX, 56
ER_DEPENDENT_BY_PARTITION_FUNC, 102 ER_DUP_KEY, 4
ER_DEPRECATED_NATIONAL, 91 ER_DUP_KEYNAME, 7
ER_DEPRECATED_PERSISTED_VARIABLE_WITH_ALIAS,
ER_DUP_LIST_ENTRY, 62
390 ER_DUP_SIGNAL_SET, 43
ER_DEPRECATED_SYNTAX_NO_REPLACEMENT, ER_DUP_UNIQUE, 14
205 ER_DUP_UNKNOWN_IN_INDEX, 58
ER_DEPRECATED_SYNTAX_WITH_REPLACEMENT, ER_EMPTY_PIPELINE_FOR_ERROR_LOG_SERVICE,
205 90
ER_DEPRECATED_TIMESTAMP_IMPLICIT_DEFAULTS, ER_EMPTY_PRIVILEGE_NAME_IGNORED, 381
144 ER_EMPTY_QUERY, 7
ER_DEPRECATED_UTF8_ALIAS, 91 ER_ENDING_INIT, 346
ER_DEPRECATE_MSG_NO_REPLACEMENT, 205 ER_END_INITFILE, 148
ER_DEPRECATE_MSG_WITH_REPLACEMENT, 193 ER_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_
ER_DEPRECATE_NON_COMPOSABLE_MULTIPLE_ENGINE,
69
137 ER_ENGINE_ATTRIBUTE_NOT_SUPPORTED, 111
ER_DERIVED_MUST_HAVE_ALIAS, 19 ER_ENGINE_CANNOT_BE_DEFAULT, 135
ER_DES_FILE_WRONG_KEY, 153 ER_ENGINE_CANT_DROP_MISSING_TABLE, 83
ER_DETACHED_SESSIONS_LEFT_BY_PLUGIN, ER_ENGINE_CANT_DROP_TABLE, 83
171 ER_ENGINE_COST_FAILED_TO_READ, 169
ER_DETACHING_SESSION_LEFT_BY_PLUGIN, 171 ER_ENGINE_COST_INVALID_CONST_CONSTANT_FOR_SE_AN
ER_DIAG_LOG_STRING, 433 169
ER_DIMENSION_UNSUPPORTED, 65 ER_ENGINE_COST_INVALID_DEVICE_TYPE_FOR_SE,
ER_DISABLED_STORAGE_ENGINE, 72 169
ER_DISABLED_STORAGE_ENGINE_AS_DEFAULT, ER_ENGINE_COST_UNKNOWN_COST_CONSTANT,
141 168
ER_DISABLE_AUTO_POSITION_REQUIRES_ASYNC_RECONNECT_OFF,
ER_ENGINE_COST_UNKNOWN_STORAGE_ENGINE,
112 169
ER_DISABLE_GTID_MODE_REQUIRES_ASYNC_RECONNECT_OFF,
ER_ENGINE_OUT_OF_MEMORY, 61
112 ER_ERRMSG_CANT_FIND_FILE, 162
ER_DISALLOWED_OPERATION, 87 ER_ERRMSG_CANT_READ, 162
ER_DISCARD_FK_CHECKS_RUNNING, 54 ER_ERRMSG_MISSING_IN_FILE, 162
ER_DISCONNECTING_REMAINING_CLIENTS, 147 ER_ERRMSG_OOM, 162
ER_DISK_FULL_NOWAIT, 88 ER_ERRMSG_REPLACEMENTS_FAILED, 191
ER_DIVISION_BY_ZERO, 27 ER_ERRMSG_REPLACEMENT_DODGY, 191
ER_DONT_SUPPORT_REPLICA_PRESERVE_COMMIT_ORDER,
ER_ERROR_DURING_COMMIT, 15
62 ER_ERROR_DURING_FLUSH_LOGS, 15
ER_DROP_DATABASE_FAILED_RMDIR_MANUALLY, ER_ERROR_DURING_FLUSH_LOG_COMMIT_PHASE,
205 205
ER_DROP_FILEGROUP_FAILED, 37 ER_ERROR_DURING_OPTIMIZE_TABLE, 182
468
ER_ERROR_DURING_ROLLBACK, 15 ER_EXCEEDED_MAX_REGULAR_STATEMENT_HANDLE_LI
ER_ERROR_ENABLING_KEYS, 182 137
ER_ERROR_INFO_FROM_DA, 343 ER_EXCEEDED_MV_KEYS_NUM, 105
ER_ERROR_IN_TRIGGER_BODY, 47 ER_EXCEEDED_MV_KEYS_SPACE, 105
ER_ERROR_IN_UNKNOWN_TRIGGER_BODY, 47 ER_EXCEEDS_VECTOR_MAX_DIMENSIONS, 136
ER_ERROR_LOG_DESTINATION_NOT_A_FILE, 381 ER_EXCEPTIONS_WRITE_ERROR, 42
ER_ERROR_ON_MODIFYING_GTID_EXECUTED_TABLE,ER_EXCESS_ARGUMENTS, 149
74 ER_EXPLAIN_ANALYZE_JSON_FORMAT_VERSION_NOT_S
ER_ERROR_ON_READ, 4 137
ER_ERROR_ON_RENAME, 5 ER_EXPLAIN_INTO_FORMAT_NOT_SUPPORTED,
ER_ERROR_ON_SOURCE, 60 127
ER_ERROR_ON_WRITE, 5 ER_EXPLAIN_INTO_FOR_CONNECTION_NOT_SUPPORTED
ER_ERROR_WHEN_EXECUTING_COMMAND, 18 127
ER_EVENT_ALREADY_EXISTS, 37 ER_EXPLAIN_INTO_IMPLICIT_FORMAT_NOT_SUPPORTED
ER_EVENT_CANNOT_ALTER_IN_THE_PAST, 40 127
ER_EVENT_CANNOT_CREATE_IN_THE_PAST, 40 ER_EXPLAIN_NOT_SUPPORTED, 61
ER_EVENT_CANT_FIND_TIMEZONE, 184 ER_FAILED_DEFAULT_ROLES, 78
ER_EVENT_CANT_GET_CHARSET, 184 ER_FAILED_GET_DD_PROPERTY, 416
ER_EVENT_CANT_GET_COLLATION, 184 ER_FAILED_READ_FROM_PAR_FILE, 46
ER_EVENT_CANT_GET_LOCK_FOR_DROPPING_EVENT,ER_FAILED_REVOKE_ROLE, 78
185 ER_FAILED_ROLE_GRANT, 77
ER_EVENT_CANT_GET_TIMEZONE_FROM_FIELD, ER_FAILED_SET_DD_PROPERTY, 416
184 ER_FAILED_START_MYSQLD_DAEMON, 195
ER_EVENT_CANT_INIT_QUEUE, 141 ER_FAILED_TO_ACQUIRE_LOCK_ON_RESOURCE_GROUP
ER_EVENT_CANT_OPEN_TABLE_MYSQL_EVENT, 198
184 ER_FAILED_TO_ADD_RESOURCE_GROUP_TO_MAP,
ER_EVENT_DOES_NOT_EXIST, 37 197
ER_EVENT_DROPPING, 170 ER_FAILED_TO_ADD_RPL_FILTER, 202
ER_EVENT_ENDS_BEFORE_STARTS, 37 ER_FAILED_TO_ALLOCATE_MEMORY_FOR_RESOURCE_G
ER_EVENT_ERROR_CREATING_QUERY_TO_WRITE_TO_BINLOG,
197
185 ER_FAILED_TO_ALLOCATE_MEMORY_FOR_RESOURCE_G
ER_EVENT_ERROR_DURING_COMPILATION, 170 197
ER_EVENT_EXECUTION_FAILED, 142 ER_FAILED_TO_ALLOCATE_SSL_BIO, 346
ER_EVENT_EXECUTION_FAILED_CANT_AUTHENTICATE_USER,
ER_FAILED_TO_APPLY_RESOURCE_GROUP_CONTROLLE
169 198
ER_EVENT_EXECUTION_FAILED_USER_LOST_EVEN_PRIVILEGE,
ER_FAILED_TO_BINLOG_DROP_EVENT, 201
170 ER_FAILED_TO_BUILD_DO_AND_IGNORE_TABLE_HASHES
ER_EVENT_EXEC_TIME_IN_THE_PAST, 38 202
ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG, ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE,
37 166
ER_EVENT_INVALID_CREATION_CTX, 41 ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE_OO
ER_EVENT_LAST_EXECUTION, 141 166
ER_EVENT_MESSAGE_STACK, 141 ER_FAILED_TO_CONSTRUCT_DROP_EVENT_QUERY,
ER_EVENT_PURGING_QUEUE, 141 201
ER_EVENT_RECURSION_FORBIDDEN, 39 ER_FAILED_TO_CREATE_GTID_TABLE_COMPRESSION_TH
ER_EVENT_SAME_NAME, 38 166
ER_EVENT_SCHEDULER_ERROR_GETTING_EVENT_OBJECT,
ER_FAILED_TO_CREATE_RPL_OPT_TRACKER_THREAD,
185 433
ER_EVENT_SCHEDULER_ERROR_LOADING_FROM_DB,ER_FAILED_TO_CREATE_SDI_FOR_TABLESPACE,
185 199
ER_EVENT_SCHEDULER_GOT_BAD_DATA_FROM_TABLE,ER_FAILED_TO_DECREMENT_NUMBER_OF_THREADS,
185 171
ER_EVENT_SET_VAR_ERROR, 39 ER_FAILED_TO_DELETE_FROM_GTID_EXECUTED_TABLE
ER_EVENT_UNABLE_TO_DROP_EVENT, 185 166
469
ER_FAILED_TO_DESERIALIZE_RESOURCE_GROUP, ER_FILE_EXISTS_DURING_UPGRADE, 185
197 ER_FILE_EXISTS_ERROR, 9
ER_FAILED_TO_DETERMINE_IF_ROLE_IS_MANDATORY,ER_FILE_HAS_OLD_FORMAT, 194
109 ER_FILE_NOT_FOUND, 4
ER_FAILED_TO_FETCH_MANDATORY_ROLE_LIST, ER_FILE_TYPE_UNKNOWN, 163
109 ER_FILE_USED, 5
ER_FAILED_TO_FIND_COLLATION_NAME, 194 ER_FIREWALL_ACCESS_DENIED, 214
ER_FAILED_TO_FIND_DL_ENTRY, 192 ER_FIREWALL_DEPRECATED_USER_PROFILE,
ER_FAILED_TO_FIND_LOCALE_NAME, 194 388
ER_FAILED_TO_FIND_MYSQLD_STATUS, 204 ER_FIREWALL_FAILED_TO_READ_FIREWALL_TABLES,
ER_FAILED_TO_GENERATE_UNIQUE_LOGFILE, 213
192 ER_FIREWALL_FAILED_TO_REG_DYNAMIC_PRIVILEGES,
ER_FAILED_TO_GET_ABSOLUTE_PATH, 195 214
ER_FAILED_TO_HANDLE_DEFAULTS_FILE, 347 ER_FIREWALL_INVALID_RELOAD_INTERVAL_VALUE,
ER_FAILED_TO_INIT_SYS_VAR, 347 419
ER_FAILED_TO_INIT_THREAD_ATTR_FOR_GTID_TABLE_COMPRESSION,
ER_FIREWALL_PFS_TABLE_REGISTER_FAILED,
166 385
ER_FAILED_TO_JOIN_GTID_TABLE_COMPRESSION_THREAD,
ER_FIREWALL_RECORDING_STMT_WAS_TRUNCATED,
166 214
ER_FAILED_TO_LOCK_MEM, 148 ER_FIREWALL_RECORDING_STMT_WITHOUT_TEXT,
ER_FAILED_TO_OPEN_COST_CONSTANT_TABLES, 214
169 ER_FIREWALL_RELOADING_CACHE, 214
ER_FAILED_TO_OPEN_SHARED_LIBRARY, 192 ER_FIREWALL_RESET_FOR_USER, 214
ER_FAILED_TO_PERSIST_RESOURCE_GROUP_METADATA,
ER_FIREWALL_SCHEDULER_REGISTER_FAILED,
197 419
ER_FAILED_TO_READ_FILE, 192 ER_FIREWALL_SERVICES_NOT_ACQUIRED, 385
ER_FAILED_TO_REMOVE_TEMP_TABLE, 180 ER_FIREWALL_SKIPPED_UNKNOWN_USER_MODE,
ER_FAILED_TO_REPAIR_TABLE, 180 214
ER_FAILED_TO_SET_PERSISTED_OPTIONS, 205 ER_FIREWALL_STATUS_FLUSHED, 214
ER_FAILED_TO_START_REPLICA_THREAD, 201 ER_FIREWALL_SUSPICIOUS_STMT, 214
ER_FAILED_TO_STORE_SDI_FOR_TABLESPACE, ER_FIREWALL_UDF_REGISTER_FAILED, 385
199 ER_FIXING_CLIENT_CHARSET, 148
ER_FAILED_TO_UPDATE_RESOURCE_GROUP, ER_FK_CANNOT_CHANGE_ENGINE, 95
197 ER_FK_CANNOT_DROP_PARENT, 92
ER_FAILED_TO_VALIDATE_CERTIFICATES_SERVER_EXIT,
ER_FK_CANNOT_OPEN_PARENT, 55
417 ER_FK_CANNOT_USE_VIRTUAL_COLUMN, 92
ER_FAILED_TO_WRITE_TO_FILE, 193 ER_FK_COLUMN_CANNOT_CHANGE, 56
ER_FAIL_CHROOT, 147 ER_FK_COLUMN_CANNOT_CHANGE_CHILD, 56
ER_FAIL_SETGID, 147 ER_FK_COLUMN_CANNOT_DROP, 56
ER_FAIL_SETREGID, 147 ER_FK_COLUMN_CANNOT_DROP_CHILD, 56
ER_FAIL_SETREUID, 147 ER_FK_COLUMN_NOT_NULL, 56
ER_FAIL_SETUID, 147 ER_FK_DEPTH_EXCEEDED, 61
ER_FEATURE_DISABLED, 22 ER_FK_DUP_NAME, 56
ER_FEATURE_DISABLED_SEE_DOC, 73 ER_FK_FAIL_ADD_SYSTEM, 55
ER_FEATURE_NOT_AVAILABLE, 68 ER_FK_INCOMPATIBLE_COLUMNS, 96
ER_FEATURE_UNSUPPORTED, 87 ER_FK_INCORRECT_OPTION, 56
ER_FIELD_IN_GROUPING_NOT_GROUP_BY, 83 ER_FK_NO_COLUMN_PARENT, 92
ER_FIELD_IN_ORDER_NOT_SELECT, 65 ER_FK_NO_INDEX_CHILD, 55
ER_FIELD_NOT_FOUND_PART_ERROR, 34 ER_FK_NO_INDEX_PARENT, 55
ER_FIELD_SPECIFIED_TWICE, 10 ER_FK_NO_UNIQUE_INDEX_PARENT, 135
ER_FIELD_TYPE_NOT_ALLOWED_AS_PARTITION_FIELD,
ER_FORBID_SCHEMA_CHANGE, 32
44 ER_FORCE_CLOSE_THREAD, 193
ER_FILEGROUP_OPTION_ONLY_ONCE, 37 ER_FORCING_CLOSE, 8
ER_FILE_CORRUPT, 60
470
ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST, ER_GENERATED_COLUMN_ROW_VALUE, 95
31 ER_GENERATED_COLUMN_VARIABLES, 95
ER_FOREIGN_DATA_STRING_INVALID, 31 ER_GEOMETRY_IN_UNKNOWN_LENGTH_UNIT,
ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE,104
31 ER_GEOMETRY_PARAM_LATITUDE_OUT_OF_RANGE,
ER_FOREIGN_DUPLICATE_KEY_OLD_UNUSED, 38 92
ER_FOREIGN_DUPLICATE_KEY_WITHOUT_CHILD_INFO,
ER_GEOMETRY_PARAM_LONGITUDE_OUT_OF_RANGE,
51 92
ER_FOREIGN_DUPLICATE_KEY_WITH_CHILD_INFO, ER_GET_ERRMSG, 22
51 ER_GET_ERRNO, 5
ER_FOREIGN_KEY_ON_PARTITIONED, 35 ER_GET_ERRNO_FROM_STORAGE_ENGINE, 194
ER_FOREIGN_KEY_WITH_ATOMIC_CREATE_SELECT, ER_GET_STACKED_DA_WITHOUT_ACTIVE_HANDLER,
111 60
ER_FOREIGN_SERVER_DOESNT_EXIST, 34 ER_GET_TEMPORARY_ERRMSG, 22
ER_FOREIGN_SERVER_EXISTS, 34 ER_GIPK_COLUMN_ALTER_NOT_ALLOWED, 122
ER_FOUND_MISSING_GTIDS, 259 ER_GIPK_COLUMN_EXISTS, 122
ER_FOUND_ROWS_WHILE_REPAIRING, 182 ER_GIPK_FAILED_AUTOINC_COLUMN_EXISTS,
ER_FPARSER_BAD_HEADER, 25 122
ER_FPARSER_EOF_IN_COMMENT, 25 ER_GIS_DATA_WRONG_ENDIANESS, 64
ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER, ER_GIS_DIFFERENT_SRIDS, 63
26 ER_GIS_DIFFERENT_SRIDS_AGGREGATION, 116
ER_FPARSER_ERROR_IN_PARAMETER, 25 ER_GIS_INVALID_DATA, 63
ER_FPARSER_TOO_BIG_FILE, 25 ER_GIS_MAX_POINTS_IN_GEOMETRY_OVERFLOWED,
ER_FSEEK_FAIL, 27 70
ER_FT_BOOL_SYNTAX_INVALID, 144 ER_GIS_UNKNOWN_ERROR, 63
ER_FT_MATCHING_KEY_NOT_FOUND, 16 ER_GIS_UNKNOWN_EXCEPTION, 63
ER_FULLTEXT_FUNCTIONAL_INDEX, 94 ER_GIS_UNSUPPORTED_ARGUMENT, 63
ER_FULLTEXT_NOT_SUPPORTED_WITH_PARTITIONING,
ER_GLOBAL_CONN_LIMIT, 396
51 ER_GLOBAL_VARIABLE, 18
ER_FULLTEXT_WITH_ROLLUP, 120 ER_GLOBSTAT_CHANGE_DURING_QUERY, 106
ER_FUNCTIONAL_INDEX_DATA_IS_TOO_LONG, ER_GNO_EXHAUSTED, 52
106 ER_GRANT_WRONG_HOST_OR_USER, 13
ER_FUNCTIONAL_INDEX_FUNCTION_IS_NOT_ALLOWED,
ER_GROUPING_ON_TIMESTAMP_IN_DST, 106
94 ER_GROUP_REPLICATION_APPLIER_INIT_ERROR,
ER_FUNCTIONAL_INDEX_ON_FIELD, 94 67
ER_FUNCTIONAL_INDEX_ON_JSON_OR_GEOMETRY_FUNCTION,
ER_GROUP_REPLICATION_CERTIFICATION_MODULE_FAI
94 423
ER_FUNCTIONAL_INDEX_ON_LOB, 94 ER_GROUP_REPLICATION_CERTIFIER_MESSAGE_LARGE
ER_FUNCTIONAL_INDEX_PRIMARY_KEY, 94 420
ER_FUNCTIONAL_INDEX_REF_AUTO_INCREMENT, ER_GROUP_REPLICATION_COMMAND_FAILURE,
94 87
ER_FUNCTIONAL_INDEX_ROW_VALUE_IS_NOT_ALLOWED,
ER_GROUP_REPLICATION_COMMUNICATION_LAYER_JOI
97 67
ER_FUNCTION_DOES_NOT_SUPPORT_CHARACTER_SET,ER_GROUP_REPLICATION_COMMUNICATION_LAYER_SES
112 67
ER_FUNCTION_NOT_DEFINED, 12 ER_GROUP_REPLICATION_COMPRESS_EXCEEDS_MAX_S
ER_FUNC_INEXISTENT_NAME_COLLISION, 42 420
ER_FUTURE_DATE, 146 ER_GROUP_REPLICATION_COMPRESS_OUT_OF_MEMOR
ER_GENERATED_COLUMN_FUNCTION_IS_NOT_ALLOWED,
420
68 ER_GROUP_REPLICATION_COMPRESS_PROCESS,
ER_GENERATED_COLUMN_NAMED_FUNCTION_IS_NOT_ALLOWED,
420
94 ER_GROUP_REPLICATION_CONFIGURATION, 67
ER_GENERATED_COLUMN_NON_PRIOR, 68 ER_GROUP_REPLICATION_DECOMPRESS_CORRUPTED,
ER_GENERATED_COLUMN_REF_AUTO_INC, 68 421
471
ER_GROUP_REPLICATION_DECOMPRESS_END, ER_GROUP_REPLICATION_METADATA_SET_IN_RECOVERY_F
421 423
ER_GROUP_REPLICATION_DECOMPRESS_EXCEEDS_MAX_SIZE,
ER_GROUP_REPLICATION_NO_CERTIFICATION_DONOR_AVA
421 424
ER_GROUP_REPLICATION_DECOMPRESS_OUT_OF_MEMORY,
ER_GROUP_REPLICATION_PASSWORD_LENGTH,
421 111
ER_GROUP_REPLICATION_DECOMPRESS_PROCESS, ER_GROUP_REPLICATION_PLUGIN_NOT_INSTALLED,
421 165
ER_GROUP_REPLICATION_DECOMPRESS_TRUNCATED, ER_GROUP_REPLICATION_PROTOBUF_SERIALIZING_ERROR
421 421
ER_GROUP_REPLICATION_ERROR_COMPRESS_INITIALIZE,
ER_GROUP_REPLICATION_RECOVERY_ERROR_ADD_GTID_E
420 423
ER_GROUP_REPLICATION_ERROR_DECOMPRESS_INITIALIZE,
ER_GROUP_REPLICATION_RECOVERY_FETCHING_GTID_EXE
420 423
ER_GROUP_REPLICATION_ERROR_RECEIVED_WAITING_METADATA,
ER_GROUP_REPLICATION_RECOVERY_METADATA_SENDER
422 423
ER_GROUP_REPLICATION_FORCE_MEMBERS_COMMAND_FAILURE,
ER_GROUP_REPLICATION_RECOVERY_SKIPPED_GTID_PRES
123 423
ER_GROUP_REPLICATION_MAX_GROUP_SIZE, 75 ER_GROUP_REPLICATION_RECOVERY_STOPPED_GTID_PRE
ER_GROUP_REPLICATION_METADATA_CERT_INFO_ENCODING_ERROR,
424
423 ER_GROUP_REPLICATION_RUNNING, 67
ER_GROUP_REPLICATION_METADATA_CERT_INFO_ERROR_PROCESSING,
ER_GROUP_REPLICATION_STOP_APPLIER_THREAD_TIMEOU
422 67
ER_GROUP_REPLICATION_METADATA_CERT_INFO_PACKET_COUNT_ERROR,
ER_GROUP_REPLICATION_TIMEOUT_ERROR_FETCHING_ME
423 422
ER_GROUP_REPLICATION_METADATA_CERT_INFO_PACKET_EMPTY,
ER_GROUP_REPLICATION_UNKOWN_COMPRESSION_TYPE,
422 420
ER_GROUP_REPLICATION_METADATA_ERROR_ON_SEND_ERROR_MESSAGE,
ER_GROUP_REPLICATION_USER_EMPTY_MSG,
423 110
ER_GROUP_REPLICATION_METADATA_INITIALIZATION_FAILURE,
ER_GROUP_REPLICATION_USER_MANDATORY_MSG,
423 111
ER_GROUP_REPLICATION_METADATA_MEMORY_ALLOC, ER_GRP_OPERATION_NOT_ALLOWED_GR_MUST_STOP,
423 110
ER_GROUP_REPLICATION_METADATA_MESSAGE_PAYLOAD_EMPTY,
ER_GRP_RPL_ABORTS_AS_SSL_NOT_SUPPORTED_BY_MYSQ
422 248
ER_GROUP_REPLICATION_METADATA_NO_VALID_DONOR,
ER_GRP_RPL_ADD_GRPSID_TO_GRPGTIDSID_MAP_ERROR,
424 231
ER_GROUP_REPLICATION_METADATA_PAYLOAD_DECODING,
ER_GRP_RPL_ADD_GTID_INFO_WITHOUT_LOCAL_GTID_FAIL
422 239
ER_GROUP_REPLICATION_METADATA_PAYLOAD_EMPTY,ER_GRP_RPL_ADD_GTID_INFO_WITHOUT_REMOTE_GTID_FA
422 239
ER_GROUP_REPLICATION_METADATA_PROTOBUF_PARSING,
ER_GRP_RPL_ADD_GTID_INFO_WITH_LOCAL_GTID_FAILED,
421 239
ER_GROUP_REPLICATION_METADATA_READ_GTID_EXECUTED,
ER_GRP_RPL_ADD_GTID_INFO_WITH_REMOTE_GTID_FAILED
422 239
ER_GROUP_REPLICATION_METADATA_SAVE_RECOVERY_COPY,
ER_GRP_RPL_ADD_GTID_TO_GRPGTID_EXECUTED_ERROR,
422 232
ER_GROUP_REPLICATION_METADATA_SENDER, ER_GRP_RPL_ADD_RETRIEVED_SET_TO_GRP_GTID_EXECUT
420 232
ER_GROUP_REPLICATION_METADATA_SENDER_IS_REMOTE,
ER_GRP_RPL_ADD_VIEW_CHANGE_UUID_TO_GRP_SID_MAP
420 390
ER_GROUP_REPLICATION_METADATA_SEND_ERROR, ER_GRP_RPL_ALL_DONORS_LEFT_ABORT_RECOVERY,
422 240
472
ER_GRP_RPL_ALL_OBSERVERS_UNREGISTERED, ER_GRP_RPL_CANT_READ_GRP_GTID_EXTRACTED,
247 233
ER_GRP_RPL_APPLIER_CHANNEL_STILL_RUNNING, ER_GRP_RPL_CANT_READ_GTID, 233
384 ER_GRP_RPL_CANT_READ_WRITE_SET_ITEM,
ER_GRP_RPL_APPLIER_ERROR_PACKET_RECEIVED, 233
425 ER_GRP_RPL_CERTIFICATION_INITIALIZATION_FAILURE,
ER_GRP_RPL_APPLIER_EXECUTION_FATAL_ERROR, 232
231 ER_GRP_RPL_CERTIFICATION_REC_PROCESS,
ER_GRP_RPL_APPLIER_HANDLER_IS_IN_USE, 244
250 ER_GRP_RPL_CERTIFIER_MSSG_PROCESS_ERROR,
ER_GRP_RPL_APPLIER_HANDLER_NOT_INITIALIZED, 233
250 ER_GRP_RPL_CHANGE_GRP_MEM_NOT_PROCESSED,
ER_GRP_RPL_APPLIER_HANDLER_ROLE_IS_IN_USE, 234
250 ER_GRP_RPL_CHANNEL_THREAD_WHEN_GROUP_ACTIO
ER_GRP_RPL_APPLIER_INITIALIZED, 248 348
ER_GRP_RPL_APPLIER_METADATA_REPO_MUST_BE_TABLE,
ER_GRP_RPL_CHECK_STATUS_TABLE, 241
248 ER_GRP_RPL_CLONE_PROCESS_EXEC_ERROR,
ER_GRP_RPL_APPLIER_NOT_STARTED_DUE_TO_RUNNING_PREV_SHUTDOWN,
366
248 ER_GRP_RPL_CLONE_PROCESS_PREPARE_ERROR,
ER_GRP_RPL_APPLIER_PIPELINE_NOT_DISPOSED, 366
231 ER_GRP_RPL_COMMUNICATION_SSL_CONF_INFO,
ER_GRP_RPL_APPLIER_TERMINATION_TIMED_OUT_ON_SHUTDOWN,
248
246 ER_GRP_RPL_CONFIGURATION_ACTION_END,
ER_GRP_RPL_APPLIER_THD_EXECUTION_ABORTED, 349
231 ER_GRP_RPL_CONFIGURATION_ACTION_ERROR,
ER_GRP_RPL_APPLIER_THD_KILLED, 230 348
ER_GRP_RPL_APPLIER_THD_SETUP_ERROR, 237 ER_GRP_RPL_CONFIGURATION_ACTION_KILLED_ERROR
ER_GRP_RPL_APPLIER_THD_START_ERROR, 237 349
ER_GRP_RPL_APPLIER_THD_STOP_ERROR, 237 ER_GRP_RPL_CONFIGURATION_ACTION_LOCAL_TERMIN
ER_GRP_RPL_APPOINTED_PRIMARY_NOT_PRESENT, 349
348 ER_GRP_RPL_CONFIGURATION_ACTION_START,
ER_GRP_RPL_AUTO_INC_OFFSET_RESET, 238 349
ER_GRP_RPL_AUTO_INC_OFFSET_SET, 238 ER_GRP_RPL_CONFIG_RECOVERY, 241
ER_GRP_RPL_AUTO_INC_RESET, 238 ER_GRP_RPL_CONFLICT_DETECTION_DISABLED,
ER_GRP_RPL_AUTO_INC_SET, 238 233
ER_GRP_RPL_BINLOG_DISABLED, 248 ER_GRP_RPL_CONNECTION_METADATA_REPO_MUST_BE
ER_GRP_RPL_BLOCK_SIZE_DIFF_FROM_GRP, 249
237 ER_GRP_RPL_CONN_INTERNAL_PLUGIN_FAIL,
ER_GRP_RPL_BROADCASTING_TRANS_TO_GRP_FAILED,240
244 ER_GRP_RPL_CONN_KILLED, 417
ER_GRP_RPL_BROADCAST_COMMIT_MSSG_TOO_BIG,ER_GRP_RPL_COPY_FROM_EMPTY_STRING, 240
252 ER_GRP_RPL_CREATE_APPLIER_CACHE_ERROR,
ER_GRP_RPL_BROADCAST_COMMIT_TRANS_MSSG_FAILED,
230
231 ER_GRP_RPL_CREATE_GRP_RPL_REC_CHANNEL,
ER_GRP_RPL_CANNOT_EXECUTE_TRANS_IN_ERROR_STATE,
241
243 ER_GRP_RPL_CREATE_SESSION_UNABLE, 240
ER_GRP_RPL_CANNOT_EXECUTE_TRANS_IN_OFFLINE_MODE,
ER_GRP_RPL_DATA_NOT_PROVIDED_BY_MEM,
243 236
ER_GRP_RPL_CANNOT_EXECUTE_TRANS_WHILE_RECOVERING,
ER_GRP_RPL_DEBUG_OPTIONS, 252
242 ER_GRP_RPL_DEFAULT_TABLE_ENCRYPTION_DIFF_FRO
ER_GRP_RPL_CANNOT_EXECUTE_TRANS_WHILE_STOPPING,
360
242 ER_GRP_RPL_DISABLE_READ_ONLY_FAILED, 235
ER_GRP_RPL_CANT_GENERATE_GTID, 232 ER_GRP_RPL_DISABLE_SRV_READ_MODE_RESTRICTED,
ER_GRP_RPL_CANT_KILL_THREAD, 366 234
473
ER_GRP_RPL_DONOR_CONN_TERMINATION, 241 ER_GRP_RPL_FAILED_TO_EXTRACT_TRANS_WRITE_SET,
ER_GRP_RPL_DONOR_SERVER_CONN, 241 243
ER_GRP_RPL_DONOR_TRANS_INFO_ERROR, 231 ER_GRP_RPL_FAILED_TO_GATHER_TRANS_WRITE_SET,
ER_GRP_RPL_DONOR_VIEW_CHANGE_UUID_TRANS_INFO_ERROR,
243
390 ER_GRP_RPL_FAILED_TO_GENERATE_SIDNO_FOR_GRP,
ER_GRP_RPL_ENABLE_READ_ONLY_FAILED, 235 248
ER_GRP_RPL_ERROR_FETCHING_GTID_EXECUTED_SET,
ER_GRP_RPL_FAILED_TO_GENERATE_SIDNO_FOR_VIEW_CH
232 389
ER_GRP_RPL_ERROR_FETCHING_GTID_SET, 232 ER_GRP_RPL_FAILED_TO_INIT_APPLIER_HANDLER,
ER_GRP_RPL_ERROR_GTID_EXECUTION_INFO, 250
230 ER_GRP_RPL_FAILED_TO_INIT_APPLIER_MODULE,
ER_GRP_RPL_ERROR_GTID_SET_EXTRACTION, 248
348 ER_GRP_RPL_FAILED_TO_INIT_COMMUNICATION_ENGINE,
ER_GRP_RPL_ERROR_MSG, 219 245
ER_GRP_RPL_ERROR_ON_CERT_DB_INSTALL, ER_GRP_RPL_FAILED_TO_INIT_HANDLER, 247
357 ER_GRP_RPL_FAILED_TO_INSERT_TRX_ON_TCM_ON_AFTER
ER_GRP_RPL_ERROR_ON_MESSAGE_SENDING, 355
348 ER_GRP_RPL_FAILED_TO_LOG_VIEW_CHANGE,
ER_GRP_RPL_ERROR_SENDING_SINGLE_PRIMARY_MSSG,
403
231 ER_GRP_RPL_FAILED_TO_NOTIFY_GRP_MEMBERSHIP_EVEN
ER_GRP_RPL_ERROR_SET_MULTI_CONSENSUS_LEADER,
242
396 ER_GRP_RPL_FAILED_TO_PARSE_THE_GRP_NAME,
ER_GRP_RPL_ERROR_SET_SINGLE_CONSENSUS_LEADER,
247
395 ER_GRP_RPL_FAILED_TO_PARSE_THE_VIEW_CHANGE_UUID
ER_GRP_RPL_ERROR_STOPPING_CHANNELS, 389
231 ER_GRP_RPL_FAILED_TO_REGISTER_BINLOG_STATE_OBSE
ER_GRP_RPL_ERROR_WHILE_WAITING_FOR_CONFLICT_DETECTION,
247
244 ER_GRP_RPL_FAILED_TO_REGISTER_SERVER_STATE_OBSE
ER_GRP_RPL_ESTABLISHING_CONN_GRP_REC_DONOR,247
241 ER_GRP_RPL_FAILED_TO_REGISTER_TRANS_OUTCOME_NO
ER_GRP_RPL_ESTABLISH_RECOVERY_WITH_ANOTHER_DONOR,
243
241 ER_GRP_RPL_FAILED_TO_REGISTER_TRANS_STATE_OBSER
ER_GRP_RPL_ESTABLISH_RECOVERY_WITH_DONOR, 247
241 ER_GRP_RPL_FAILED_TO_REINIT_BINLOG_CACHE_FOR_REA
ER_GRP_RPL_EVENT_HANDLING_ERROR, 230 243
ER_GRP_RPL_EXCEEDS_AUTO_INC_VALUE, 236 ER_GRP_RPL_FAILED_TO_SHUTDOWN_REGISTRY_MODULE,
ER_GRP_RPL_EXIT_GRP_GCS_ERROR, 252 247
ER_GRP_RPL_FAILED_TO_BOOTSTRAP_EVENT_HANDLING_INFRASTRUCTURE,
ER_GRP_RPL_FAILED_TO_START_COMMUNICATION_ENGINE
250 245
ER_GRP_RPL_FAILED_TO_BROADCAST_GRP_MEMBERSHIP_NOTIFICATION,
ER_GRP_RPL_FAILED_TO_START_ON_BOOT, 247
242 ER_GRP_RPL_FAILED_TO_START_ON_SECONDARY_WITH_A
ER_GRP_RPL_FAILED_TO_BROADCAST_MEMBER_STATUS_NOTIFICATION,
245
242 ER_GRP_RPL_FAILED_TO_START_WITH_INVALID_SERVER_ID
ER_GRP_RPL_FAILED_TO_CALL_GRP_COMMUNICATION_INTERFACE,
245
245 ER_GRP_RPL_FAILED_TO_STOP_ON_PLUGIN_UNINSTALL,
ER_GRP_RPL_FAILED_TO_CONFIRM_IF_SERVER_LEFT_GRP,
247
246 ER_GRP_RPL_FAILED_TO_UNREGISTER_BINLOG_STATE_OB
ER_GRP_RPL_FAILED_TO_CREATE_TRANS_CONTEXT,247
243 ER_GRP_RPL_FAILED_TO_UNREGISTER_SERVER_STATE_OB
ER_GRP_RPL_FAILED_TO_ENABLE_READ_ONLY_MODE_ON_SHUTDOWN,
247
246 ER_GRP_RPL_FAILED_TO_UNREGISTER_TRANS_STATE_OBS
ER_GRP_RPL_FAILED_TO_ENABLE_SUPER_READ_ONLY_MODE,
247
245 ER_GRP_RPL_FAILOVER_CHANNEL_STATUS_PROPAGATION
117
474
ER_GRP_RPL_FAILOVER_CONF_CHANNEL_DOES_NOT_EXIST,
ER_GRP_RPL_GROUP_NAME_PARSE_ERROR,
392 231
ER_GRP_RPL_FAILOVER_CONF_DEFAULT_CONFIGURATION,
ER_GRP_RPL_GROUP_NAME_SAME_AS_VIEW_CHANGE_
392 389
ER_GRP_RPL_FAILOVER_CONF_GET_EXCHANGEABLE_DATA,
ER_GRP_RPL_GRP_COMMUNICATION_ENG_INIT_FAILED,
392 252
ER_GRP_RPL_FAILOVER_CONF_PARSE_ON_MEMBER_JOIN,
ER_GRP_RPL_GRP_COMMUNICATION_INIT_WITH_CONF,
392 250
ER_GRP_RPL_FAILOVER_CONF_UNABLE_TO_SET_DEFAULT_CONFIGURATION,
ER_GRP_RPL_GRP_MEMBER_OFFLINE, 252
392 ER_GRP_RPL_GRP_NAME_IS_NOT_VALID_UUID,
ER_GRP_RPL_FAILOVER_PRIMARY_BACK_TO_MAJORITY,
249
393 ER_GRP_RPL_GRP_NAME_IS_SAME_AS_ANONYMOUS_TO
ER_GRP_RPL_FAILOVER_PRIMARY_WITHOUT_MAJORITY,
384
393 ER_GRP_RPL_GRP_NAME_IS_TOO_LONG, 249
ER_GRP_RPL_FAILOVER_REGISTER_MESSAGE_LISTENER_SERVICE,
ER_GRP_RPL_GRP_NAME_OPTION_MANDATORY,
392 249
ER_GRP_RPL_FATAL_REC_PROCESS, 244 ER_GRP_RPL_GRP_VIEW_CHANGE_UUID_IS_INCOMPATIB
ER_GRP_RPL_FETCH_FORMAT_DESC_LOG_EVENT_FAILED,
389
239 ER_GRP_RPL_GTID_ALREADY_USED, 230
ER_GRP_RPL_FETCH_GTID_LOG_EVENT_FAILED, ER_GRP_RPL_GTID_EXECUTED_EXTRACT_ERROR,
239 236
ER_GRP_RPL_FETCH_LOG_EVENT_FAILED, 240 ER_GRP_RPL_GTID_MODE_OFF, 248
ER_GRP_RPL_FETCH_SNAPSHOT_VERSION_FAILED, ER_GRP_RPL_GTID_PURGED_EXTRACT_ERROR,
239 366
ER_GRP_RPL_FETCH_TRANS_CONTEXT_FAILED, ER_GRP_RPL_GTID_SET_EXTRACT_ERROR, 236
238 ER_GRP_RPL_GTID_SET_EXTRACT_ERROR_DURING_REC
ER_GRP_RPL_FETCH_TRANS_CONTEXT_LOG_EVENT_FAILED,
356
239 ER_GRP_RPL_HAS_STARTED, 412
ER_GRP_RPL_FETCH_TRANS_DATA_FAILED, 237 ER_GRP_RPL_INCORRECT_TYPE_SET_FOR_PARALLEL_A
ER_GRP_RPL_FETCH_VIEW_CHANGE_LOG_EVENT_FAILED,
249
239 ER_GRP_RPL_INIT_CERTIFICATION_INFO_FAILURE,
ER_GRP_RPL_FINISHED_AUTO_REJOIN, 360 233
ER_GRP_RPL_FK_WITH_CASCADE_UNSUPPORTED, ER_GRP_RPL_INTERNAL_QUERY, 240
238 ER_GRP_RPL_INVALID_BINLOG_FORMAT, 242
ER_GRP_RPL_FLOW_CONTROL_STATS, 253 ER_GRP_RPL_INVALID_COMMUNICATION_PROTOCOL,
ER_GRP_RPL_FLOW_CTRL_MAX_QUOTA_SMALLER_THAN_MIN_QUOTAS,
360
249 ER_GRP_RPL_INVALID_DEBUG_OPTIONS, 252
ER_GRP_RPL_FLOW_CTRL_MIN_QUOTA_GREATER_THAN_MAX_QUOTA,
ER_GRP_RPL_INVALID_GTID_SET, 232
249 ER_GRP_RPL_INVALID_SSL_RECOVERY_STRING,
ER_GRP_RPL_FLOW_CTRL_MIN_RECOVERY_QUOTA_GREATER_THAN_MAX_QUOTA,
250
249 ER_GRP_RPL_IS_STARTING, 375
ER_GRP_RPL_FORCE_MEMBERS_MUST_BE_EMPTY, ER_GRP_RPL_IS_STOPPED, 246
245 ER_GRP_RPL_IS_STOPPING, 246
ER_GRP_RPL_FORCE_MEMBERS_WHEN_LEAVING, ER_GRP_RPL_JOINER_EXIT_WHEN_GROUP_ACTION_RUN
357 348
ER_GRP_RPL_FORCE_MEMBER_VALUE_SET, 252 ER_GRP_RPL_JOIN_WHEN_GROUP_ACTION_RUNNING,
ER_GRP_RPL_FORCE_MEMBER_VALUE_SET_ERROR, 348
252 ER_GRP_RPL_KILLED_FAILED_ID, 240
ER_GRP_RPL_FORCE_MEMBER_VALUE_TIME_OUT, ER_GRP_RPL_KILLED_SESSION_ID, 240
252 ER_GRP_RPL_LOCAL_GTID_SETS_PROCESS_ERROR,
ER_GRP_RPL_GCS_GR_ERROR_MSG, 253 236
ER_GRP_RPL_GCS_INTERFACE_ERROR, 252 ER_GRP_RPL_LOG_REPLICA_UPDATES_NOT_SET,
ER_GRP_RPL_GMS_LISTENER_FAILED_TO_LOG_NOTIFICATION,
248
252
475
ER_GRP_RPL_LOWER_CASE_TABLE_NAMES_DIFF_FROM_GRP,
ER_GRP_RPL_MEMBER_VER_INCOMPATIBLE,
341 236
ER_GRP_RPL_MAXIMUM_CONNECTION_RETRIES_REACHED,
ER_GRP_RPL_MEMBER_VER_READ_COMPATIBLE,
240 364
ER_GRP_RPL_MEMBER_ACTIONS_RESET, 388 ER_GRP_RPL_MEM_ONLINE, 234
ER_GRP_RPL_MEMBER_ACTION_DEFAULT_CONFIGURATION,
ER_GRP_RPL_MEM_REACHABLE, 234
388 ER_GRP_RPL_MEM_UNREACHABLE, 234
ER_GRP_RPL_MEMBER_ACTION_DISABLED, 388 ER_GRP_RPL_MESSAGE_SERVICE_FATAL_ERROR,
ER_GRP_RPL_MEMBER_ACTION_ENABLED, 388 368
ER_GRP_RPL_MEMBER_ACTION_FAILURE, 387 ER_GRP_RPL_MESSAGE_SERVICE_INIT_FAILURE,
ER_GRP_RPL_MEMBER_ACTION_FAILURE_IGNORE, 106
387 ER_GRP_RPL_MISSING_GRP_RPL_ACTION_COORDINATOR,
ER_GRP_RPL_MEMBER_ACTION_GET_EXCHANGEABLE_DATA,
348
388 ER_GRP_RPL_MISSING_GRP_RPL_APPLIER, 233
ER_GRP_RPL_MEMBER_ACTION_INVALID_ACTIONS_ON_MEMBER_JOIN,
ER_GRP_RPL_MODULE_TERMINATE_ERROR, 249
388 ER_GRP_RPL_MSG_DECODING_FAILED, 425
ER_GRP_RPL_MEMBER_ACTION_PARSE_ON_MEMBER_JOIN,
ER_GRP_RPL_MSG_DISCARDED, 233
388 ER_GRP_RPL_MSG_TOO_LONG_BROADCASTING_TRANS_FA
ER_GRP_RPL_MEMBER_ACTION_PARSE_ON_RECEIVE,244
387 ER_GRP_RPL_MULTIPLE_CACHE_TYPE_NOT_SUPPORTED_F
ER_GRP_RPL_MEMBER_ACTION_TRIGGERED, 243
387 ER_GRP_RPL_MYSQL_NETWORK_PROVIDER_CLIENT_ERROR
ER_GRP_RPL_MEMBER_ACTION_UNABLE_TO_SET_DEFAULT_CONFIGURATION,
392
388 ER_GRP_RPL_MYSQL_NETWORK_PROVIDER_CLIENT_ERROR
ER_GRP_RPL_MEMBER_ACTION_UPDATE_ACTIONS, 392
387 ER_GRP_RPL_MYSQL_NETWORK_PROVIDER_SERVER_ERRO
ER_GRP_RPL_MEMBER_ACTION_UPDATE_ACTIONS_ON_MEMBER_JOIN,
418
388 ER_GRP_RPL_NEEDS_INNODB_TABLE, 238
ER_GRP_RPL_MEMBER_ADDED, 235 ER_GRP_RPL_NEW_PRIMARY_ELECTED, 235
ER_GRP_RPL_MEMBER_ALREADY_EXISTS, 236 ER_GRP_RPL_NOTIFY_CERTIFICATION_OUTCOME_FAILED,
ER_GRP_RPL_MEMBER_CFG_INCOMPATIBLE_WITH_GRP_CFG,
239
237 ER_GRP_RPL_NO_POSSIBLE_RECOVERY, 366
ER_GRP_RPL_MEMBER_CHANGE, 235 ER_GRP_RPL_NO_STAGE_SERVICE, 349
ER_GRP_RPL_MEMBER_CONF_INFO, 246 ER_GRP_RPL_NO_SUITABLE_PRIMARY_MEM, 235
ER_GRP_RPL_MEMBER_CONTACT_RESTORED, ER_GRP_RPL_NO_VALID_DONOR, 241
234 ER_GRP_RPL_NULL_PACKET, 233
ER_GRP_RPL_MEMBER_EXIT_PLUGIN_ERROR, ER_GRP_RPL_ONLY_ONE_SERVER_ALIVE, 244
235 ER_GRP_RPL_OOM_FAILED_TO_GENERATE_IDENTIFICATION
ER_GRP_RPL_MEMBER_EXPELLED, 235 242
ER_GRP_RPL_MEMBER_INFO_DOES_NOT_EXIST, ER_GRP_RPL_PAXOS_SINGLE_LEADER_DIFF_FROM_GRP,
416 396
ER_GRP_RPL_MEMBER_LEFT_GRP, 235 ER_GRP_RPL_PAXOS_SINGLE_LEADER_DIFF_FROM_OLD_GR
ER_GRP_RPL_MEMBER_NOT_FOUND, 240 410
ER_GRP_RPL_MEMBER_REMOVED, 234 ER_GRP_RPL_PIPELINE_CREATE_FAILED, 253
ER_GRP_RPL_MEMBER_SERVER_UUID_IS_INCOMPATIBLE_WITH_GRP,
ER_GRP_RPL_PIPELINE_FLUSH_FAIL, 253
245 ER_GRP_RPL_PIPELINE_REINIT_FAILED_READ,
ER_GRP_RPL_MEMBER_STATS_INFO, 253 253
ER_GRP_RPL_MEMBER_STOP_RPL_CHANNELS_ERROR,ER_GRP_RPL_PIPELINE_REINIT_FAILED_WRITE,
237 253
ER_GRP_RPL_MEMBER_TRANS_GREATER_THAN_GRP,ER_GRP_RPL_PLUGIN_ABORT, 346
237 ER_GRP_RPL_PLUGIN_STRUCT_INIT_NOT_POSSIBLE_ON_SE
ER_GRP_RPL_MEMBER_VERSION_LOWER_THAN_GRP,245
236 ER_GRP_RPL_PREEMPTIVE_GARBAGE_COLLECTION_DIFF_F
427
476
ER_GRP_RPL_PRIMARY_ELECTION_PROCESS_ERROR,ER_GRP_RPL_RELEASE_COMMIT_AFTER_GROUP_PREPA
349 355
ER_GRP_RPL_PRIMARY_ELECTION_STOP_ERROR, ER_GRP_RPL_REPLICA_APPLIER_THREAD_ERROR_OUT,
349 254
ER_GRP_RPL_PRIMARY_KEY_NOT_DEFINED, 238 ER_GRP_RPL_REPLICA_APPLIER_THREAD_UNBLOCKED,
ER_GRP_RPL_PRIMARY_MEMBER_LEFT_GRP, 253
234 ER_GRP_RPL_REPLICA_IO_THD_PRIMARY_UNKNOWN,
ER_GRP_RPL_PROCESS_GTID_SET_ERROR, 233 238
ER_GRP_RPL_PROCESS_INTERSECTION_GTID_SET_ERROR,
ER_GRP_RPL_REPLICA_IO_THREAD_ERROR_OUT,
233 253
ER_GRP_RPL_PURGE_APPLIER_LOGS, 237 ER_GRP_RPL_REPLICA_IO_THREAD_UNBLOCKED,
ER_GRP_RPL_PURGE_REC, 241 253
ER_GRP_RPL_QUERY_FAIL, 240 ER_GRP_RPL_REPLICA_PRESERVE_COMMIT_ORDER_NO
ER_GRP_RPL_READ_UNABLE_FOR_READ_ONLY_SUPER_READ_ONLY,
249
244 ER_GRP_RPL_REPLICA_SQL_THD_ON_SECONDARY_MEM
ER_GRP_RPL_RECEIVED_SET_MISSING_GTIDS, 238
233 ER_GRP_RPL_REPLICA_SQL_THD_PRIMARY_UNKNOWN,
ER_GRP_RPL_RECOVERY_CHANNEL_STILL_RUNNING,238
115 ER_GRP_RPL_REPLICA_THREAD_ERROR_ON_CLONE,
ER_GRP_RPL_RECOVERY_ENDPOINT_FORMAT, 367
376 ER_GRP_RPL_REPLICA_THREAD_ERROR_ON_SECONDAR
ER_GRP_RPL_RECOVERY_ENDPOINT_INTERFACES_IPS,
393
376 ER_GRP_RPL_REQUESTING_NON_MEMBER_SERVER_TO
ER_GRP_RPL_RECOVERY_ENDPOINT_INVALID, 246
376 ER_GRP_RPL_RESET_APPLIER_MODULE_LOGS_ERROR,
ER_GRP_RPL_RECOVERY_ENDPOINT_INVALID_DONOR_ENDPOINT,
237
376 ER_GRP_RPL_SALVE_IO_THD_ON_SECONDARY_MEMBER
ER_GRP_RPL_RECOVERY_EVAL_ERROR, 366 238
ER_GRP_RPL_RECOVERY_MODULE_TERMINATION_TIMED_OUT_ON_SHUTDOWN,
ER_GRP_RPL_SEND_STATS_ERROR, 252
246 ER_GRP_RPL_SEND_TRX_PREPARED_MESSAGE_FAILED
ER_GRP_RPL_RECOVERY_STRAT_CHOICE, 367 355
ER_GRP_RPL_RECOVERY_STRAT_CLONE_PURGED, ER_GRP_RPL_SEND_TRX_SYNC_BEFORE_EXECUTION_F
367 356
ER_GRP_RPL_RECOVERY_STRAT_CLONE_THRESHOLD,ER_GRP_RPL_SERVER_ALREADY_LEFT, 246
366 ER_GRP_RPL_SERVER_CONN_ERROR, 232
ER_GRP_RPL_RECOVERY_STRAT_FALLBACK, ER_GRP_RPL_SERVER_IS_ALREADY_LEAVING,
367 246
ER_GRP_RPL_RECOVERY_STRAT_NO_FALLBACK, ER_GRP_RPL_SERVER_SET_TO_OFFLINE_MODE_DUE_TO
367 368
ER_GRP_RPL_RECOVERY_WAIT_APPLIER_BACKLOG_FINISH,
ER_GRP_RPL_SERVER_SET_TO_READ_ONLY_DUE_TO_E
428 251
ER_GRP_RPL_RECOVERY_WAIT_APPLIER_BACKLOG_START,
ER_GRP_RPL_SERVER_UDF_ERROR, 349
428 ER_GRP_RPL_SESSION_OPEN_FAILED, 235
ER_GRP_RPL_REGISTER_TRX_TO_WAIT_FOR_DEPENDENCIES_FAILED,
ER_GRP_RPL_SET_GRP_COMMUNICATION_ENG_LOGGER
356 252
ER_GRP_RPL_REGISTER_TRX_TO_WAIT_FOR_GROUP_PREPARE_FAILED,
ER_GRP_RPL_SET_MULTI_CONSENSUS_LEADER,
355 395
ER_GRP_RPL_REGISTER_TRX_TO_WAIT_FOR_SYNC_BEFORE_EXECUTION_FAILED,
ER_GRP_RPL_SET_SINGLE_CONSENSUS_LEADER,
356 395
ER_GRP_RPL_RELEASE_BEGIN_TRX_AFTER_DEPENDENCIES_COMMIT_FAILED,
ER_GRP_RPL_SET_STABLE_TRANS_ERROR, 233
356 ER_GRP_RPL_SINGLE_PRIM_MODE_NOT_ALLOWED_WIT
ER_GRP_RPL_RELEASE_BEGIN_TRX_AFTER_WAIT_FOR_SYNC_BEFORE_EXEC,
249
356 ER_GRP_RPL_SQL_SERVICE_COMM_SESSION_NOT_INIT
250
477
ER_GRP_RPL_SQL_SERVICE_FAILED_TO_FETCH_SECURITY_CTX,
ER_GRP_RPL_TRX_WAIT_FOR_GROUP_PREPARE_FAILED,
251 355
ER_GRP_RPL_SQL_SERVICE_FAILED_TO_INIT_SESSION_THREAD,
ER_GRP_RPL_TRX_WAIT_FOR_SYNC_BEFORE_EXECUTION_
250 356
ER_GRP_RPL_SQL_SERVICE_FAILED_TO_RUN_SQL_QUERY,
ER_GRP_RPL_UDF_ERROR, 106
251 ER_GRP_RPL_UDF_REGISTER_ERROR, 349
ER_GRP_RPL_SQL_SERVICE_MAX_CONN_ERROR_FROM_SERVER,
ER_GRP_RPL_UDF_REGISTER_SERVICE_ERROR,
251 349
ER_GRP_RPL_SQL_SERVICE_RETRIES_EXCEEDED_ON_SESSION_STATE,
ER_GRP_RPL_UDF_UNREGISTER_ERROR, 349
251 ER_GRP_RPL_UNABLE_TO_CERTIFY_PLUGIN_TRANS,
ER_GRP_RPL_SQL_SERVICE_SERVER_ACCESS_DENIED_FOR_USER,
244
251 ER_GRP_RPL_UNABLE_TO_CONVERT_EVENT_TO_PACKET,
ER_GRP_RPL_SQL_SERVICE_SERVER_ERROR_ON_CONN,253
251 ER_GRP_RPL_UNABLE_TO_CONVERT_PACKET_TO_EVENT,
ER_GRP_RPL_SQL_SERVICE_SERVER_INTERNAL_FAILURE,
253
251 ER_GRP_RPL_UNABLE_TO_ENSURE_EXECUTION_REC,
ER_GRP_RPL_SQL_SERVICE_SERVER_SESSION_KILLED,
244
251 ER_GRP_RPL_UNABLE_TO_EVALUATE_APPLIER_STATUS,
ER_GRP_RPL_SRV_BLOCKED, 234 244
ER_GRP_RPL_SRV_BLOCKED_FOR_SECS, 234 ER_GRP_RPL_UNABLE_TO_INIT_COMMUNICATION_ENGINE,
ER_GRP_RPL_SRV_NOT_ONLINE, 234 248
ER_GRP_RPL_SRV_ONLINE, 234 ER_GRP_RPL_UNABLE_TO_KILL_CONN_REC_DONOR_APPLIE
ER_GRP_RPL_SRV_PRIMARY_MEM, 235 241
ER_GRP_RPL_SRV_SECONDARY_MEM, 235 ER_GRP_RPL_UNABLE_TO_KILL_CONN_REC_DONOR_FAILOV
ER_GRP_RPL_SSL_DISABLED, 248 242
ER_GRP_RPL_STARTED_AUTO_REJOIN, 360 ER_GRP_RPL_UNABLE_TO_RESET_SERVER_READ_MODE,
ER_GRP_RPL_STARTING_GRP_REC, 241 244
ER_GRP_RPL_START_FAILED, 236 ER_GRP_RPL_UNBLOCK_CERTIFIED_TRANS, 245
ER_GRP_RPL_START_GRP_RPL_FAILED, 240 ER_GRP_RPL_UNBLOCK_WAITING_THD, 231
ER_GRP_RPL_STOPPING_GRP_REC, 241 ER_GRP_RPL_UNKNOWN_GRP_RPL_APPLIER_PIPELINE_REQ
ER_GRP_RPL_SUPER_READ_OFF, 240 250
ER_GRP_RPL_SUPER_READ_ON, 240 ER_GRP_RPL_UNREACHABLE_MAJORITY_TIMEOUT_FOR_ME
ER_GRP_RPL_SUPER_READ_ONLY_ACTIVATE_ERROR,251
235 ER_GRP_RPL_UNSUPPORTED_TRANS_ISOLATION,
ER_GRP_RPL_TIMEOUT_ON_VIEW_AFTER_JOINING_GRP,
242
245 ER_GRP_RPL_UPDATE_GRPGTID_EXECUTED_ERROR,
ER_GRP_RPL_TIMEOUT_RECEIVED_VC_LEAVE_ON_REJOIN,
231
381 ER_GRP_RPL_UPDATE_GRPGTID_VIEW_CHANGE_UUID_EXE
ER_GRP_RPL_TIMEOUT_RECEIVED_VC_ON_REJOIN, 390
360 ER_GRP_RPL_UPDATE_GTID_SET_ERROR, 232
ER_GRP_RPL_TIMEOUT_RECEIVING_VIEW_CHANGE_ON_SHUTDOWN,
ER_GRP_RPL_UPDATE_LAST_CONFLICT_FREE_TRANS_ERRO
246 232
ER_GRP_RPL_TRANS_GREATER_THAN_GRP, 236 ER_GRP_RPL_UPDATE_SERV_CERTIFICATE_FAILED,
ER_GRP_RPL_TRANS_NOT_PRESENT_IN_GRP, 239
236 ER_GRP_RPL_UPDATE_TRANS_SNAPSHOT_REF_VER_ERRO
ER_GRP_RPL_TRANS_SIZE_EXCEEDS_LIMIT, 243 232
ER_GRP_RPL_TRANS_WRITE_SET_EXTRACT_DIFF_FROM_GRP,
ER_GRP_RPL_VCLE_NOT_BEING_LOGGED, 421
237 ER_GRP_RPL_VIEW_CHANGE_UUID_DIFF_FROM_GRP,
ER_GRP_RPL_TRX_ALREADY_EXISTS_ON_TCM_ON_AFTER_CERTIFICATION,
389
355 ER_GRP_RPL_VIEW_CHANGE_UUID_FAIL_GET_VARIABLE,
ER_GRP_RPL_TRX_DOES_NOT_EXIST_ON_TCM_ON_HANDLE_REMOTE_PREPARE,
116
355 ER_GRP_RPL_VIEW_CHANGE_UUID_INVALID, 388
ER_GRP_RPL_TRX_WAIT_FOR_GROUP_GTID_EXECUTED,ER_GRP_RPL_VIEW_CHANGE_UUID_IS_SAME_AS_ANONYMO
356 389
478
ER_GRP_RPL_VIEW_CHANGE_UUID_PARSE_ERROR, ER_GTID_MODE_CAN_ONLY_CHANGE_ONE_STEP_AT_A_
389 53
ER_GRP_RPL_VIEW_CHANGE_UUID_SAME_AS_GROUP_NAME,
ER_GTID_MODE_OFF, 65
389 ER_GTID_MODE_ON_REQUIRES_ENFORCE_GTID_CONSIS
ER_GRP_RPL_WAITING_FOR_VIEW_UPDATE, 246 52
ER_GRP_RPL_WAIT_FOR_DEPENDENCIES_FAILED, ER_GTID_NEXT_CANT_BE_AUTOMATIC_IF_GTID_NEXT_LI
356 52
ER_GRP_RPL_WHILE_SENDING_MSG_REC, 244 ER_GTID_NEXT_TAG_GTID_MODE_OFF, 130
ER_GRP_RPL_WRITE_IDENT_HASH_BASE64_ENCODING_FAILED,
ER_GTID_NEXT_TYPE_UNDEFINED_GTID, 56
242 ER_GTID_PURGED_WAS_CHANGED, 57
ER_GRP_RPL_WRITE_TO_TRANSACTION_MESSAGE_FAILED,
ER_GTID_PURGED_WAS_UPDATED, 193
243 ER_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAULT_EX
ER_GRP_TRX_CONSISTENCY_AFTER_ON_TRX_BEGIN,95
97 ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AN
ER_GRP_TRX_CONSISTENCY_BEFORE, 97 60
ER_GRP_TRX_CONSISTENCY_BEGIN_NOT_ALLOWED, ER_GTID_UNSAFE_CREATE_SELECT, 53
97 ER_GTID_UNSAFE_NON_TRANSACTIONAL_TABLE,
ER_GRP_TRX_CONSISTENCY_NOT_ALLOWED, 97 53
ER_GR_ELECTED_PRIMARY_GTID_INFORMATION, ER_HANDLERTON_OOM, 155
371 ER_HANDSHAKE_ERROR, 6
ER_GR_HOLD_KILLED, 96 ER_HEALTH_ERROR, 384
ER_GR_HOLD_MEMBER_STATUS_ERROR, 96 ER_HEALTH_INFO, 384
ER_GR_HOLD_WAIT_TIMEOUT, 96 ER_HEALTH_WARNING, 384
ER_GR_RM_CHANNEL_LAG_QUERY_EXECUTION_FAILED,
ER_HEALTH_WARNING_DISK_USAGE_LEVEL_1,
434 384
ER_GR_RM_CHANNEL_LAG_QUERY_EXECUTION_SUCCESS,
ER_HEALTH_WARNING_DISK_USAGE_LEVEL_2,
434 384
ER_GR_RM_GR_MEMBER_NOT_REMOVED_APPLIER_THRESHOLD_HIT_N_MEMBERS,
ER_HEALTH_WARNING_DISK_USAGE_LEVEL_3,
435 384
ER_GR_RM_GR_MEMBER_NOT_REMOVED_APPLIER_THRESHOLD_HIT_QUARANTINE,
ER_HEALTH_WARNING_MEMORY_USAGE_LEVEL_1,
434 395
ER_GR_RM_GR_MEMBER_NOT_REMOVED_MEMORY_THRESHOLD_HIT_N_MEMBERS,
ER_HEALTH_WARNING_MEMORY_USAGE_LEVEL_2,
435 395
ER_GR_RM_GR_MEMBER_NOT_REMOVED_MEMORY_THRESHOLD_HIT_QUARANTINE,
ER_HEALTH_WARNING_MEMORY_USAGE_LEVEL_3,
435 395
ER_GR_RM_GR_MEMBER_NOT_REMOVED_RECOVERY_THRESHOLD_HIT_N_MEMBERS,
ER_HOSTNAME, 33
435 ER_HOSTNAME_DOESNT_RESOLVE_TO, 142
ER_GR_RM_GR_MEMBER_NOT_REMOVED_RECOVERY_THRESHOLD_HIT_QUARANTINE,
ER_HOSTNAME_RESEMBLES_IPV4, 142
435 ER_HOSTNAME_TOO_LONG, 110
ER_GR_RM_GR_MGMT_SERVICE_ACQUIRE_FAILED, ER_HOSTNAME_TRUNKATED, 377
434 ER_HOST_IS_BLOCKED, 12
ER_GR_RM_MEMBER_LEAVING_APPLIER_THRESHOLD_HIT,
ER_HOST_NOT_PRIVILEGED, 12
435 ER_HYPERGRAPH_NOT_SUPPORTED_YET, 113
ER_GR_RM_MEMBER_LEAVING_MEMORY_THRESHOLD_HIT,
ER_IB_BUFFER_POOL_FULL, 407
435 ER_IB_BUFFER_POOL_OVERUSE, 407
ER_GR_RM_MEMBER_LEAVING_RECOVERY_THRESHOLD_HIT,
ER_IB_BULK_FLUSHER_INFO, 407
435 ER_IB_BULK_FLUSHER_PUNCH_HOLE, 417
ER_GR_RM_MEMORY_STATS_FETCH_FAILED, ER_IB_BULK_LOAD_MERGE_FAIL, 409
434 ER_IB_BULK_LOAD_STATS_INFO, 429
ER_GR_RM_MEMORY_STATS_FETCH_SUCCESS, ER_IB_BULK_LOAD_STATS_WARN, 424
434 ER_IB_BULK_LOAD_SUBTREE_INFO, 407
ER_GTID_ALREADY_ADDED_BY_USER, 165 ER_IB_BULK_LOAD_THREAD_FAIL, 409
ER_GTID_EXECUTED_WAS_CHANGED, 57 ER_IB_CANNOT_UPGRADE_WITH_DISCARDED_TABLESPA
ER_GTID_EXECUTED_WAS_UPDATED, 193 377
479
ER_IB_CLONE_GTID_PERSIST, 270 ER_IB_ERR_UNKNOWN_PAGE_FETCH_MODE,
ER_IB_CLONE_INTERNAL, 269 379
ER_IB_CLONE_NON_INNODB_TABLE, 366 ER_IB_ERR_ZLIB_BUF_ERROR, 379
ER_IB_CLONE_OPERATION, 366 ER_IB_ERR_ZLIB_DATA_ERROR, 380
ER_IB_CLONE_PUNCH_HOLE, 269 ER_IB_ERR_ZLIB_MEM_ERROR, 380
ER_IB_CLONE_RESTART, 366 ER_IB_ERR_ZLIB_UNCOMPRESS_FAILED, 379
ER_IB_CLONE_SQL, 269 ER_IB_ERR_ZLIB_UNKNOWN_ERROR, 380
ER_IB_CLONE_START_STOP, 366 ER_IB_FAILED_TO_DELETE_TABLESPACE_FILE,
ER_IB_CLONE_STATUS_FILE, 269 378
ER_IB_CLONE_TIMEOUT, 269 ER_IB_FIXED_PAGE_ID, 419
ER_IB_CLONE_USER_DATA, 366 ER_IB_HIDDEN_NAME_CONFLICT, 410
ER_IB_CLONE_VALIDATE, 269 ER_IB_IMPORT_INDEX_METADATA_READ_FAILED,
ER_IB_DBLWR_BYTES_INFO, 398 319
ER_IB_DBLWR_DECOMPRESS_FAILED, 382 ER_IB_IMPORT_START_CFG_NAME, 323
ER_IB_DBLWR_DECRYPT_FAILED, 382 ER_IB_INDEX_BUILDER_DONE, 411
ER_IB_DBLWR_KEY_MISSING, 382 ER_IB_INDEX_BUILDER_INIT, 411
ER_IB_DDL_CONVERT_HEAP_NOT_FOUND, 415 ER_IB_INDEX_LOADER_DONE, 411
ER_IB_DELETE_SCHEMA_DIR, 430 ER_IB_INDEX_LOG_VERSION_MISMATCH, 411
ER_IB_DICT_INVALID_COLUMN_POSITION, 410 ER_IB_INDEX_PART_TOO_LONG, 416
ER_IB_DICT_LOG_TABLE_INFO, 410 ER_IB_INNODB_TBSP_OUT_OF_SPACE, 384
ER_IB_DUPLICATE_KEY, 407 ER_IB_INSERT_DELETE_SCHEMA_DIRECTORY_DDL_LOG,
ER_IB_ERR_ACCESSING_OUT_OF_BOUND_FIELD_IN_INDEX,
431
334 ER_IB_LOAD_BULK_CONCURRENCY_REDUCED,
ER_IB_ERR_CORRUPT_TABLESPACE_UNRECOVERABLE,409
424 ER_IB_LOB_ROLLBACK_INDEX_LEN, 370
ER_IB_ERR_DDL_LOG_INSERT_FAILURE, 378 ER_IB_LOCK_VALIDATE_LATCH_ORDER_VIOLATION,
ER_IB_ERR_FOUND_N_DUPLICATE_KEYS, 380 378
ER_IB_ERR_FOUND_N_RECORDS_WRONG_ORDER, ER_IB_LONG_AHI_DISABLE_WAIT, 271
380 ER_IB_LONG_ROLLBACK, 427
ER_IB_ERR_INDEX_DUPLICATE_KEY, 380 ER_IB_LONG_ROLLBACK_FULL, 427
ER_IB_ERR_INDEX_RECORDS_WRONG_ORDER, ER_IB_MSG_0, 260
380 ER_IB_MSG_1, 260
ER_IB_ERR_LOG_PARSING_BUFFER_OVERFLOW, ER_IB_MSG_10, 261
379 ER_IB_MSG_100, 266
ER_IB_ERR_NOT_ENOUGH_MEMORY_FOR_PARSE_BUFFER,
ER_IB_MSG_1000, 322
379 ER_IB_MSG_1001, 322
ER_IB_ERR_PAGE_ARCH_DBLWR_INIT_FAILED, ER_IB_MSG_1002, 322
391 ER_IB_MSG_1003, 322
ER_IB_ERR_PAGE_ARCH_INVALID_DOUBLE_WRITE_BUF,
ER_IB_MSG_1004, 322
375 ER_IB_MSG_1005, 322
ER_IB_ERR_PAGE_ARCH_INVALID_FORMAT, 375 ER_IB_MSG_1006, 322
ER_IB_ERR_PAGE_ARCH_RECOVERY_FAILED, ER_IB_MSG_1007, 323
375 ER_IB_MSG_1008, 323
ER_IB_ERR_PARALLEL_READ_OOM, 380 ER_IB_MSG_1009, 323
ER_IB_ERR_RECOVERY_REDO_DISABLED, 376 ER_IB_MSG_101, 266
ER_IB_ERR_SCHED_SETAFFNINITY_FAILED, 379 ER_IB_MSG_1010, 323
ER_IB_ERR_TEMP_TABLESPACE_DIR_CONTAINS_SEMICOLON,
ER_IB_MSG_1011, 323
379 ER_IB_MSG_1012, 323
ER_IB_ERR_TEMP_TABLESPACE_DIR_DOESNT_EXIST,ER_IB_MSG_1013, 323
379 ER_IB_MSG_1015, 323
ER_IB_ERR_TEMP_TABLESPACE_DIR_EMPTY, ER_IB_MSG_1016, 323
379 ER_IB_MSG_1017, 323
ER_IB_ERR_TEMP_TABLESPACE_DIR_SUBDIR_OF_DATADIR,
ER_IB_MSG_1018, 323
379 ER_IB_MSG_1019, 323
480
ER_IB_MSG_102, 266 ER_IB_MSG_1077, 327
ER_IB_MSG_1020, 323 ER_IB_MSG_1078, 327
ER_IB_MSG_1021, 323 ER_IB_MSG_1079, 327
ER_IB_MSG_1022, 324 ER_IB_MSG_108, 267
ER_IB_MSG_1023, 324 ER_IB_MSG_1080, 327
ER_IB_MSG_1024, 324 ER_IB_MSG_1081, 327
ER_IB_MSG_1025, 324 ER_IB_MSG_1082, 328
ER_IB_MSG_1026, 324 ER_IB_MSG_1083, 328
ER_IB_MSG_1027, 324 ER_IB_MSG_1085, 328
ER_IB_MSG_1028, 324 ER_IB_MSG_1086, 328
ER_IB_MSG_1029, 324 ER_IB_MSG_1087, 328
ER_IB_MSG_103, 266 ER_IB_MSG_1088, 328
ER_IB_MSG_1030, 324 ER_IB_MSG_1089, 328
ER_IB_MSG_1031, 324 ER_IB_MSG_109, 267
ER_IB_MSG_1032, 324 ER_IB_MSG_1090, 328
ER_IB_MSG_1033, 324 ER_IB_MSG_1091, 328
ER_IB_MSG_1034, 324 ER_IB_MSG_1092, 328
ER_IB_MSG_1035, 324 ER_IB_MSG_1093, 328
ER_IB_MSG_1036, 324 ER_IB_MSG_1094, 328
ER_IB_MSG_1037, 325 ER_IB_MSG_1095, 328
ER_IB_MSG_1038, 325 ER_IB_MSG_1096, 329
ER_IB_MSG_1039, 325 ER_IB_MSG_1097, 329
ER_IB_MSG_104, 267 ER_IB_MSG_1098, 329
ER_IB_MSG_1040, 325 ER_IB_MSG_1099, 329
ER_IB_MSG_1041, 325 ER_IB_MSG_11, 261
ER_IB_MSG_1042, 325 ER_IB_MSG_110, 267
ER_IB_MSG_1043, 325 ER_IB_MSG_1100, 329
ER_IB_MSG_1044, 325 ER_IB_MSG_1101, 329
ER_IB_MSG_1045, 325 ER_IB_MSG_1102, 329
ER_IB_MSG_1046, 325 ER_IB_MSG_1103, 329
ER_IB_MSG_1047, 325 ER_IB_MSG_1104, 329
ER_IB_MSG_1048, 325 ER_IB_MSG_1105, 329
ER_IB_MSG_1049, 325 ER_IB_MSG_1107, 329
ER_IB_MSG_105, 267 ER_IB_MSG_1108, 329
ER_IB_MSG_1051, 325 ER_IB_MSG_1109, 329
ER_IB_MSG_1052, 326 ER_IB_MSG_111, 267
ER_IB_MSG_1053, 326 ER_IB_MSG_1110, 330
ER_IB_MSG_1054, 326 ER_IB_MSG_1111, 330
ER_IB_MSG_1055, 326 ER_IB_MSG_1112, 330
ER_IB_MSG_1056, 326 ER_IB_MSG_1113, 330
ER_IB_MSG_1057, 326 ER_IB_MSG_1114, 330
ER_IB_MSG_1058, 326 ER_IB_MSG_1115, 330
ER_IB_MSG_1059, 326 ER_IB_MSG_1116, 330
ER_IB_MSG_106, 267 ER_IB_MSG_1117, 330
ER_IB_MSG_1060, 326 ER_IB_MSG_1119, 330
ER_IB_MSG_1065, 326 ER_IB_MSG_112, 267
ER_IB_MSG_107, 267 ER_IB_MSG_1120, 330
ER_IB_MSG_1070, 327 ER_IB_MSG_1121, 330
ER_IB_MSG_1071, 327 ER_IB_MSG_1122, 330
ER_IB_MSG_1072, 327 ER_IB_MSG_1123, 330
ER_IB_MSG_1073, 327 ER_IB_MSG_1124, 330
ER_IB_MSG_1074, 327 ER_IB_MSG_1125, 330
ER_IB_MSG_1075, 327 ER_IB_MSG_1126, 331
ER_IB_MSG_1076, 327 ER_IB_MSG_1127, 331
481
ER_IB_MSG_1128, 331 ER_IB_MSG_1200, 335
ER_IB_MSG_1129, 331 ER_IB_MSG_1201, 335
ER_IB_MSG_1130, 331 ER_IB_MSG_1202, 336
ER_IB_MSG_1131, 331 ER_IB_MSG_1203, 336
ER_IB_MSG_1132, 331 ER_IB_MSG_1204, 336
ER_IB_MSG_1133, 331 ER_IB_MSG_1205, 336
ER_IB_MSG_1134, 331 ER_IB_MSG_1206, 336
ER_IB_MSG_1139, 332 ER_IB_MSG_1207, 336
ER_IB_MSG_1142, 332 ER_IB_MSG_1208, 336
ER_IB_MSG_1144, 332 ER_IB_MSG_1209, 336
ER_IB_MSG_1145, 332 ER_IB_MSG_121, 267
ER_IB_MSG_1146, 332 ER_IB_MSG_1210, 336
ER_IB_MSG_1147, 332 ER_IB_MSG_1211, 336
ER_IB_MSG_1148, 332 ER_IB_MSG_1212, 336
ER_IB_MSG_1149, 332 ER_IB_MSG_1213, 336
ER_IB_MSG_1150, 332 ER_IB_MSG_1214, 336
ER_IB_MSG_1151, 332 ER_IB_MSG_1215, 336
ER_IB_MSG_1152, 333 ER_IB_MSG_1217, 337
ER_IB_MSG_1154, 333 ER_IB_MSG_1218, 337
ER_IB_MSG_1155, 333 ER_IB_MSG_1219, 337
ER_IB_MSG_1156, 333 ER_IB_MSG_122, 267
ER_IB_MSG_1157, 333 ER_IB_MSG_1220, 337
ER_IB_MSG_1158, 333 ER_IB_MSG_1221, 337
ER_IB_MSG_1159, 333 ER_IB_MSG_1222, 337
ER_IB_MSG_1160, 333 ER_IB_MSG_1223, 337
ER_IB_MSG_1161, 333 ER_IB_MSG_1224, 337
ER_IB_MSG_1162, 333 ER_IB_MSG_1225, 337
ER_IB_MSG_1163, 333 ER_IB_MSG_1226, 337
ER_IB_MSG_1164, 333 ER_IB_MSG_1227, 337
ER_IB_MSG_1165, 333 ER_IB_MSG_1228, 337
ER_IB_MSG_1177, 334 ER_IB_MSG_1229, 337
ER_IB_MSG_1178, 334 ER_IB_MSG_123, 267
ER_IB_MSG_1179, 334 ER_IB_MSG_1231, 337
ER_IB_MSG_1180, 334 ER_IB_MSG_1233, 338
ER_IB_MSG_1181, 334 ER_IB_MSG_1235, 338
ER_IB_MSG_1182, 334 ER_IB_MSG_1238, 338
ER_IB_MSG_1183, 334 ER_IB_MSG_1239, 338
ER_IB_MSG_1185, 334 ER_IB_MSG_124, 267
ER_IB_MSG_1186, 334 ER_IB_MSG_1241, 338
ER_IB_MSG_1187, 335 ER_IB_MSG_1245, 338
ER_IB_MSG_1188, 335 ER_IB_MSG_1246, 338
ER_IB_MSG_1189, 335 ER_IB_MSG_1247, 338
ER_IB_MSG_119, 267 ER_IB_MSG_1248, 339
ER_IB_MSG_1191, 335 ER_IB_MSG_1249, 339
ER_IB_MSG_1192, 335 ER_IB_MSG_125, 268
ER_IB_MSG_1193, 335 ER_IB_MSG_1250, 339
ER_IB_MSG_1194, 335 ER_IB_MSG_1251, 339
ER_IB_MSG_1195, 335 ER_IB_MSG_1253, 339
ER_IB_MSG_1196, 335 ER_IB_MSG_1255, 339
ER_IB_MSG_1197, 335 ER_IB_MSG_1256, 339
ER_IB_MSG_1198, 335 ER_IB_MSG_1257, 339
ER_IB_MSG_1199, 335 ER_IB_MSG_1258, 339
ER_IB_MSG_12, 261 ER_IB_MSG_1259, 339
ER_IB_MSG_120, 267 ER_IB_MSG_126, 268
482
ER_IB_MSG_1260, 339 ER_IB_MSG_159, 270
ER_IB_MSG_1261, 339 ER_IB_MSG_16, 261
ER_IB_MSG_1262, 339 ER_IB_MSG_160, 270
ER_IB_MSG_1263, 339 ER_IB_MSG_161, 270
ER_IB_MSG_1266, 340 ER_IB_MSG_162, 270
ER_IB_MSG_1268, 340 ER_IB_MSG_163, 270
ER_IB_MSG_1269, 340 ER_IB_MSG_164, 270
ER_IB_MSG_127, 268 ER_IB_MSG_165, 270
ER_IB_MSG_1272, 346 ER_IB_MSG_166, 270
ER_IB_MSG_1273, 346 ER_IB_MSG_167, 270
ER_IB_MSG_1274, 347 ER_IB_MSG_168, 270
ER_IB_MSG_1275, 347 ER_IB_MSG_169, 270
ER_IB_MSG_1277, 347 ER_IB_MSG_17, 261
ER_IB_MSG_128, 268 ER_IB_MSG_170, 271
ER_IB_MSG_1280, 347 ER_IB_MSG_171, 271
ER_IB_MSG_1281, 347 ER_IB_MSG_172, 271
ER_IB_MSG_1282, 347 ER_IB_MSG_173, 271
ER_IB_MSG_1283, 347 ER_IB_MSG_174, 271
ER_IB_MSG_1284, 347 ER_IB_MSG_175, 271
ER_IB_MSG_1285, 363 ER_IB_MSG_176, 271
ER_IB_MSG_129, 268 ER_IB_MSG_177, 271
ER_IB_MSG_13, 261 ER_IB_MSG_178, 271
ER_IB_MSG_130, 268 ER_IB_MSG_179, 271
ER_IB_MSG_131, 268 ER_IB_MSG_18, 261
ER_IB_MSG_132, 268 ER_IB_MSG_180, 271
ER_IB_MSG_133, 268 ER_IB_MSG_182, 271
ER_IB_MSG_134, 268 ER_IB_MSG_183, 271
ER_IB_MSG_135, 268 ER_IB_MSG_184, 271
ER_IB_MSG_1357, 378 ER_IB_MSG_187, 272
ER_IB_MSG_1358, 378 ER_IB_MSG_188, 272
ER_IB_MSG_1359, 378 ER_IB_MSG_189, 272
ER_IB_MSG_136, 268 ER_IB_MSG_19, 261
ER_IB_MSG_137, 268 ER_IB_MSG_190, 272
ER_IB_MSG_1372, 379 ER_IB_MSG_191, 272
ER_IB_MSG_1373, 379 ER_IB_MSG_192, 272
ER_IB_MSG_1374, 379 ER_IB_MSG_193, 272
ER_IB_MSG_1375, 379 ER_IB_MSG_194, 272
ER_IB_MSG_138, 268 ER_IB_MSG_195, 272
ER_IB_MSG_1381, 380 ER_IB_MSG_196, 272
ER_IB_MSG_139, 268 ER_IB_MSG_197, 272
ER_IB_MSG_14, 261 ER_IB_MSG_198, 272
ER_IB_MSG_140, 269 ER_IB_MSG_199, 272
ER_IB_MSG_141, 269 ER_IB_MSG_2, 260
ER_IB_MSG_142, 269 ER_IB_MSG_20, 262
ER_IB_MSG_143, 269 ER_IB_MSG_200, 272
ER_IB_MSG_144, 269 ER_IB_MSG_201, 272
ER_IB_MSG_145, 269 ER_IB_MSG_202, 273
ER_IB_MSG_146, 269 ER_IB_MSG_203, 273
ER_IB_MSG_147, 269 ER_IB_MSG_204, 273
ER_IB_MSG_148, 269 ER_IB_MSG_205, 273
ER_IB_MSG_15, 261 ER_IB_MSG_206, 273
ER_IB_MSG_156, 270 ER_IB_MSG_207, 273
ER_IB_MSG_157, 270 ER_IB_MSG_208, 273
ER_IB_MSG_158, 270 ER_IB_MSG_209, 273
483
ER_IB_MSG_21, 262 ER_IB_MSG_260, 276
ER_IB_MSG_210, 273 ER_IB_MSG_261, 276
ER_IB_MSG_211, 273 ER_IB_MSG_262, 276
ER_IB_MSG_212, 273 ER_IB_MSG_263, 276
ER_IB_MSG_213, 273 ER_IB_MSG_264, 277
ER_IB_MSG_214, 273 ER_IB_MSG_265, 277
ER_IB_MSG_215, 273 ER_IB_MSG_266, 277
ER_IB_MSG_216, 273 ER_IB_MSG_267, 277
ER_IB_MSG_217, 274 ER_IB_MSG_268, 277
ER_IB_MSG_218, 274 ER_IB_MSG_269, 277
ER_IB_MSG_219, 274 ER_IB_MSG_27, 262
ER_IB_MSG_22, 262 ER_IB_MSG_270, 277
ER_IB_MSG_220, 274 ER_IB_MSG_271, 277
ER_IB_MSG_221, 274 ER_IB_MSG_272, 277
ER_IB_MSG_222, 274 ER_IB_MSG_273, 277
ER_IB_MSG_223, 274 ER_IB_MSG_278, 277
ER_IB_MSG_224, 274 ER_IB_MSG_28, 262
ER_IB_MSG_225, 274 ER_IB_MSG_280, 277
ER_IB_MSG_226, 274 ER_IB_MSG_281, 277
ER_IB_MSG_229, 274 ER_IB_MSG_282, 277
ER_IB_MSG_23, 262 ER_IB_MSG_283, 277
ER_IB_MSG_230, 274 ER_IB_MSG_284, 278
ER_IB_MSG_231, 274 ER_IB_MSG_285, 278
ER_IB_MSG_232, 274 ER_IB_MSG_287, 278
ER_IB_MSG_233, 274 ER_IB_MSG_288, 278
ER_IB_MSG_234, 275 ER_IB_MSG_289, 278
ER_IB_MSG_235, 275 ER_IB_MSG_29, 262
ER_IB_MSG_236, 275 ER_IB_MSG_291, 278
ER_IB_MSG_237, 275 ER_IB_MSG_292, 278
ER_IB_MSG_238, 275 ER_IB_MSG_293, 278
ER_IB_MSG_239, 275 ER_IB_MSG_294, 278
ER_IB_MSG_24, 262 ER_IB_MSG_295, 278
ER_IB_MSG_240, 275 ER_IB_MSG_296, 278
ER_IB_MSG_241, 275 ER_IB_MSG_297, 278
ER_IB_MSG_242, 275 ER_IB_MSG_298, 279
ER_IB_MSG_243, 275 ER_IB_MSG_299, 279
ER_IB_MSG_244, 275 ER_IB_MSG_3, 260
ER_IB_MSG_245, 275 ER_IB_MSG_30, 262
ER_IB_MSG_246, 275 ER_IB_MSG_300, 279
ER_IB_MSG_247, 275 ER_IB_MSG_301, 279
ER_IB_MSG_248, 275 ER_IB_MSG_303, 279
ER_IB_MSG_249, 276 ER_IB_MSG_304, 279
ER_IB_MSG_25, 262 ER_IB_MSG_305, 279
ER_IB_MSG_250, 276 ER_IB_MSG_306, 279
ER_IB_MSG_251, 276 ER_IB_MSG_307, 279
ER_IB_MSG_252, 276 ER_IB_MSG_308, 279
ER_IB_MSG_253, 276 ER_IB_MSG_309, 279
ER_IB_MSG_254, 276 ER_IB_MSG_310, 279
ER_IB_MSG_255, 276 ER_IB_MSG_311, 280
ER_IB_MSG_256, 276 ER_IB_MSG_312, 280
ER_IB_MSG_257, 276 ER_IB_MSG_313, 280
ER_IB_MSG_258, 276 ER_IB_MSG_314, 280
ER_IB_MSG_259, 276 ER_IB_MSG_315, 280
ER_IB_MSG_26, 262 ER_IB_MSG_316, 280
484
ER_IB_MSG_317, 280 ER_IB_MSG_371, 283
ER_IB_MSG_318, 280 ER_IB_MSG_372, 283
ER_IB_MSG_319, 280 ER_IB_MSG_373, 283
ER_IB_MSG_32, 262 ER_IB_MSG_374, 283
ER_IB_MSG_320, 280 ER_IB_MSG_375, 284
ER_IB_MSG_321, 280 ER_IB_MSG_376, 284
ER_IB_MSG_322, 280 ER_IB_MSG_377, 284
ER_IB_MSG_323, 280 ER_IB_MSG_378, 284
ER_IB_MSG_324, 280 ER_IB_MSG_379, 284
ER_IB_MSG_325, 280 ER_IB_MSG_38, 263
ER_IB_MSG_326, 281 ER_IB_MSG_380, 284
ER_IB_MSG_328, 281 ER_IB_MSG_381, 284
ER_IB_MSG_329, 281 ER_IB_MSG_382, 284
ER_IB_MSG_33, 262 ER_IB_MSG_383, 284
ER_IB_MSG_330, 281 ER_IB_MSG_384, 284
ER_IB_MSG_331, 281 ER_IB_MSG_385, 284
ER_IB_MSG_332, 281 ER_IB_MSG_386, 284
ER_IB_MSG_333, 281 ER_IB_MSG_387, 284
ER_IB_MSG_334, 281 ER_IB_MSG_39, 263
ER_IB_MSG_335, 281 ER_IB_MSG_390, 285
ER_IB_MSG_336, 281 ER_IB_MSG_391, 285
ER_IB_MSG_337, 281 ER_IB_MSG_392, 285
ER_IB_MSG_338, 281 ER_IB_MSG_393, 285
ER_IB_MSG_339, 281 ER_IB_MSG_394, 285
ER_IB_MSG_34, 262 ER_IB_MSG_395, 285
ER_IB_MSG_340, 281 ER_IB_MSG_396, 285
ER_IB_MSG_341, 281 ER_IB_MSG_397, 285
ER_IB_MSG_342, 282 ER_IB_MSG_398, 285
ER_IB_MSG_343, 282 ER_IB_MSG_399, 285
ER_IB_MSG_344, 282 ER_IB_MSG_4, 260
ER_IB_MSG_345, 282 ER_IB_MSG_40, 263
ER_IB_MSG_346, 282 ER_IB_MSG_401, 285
ER_IB_MSG_347, 282 ER_IB_MSG_402, 285
ER_IB_MSG_348, 282 ER_IB_MSG_403, 285
ER_IB_MSG_349, 282 ER_IB_MSG_404, 285
ER_IB_MSG_35, 262 ER_IB_MSG_405, 285
ER_IB_MSG_350, 282 ER_IB_MSG_406, 286
ER_IB_MSG_354, 282 ER_IB_MSG_407, 286
ER_IB_MSG_355, 282 ER_IB_MSG_408, 286
ER_IB_MSG_356, 282 ER_IB_MSG_409, 286
ER_IB_MSG_357, 282 ER_IB_MSG_41, 263
ER_IB_MSG_358, 282 ER_IB_MSG_410, 286
ER_IB_MSG_359, 283 ER_IB_MSG_411, 286
ER_IB_MSG_36, 263 ER_IB_MSG_412, 286
ER_IB_MSG_360, 283 ER_IB_MSG_413, 286
ER_IB_MSG_361, 283 ER_IB_MSG_414, 286
ER_IB_MSG_362, 283 ER_IB_MSG_415, 286
ER_IB_MSG_364, 283 ER_IB_MSG_416, 286
ER_IB_MSG_365, 283 ER_IB_MSG_417, 286
ER_IB_MSG_367, 283 ER_IB_MSG_418, 286
ER_IB_MSG_368, 283 ER_IB_MSG_419, 286
ER_IB_MSG_369, 283 ER_IB_MSG_42, 263
ER_IB_MSG_37, 263 ER_IB_MSG_420, 286
ER_IB_MSG_370, 283 ER_IB_MSG_421, 287
485
ER_IB_MSG_422, 287 ER_IB_MSG_472, 290
ER_IB_MSG_423, 287 ER_IB_MSG_473, 290
ER_IB_MSG_424, 287 ER_IB_MSG_474, 290
ER_IB_MSG_425, 287 ER_IB_MSG_475, 290
ER_IB_MSG_426, 287 ER_IB_MSG_476, 290
ER_IB_MSG_427, 287 ER_IB_MSG_477, 290
ER_IB_MSG_428, 287 ER_IB_MSG_478, 290
ER_IB_MSG_429, 287 ER_IB_MSG_479, 290
ER_IB_MSG_43, 263 ER_IB_MSG_48, 263
ER_IB_MSG_430, 287 ER_IB_MSG_480, 290
ER_IB_MSG_431, 287 ER_IB_MSG_481, 290
ER_IB_MSG_432, 287 ER_IB_MSG_482, 291
ER_IB_MSG_433, 287 ER_IB_MSG_483, 291
ER_IB_MSG_434, 287 ER_IB_MSG_484, 291
ER_IB_MSG_435, 287 ER_IB_MSG_485, 291
ER_IB_MSG_436, 288 ER_IB_MSG_486, 291
ER_IB_MSG_437, 288 ER_IB_MSG_487, 291
ER_IB_MSG_438, 288 ER_IB_MSG_488, 291
ER_IB_MSG_439, 288 ER_IB_MSG_489, 291
ER_IB_MSG_44, 263 ER_IB_MSG_49, 263
ER_IB_MSG_440, 288 ER_IB_MSG_490, 291
ER_IB_MSG_441, 288 ER_IB_MSG_491, 291
ER_IB_MSG_442, 288 ER_IB_MSG_492, 291
ER_IB_MSG_443, 288 ER_IB_MSG_493, 291
ER_IB_MSG_445, 288 ER_IB_MSG_494, 291
ER_IB_MSG_446, 288 ER_IB_MSG_495, 291
ER_IB_MSG_447, 288 ER_IB_MSG_496, 291
ER_IB_MSG_448, 288 ER_IB_MSG_497, 292
ER_IB_MSG_449, 288 ER_IB_MSG_498, 292
ER_IB_MSG_45, 263 ER_IB_MSG_499, 292
ER_IB_MSG_450, 288 ER_IB_MSG_5, 261
ER_IB_MSG_451, 288 ER_IB_MSG_50, 263
ER_IB_MSG_452, 289 ER_IB_MSG_500, 292
ER_IB_MSG_453, 289 ER_IB_MSG_501, 292
ER_IB_MSG_454, 289 ER_IB_MSG_502, 292
ER_IB_MSG_455, 289 ER_IB_MSG_503, 292
ER_IB_MSG_456, 289 ER_IB_MSG_504, 292
ER_IB_MSG_457, 289 ER_IB_MSG_505, 292
ER_IB_MSG_458, 289 ER_IB_MSG_506, 292
ER_IB_MSG_459, 289 ER_IB_MSG_507, 292
ER_IB_MSG_46, 263 ER_IB_MSG_508, 292
ER_IB_MSG_460, 289 ER_IB_MSG_509, 292
ER_IB_MSG_461, 289 ER_IB_MSG_51, 264
ER_IB_MSG_462, 289 ER_IB_MSG_510, 292
ER_IB_MSG_463, 289 ER_IB_MSG_511, 292
ER_IB_MSG_464, 289 ER_IB_MSG_512, 293
ER_IB_MSG_465, 289 ER_IB_MSG_513, 293
ER_IB_MSG_466, 289 ER_IB_MSG_514, 293
ER_IB_MSG_467, 290 ER_IB_MSG_515, 293
ER_IB_MSG_468, 290 ER_IB_MSG_516, 293
ER_IB_MSG_469, 290 ER_IB_MSG_517, 293
ER_IB_MSG_47, 263 ER_IB_MSG_518, 293
ER_IB_MSG_470, 290 ER_IB_MSG_519, 293
ER_IB_MSG_471, 290 ER_IB_MSG_52, 264
486
ER_IB_MSG_520, 293 ER_IB_MSG_579, 296
ER_IB_MSG_521, 293 ER_IB_MSG_57_STAT_SPACE_DELETE_FAIL, 374
ER_IB_MSG_522, 293 ER_IB_MSG_57_UNDO_SPACE_DELETE_FAIL, 372
ER_IB_MSG_523, 293 ER_IB_MSG_58, 264
ER_IB_MSG_524, 293 ER_IB_MSG_580, 296
ER_IB_MSG_525, 293 ER_IB_MSG_581, 297
ER_IB_MSG_526, 293 ER_IB_MSG_582, 297
ER_IB_MSG_527, 294 ER_IB_MSG_583, 297
ER_IB_MSG_53, 264 ER_IB_MSG_584, 297
ER_IB_MSG_530, 294 ER_IB_MSG_585, 297
ER_IB_MSG_531, 294 ER_IB_MSG_586, 297
ER_IB_MSG_532, 294 ER_IB_MSG_587, 297
ER_IB_MSG_533, 294 ER_IB_MSG_588, 297
ER_IB_MSG_534, 294 ER_IB_MSG_589, 297
ER_IB_MSG_537, 294 ER_IB_MSG_59, 264
ER_IB_MSG_538, 294 ER_IB_MSG_590, 297
ER_IB_MSG_539, 294 ER_IB_MSG_591, 297
ER_IB_MSG_54, 264 ER_IB_MSG_592, 297
ER_IB_MSG_540, 294 ER_IB_MSG_593, 297
ER_IB_MSG_541, 294 ER_IB_MSG_594, 297
ER_IB_MSG_543, 294 ER_IB_MSG_595, 297
ER_IB_MSG_544, 294 ER_IB_MSG_596, 298
ER_IB_MSG_545, 294 ER_IB_MSG_597, 298
ER_IB_MSG_546, 294 ER_IB_MSG_598, 298
ER_IB_MSG_547, 295 ER_IB_MSG_599, 298
ER_IB_MSG_548, 295 ER_IB_MSG_6, 261
ER_IB_MSG_549, 295 ER_IB_MSG_60, 264
ER_IB_MSG_55, 264 ER_IB_MSG_600, 298
ER_IB_MSG_550, 295 ER_IB_MSG_601, 298
ER_IB_MSG_551, 295 ER_IB_MSG_602, 298
ER_IB_MSG_552, 295 ER_IB_MSG_603, 298
ER_IB_MSG_553, 295 ER_IB_MSG_604, 298
ER_IB_MSG_554, 295 ER_IB_MSG_605, 298
ER_IB_MSG_555, 295 ER_IB_MSG_606, 298
ER_IB_MSG_556, 295 ER_IB_MSG_607, 298
ER_IB_MSG_557, 295 ER_IB_MSG_608, 298
ER_IB_MSG_558, 295 ER_IB_MSG_609, 298
ER_IB_MSG_559, 295 ER_IB_MSG_61, 264
ER_IB_MSG_56, 264 ER_IB_MSG_611, 298
ER_IB_MSG_560, 295 ER_IB_MSG_612, 299
ER_IB_MSG_561, 295 ER_IB_MSG_613, 299
ER_IB_MSG_562, 296 ER_IB_MSG_614, 299
ER_IB_MSG_563, 296 ER_IB_MSG_615, 299
ER_IB_MSG_564, 296 ER_IB_MSG_616, 299
ER_IB_MSG_566, 296 ER_IB_MSG_617, 299
ER_IB_MSG_567, 296 ER_IB_MSG_619, 299
ER_IB_MSG_568, 296 ER_IB_MSG_62, 264
ER_IB_MSG_569, 296 ER_IB_MSG_623, 299
ER_IB_MSG_57, 264 ER_IB_MSG_624, 299
ER_IB_MSG_570, 296 ER_IB_MSG_626, 299
ER_IB_MSG_571, 296 ER_IB_MSG_627, 299
ER_IB_MSG_573, 296 ER_IB_MSG_628, 299
ER_IB_MSG_574, 296 ER_IB_MSG_629, 300
ER_IB_MSG_578, 296 ER_IB_MSG_63, 264
487
ER_IB_MSG_630, 300 ER_IB_MSG_718, 303
ER_IB_MSG_631, 300 ER_IB_MSG_719, 303
ER_IB_MSG_632, 300 ER_IB_MSG_72, 265
ER_IB_MSG_633, 300 ER_IB_MSG_720, 303
ER_IB_MSG_634, 300 ER_IB_MSG_722, 304
ER_IB_MSG_635, 300 ER_IB_MSG_723, 304
ER_IB_MSG_636, 300 ER_IB_MSG_724, 304
ER_IB_MSG_637, 300 ER_IB_MSG_725, 304
ER_IB_MSG_638, 300 ER_IB_MSG_726, 304
ER_IB_MSG_639, 300 ER_IB_MSG_727, 304
ER_IB_MSG_64, 264 ER_IB_MSG_728, 304
ER_IB_MSG_642, 300 ER_IB_MSG_73, 265
ER_IB_MSG_643, 300 ER_IB_MSG_737, 305
ER_IB_MSG_644, 300 ER_IB_MSG_738, 305
ER_IB_MSG_645, 300 ER_IB_MSG_739, 305
ER_IB_MSG_646, 301 ER_IB_MSG_74, 265
ER_IB_MSG_647, 301 ER_IB_MSG_740, 305
ER_IB_MSG_648, 301 ER_IB_MSG_741, 305
ER_IB_MSG_649, 301 ER_IB_MSG_742, 305
ER_IB_MSG_65, 264 ER_IB_MSG_743, 305
ER_IB_MSG_650, 301 ER_IB_MSG_744, 305
ER_IB_MSG_651, 301 ER_IB_MSG_745, 305
ER_IB_MSG_652, 301 ER_IB_MSG_746, 305
ER_IB_MSG_654, 301 ER_IB_MSG_747, 305
ER_IB_MSG_655, 301 ER_IB_MSG_748, 305
ER_IB_MSG_656, 301 ER_IB_MSG_749, 305
ER_IB_MSG_657, 301 ER_IB_MSG_75, 265
ER_IB_MSG_658, 301 ER_IB_MSG_750, 306
ER_IB_MSG_659, 301 ER_IB_MSG_751, 306
ER_IB_MSG_66, 265 ER_IB_MSG_752, 306
ER_IB_MSG_660, 301 ER_IB_MSG_753, 306
ER_IB_MSG_661, 302 ER_IB_MSG_754, 306
ER_IB_MSG_662, 302 ER_IB_MSG_755, 306
ER_IB_MSG_663, 302 ER_IB_MSG_756, 306
ER_IB_MSG_67, 265 ER_IB_MSG_757, 306
ER_IB_MSG_68, 265 ER_IB_MSG_758, 306
ER_IB_MSG_69, 265 ER_IB_MSG_759, 306
ER_IB_MSG_694, 302 ER_IB_MSG_76, 265
ER_IB_MSG_695, 302 ER_IB_MSG_760, 306
ER_IB_MSG_696, 302 ER_IB_MSG_761, 306
ER_IB_MSG_697, 302 ER_IB_MSG_762, 306
ER_IB_MSG_7, 261 ER_IB_MSG_763, 306
ER_IB_MSG_70, 265 ER_IB_MSG_764, 306
ER_IB_MSG_707, 303 ER_IB_MSG_765, 307
ER_IB_MSG_708, 303 ER_IB_MSG_766, 307
ER_IB_MSG_709, 303 ER_IB_MSG_767, 307
ER_IB_MSG_71, 265 ER_IB_MSG_768, 307
ER_IB_MSG_710, 303 ER_IB_MSG_769, 307
ER_IB_MSG_711, 303 ER_IB_MSG_77, 265
ER_IB_MSG_712, 303 ER_IB_MSG_770, 307
ER_IB_MSG_713, 303 ER_IB_MSG_771, 307
ER_IB_MSG_714, 303 ER_IB_MSG_772, 307
ER_IB_MSG_715, 303 ER_IB_MSG_773, 307
ER_IB_MSG_716, 303 ER_IB_MSG_774, 307
488
ER_IB_MSG_775, 307 ER_IB_MSG_824, 310
ER_IB_MSG_776, 307 ER_IB_MSG_825, 310
ER_IB_MSG_777, 307 ER_IB_MSG_826, 311
ER_IB_MSG_778, 307 ER_IB_MSG_827, 311
ER_IB_MSG_779, 307 ER_IB_MSG_828, 311
ER_IB_MSG_78, 265 ER_IB_MSG_829, 311
ER_IB_MSG_780, 308 ER_IB_MSG_83, 266
ER_IB_MSG_781, 308 ER_IB_MSG_831, 311
ER_IB_MSG_782, 308 ER_IB_MSG_832, 311
ER_IB_MSG_783, 308 ER_IB_MSG_833, 311
ER_IB_MSG_784, 308 ER_IB_MSG_834, 311
ER_IB_MSG_785, 308 ER_IB_MSG_835, 311
ER_IB_MSG_786, 308 ER_IB_MSG_836, 311
ER_IB_MSG_787, 308 ER_IB_MSG_837, 311
ER_IB_MSG_788, 308 ER_IB_MSG_838, 311
ER_IB_MSG_789, 308 ER_IB_MSG_839, 311
ER_IB_MSG_79, 265 ER_IB_MSG_84, 266
ER_IB_MSG_790, 308 ER_IB_MSG_840, 311
ER_IB_MSG_791, 308 ER_IB_MSG_841, 311
ER_IB_MSG_792, 308 ER_IB_MSG_842, 312
ER_IB_MSG_793, 308 ER_IB_MSG_844, 312
ER_IB_MSG_794, 308 ER_IB_MSG_845, 312
ER_IB_MSG_795, 309 ER_IB_MSG_847, 312
ER_IB_MSG_796, 309 ER_IB_MSG_848, 312
ER_IB_MSG_797, 309 ER_IB_MSG_849, 312
ER_IB_MSG_798, 309 ER_IB_MSG_85, 266
ER_IB_MSG_799, 309 ER_IB_MSG_850, 312
ER_IB_MSG_8, 261 ER_IB_MSG_851, 312
ER_IB_MSG_80, 265 ER_IB_MSG_852, 312
ER_IB_MSG_801, 309 ER_IB_MSG_853, 312
ER_IB_MSG_802, 309 ER_IB_MSG_854, 312
ER_IB_MSG_803, 309 ER_IB_MSG_855, 312
ER_IB_MSG_804, 309 ER_IB_MSG_856, 312
ER_IB_MSG_805, 309 ER_IB_MSG_857, 313
ER_IB_MSG_806, 309 ER_IB_MSG_858, 313
ER_IB_MSG_807, 309 ER_IB_MSG_859, 313
ER_IB_MSG_808, 309 ER_IB_MSG_86, 266
ER_IB_MSG_809, 309 ER_IB_MSG_860, 313
ER_IB_MSG_81, 266 ER_IB_MSG_861, 313
ER_IB_MSG_810, 309 ER_IB_MSG_862, 313
ER_IB_MSG_811, 310 ER_IB_MSG_863, 313
ER_IB_MSG_812, 310 ER_IB_MSG_864, 313
ER_IB_MSG_813, 310 ER_IB_MSG_865, 313
ER_IB_MSG_814, 310 ER_IB_MSG_866, 313
ER_IB_MSG_815, 310 ER_IB_MSG_867, 313
ER_IB_MSG_816, 310 ER_IB_MSG_868, 313
ER_IB_MSG_817, 310 ER_IB_MSG_869, 313
ER_IB_MSG_818, 310 ER_IB_MSG_870, 313
ER_IB_MSG_819, 310 ER_IB_MSG_871, 313
ER_IB_MSG_82, 266 ER_IB_MSG_872, 314
ER_IB_MSG_820, 310 ER_IB_MSG_873, 314
ER_IB_MSG_821, 310 ER_IB_MSG_874, 314
ER_IB_MSG_822, 310 ER_IB_MSG_875, 314
ER_IB_MSG_823, 310 ER_IB_MSG_876, 314
489
ER_IB_MSG_877, 314 ER_IB_MSG_930, 317
ER_IB_MSG_878, 314 ER_IB_MSG_931, 317
ER_IB_MSG_879, 314 ER_IB_MSG_932, 318
ER_IB_MSG_880, 314 ER_IB_MSG_933, 318
ER_IB_MSG_881, 314 ER_IB_MSG_934, 318
ER_IB_MSG_882, 314 ER_IB_MSG_935, 318
ER_IB_MSG_883, 314 ER_IB_MSG_936, 318
ER_IB_MSG_884, 314 ER_IB_MSG_937, 318
ER_IB_MSG_885, 314 ER_IB_MSG_938, 318
ER_IB_MSG_886, 314 ER_IB_MSG_939, 318
ER_IB_MSG_887, 315 ER_IB_MSG_940, 318
ER_IB_MSG_888, 315 ER_IB_MSG_941, 318
ER_IB_MSG_889, 315 ER_IB_MSG_942, 318
ER_IB_MSG_890, 315 ER_IB_MSG_943, 318
ER_IB_MSG_891, 315 ER_IB_MSG_944, 318
ER_IB_MSG_892, 315 ER_IB_MSG_945, 318
ER_IB_MSG_893, 315 ER_IB_MSG_946, 318
ER_IB_MSG_894, 315 ER_IB_MSG_948, 319
ER_IB_MSG_895, 315 ER_IB_MSG_949, 319
ER_IB_MSG_896, 315 ER_IB_MSG_95, 266
ER_IB_MSG_897, 315 ER_IB_MSG_950, 319
ER_IB_MSG_898, 315 ER_IB_MSG_951, 319
ER_IB_MSG_899, 315 ER_IB_MSG_952, 319
ER_IB_MSG_9, 261 ER_IB_MSG_953, 319
ER_IB_MSG_900, 315 ER_IB_MSG_954, 319
ER_IB_MSG_901, 315 ER_IB_MSG_955, 319
ER_IB_MSG_902, 316 ER_IB_MSG_956, 319
ER_IB_MSG_903, 316 ER_IB_MSG_957, 319
ER_IB_MSG_904, 316 ER_IB_MSG_958, 319
ER_IB_MSG_905, 316 ER_IB_MSG_959, 319
ER_IB_MSG_906, 316 ER_IB_MSG_96, 266
ER_IB_MSG_907, 316 ER_IB_MSG_960, 319
ER_IB_MSG_908, 316 ER_IB_MSG_961, 319
ER_IB_MSG_909, 316 ER_IB_MSG_962, 320
ER_IB_MSG_910, 316 ER_IB_MSG_963, 320
ER_IB_MSG_911, 316 ER_IB_MSG_964, 320
ER_IB_MSG_912, 316 ER_IB_MSG_965, 320
ER_IB_MSG_913, 316 ER_IB_MSG_966, 320
ER_IB_MSG_914, 316 ER_IB_MSG_967, 320
ER_IB_MSG_915, 316 ER_IB_MSG_968, 320
ER_IB_MSG_916, 316 ER_IB_MSG_969, 320
ER_IB_MSG_917, 317 ER_IB_MSG_97, 266
ER_IB_MSG_918, 317 ER_IB_MSG_970, 320
ER_IB_MSG_919, 317 ER_IB_MSG_971, 320
ER_IB_MSG_920, 317 ER_IB_MSG_972, 320
ER_IB_MSG_921, 317 ER_IB_MSG_973, 320
ER_IB_MSG_922, 317 ER_IB_MSG_974, 320
ER_IB_MSG_923, 317 ER_IB_MSG_975, 320
ER_IB_MSG_924, 317 ER_IB_MSG_976, 320
ER_IB_MSG_925, 317 ER_IB_MSG_977, 321
ER_IB_MSG_926, 317 ER_IB_MSG_978, 321
ER_IB_MSG_927, 317 ER_IB_MSG_979, 321
ER_IB_MSG_928, 317 ER_IB_MSG_98, 266
ER_IB_MSG_929, 317 ER_IB_MSG_980, 321
490
ER_IB_MSG_981, 321 ER_IB_MSG_DBLWR_1293, 372
ER_IB_MSG_982, 321 ER_IB_MSG_DBLWR_1294, 372
ER_IB_MSG_983, 321 ER_IB_MSG_DBLWR_1295, 372
ER_IB_MSG_984, 321 ER_IB_MSG_DBLWR_1296, 372
ER_IB_MSG_985, 321 ER_IB_MSG_DBLWR_1297, 372
ER_IB_MSG_986, 321 ER_IB_MSG_DBLWR_1298, 373
ER_IB_MSG_987, 321 ER_IB_MSG_DBLWR_1300, 373
ER_IB_MSG_988, 321 ER_IB_MSG_DBLWR_1301, 373
ER_IB_MSG_989, 321 ER_IB_MSG_DBLWR_1304, 373
ER_IB_MSG_99, 266 ER_IB_MSG_DBLWR_1305, 373
ER_IB_MSG_990, 321 ER_IB_MSG_DBLWR_1306, 373
ER_IB_MSG_991, 321 ER_IB_MSG_DBLWR_1307, 373
ER_IB_MSG_992, 322 ER_IB_MSG_DBLWR_1308, 373
ER_IB_MSG_993, 322 ER_IB_MSG_DBLWR_1309, 373
ER_IB_MSG_994, 322 ER_IB_MSG_DBLWR_1310, 373
ER_IB_MSG_995, 322 ER_IB_MSG_DBLWR_1311, 373
ER_IB_MSG_996, 322 ER_IB_MSG_DBLWR_1312, 373
ER_IB_MSG_997, 322 ER_IB_MSG_DBLWR_1313, 373
ER_IB_MSG_998, 322 ER_IB_MSG_DBLWR_1314, 373
ER_IB_MSG_999, 322 ER_IB_MSG_DBLWR_1315, 373
ER_IB_MSG_BAD_DBLWR_FILE_NAME, 372 ER_IB_MSG_DBLWR_1316, 374
ER_IB_MSG_BTREE_LEVEL_LIMIT_EXCEEDED, ER_IB_MSG_DBLWR_1317, 374
365 ER_IB_MSG_DBLWR_1318, 374
ER_IB_MSG_BUF_PENDING_IO, 329 ER_IB_MSG_DBLWR_1320, 374
ER_IB_MSG_BUF_PENDING_IO_ON_SHUTDOWN, ER_IB_MSG_DBLWR_1321, 374
339 ER_IB_MSG_DBLWR_1323, 374
ER_IB_MSG_BUF_POOL_RESIZE_CODE_STATUS, ER_IB_MSG_DBLWR_1324, 374
407 ER_IB_MSG_DBLWR_1325, 374
ER_IB_MSG_BUF_POOL_RESIZE_COMPLETE_CUR_CODE,ER_IB_MSG_DBLWR_1326, 374
406 ER_IB_MSG_DBLWR_1327, 374
ER_IB_MSG_BUF_POOL_RESIZE_PROGRESS_UPDATE,ER_IB_MSG_DBLWR_LOAD_WRONG_SIZE, 374
407 ER_IB_MSG_DBLWR_OPEN_OR_CREATE_WRONG_SIZE,
ER_IB_MSG_CANNOT_FIND_DD_UNDO_SPACE, 374
376 ER_IB_MSG_DDL_FAIL_NO_BUILDER, 416
ER_IB_MSG_CANNOT_OPEN_57_UNDO, 328 ER_IB_MSG_DDL_LOG_DELETE_BY_ID_OK, 301
ER_IB_MSG_CANT_DECRYPT_REDO_LOG, 312 ER_IB_MSG_DDL_LOG_DELETE_BY_ID_TMCT,
ER_IB_MSG_CANT_ENCRYPT_REDO_LOG_DATA, 362
312 ER_IB_MSG_DDL_LOG_FAIL_POST_DDL, 362
ER_IB_MSG_CLEAR_INSTANT_DROP_COLUMN_METADATA,
ER_IB_MSG_DEPRECATED_INNODB_UNDO_TABLESPACE
406 352
ER_IB_MSG_CLOCK_GETTIME_FAILED, 363 ER_IB_MSG_DICT_PARTITION_NOT_FOUND, 371
ER_IB_MSG_CLOCK_MONOTONIC_UNSUPPORTED, ER_IB_MSG_DOWNGRADE_PARTITION_FILE, 370
363 ER_IB_MSG_DROPPED_UNDO_SPACE, 382
ER_IB_MSG_CLONE_DDL_APPLY, 393 ER_IB_MSG_ERROR_OPENING_NEW_UNDO_SPACE,
ER_IB_MSG_CLONE_DDL_INVALIDATE, 393 351
ER_IB_MSG_CLONE_DDL_NTFN, 393 ER_IB_MSG_FAILED_SDI_Z_BUF_ERROR, 352
ER_IB_MSG_CREATED_UNDO_SPACE, 382 ER_IB_MSG_FAILED_SDI_Z_MEM_ERROR, 352
ER_IB_MSG_DATA_DIRECTORY_NOT_INITIALIZED_OR_CORRUPTED,
ER_IB_MSG_FAILED_TO_ALLOCATE_WAIT, 351
331 ER_IB_MSG_FAILED_TO_FINISH_TRUNCATE, 352
ER_IB_MSG_DBLWR_1285, 372 ER_IB_MSG_FAIL_TO_SAVE_SPACE_STATE, 351
ER_IB_MSG_DBLWR_1286, 372 ER_IB_MSG_FILE_RESIZE, 326
ER_IB_MSG_DBLWR_1287, 372 ER_IB_MSG_FIL_STATE_MOVED_CHANGED_NAME,
ER_IB_MSG_DBLWR_1288, 372 371
ER_IB_MSG_DBLWR_1290, 372
491
ER_IB_MSG_FIL_STATE_MOVED_CHANGED_PATH, ER_IB_MSG_LOG_FILES_INVALID_SET, 331
371 ER_IB_MSG_LOG_FILES_RESIZE_CANCELLED,
ER_IB_MSG_FIL_STATE_MOVED_CORRECTED, 401
370 ER_IB_MSG_LOG_FILES_RESIZE_FINISHED, 401
ER_IB_MSG_FIL_STATE_MOVED_PREV, 429 ER_IB_MSG_LOG_FILES_RESIZE_ON_START, 337
ER_IB_MSG_FIL_STATE_MOVED_TOO_MANY, 371 ER_IB_MSG_LOG_FILES_RESIZE_REQUESTED,
ER_IB_MSG_FOUND_WRONG_UNDO_SPACE, 352 401
ER_IB_MSG_GENERAL_TABLESPACE_UNDER_DATADIR, ER_IB_MSG_LOG_FILES_REWRITING, 332
284 ER_IB_MSG_LOG_FILES_UPGRADE, 401
ER_IB_MSG_GTID_FLUSH_AT_SHUTDOWN, 374 ER_IB_MSG_LOG_FILE_DIFFERENT_FORMATS,
ER_IB_MSG_IBUF_CURSOR_RESTORATION_FAILED, 402
299 ER_IB_MSG_LOG_FILE_FOREIGN_UUID, 400
ER_IB_MSG_IBUF_FAILED_TO_RESTORE_POSITION, ER_IB_MSG_LOG_FILE_FORMAT_TOO_NEW, 401
299 ER_IB_MSG_LOG_FILE_FORMAT_TOO_OLD, 401
ER_IB_MSG_IGNORE_SCAN_PATH, 283 ER_IB_MSG_LOG_FILE_FORMAT_UNKNOWN, 302
ER_IB_MSG_IMPLICIT_TABLESPACE_IN_DATADIR, ER_IB_MSG_LOG_FILE_HEADER_INVALID_CHECKSUM,
284 340
ER_IB_MSG_INCORRECT_SIZE, 381 ER_IB_MSG_LOG_FILE_HEADER_READ_FAILED,
ER_IB_MSG_INJECT_CRASH, 381 399
ER_IB_MSG_INJECT_FAILURE, 381 ER_IB_MSG_LOG_FILE_INVALID_LSN_RANGES,
ER_IB_MSG_INNODB_END_INITIALIZE, 375 400
ER_IB_MSG_INNODB_FLUSH_METHOD, 428 ER_IB_MSG_LOG_FILE_INVALID_START_LSN, 400
ER_IB_MSG_INNODB_START_INITIALIZE, 375 ER_IB_MSG_LOG_FILE_IS_EMPTY, 398
ER_IB_MSG_INVALID_LOCATION_FOR_TABLE, ER_IB_MSG_LOG_FILE_MARK_AS_UNUSED_FAILED,
296 402
ER_IB_MSG_INVALID_LOCATION_FOR_TABLESPACE, ER_IB_MSG_LOG_FILE_MARK_CURRENT_AS_INCOMPLETE,
376 401
ER_IB_MSG_INVALID_LOCATION_WRONG_DB, ER_IB_MSG_LOG_FILE_MISSING_FOR_ID, 400
376 ER_IB_MSG_LOG_FILE_OPEN_FAILED, 327
ER_IB_MSG_INVALID_PAGE_TYPE, 407 ER_IB_MSG_LOG_FILE_OS_CREATE_FAILED, 326
ER_IB_MSG_LOCK_FREE_HASH_USAGE_STATS, ER_IB_MSG_LOG_FILE_PREPARE_ON_CREATE_FAILED,
352 327
ER_IB_MSG_LOG_CHECKPOINT_FOUND, 401 ER_IB_MSG_LOG_FILE_REMOVE_FAILED, 401
ER_IB_MSG_LOG_CORRUPT, 302 ER_IB_MSG_LOG_FILE_RENAME_ON_CREATE_FAILED,
ER_IB_MSG_LOG_FILES_CANNOT_ENCRYPT_IN_READ_ONLY,
401
338 ER_IB_MSG_LOG_FILE_RESIZE_FAILED, 326
ER_IB_MSG_LOG_FILES_CAPACITY_CHANGED, ER_IB_MSG_LOG_FILE_SIZE_INVALID, 331
401 ER_IB_MSG_LOG_FILE_TOO_BIG, 399
ER_IB_MSG_LOG_FILES_CREATED_BY_CLONE, ER_IB_MSG_LOG_FILE_TOO_SMALL, 399
304 ER_IB_MSG_LOG_FILE_TRUNCATE, 402
ER_IB_MSG_LOG_FILES_CREATED_BY_CLONE_AND_READ_ONLY_MODE,
ER_IB_MSG_LOG_FILE_UNUSED_MARK_AS_IN_USE_FAILED,
399 402
ER_IB_MSG_LOG_FILES_CREATED_BY_MEB, 304 ER_IB_MSG_LOG_FILE_UNUSED_REMOVE_FAILED,
ER_IB_MSG_LOG_FILES_CREATED_BY_MEB_AND_READ_ONLY_MODE,
402
304 ER_IB_MSG_LOG_FILE_UNUSED_RENAME_FAILED,
ER_IB_MSG_LOG_FILES_CREATED_BY_UNKNOWN_CREATOR,
402
401 ER_IB_MSG_LOG_FILE_UNUSED_RESIZE_FAILED,
ER_IB_MSG_LOG_FILES_CREATE_AND_READ_ONLY_MODE,
402
326 ER_IB_MSG_LOG_FORMAT_BEFORE_5_7_9, 340
ER_IB_MSG_LOG_FILES_DIFFERENT_SIZES, 331 ER_IB_MSG_LOG_FORMAT_BEFORE_8_0_30, 302
ER_IB_MSG_LOG_FILES_ENCRYPTION_INIT_FAILED, ER_IB_MSG_LOG_FORMAT_OLD, 304
338 ER_IB_MSG_LOG_FORMAT_OLD_AND_LOG_CORRUPTED,
ER_IB_MSG_LOG_FILES_FOUND_MISSING, 401 302
ER_IB_MSG_LOG_FILES_INITIALIZED, 327
492
ER_IB_MSG_LOG_FORMAT_OLD_AND_NO_CLEAN_SHUTDOWN,
ER_IB_MSG_PARSE_OLD_REDO_INDEX_VERSION,
302 406
ER_IB_MSG_LOG_INIT_DIR_LIST_FAILED, 399 ER_IB_MSG_PAR_RSEG_INIT_COMPLETE_MSG,
ER_IB_MSG_LOG_INIT_DIR_MISSING_SUBDIR, 391
399 ER_IB_MSG_PAR_RSEG_INIT_TIME_MSG, 391
ER_IB_MSG_LOG_INIT_DIR_NOT_EMPTY_WONT_INITIALIZE,
ER_IB_MSG_POST_RECOVER_DDL_LOG_RECOVER,
399 362
ER_IB_MSG_LOG_PARAMS_CONCURRENCY_MARGIN_UNSAFE,
ER_IB_MSG_POST_RECOVER_POST_TS_ENCRYPT,
340 362
ER_IB_MSG_LOG_PARAMS_DEDICATED_SERVER_IGNORED,
ER_IB_MSG_RECOVERY_CHECKPOINT_FROM_BEFORE_C
402 304
ER_IB_MSG_LOG_PARAMS_FILE_SIZE_UNUSED, ER_IB_MSG_RECOVERY_CHECKPOINT_NOT_FOUND,
400 303
ER_IB_MSG_LOG_PARAMS_LEGACY_USAGE, 403 ER_IB_MSG_RECOVERY_CHECKPOINT_OUTSIDE_LOG_FI
ER_IB_MSG_LOG_PARAMS_N_FILES_UNUSED, 399
400 ER_IB_MSG_RECOVERY_CORRUPT, 332
ER_IB_MSG_LOG_PFS_ACQUIRE_SERVICES_FAILED, ER_IB_MSG_RECOVERY_IN_READ_ONLY, 305
402 ER_IB_MSG_RECOVERY_IS_NEEDED, 305
ER_IB_MSG_LOG_PFS_CREATE_TABLES_FAILED, ER_IB_MSG_RECOVERY_NO_SPACE_IN_REDO_LOG__SK
402 391
ER_IB_MSG_LOG_PRE_8_0_30_MISSING_FILE0, ER_IB_MSG_RECOVERY_NO_SPACE_IN_REDO_LOG__UN
402 391
ER_IB_MSG_LOG_UPGRADE_CLONED_DB, 400 ER_IB_MSG_RECOVERY_SKIPPED_IN_READ_ONLY_MODE
ER_IB_MSG_LOG_UPGRADE_CORRUPTION__UNEXPECTED,
304
400 ER_IB_MSG_REENCRYPTED_GENERAL_TABLESPACE_KE
ER_IB_MSG_LOG_UPGRADE_FORCED_RECV, 400 391
ER_IB_MSG_LOG_UPGRADE_IN_READ_ONLY_MODE, ER_IB_MSG_REENCRYPTED_TABLESPACE_KEY,
400 391
ER_IB_MSG_LOG_UPGRADE_UNINITIALIZED_FILES, ER_IB_MSG_RESUME_OP_FOR_SPACE, 347
400 ER_IB_MSG_SCANNING_TEMP_TABLESPACE_DIR,
ER_IB_MSG_LOG_WRITER_ABORTS_LOG_ARCHIVER, 378
338 ER_IB_MSG_SDI_Z_STREAM_ERROR, 352
ER_IB_MSG_LOG_WRITER_ENTERED_EXTRA_MARGIN,ER_IB_MSG_SDI_Z_UNKNOWN_ERROR, 352
399 ER_IB_MSG_SKIP_HIDDEN_DIR, 369
ER_IB_MSG_LOG_WRITER_EXITED_EXTRA_MARGIN, ER_IB_MSG_STATS_SAMPLING_TOO_LARGE, 385
399 ER_IB_MSG_SUBMIT_DETAILED_BUG_REPORT,
ER_IB_MSG_LOG_WRITER_OUT_OF_SPACE, 338 427
ER_IB_MSG_LOG_WRITER_WAITING_FOR_ARCHIVER, ER_IB_MSG_THREAD_CONCURRENCY_CHANGED,
338 340
ER_IB_MSG_LOG_WRITER_WAIT_ON_CONSUMER, ER_IB_MSG_TOO_LONG_PATH, 363
405 ER_IB_MSG_TRX_RECOVERY_ROLLBACK_COMPLETED,
ER_IB_MSG_LOG_WRITER_WAIT_ON_NEW_LOG_FILE, 335
399 ER_IB_MSG_TRX_RECOVERY_ROLLBACK_NOT_COMPLET
ER_IB_MSG_LOG_WRITER_WRITE_FAILED, 399 377
ER_IB_MSG_MADVISE_FAILED, 351 ER_IB_MSG_TRYING_TO_OPEN_FILE_FOR_LONG_TIME,
ER_IB_MSG_MADV_DONTDUMP_UNSUPPORTED, 396
351 ER_IB_MSG_UNDO_ALTERED_ACTIVE, 380
ER_IB_MSG_MASTER_KEY_ROTATED, 382 ER_IB_MSG_UNDO_ALTERED_INACTIVE, 380
ER_IB_MSG_MAX_UNDO_SPACES_REACHED, 351 ER_IB_MSG_UNDO_ENCRYPTION_INFO_LOADED,
ER_IB_MSG_NOT_END_WITH_IBU, 352 393
ER_IB_MSG_NO_ENCRYPT_PROGRESS_FOUND, ER_IB_MSG_UNDO_MARKED_ACTIVE, 380
347 ER_IB_MSG_UNDO_MARKED_EMPTY, 380
ER_IB_MSG_PAGE_ARCH_NO_RESET_POINTS, ER_IB_MSG_UNDO_MARKED_FOR_TRUNCATE,
375 333
493
ER_IB_MSG_UNDO_TRUNCATE_COMPLETE, 334 ER_IB_WRN_ENCRYPTION_INFO_SIZE_MISMATCH,
ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_CLONE, 393
380 ER_IB_WRN_FAILED_TO_ACQUIRE_SERVICE, 387
ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_FAILURE, ER_IB_WRN_FAST_SHUTDOWN_REDO_DISABLED,
334 377
ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_LOG_CREATE,
ER_IB_WRN_IGNORE_REDO_LOG_CAPACITY, 410
334 ER_IB_WRN_OLD_GEOMETRY_TYPE, 387
ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_MDL, ER_IB_WRN_PAGE_ARCH_FLUSH_DATA, 375
381 ER_IB_WRN_REDO_DISABLED, 377
ER_IB_MSG_UNDO_TRUNCATE_FAIL_TO_READ_LOG_FILE,
ER_IB_WRN_REDO_ENABLED, 377
333 ER_IB_WRONG_PAGEID_AFTER_SYNC_READ,
ER_IB_MSG_UNDO_TRUNCATE_START, 334 419
ER_IB_MSG_UNDO_TRUNCATE_TOO_OFTEN, 375 ER_IB_WRONG_PAGE_ID, 419
ER_IB_MSG_UNEXPECTED_FILE_EXISTS, 279 ER_IDENTIFIED_BY_UNSUPPORTED, 118
ER_IB_MSG_UNPROCESSED_REDO_LOG_RECORDS, ER_IDENT_CAUSES_TOO_LONG_PATH, 58
302 ER_IDENT_CAUSES_TOO_LONG_PATH_IN_UPGRADE,
ER_IB_MSG_UNPROTECTED_LOCATION_ALLOWED, 367
282 ER_IF_NOT_EXISTS_UNSUPPORTED_TRG_EXISTS_ON_DIFFE
ER_IB_MSG_UPGRADE_PARTITION_FILE, 370 121
ER_IB_MSG_UPGRADE_PARTITION_FILE_IMPORT, ER_IF_NOT_EXISTS_UNSUPPORTED_UDF_NATIVE_FCT_NAM
370 122
ER_IB_MSG_USING_UNDO_SPACE, 351 ER_ILLEGAL_GRANT_FOR_TABLE, 13
ER_IB_MSG_WAIT_FOR_ENCRYPT_THREAD, 347 ER_ILLEGAL_HA, 5
ER_IB_MSG_WRONG_TABLESPACE_DIR, 352 ER_ILLEGAL_HA_CREATE_OPTION, 34
ER_IB_PARALLEL_READER_WORKER_INFO, 407 ER_ILLEGAL_PRIVILEGE_LEVEL, 84
ER_IB_PRIMARY_KEY_IS_INSTANT, 410 ER_ILLEGAL_REFERENCE, 19
ER_IB_RDBLWR_BYTES_INFO, 398 ER_ILLEGAL_USER_VAR, 65
ER_IB_RECV_FIRST_REC_GROUP_INVALID, 363 ER_ILLEGAL_VALUE_FOR_TYPE, 27
ER_IB_RELOCK_LATCH_ORDER_VIOLATION, 378 ER_IMDS_OCI_ERROR, 431
ER_IB_RESURRECT_ACQUIRE_TABLE_LOCK, 412 ER_IMDS_OCI_INFO, 431
ER_IB_RESURRECT_IDENTIFY_TABLE_TO_LOCK, ER_IMDS_OCI_WARNING, 431
412 ER_IMPLICIT_COMPARISON_FOR_JSON, 112
ER_IB_RESURRECT_RECORD_COMPLETE, 413 ER_IMPOSSIBLE_STRING_CONVERSION, 112
ER_IB_RESURRECT_RECORD_PROGRESS, 412 ER_IMP_INCOMPATIBLE_CFG_VERSION, 109
ER_IB_RESURRECT_TRX_INSERT, 412 ER_IMP_INCOMPATIBLE_DD_VERSION, 84
ER_IB_RESURRECT_TRX_INSERT_COMPLETE, ER_IMP_INCOMPATIBLE_MYSQLD_VERSION, 84
413 ER_IMP_INCOMPATIBLE_SDI_VERSION, 84
ER_IB_RESURRECT_TRX_UPDATE, 412 ER_IMP_NO_FILES_MATCHED, 83
ER_IB_RESURRECT_TRX_UPDATE_COMPLETE, ER_IMP_SCHEMA_DOES_NOT_EXIST, 84
413 ER_IMP_TABLE_ALREADY_EXISTS, 84
ER_IB_SELECT_COUNT_STAR, 411 ER_INCOMPATIBLE_TYPE_AGG, 136
ER_IB_SYNC_READ_FAILED, 419 ER_INCONSISTENT_ERROR, 341
ER_IB_TABLESPACE_PATH_VALIDATION_SKIPPED, ER_INCONSISTENT_PARTITION_INFO_ERROR, 34
377 ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR,
ER_IB_TMP_TABLESPACE_CANNOT_CREATE_DIRECTORY,
35
378 ER_INCORRECT_CURRENT_PASSWORD, 104
ER_IB_UNABLE_TO_EXPAND_TEMPORARY_TABLESPACE_POOL,
ER_INCORRECT_GLOBAL_LOCAL_VAR, 19
378 ER_INCORRECT_TYPE, 65
ER_IB_WARN_ACCESSING_NONEXISTINC_SPACE, ER_INDEX_COLUMN_TOO_LONG, 47
278 ER_INDEX_CORRUPT, 47
ER_IB_WARN_MANY_NON_LRU_FILES_OPENED, ER_INDEX_OTHER_THAN_PK, 124
396 ER_INDEX_TYPE_NOT_SUPPORTED_FOR_SPATIAL_INDEX,
ER_IB_WARN_OPEN_PARTITION_FILE, 370 92
494
ER_INFORMATION_SCHEMA_VERSION_CHANGE, ER_INNODB_IMPORT_ENUM_NULL_TERMINATOR_MISSIN
416 128
ER_INIT_BOOTSTRAP_COMPLETE, 170 ER_INNODB_IMPORT_ERROR, 55
ER_INIT_CANT_OPEN_BOOTSTRAP_FILE, 170 ER_INNODB_IMPORT_WRONG_DROPPED_ENUM_LENGTH
ER_INIT_CREATING_DD, 170 127
ER_INIT_DATADIR_EXISTS_AND_NOT_WRITABLE_WONT_INITIALIZE,
ER_INNODB_IMPORT_WRONG_NUMBER_OF_INDEXES_TO
170 128
ER_INIT_DATADIR_EXISTS_AND_PATH_TOO_LONG_WONT_INITIALIZE,
ER_INNODB_IMPORT_WRONG_NUMBER_OF_INDEXES_ZE
170 127
ER_INIT_DATADIR_EXISTS_WONT_INITIALIZE, 170 ER_INNODB_INCOMPATIBLE_WITH_TABLESPACE,
ER_INIT_DATADIR_NOT_EMPTY_WONT_INITIALIZE, 115
170 ER_INNODB_INDEX_COLUMN_INFO_UNLIKE_MYSQLS,
ER_INIT_FAILED_TO_GENERATE_ROOT_PASSWORD, 191
369 ER_INNODB_INDEX_CORRUPT, 55
ER_INIT_GENERATING_TEMP_PASSWORD_FOR_ROOT,ER_INNODB_INSTANT_ADD_DROP_NOT_SUPPORTED_MA
170 126
ER_INIT_ROOT_WITHOUT_PASSWORD, 170 ER_INNODB_INSTANT_ADD_NOT_SUPPORTED_MAX_FIEL
ER_INNODB_ACTIVE_INDEX_CHANGE_FAILED, 126
203 ER_INNODB_INTERNAL_INDEX, 203
ER_INNODB_AUTOEXTEND_SIZE_OUT_OF_RANGE, ER_INNODB_INVALID_AUTOEXTEND_SIZE_VALUE,
115 115
ER_INNODB_CANNOT_CREATE_TABLE, 203 ER_INNODB_INVALID_INNODB_UNDO_DIRECTORY,
ER_INNODB_CANT_BUILD_INDEX_XLATION_TABLE_FOR,
190
191 ER_INNODB_INVALID_INNODB_UNDO_DIRECTORY_LOCA
ER_INNODB_CANT_FIND_INDEX_IN_INNODB_DD, 353
191 ER_INNODB_INVALID_LOG_GROUP_HOME_DIR,
ER_INNODB_CLOSING_CONNECTION_ROLLS_BACK, 190
191 ER_INNODB_INVALID_MONITOR_COUNTER_NAME,
ER_INNODB_CLUSTERED_INDEX_PRIVATE, 191 204
ER_INNODB_COMPRESSION_FAILURE, 115 ER_INNODB_INVALID_PAGE_SIZE, 190
ER_INNODB_DIFF_IN_REF_LEN, 203 ER_INNODB_IO_CAPACITY_EXCEEDS_MAX, 190
ER_INNODB_DIRTY_WATER_MARK_NOT_LOW, ER_INNODB_IO_WRITE_ERROR_RETRYING, 382
190 ER_INNODB_IO_WRITE_FAILED, 382
ER_INNODB_ERROR_LOGGER_FATAL_MSG, 204 ER_INNODB_MANDATORY, 144
ER_INNODB_ERROR_LOGGER_MSG, 204 ER_INNODB_MAX_ROW_VERSION, 121
ER_INNODB_FAILED_TO_FIND_IDX, 203 ER_INNODB_MONITOR_DEFAULT_VALUE_NOT_DEFINED,
ER_INNODB_FAILED_TO_FIND_IDX_FROM_DICT_CACHE,
204
203 ER_INNODB_MONITOR_IS_ENABLED, 204
ER_INNODB_FAILED_TO_FIND_IDX_WITH_KEY_NO, ER_INNODB_NO_FT_TEMP_TABLE, 53
203 ER_INNODB_ONLINE_LOG_TOO_BIG, 54
ER_INNODB_FILES_SAME, 190 ER_INNODB_OUT_OF_RESOURCES, 371
ER_INNODB_FORCED_RECOVERY, 59 ER_INNODB_PK_NOT_IN_MYSQL, 191
ER_INNODB_FT_AUX_NOT_HEX_ID, 59 ER_INNODB_PK_ONLY_IN_MYSQL, 191
ER_INNODB_FT_LIMIT, 53 ER_INNODB_READ_ONLY, 59
ER_INNODB_FT_WRONG_DOCID_COLUMN, 54 ER_INNODB_REDO_ARCHIVING_ENABLED, 112
ER_INNODB_FT_WRONG_DOCID_INDEX, 54 ER_INNODB_REDO_DISABLED, 112
ER_INNODB_IDX_CNT_FEWER_THAN_DEFINED_IN_MYSQL,
ER_INNODB_REDO_LOG_ARCHIVE_ACTIVE, 101
203 ER_INNODB_REDO_LOG_ARCHIVE_DIRS_INVALID,
ER_INNODB_IDX_CNT_MORE_THAN_DEFINED_IN_MYSQL,
101
203 ER_INNODB_REDO_LOG_ARCHIVE_DIR_CLASH,
ER_INNODB_IDX_COLUMN_CNT_DIFF, 203 101
ER_INNODB_ILLEGAL_COLON_IN_POOL, 190 ER_INNODB_REDO_LOG_ARCHIVE_DIR_EMPTY,
ER_INNODB_IMPORT_DROP_COL_METADATA_MISMATCH,101
128
495
ER_INNODB_REDO_LOG_ARCHIVE_DIR_PERMISSIONS,ER_INVALID_CHARSET_AND_DEFAULT_IS_MB,
101 162
ER_INNODB_REDO_LOG_ARCHIVE_FAILED, 101 ER_INVALID_CLAUSE_COMBINATION, 138
ER_INNODB_REDO_LOG_ARCHIVE_FILE_CREATE, ER_INVALID_CLAUSE_IN_CONTEXT, 138
101 ER_INVALID_COLLATION_FOR_CHARSET, 194
ER_INNODB_REDO_LOG_ARCHIVE_INACTIVE, ER_INVALID_DD_OBJECT, 76
101 ER_INVALID_DD_OBJECT_ID, 76
ER_INNODB_REDO_LOG_ARCHIVE_LABEL_NOT_FOUND, ER_INVALID_DD_OBJECT_NAME, 76
101 ER_INVALID_DEFAULT, 8
ER_INNODB_REDO_LOG_ARCHIVE_NO_SUCH_DIR, ER_INVALID_DEFAULT_UTF8MB4_COLLATION, 91
101 ER_INVALID_ENCRYPTION_OPTION, 74
ER_INNODB_REDO_LOG_ARCHIVE_SESSION, 101 ER_INVALID_ENCRYPTION_REQUEST, 100
ER_INNODB_REDO_LOG_ARCHIVE_START_SUBDIR_PATH,
ER_INVALID_ERROR_LOG_NAME, 151
101 ER_INVALID_FIELD_SIZE, 61
ER_INNODB_REDO_LOG_ARCHIVE_START_TIMEOUT, ER_INVALID_FILE_FORMAT, 427
101 ER_INVALID_GEOJSON_CRS_NOT_TOP_LEVEL,
ER_INNODB_TRX_XLATION_TABLE_OOM, 191 88
ER_INNODB_UNABLE_TO_ACQUIRE_DD_OBJECT, ER_INVALID_GEOJSON_MISSING_MEMBER, 65
375 ER_INVALID_GEOJSON_UNSPECIFIED, 65
ER_INNODB_UNDO_LOG_FULL, 61 ER_INVALID_GEOJSON_WRONG_TYPE, 65
ER_INNODB_UNKNOWN_COLLATION, 190 ER_INVALID_GROUP_FUNC_USE, 11
ER_INNODB_UNREGISTERED_TRX_ACTIVE, 191 ER_INVALID_INFO_IN_FRM, 163
ER_INNODB_USE_MONITOR_GROUP_NAME, 203 ER_INVALID_INSTRUMENT, 144
ER_INSECURE_CHANGE_SOURCE, 51 ER_INVALID_JSON_ATTRIBUTE, 111
ER_INSECURE_PLAIN_TEXT, 51 ER_INVALID_JSON_BINARY_DATA, 71
ER_INSERT_INFO, 9 ER_INVALID_JSON_CHARSET, 71
ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_DIRECT,
ER_INVALID_JSON_CHARSET_IN_FUNCTION, 71
46 ER_INVALID_JSON_DATA, 65
ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_FORMAT,
ER_INVALID_JSON_PATH, 71
45 ER_INVALID_JSON_PATH_ARRAY_CELL, 73
ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_SQL_LOG_BIN,
ER_INVALID_JSON_PATH_CHARSET, 71
46 ER_INVALID_JSON_PATH_WILDCARD, 71
ER_INSTALL_COMPONENT_SET_NULL_VALUE, ER_INVALID_JSON_TEXT, 71
126 ER_INVALID_JSON_TEXT_IN_PARAM, 71
ER_INSTALL_COMPONENT_SET_UNUSED_VALUE, ER_INVALID_JSON_TYPE, 102
126 ER_INVALID_JSON_VALUE_FOR_CAST, 72
ER_INSTALL_PLUGIN_CONFLICT_CLIENT, 117 ER_INVALID_JSON_VALUE_FOR_FUNC_INDEX,
ER_INSTALL_PLUGIN_CONFLICT_LOG, 390 105
ER_INTERNAL_ERROR, 55 ER_INVALID_LOGGER, 430
ER_INTERSECT_ALL_MAX_DUPLICATES_EXCEEDED, ER_INVALID_METER, 430
123 ER_INVALID_MFA_OPERATIONS_FOR_PASSWORDLESS_USE
ER_INVALID_ADMIN_ADDRESS, 354 118
ER_INVALID_ARGUMENT_FOR_LOGARITHM, 61 ER_INVALID_MFA_PLUGIN_SPECIFIED, 117
ER_INVALID_ASSIGNMENT_TARGET, 117 ER_INVALID_MULTIPLE_CLAUSES, 100
ER_INVALID_AUTHENTICATION_POLICY, 393 ER_INVALID_NAMED_PIPE_FULL_ACCESS_GROUP,
ER_INVALID_BITWISE_AGGREGATE_OPERANDS_SIZE, 359
77 ER_INVALID_NO_OF_ARGS, 83
ER_INVALID_BITWISE_OPERANDS_SIZE, 77 ER_INVALID_ON_UPDATE, 22
ER_INVALID_CAST, 113 ER_INVALID_OPTION_CHARACTERS, 80
ER_INVALID_CAST_POLYGON_RING_DIRECTION, ER_INVALID_OPTION_END_CHARACTER, 80
116 ER_INVALID_OPTION_KEY, 80
ER_INVALID_CAST_TO_GEOMETRY, 116 ER_INVALID_OPTION_KEY_VALUE_PAIR, 80
ER_INVALID_CAST_TO_JSON, 71 ER_INVALID_OPTION_START_CHARACTER, 80
ER_INVALID_CHARACTER_STRING, 23 ER_INVALID_OPTION_VALUE, 80
496
ER_INVALID_OR_OLD_TABLE_OR_DB_NAME, 172 ER_KEYRING_AWS_FAILED_TO_ACCESS_KEY_FROM_CO
ER_INVALID_OUTER_REFERENCE, 138 228
ER_INVALID_PARAMETER_USE, 113 ER_KEYRING_AWS_FAILED_TO_ACCESS_KEY_ID_FROM_
ER_INVALID_PLUGIN_FOR_REGISTRATION, 118 228
ER_INVALID_PROPERTY_KEY, 356 ER_KEYRING_AWS_FAILED_TO_ACCESS_OR_CREATE_KE
ER_INVALID_RPL_WILD_TABLE_FILTER_PATTERN, 228
65 ER_KEYRING_AWS_FAILED_TO_ACCESS_OR_CREATE_KE
ER_INVALID_SERVER_DOWNGRADE_NOT_PATCH, 228
416 ER_KEYRING_AWS_FAILED_TO_CONNECT_KMS,
ER_INVALID_SERVER_UPGRADE_NOT_LTS, 415 230
ER_INVALID_THREAD_ID, 87 ER_KEYRING_AWS_FAILED_TO_DECRYPT_KEY,
ER_INVALID_THREAD_PRIORITY, 87 230
ER_INVALID_TIME_ZONE_INTERVAL, 113 ER_KEYRING_AWS_FAILED_TO_ENCRYPT_KEY,
ER_INVALID_TLS_VERSION, 397 230
ER_INVALID_TYPE_FOR_JSON, 71 ER_KEYRING_AWS_FAILED_TO_FLUSH_KEYRING_TO_FIL
ER_INVALID_USER_ATTRIBUTE_JSON, 111 229
ER_INVALID_USER_FOR_REGISTRATION, 118 ER_KEYRING_AWS_FAILED_TO_GENERATE_KEY_DUE_TO
ER_INVALID_USE_OF_FORCE_OPTION, 87 229
ER_INVALID_USE_OF_NULL, 13 ER_KEYRING_AWS_FAILED_TO_GENERATE_NEW_KEY,
ER_INVALID_VALUE_FOR_ENFORCE_GTID_CONSISTENCY,
230
141 ER_KEYRING_AWS_FAILED_TO_GET_KMS_CREDENTIAL_
ER_INVALID_VALUE_OF_BIND_ADDRESSES, 348 229
ER_INVALID_VCPU_ID, 86 ER_KEYRING_AWS_FAILED_TO_INIT_DUE_TO_INTERNAL_
ER_INVALID_VCPU_RANGE, 87 229
ER_INVALID_XPLUGIN_SOCKET_SAME_AS_SERVER, ER_KEYRING_AWS_FAILED_TO_INIT_DUE_TO_PLUGIN_IN
375 229
ER_INVALID_YEAR_COLUMN_LENGTH, 55 ER_KEYRING_AWS_FAILED_TO_OPEN_CONF_FILE,
ER_IO_ERR_LOG_INDEX_READ, 27 228
ER_IO_READ_ERROR, 54 ER_KEYRING_AWS_FAILED_TO_RESTORE_FROM_BACKU
ER_IO_WRITE_ERROR, 55 229
ER_IPSOCK_ERROR, 8 ER_KEYRING_AWS_FAILED_TO_RE_ENCRYPT_KEY,
ER_IS_QUERY_INVALID_CLAUSE, 79 230
ER_I_S_SKIPPED_TABLESPACE, 86 ER_KEYRING_AWS_FAILED_TO_ROTATE_CMK,
ER_JSON_BAD_ONE_OR_ALL_ARG, 72 230
ER_JSON_DOCUMENT_NULL_KEY, 72 ER_KEYRING_AWS_FAILED_TO_SET_CMK_ID,
ER_JSON_DOCUMENT_TOO_DEEP, 72 228
ER_JSON_KEY_TOO_BIG, 72 ER_KEYRING_AWS_FAILED_TO_SET_REGION,
ER_JSON_PARSE_ERROR, 153 228
ER_JSON_SCHEMA_VALIDATION_ERROR_WITH_DETAILED_REPORT,
ER_KEYRING_AWS_FOUND_MALFORMED_BACKUP_FILE,
108 229
ER_JSON_USED_AS_KEY, 72 ER_KEYRING_AWS_INCORRECT_FILE, 229
ER_JSON_VACUOUS_PATH, 72 ER_KEYRING_AWS_INCORRECT_PROXY, 368
ER_JSON_VALUE_OUT_OF_RANGE_FOR_FUNC_INDEX,ER_KEYRING_AWS_INCORRECT_REGION, 230
105 ER_KEYRING_AWS_INIT_FAILURE, 229
ER_JSON_VALUE_TOO_BIG, 72 ER_KEYRING_AWS_INVALID_CONF_FILE_PATH,
ER_JT_MAX_NESTED_PATH, 88 228
ER_JT_VALUE_OUT_OF_RANGE, 88 ER_KEYRING_AWS_INVALID_DATA_FILE_PATH,
ER_KERBEROS_CREATE_USER, 117 228
ER_KEYCACHE_OOM, 146 ER_KEYRING_AWS_INVALID_KEY_LENGTH_FOR_CIPHER,
ER_KEYRING_ACCESS_DENIED_ERROR, 75 229
ER_KEYRING_AWS_CMK_ID_NOT_SET, 229 ER_KEYRING_AWS_UDF_AWS_KMS_ERROR, 75
ER_KEYRING_AWS_FAILED_TO_ACCESS_DATA_FILE, ER_KEYRING_CHECK_KEY_FAILED_DUE_TO_EMPTY_KEY
229 224
497
ER_KEYRING_CHECK_KEY_FAILED_DUE_TO_INVALID_KEY,
ER_KEYRING_FAILED_TO_FLUSH_KEYS_TO_KEYRING_BACK
224 225
ER_KEYRING_COMPONENT_AWS_ADD_TO_DOC_FAILED, ER_KEYRING_FAILED_TO_GET_FILE_STAT, 225
433 ER_KEYRING_FAILED_TO_LOAD_KEYRING_CONTENT,
ER_KEYRING_COMPONENT_AWS_BACKEND_OPERATION_FAILED,
225
432 ER_KEYRING_FAILED_TO_REMOVE_FILE, 225
ER_KEYRING_COMPONENT_AWS_CACHE_OPERATION_FAILED,
ER_KEYRING_FAILED_TO_REMOVE_KEY_DUE_TO_EMPTY_ID
433 225
ER_KEYRING_COMPONENT_AWS_CANNOT_ENCRYPT_READ_ONLY,
ER_KEYRING_FAILED_TO_RESTORE_FROM_BACKUP_FILE,
433 225
ER_KEYRING_COMPONENT_AWS_CLIENT_CREATE_FAILED,
ER_KEYRING_FAILED_TO_TRUNCATE_FILE, 225
432 ER_KEYRING_FILE_IO_ERROR, 225
ER_KEYRING_COMPONENT_AWS_CLIENT_OPERATION_FAILED,
ER_KEYRING_FOUND_MALFORMED_BACKUP_FILE,
432 225
ER_KEYRING_COMPONENT_AWS_FILE_OPEN_FAILED,ER_KEYRING_INCORRECT_FILE, 224
432 ER_KEYRING_INVALID_KEY_LENGTH, 224
ER_KEYRING_COMPONENT_AWS_FILE_PARSE_FAILED, ER_KEYRING_INVALID_KEY_TYPE, 224
432 ER_KEYRING_KEY_FETCH_FAILED_DUE_TO_EMPTY_KEY_ID,
ER_KEYRING_COMPONENT_AWS_FILE_PATH_EMPTY, 225
432 ER_KEYRING_LOGGER_ERROR_MSG, 214
ER_KEYRING_COMPONENT_AWS_FILE_READ_FAILED,ER_KEYRING_MIGRATE_FAILED, 341
432 ER_KEYRING_MIGRATE_MEMORY_DEALLOCATION_FAILED,
ER_KEYRING_COMPONENT_AWS_FILE_WRITE_FAILED,427
432 ER_KEYRING_MIGRATE_SKIPPED_KEY, 427
ER_KEYRING_COMPONENT_AWS_GENERATE_KEY_INVALID_PARAMETER,
ER_KEYRING_MIGRATION_EXTRA_OPTIONS, 260
432 ER_KEYRING_MIGRATION_FAILED, 206
ER_KEYRING_COMPONENT_AWS_KEY_EXTRACT_FAILED,ER_KEYRING_MIGRATION_FAILURE, 75
432 ER_KEYRING_MIGRATION_STATUS, 75
ER_KEYRING_COMPONENT_AWS_READ_ONLY_LIMIT, ER_KEYRING_MIGRATION_SUCCESSFUL, 206
433 ER_KEYRING_OCI_HTTP_REQUEST, 406
ER_KEYRING_COMPONENT_AWS_WRITE_AFTER_REENCRYPTION_FAILED,
ER_KEYRING_OCI_INVALID_JSON, 406
433 ER_KEYRING_OCI_PARSE_JSON, 406
ER_KEYRING_COMPONENT_EXCEPTION, 386 ER_KEYRING_OKV_CONNECTION_TO_SERVER_FAILED,
ER_KEYRING_COMPONENT_KEYRING_FILE_DECRYPT_FAILED,
227
426 ER_KEYRING_OKV_FAILED_TO_ACTIVATE_KEYS,
ER_KEYRING_COMPONENT_KEYRING_FILE_INVALID_FORMAT,
227
426 ER_KEYRING_OKV_FAILED_TO_ADD_ATTRIBUTE,
ER_KEYRING_COMPONENT_KEYRING_FILE_JSON_EXTRACT_FAILED,
227
426 ER_KEYRING_OKV_FAILED_TO_FETCH_KEY, 227
ER_KEYRING_COMPONENT_KEYRING_FILE_KEY_EXTRACT_FAILED,
ER_KEYRING_OKV_FAILED_TO_FIND_SERVER_ENTRY,
426 226
ER_KEYRING_COMPONENT_KEYRING_FILE_NAME_EMPTY,
ER_KEYRING_OKV_FAILED_TO_FIND_STANDBY_SERVER_EN
426 226
ER_KEYRING_COMPONENT_KEYRING_FILE_READ_FAILED,
ER_KEYRING_OKV_FAILED_TO_GENERATE_KEY,
426 227
ER_KEYRING_COMPONENT_MEMORY_ALLOCATION_ERROR,
ER_KEYRING_OKV_FAILED_TO_GENERATE_KEY_DUE_TO_IN
386 226
ER_KEYRING_COMPONENT_NOT_INITIALIZED, ER_KEYRING_OKV_FAILED_TO_INIT_CLIENT, 227
386 ER_KEYRING_OKV_FAILED_TO_INIT_SSL_LAYER,
ER_KEYRING_FAILED_TO_FLUSH_KEYRING_TO_FILE, 226
225 ER_KEYRING_OKV_FAILED_TO_LOAD_KEY_UID,
ER_KEYRING_FAILED_TO_FLUSH_KEYS_TO_KEYRING,226
225 ER_KEYRING_OKV_FAILED_TO_LOAD_SSL_TRUST_STORE,
227
498
ER_KEYRING_OKV_FAILED_TO_PARSE_CONF_FILE, ER_LANGUAGE_COMPONENT_NOT_AVAILABLE,
226 127
ER_KEYRING_OKV_FAILED_TO_REMOVE_KEY, ER_LANGUAGE_COMPONENT_RUNTIME, 134
227 ER_LANGUAGE_COMPONENT_SERVER_ERROR,
ER_KEYRING_OKV_FAILED_TO_RETRIEVE_KEY, 425
227 ER_LANGUAGE_COMPONENT_SET_SYSTEM_VARIABLE,
ER_KEYRING_OKV_FAILED_TO_RETRIEVE_KEY_SIGNATURE,
135
227 ER_LANGUAGE_COMPONENT_TIMEZONE, 134
ER_KEYRING_OKV_FAILED_TO_SET_CERTIFICATE_FILE,
ER_LANGUAGE_COMPONENT_UNSUPPORTED_LANGUAG
227 127
ER_KEYRING_OKV_FAILED_TO_SET_KEY_FILE, ER_LANGUAGE_COMPONENT_UNSUPPORTED_TYPE,
228 135
ER_KEYRING_OKV_FAILED_TO_STORE_KEY, 227 ER_LANGUAGE_COMPONENT_VM_API_FUNCTION_ERRO
ER_KEYRING_OKV_FAILED_TO_STORE_OR_GENERATE_KEY,
425
227 ER_LANGUAGE_COMPONENT_VM_INTERNAL_ERROR,
ER_KEYRING_OKV_INCORRECT_KEY_VAULT_CONFIGURED,
425
226 ER_LANGUAGE_COMPONENT_WARNING, 417
ER_KEYRING_OKV_INIT_FAILED_DUE_TO_INCORRECT_CONF,
ER_LATITUDE_OUT_OF_RANGE, 84
226 ER_LCTN_CHANGED, 206
ER_KEYRING_OKV_INIT_FAILED_DUE_TO_INTERNAL_ERROR,
ER_LCTN_NOT_FOUND, 341
226 ER_LDAP_AUTH_CERTIFICATE_NAME, 255
ER_KEYRING_OKV_INVALID_KEY_LENGTH_FOR_CIPHER,
ER_LDAP_AUTH_COMMUNICATION_HOST_INFO,
226 257
ER_KEYRING_OKV_INVALID_KEY_TYPE, 226 ER_LDAP_AUTH_CONNECTION_CREATOR_ENTER,
ER_KEYRING_OKV_KEY_MISMATCH, 228 257
ER_KEYRING_OKV_STANDBY_SERVER_COUNT_EXCEEDED,
ER_LDAP_AUTH_CONNECTION_GET_LDAP_INFO_NULL,
397 257
ER_KEYRING_OPERATION_FAILED_DUE_TO_INTERNAL_ERROR,
ER_LDAP_AUTH_CONNECTION_POOL_INIT_FAILED,
224 256
ER_KEYRING_UDF_KEYRING_SERVICE_ERROR, ER_LDAP_AUTH_CONNECTION_POOL_REINIT_ENTER,
74 259
ER_KEYRING_UNKNOWN_ERROR, 225 ER_LDAP_AUTH_CONNECTION_PUSHED_TO_POOL,
ER_KEY_COLUMN_DOES_NOT_EXITS, 8 257
ER_KEY_DOES_NOT_EXITS, 15 ER_LDAP_AUTH_CONN_POOL_DEINITIALIZING,
ER_KEY_NOT_FOUND, 5 254
ER_KEY_PART_0, 28 ER_LDAP_AUTH_CONN_POOL_INITIALIZING, 254
ER_KEY_REF_DO_NOT_MATCH_TABLE_REF, 19 ER_LDAP_AUTH_CONN_POOL_NOT_CREATED,
ER_KILLED_THREADS_OF_PLUGIN, 171 254
ER_KILLING_THREAD, 171 ER_LDAP_AUTH_CREATE_CONNECTION_KEY,
ER_KILL_DENIED_ERROR, 9 257
ER_LANGUAGE_COMPONENT, 127 ER_LDAP_AUTH_CREATING_LDAP_CONNECTION,
ER_LANGUAGE_COMPONENT_CANNOT_UNINSTALL, 256
127 ER_LDAP_AUTH_DEINIT_FAILED, 254
ER_LANGUAGE_COMPONENT_CONCURRENCY_LIMIT, ER_LDAP_AUTH_DELETING_CONNECTION_KEY,
134 257
ER_LANGUAGE_COMPONENT_CONVERSION, 135 ER_LDAP_AUTH_DISTINGUISHED_NAME, 258
ER_LANGUAGE_COMPONENT_ERROR, 417 ER_LDAP_AUTH_FAILED_TO_CREATE_LDAP_CONNECTIO
ER_LANGUAGE_COMPONENT_INFO, 417 258
ER_LANGUAGE_COMPONENT_INSTALL_ERROR, ER_LDAP_AUTH_FAILED_TO_CREATE_LDAP_OBJECT,
425 254
ER_LANGUAGE_COMPONENT_INTERNAL, 134 ER_LDAP_AUTH_FAILED_TO_CREATE_LDAP_OBJECT_CR
ER_LANGUAGE_COMPONENT_INTERNAL_ERROR, 254
425 ER_LDAP_AUTH_FAILED_TO_CREATE_OR_GET_CONNEC
ER_LANGUAGE_COMPONENT_KEYWORD, 135 254
499
ER_LDAP_AUTH_FAILED_TO_DEINITIALIZE_NOT_READY_POOL,
ER_LDAP_AUTH_POOL_DISABLE_MAX_SIZE_ZERO,
256 254
ER_LDAP_AUTH_FAILED_TO_DEINITIALIZE_POOL_IN_RECONSTRUCT_STATE,
ER_LDAP_AUTH_POOL_GET_FAILED_TO_CREATE_CONNECT
256 258
ER_LDAP_AUTH_FAILED_TO_ESTABLISH_TLS_CONNECTION,
ER_LDAP_AUTH_POOL_REINITIALIZING, 255
258 ER_LDAP_AUTH_RETURNING_CONNECTION_TO_POOL,
ER_LDAP_AUTH_FAILED_TO_GET_CONNECTION_AS_PLUGIN_NOT_READY,
257
256 ER_LDAP_AUTH_SASL_BIND_SUCCESS_INFO,
ER_LDAP_AUTH_FAILED_TO_INITIALIZE_POOL_IN_DEINIT_STATE,
258
256 ER_LDAP_AUTH_SASL_PROCESS_SASL, 258
ER_LDAP_AUTH_FAILED_TO_INITIALIZE_POOL_IN_INIT_STATE,
ER_LDAP_AUTH_SASL_REQUEST_FROM_CLIENT,
256 258
ER_LDAP_AUTH_FAILED_TO_INITIALIZE_POOL_IN_RECONSTRUCTING,
ER_LDAP_AUTH_SEARCHED_USER_GRP_NAME,
256 255
ER_LDAP_AUTH_FAILED_TO_POOL_DEINIT, 256 ER_LDAP_AUTH_SEARCH_USER_GROUP_ATTR_NOT_FOUND
ER_LDAP_AUTH_FAILED_TO_SEARCH_DN, 259 257
ER_LDAP_AUTH_FAILED_TO_WRITE_PACKET, ER_LDAP_AUTH_SETTING_USERNAME, 255
255 ER_LDAP_AUTH_SKIPPING_USER_GROUP_SEARCH,
ER_LDAP_AUTH_FREEING_CONNECTION, 257 254
ER_LDAP_AUTH_GETTING_CONNECTION_FROM_POOL, ER_LDAP_AUTH_STARTED_FOR_USER, 258
257 ER_LDAP_AUTH_STARTING_TLS, 257
ER_LDAP_AUTH_GRP_DN_PARSING_FAILED, 358 ER_LDAP_AUTH_TLS_CONF, 254
ER_LDAP_AUTH_GRP_INCORRECT_ATTRIBUTE, ER_LDAP_AUTH_TLS_CONNECTION, 254
357 ER_LDAP_AUTH_USER_AUTH_DATA, 255
ER_LDAP_AUTH_GRP_INFO_FOUND_IN_MANY_OBJECTS, ER_LDAP_AUTH_USER_BIND_FAILED, 258
357 ER_LDAP_AUTH_USER_FOUND_IN_MANY_GRPS,
ER_LDAP_AUTH_GRP_IS_FULL_DN, 255 255
ER_LDAP_AUTH_GRP_NULL_ATTRIBUTE_VALUE, ER_LDAP_AUTH_USER_GROUP_SEARCH_FAILED,
358 258
ER_LDAP_AUTH_GRP_OBJECT_HAS_USER_INFO, ER_LDAP_AUTH_USER_GROUP_SEARCH_INFO,
358 255
ER_LDAP_AUTH_GRP_SEARCH_NOT_SPECIAL_HDL, ER_LDAP_AUTH_USER_GROUP_SEARCH_ROOT_BIND,
357 350
ER_LDAP_AUTH_GRP_SEARCH_SPECIAL_HDL, ER_LDAP_AUTH_USER_HAS_MULTIPLE_GRP_NAMES,
255 255
ER_LDAP_AUTH_GRP_USER_OBJECT_HAS_GROUP_INFO, ER_LDAP_AUTH_USER_NOT_FOUND_IN_ANY_GRP,
357 255
ER_LDAP_AUTH_INFO_USER_MAP, 428 ER_LDAP_AUTH_ZERO_MAX_POOL_SIZE_UNCHANGED,
ER_LDAP_AUTH_INIT_FAILED, 258 254
ER_LDAP_AUTH_LDAPS, 358 ER_LDAP_EMPTY_USERDN_PASSWORD, 365
ER_LDAP_AUTH_LDAP_INFO_NULL, 257 ER_LDAP_MAPPING_CHECK_DELIMI_QUOTE, 358
ER_LDAP_AUTH_MAX_ALLOWED_CONNECTION_LIMIT_HIT,ER_LDAP_MAPPING_EMPTY_MAPPING, 358
256 ER_LDAP_MAPPING_GETTING_NEXT_MAPPING,
ER_LDAP_AUTH_MAX_POOL_SIZE_SET_FAILED, 359
256 ER_LDAP_MAPPING_GET_USER_PROXY, 358
ER_LDAP_AUTH_METHOD_TO_CLIENT, 258 ER_LDAP_MAPPING_INFO, 358
ER_LDAP_AUTH_OBJECT_CREATE_TIMESTAMP, ER_LDAP_MAPPING_IS_QUOTE, 359
255 ER_LDAP_MAPPING_NON_DESIRED_STATE, 359
ER_LDAP_AUTH_OR_GROUP_RETRIEVAL_FAILED, ER_LDAP_MAPPING_NO_SEPEARATOR_END_OF_GROUP,
258 359
ER_LDAP_AUTH_PLUGIN_FAILED_TO_READ_PACKET, ER_LDAP_MAPPING_PARSING_CURRENT_STATE,
256 359
ER_LDAP_AUTH_POOLED_CONNECTION_KEY, ER_LDAP_MAPPING_PARSING_ERROR, 359
257
500
ER_LDAP_MAPPING_PARSING_MAPPING_INFO, ER_LH_EMPTY_FILE, 132
359 ER_LH_EXCEEDS_MAX, 130
ER_LDAP_MAPPING_PROCESS_DELIMITER, 358 ER_LH_EXCEEDS_MIN, 130
ER_LDAP_MAPPING_PROCESS_DELIMITER_COMMA_NOT_FOUND,
ER_LH_FORMAT_HEADER_NO_MAGIC_BYTES,
359 132
ER_LDAP_MAPPING_PROCESS_DELIMITER_EQUAL_NOT_FOUND,
ER_LH_INFER_FILE_HAS_NO_DATA, 133
358 ER_LH_INFER_JSON_INVALID_SCHEMA, 136
ER_LDAP_MAPPING_PROCESS_DELIMITER_TRY_COMMA,
ER_LH_INFER_NO_DATA, 133
358 ER_LH_INFER_NO_FILES, 134
ER_LDAP_MAPPING_PROCESS_MAPPING, 358 ER_LH_INFER_SCHEMA_MISMATCH, 133
ER_LDAP_MAPPING_TRIMMING_SPACES, 359 ER_LH_INFER_WARN_GOT_EXCEPTION, 134
ER_LDAP_MAPPING_USER_DONT_BELONG_GROUP, ER_LH_INVALID_JSON_FILE_FORMAT_SCHEMA,
358 136
ER_LH_AVRO_CANNOT_PARSE_HEADER, 134 ER_LH_JSON_FILE_FORMAT_WARN_INFER_SCHEMA,
ER_LH_AVRO_DECODING_ERR, 133 136
ER_LH_AVRO_ENUM_CANNOT_CONVERT_CHARSET, ER_LH_JSON_PARSING, 135
132 ER_LH_NO_FILES_FOUND, 131
ER_LH_AVRO_ENUM_MISMATCH, 132 ER_LH_NO_SEGMENTS_GENERATED, 137
ER_LH_AVRO_FILE_DATA_CORRUPT, 132 ER_LH_OOM, 133
ER_LH_AVRO_FILE_ENDS_UNEXPECTEDLY, 132 ER_LH_OUT_OF_RANGE, 131
ER_LH_AVRO_HEADER_METADATA_ERR, 132 ER_LH_PARQUET_CANNOT_LOCATE_OFFSET,
ER_LH_AVRO_HEADER_MISMATCH, 132 133
ER_LH_AVRO_HEADER_NO_SCHEMA, 132 ER_LH_PARQUET_CANNOT_LOCATE_SCHEMA,
ER_LH_AVRO_INVALID_BLOCK_RECORD_COUNT, 133
132 ER_LH_PARQUET_CANNOT_READ_HEADER, 134
ER_LH_AVRO_INVALID_BLOCK_SIZE, 132 ER_LH_PARQUET_CANT_OPEN_FILE, 134
ER_LH_AVRO_INVALID_NAME_IN_SCHEMA, 133 ER_LH_PARQUET_DECIMAL_CONVERSION_ERR,
ER_LH_AVRO_INVALID_UNION, 132 131
ER_LH_AVRO_NO_CODEC_IN_HEADER, 133 ER_LH_PARQUET_NON_UTF8_FILE_ENC, 133
ER_LH_AVRO_SCHEMA_DEPTH_EXCEEDS_MAX, ER_LH_PARQUET_ROW_GROUP_SIZE_EXCEEDS_MAX,
132 133
ER_LH_AVRO_TYPE_CANNOT_CONVERT, 132 ER_LH_PARQUET_SCHEMA_MISMATCH, 133
ER_LH_AWS_AUTH_ERR, 131 ER_LH_PARQUET_TYPE_CANNOT_CONVERT, 133
ER_LH_BAD_VALUE, 130 ER_LH_REAL_IS_NAN, 131
ER_LH_CANNOT_CONVERT_STRING, 131 ER_LH_RESOURCE_PRINCIPAL_BUCKET_ERR,
ER_LH_CHARSET_UNSUPPORTED, 131 131
ER_LH_COLUMN_ENGINE_ATTR_ERR, 137 ER_LH_RESOURCE_PRINCIPAL_ERR, 131
ER_LH_COLUMN_MAX_ERR, 131 ER_LH_STRING_TOO_LONG, 131
ER_LH_COLUMN_MISMATCH_ERR, 131 ER_LH_TOO_LARGE_ROW_ERR, 134
ER_LH_COL_IS_EMPTY, 130 ER_LH_TOO_LARGE_VALUE_ERR, 134
ER_LH_COL_IS_EMPTY_WARN, 130 ER_LH_UNSTRUCTURED_ENCODING_ERR, 137
ER_LH_COL_NOT_NULLABLE, 130 ER_LH_UNSTRUCTURED_FILE_PARSE_ERR, 136
ER_LH_CP_COMMIT_FAILED, 138 ER_LH_UNSTRUCTURED_FILE_TOO_LARGE, 137
ER_LH_CP_NOT_ENABLED, 138 ER_LH_UNSTRUCTURED_FILE_TYPE_MISMATCH_ERR,
ER_LH_CP_NO_VALIDATION_MODE, 138 137
ER_LH_CP_NO_VECTOR_STORE, 138 ER_LH_UNSTRUCTURED_INVALID_LANGUAGE,
ER_LH_CP_TOO_MANY_CHANGES, 138 138
ER_LH_CSV_PARSING_ERR, 131 ER_LH_UNSTRUCTURED_NO_DATA_FOUND, 136
ER_LH_DATETIME_FORMAT, 131 ER_LH_UNSTRUCTURED_OBJ_READ_ERR, 137
ER_LH_DECIMAL_OOM_ERR, 130 ER_LH_UNSTRUCTURED_SCHEMA_ERR, 137
ER_LH_DECIMAL_PRECISION_EXCEEDS_SCHEMA, ER_LH_USER_DATA_ACCESS_FAILED, 135
130 ER_LH_VECTOR_TOO_MANY_ENTRIES, 138
ER_LH_DECIMAL_UNKNOWN_ERR, 130 ER_LH_WARN_COL_MISSING_NOT_NULLABLE,
ER_LH_DUPLICATE_FILE, 132 130
501
ER_LH_WARN_DECIMAL_ROUNDING, 130 ER_LOG_FILES_GIVEN_LOG_OUTPUT_IS_TABLE,
ER_LH_WARN_EXCEEDS_MAX_TRUNCATING, 130 149
ER_LH_WARN_EXCEEDS_MIN_TRUNCATING, 130 ER_LOG_FILE_CANNOT_OPEN, 219
ER_LH_WARN_INFER_SKIPPED_FILES, 133 ER_LOG_FILE_INVALID, 149
ER_LH_WARN_INFER_SKIPPED_LINES, 133 ER_LOG_GENERAL_CANNOT_OPEN, 139
ER_LH_WARN_INFER_USE_DEFAULT_COL_NAMES, ER_LOG_IN_USE, 28
134 ER_LOG_OUTPUT_CONTRADICTORY, 149
ER_LH_WARN_TRUNCATED, 131 ER_LOG_PARTITION_PREFIX_KEY_NOT_SUPPORTED,
ER_LIBRARIES_NOT_SUPPORTED, 139 428
ER_LIMITED_PART_RANGE, 36 ER_LOG_PRINTF_MSG, 205
ER_LOAD_BULK_DATA_FAILED, 125 ER_LOG_PRIV_CHECKS_REQUIRE_ROW_FORMAT_NOT_SET
ER_LOAD_BULK_DATA_UNSORTED, 124 370
ER_LOAD_BULK_DATA_WARN_NULL_TO_NOTNULL, ER_LOG_PURGE_NO_FILE, 41
126 ER_LOG_PURGE_UNKNOWN_ERR, 28
ER_LOAD_BULK_DATA_WARN_NULL_TO_NOTNULL_LOG,ER_LOG_SANITIZATION, 427
409 ER_LOG_SLOW_CANNOT_OPEN, 139
ER_LOAD_BULK_DATA_WRONG_VALUE_FOR_FIELD, ER_LOG_SYSLOG_CANNOT_OPEN, 139
125 ER_LONGITUDE_OUT_OF_RANGE, 84
ER_LOAD_BULK_DATA_WRONG_VALUE_FOR_FIELD_LOG,
ER_LOWER_CASE_TABLE_NAMES_CS_DD_ON_CI_FS_UNSUP
409 149
ER_LOAD_BULK_JSON_ERROR, 429 ER_LOWER_CASE_TABLE_NAMES_USING_0, 150
ER_LOAD_DATA_INFILE_FAILED_IN_UNEXPECTED_WAY,
ER_LOWER_CASE_TABLE_NAMES_USING_2, 149
153 ER_MALFORMED_GTID_SET_ENCODING, 52
ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR, ER_MALFORMED_GTID_SET_SPECIFICATION, 52
29 ER_MALFORMED_GTID_SPECIFICATION, 52
ER_LOAD_INFO, 9 ER_MALFORMED_PACKET, 56
ER_LOCAL_VARIABLE, 18 ER_MANDATORY_ROLE, 85
ER_LOCKING_SERVICE_DEADLOCK, 70 ER_MASTER_KEY_ROTATION_BINLOG_FAILED,
ER_LOCKING_SERVICE_TIMEOUT, 70 74
ER_LOCKING_SERVICE_WRONG_NAME, 70 ER_MASTER_KEY_ROTATION_NOT_SUPPORTED_BY_SE,
ER_LOCK_ABORTED, 46 74
ER_LOCK_DEADLOCK, 17 ER_MASTER_KEY_ROTATION_SE_UNAVAILABLE,
ER_LOCK_NOWAIT, 81 74
ER_LOCK_ORDER_DEPENDENCIES_SYNTAX, 365 ER_MAXVALUE_IN_VALUES_IN, 44
ER_LOCK_ORDER_FAILED_READ_FILE, 365 ER_MAX_PREPARED_STMT_COUNT_REACHED,
ER_LOCK_ORDER_FAILED_WRITE_FILE, 365 33
ER_LOCK_ORDER_INIT_FAILED, 364 ER_MDL_OUT_OF_RESOURCES, 112
ER_LOCK_ORDER_MESSAGE, 365 ER_MECAB_CHARSET_LOADED, 208
ER_LOCK_ORDER_SCANNER_SYNTAX, 365 ER_MECAB_CREATE_LATTICE_FAILED, 209
ER_LOCK_OR_ACTIVE_TRANSACTION, 16 ER_MECAB_CREATING_MODEL, 208
ER_LOCK_REFUSED_BY_ENGINE, 74 ER_MECAB_FAILED_TO_CREATE_MODEL, 208
ER_LOCK_TABLE_FULL, 17 ER_MECAB_FAILED_TO_CREATE_TRIGGER, 208
ER_LOCK_WAIT_TIMEOUT, 17 ER_MECAB_NOT_SUPPORTED, 208
ER_LOG_BIN_BETTER_WITH_NAME, 150 ER_MECAB_NOT_VERIFIED, 208
ER_LOG_CANNOT_PURGE_BINLOG_WITH_BACKUP_LOCK,
ER_MECAB_OOM_WHILE_PARSING_TEXT, 209
415 ER_MECAB_PARSE_FAILED, 208
ER_LOG_CANNOT_WRITE, 139 ER_MECAB_UNSUPPORTED_CHARSET, 208
ER_LOG_CANNOT_WRITE_EXTENDED, 368 ER_MESSAGE_AND_STATEMENT, 45
ER_LOG_CLIENT_INTERACTION_TIMEOUT, 427 ER_MFA_METHODS_IDENTICAL, 118
ER_LOG_COMPONENT_CANNOT_INIT, 382 ER_MFA_METHODS_INVALID_ORDER, 118
ER_LOG_COMPONENT_FLUSH_FAILED, 391 ER_MFA_METHOD_EXISTS, 118
ER_LOG_DEPRECATE_NON_COMPOSABLE_MULTIPLE_ENGINE,
ER_MFA_METHOD_NOT_EXISTS, 118
429 ER_MFA_PLUGIN_NOT_LOADED, 396
ER_MFA_USER_ATTRIBUTES_CORRUPT, 396
502
ER_MICROSECOND_TIMER_IS_NOT_AVAILABLE, ER_M_BIGGER_THAN_D, 30
202 ER_NAME_BECOMES_EMPTY, 33
ER_MIGRATE_TABLE_TO_DD_OOM, 371 ER_NANOSECOND_TIMER_IS_NOT_AVAILABLE,
ER_MISPLACED_INTO, 109 202
ER_MISSING_ACL_SYSTEM_TABLE, 196 ER_NATIVE_FCT_NAME_COLLISION, 40
ER_MISSING_CURRENT_PASSWORD, 104 ER_NDBINFO_NOT_UPGRADING_SCHEMA, 375
ER_MISSING_GRANT_SYSTEM_TABLE, 196 ER_NDBINFO_UPGRADING_SCHEMA, 374
ER_MISSING_HA_CREATE_OPTION, 61 ER_NDBINFO_UPGRADING_SCHEMA_FAIL, 375
ER_MISSING_JSON_TABLE_VALUE, 87 ER_NDB_LOG_ENTRY, 190
ER_MISSING_JSON_VALUE, 110 ER_NDB_LOG_ENTRY_WITH_PREFIX, 190
ER_MISSING_KEY, 60 ER_NDB_REPLICATION_SCHEMA_ERROR, 42
ER_MISSING_SKIP_REPLICA, 21 ER_NEED_FILE_INSTEAD_OF_DIR, 150
ER_MISSING_TABLESPACE_FILE, 85 ER_NEED_LOG_BIN, 150
ER_MIXING_NOT_ALLOWED, 18 ER_NEED_REPREPARE, 41
ER_MIX_HANDLER_ERROR, 35 ER_NETWORK_NAMESPACES_NOT_SUPPORTED,
ER_MIX_OF_GROUP_FUNC_AND_FIELDS, 13 362
ER_MIX_OF_GROUP_FUNC_AND_FIELDS_V2, 66 ER_NETWORK_NAMESPACE_FILE_PATH_TOO_LONG,
ER_MTA_CANT_PARALLEL, 51 363
ER_MTA_CHANGE_SOURCE_CANT_RUN_WITH_GAPS, ER_NETWORK_NAMESPACE_NOT_ALLOWED_FOR_WILDC
54 363
ER_MTA_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX, ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE,
58 342
ER_MTA_FEATURE_IS_NOT_SUPPORTED, 50 ER_NET_ERROR_ON_WRITE, 14
ER_MTA_INCONSISTENT_DATA, 51 ER_NET_FCNTL_ERROR, 14
ER_MTA_RECOVERY_FAILURE, 54 ER_NET_OK_PACKET_TOO_LARGE, 65
ER_MTA_RESET_WORKERS, 54 ER_NET_PACKETS_OUT_OF_ORDER, 14
ER_MTA_UPDATED_DBS_GREATER_MAX, 50 ER_NET_PACKET_TOO_LARGE, 13
ER_MTR_MSG_1, 391 ER_NET_READ_ERROR, 14
ER_MULTIPLE_CONSTRAINTS_WITH_SAME_NAME, ER_NET_READ_ERROR_FROM_PIPE, 13
108 ER_NET_READ_INTERRUPTED, 14
ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR, ER_NET_UNCOMPRESS_ERROR, 14
35 ER_NET_WAIT_ERROR, 363
ER_MULTIPLE_INTO_CLAUSES, 109 ER_NET_WAIT_ERROR2, 387
ER_MULTIPLE_JSON_VALUES, 110 ER_NET_WRITE_INTERRUPTED, 14
ER_MULTIPLE_PRI_KEY, 8 ER_NEW_ABORTING_CONNECTION, 15
ER_MULTI_UPDATE_KEY_CONFLICT, 47 ER_NO, 3
ER_MUST_CHANGE_PASSWORD, 55 ER_NONEXISTING_GRANT, 13
ER_MUST_CHANGE_PASSWORD_LOGIN, 58 ER_NONEXISTING_PROC_GRANT, 29
ER_MYINIT_FAILED, 148 ER_NONEXISTING_TABLE_GRANT, 13
ER_MYISAM_CHECK_METHOD_ERROR, 204 ER_NONPOSITIVE_RADIUS, 90
ER_MYISAM_CRASHED_ERROR, 204 ER_NONUNIQ_TABLE, 8
ER_MYISAM_CRASHED_ERROR_IN, 155 ER_NONUPDATEABLE_COLUMN, 26
ER_MYISAM_CRASHED_ERROR_IN_THREAD, 155 ER_NON_BOOLEAN_EXPR_FOR_CHECK_CONSTRAINT,
ER_MYSQLBACKUP_CLIENT_MSG, 120 99
ER_MYSQLBACKUP_MSG, 368 ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN,
ER_MYSQL_NATIVE_PASSWORD_SECOND_PASSWORD_USED_INFORMATION,
68
355 ER_NON_DML_DYNAMIC_PARAMETERS, 137
ER_MY_MALLOC_GETPROCADDRESS_FAILED, ER_NON_GROUPING_FIELD_USED, 33
398 ER_NON_INSERTABLE_TABLE, 33
ER_MY_MALLOC_LOADLIBRARY_FAILED, 398 ER_NON_RO_SELECT_DISABLE_TIMER, 62
ER_MY_MALLOC_USING_JEMALLOC, 398 ER_NON_SCALAR_USED_AS_KEY, 136
ER_MY_MALLOC_USING_STD_MALLOC, 398 ER_NON_UNIQ_ERROR, 6
ER_MY_NET_WRITE_FAILED_FALLING_BACK_ON_STDERR,
ER_NON_UPDATABLE_TABLE, 22
182 ER_NORMAL_SERVER_SHUTDOWN, 341
503
ER_NOTE_COMPONENT_KEYRING_OCI_MISSING_NAME_OR_TYPE,
ER_NOT_RIGHT_NOW, 148
406 ER_NOT_SUPPORTED_AUTH_MODE, 20
ER_NOTE_COMPONENT_SLOT_DEREGISTRATION_SUCCESS,
ER_NOT_SUPPORTED_YET, 19
412 ER_NOT_VALID_PASSWORD, 55
ER_NOTE_COMPONENT_SLOT_REGISTRATION_SUCCESS,
ER_NO_ACCESS_TO_NATIVE_FCT, 80
412 ER_NO_BINARY_LOGGING, 28
ER_NOTE_KEYRING_COMPONENT_AES_DATA_IDENTIFIER_EMPTY,
ER_NO_BINLOG_ERROR, 36
386 ER_NO_CSV_NO_LOG_TABLES, 149
ER_NOTE_KEYRING_COMPONENT_AES_INVALID_KEY,ER_NO_DB_ERROR, 6
386 ER_NO_DEFAULT, 18
ER_NOTE_KEYRING_COMPONENT_AES_INVALID_MODE_BLOCK_SIZE,
ER_NO_DEFAULT_FOR_FIELD, 27
386 ER_NO_DEFAULT_FOR_VIEW_FIELD, 30
ER_NOTE_KEYRING_COMPONENT_AES_OPERATION_ERROR,
ER_NO_ERROR_LOG_PARSER_CONFIGURED,
386 381
ER_NOTE_KEYRING_COMPONENT_EMPTY_DATA_ID, ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_S
426 41
ER_NOTE_KEYRING_COMPONENT_GENERATE_FAILED, ER_NO_FT_MATERIALIZED_SUBQUERY, 61
387 ER_NO_PARTITION_FOR_GIVEN_VALUE, 37
ER_NOTE_KEYRING_COMPONENT_INITIALIZED, ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT,
385 40
ER_NOTE_KEYRING_COMPONENT_KEYS_METADATA_ITERATOR_FETCH_FAILED,
ER_NO_PARTS_ERROR, 35
387 ER_NO_PATH_FOR_SHARED_LIBRARY, 346
ER_NOTE_KEYRING_COMPONENT_KEYS_METADATA_ITERATOR_INIT_FAILED,
ER_NO_PERMISSION_TO_CREATE_USER, 17
426 ER_NO_QUERY_PLAN_FOUND, 137
ER_NOTE_KEYRING_COMPONENT_KEY_READ_ITERATOR_FETCH_FAILED,
ER_NO_REFERENCED_ROW, 17
426 ER_NO_REFERENCED_ROW_2, 32
ER_NOTE_KEYRING_COMPONENT_KEY_READ_ITERATOR_INIT_FAILED,
ER_NO_SECURE_TRANSPORTS_CONFIGURED,
426 72
ER_NOTE_KEYRING_COMPONENT_METADATA_ITERATOR_INVALID_OUT_PARAM,
ER_NO_SESSION_TEMP, 104
387 ER_NO_SUCH_DB, 76
ER_NOTE_KEYRING_COMPONENT_NOT_INITIALIZED, ER_NO_SUCH_INDEX, 8
426 ER_NO_SUCH_TABLE, 13
ER_NOTE_KEYRING_COMPONENT_READ_DATA_NOT_FOUND,
ER_NO_SUCH_THREAD, 9
386 ER_NO_SUCH_USER, 32
ER_NOTE_KEYRING_COMPONENT_REMOVE_FAILED, ER_NO_SUPER_WITHOUT_USER_PLUGIN, 161
386 ER_NO_SYSTEM_SCHEMA_ACCESS, 79
ER_NOTE_KEYRING_COMPONENT_STORE_FAILED, ER_NO_SYSTEM_TABLESPACE_ACCESS, 80
386 ER_NO_SYSTEM_TABLE_ACCESS, 80
ER_NOTE_KEYRING_COMPONENT_WRITE_MAXIMUM_DATA_LENGTH,
ER_NO_SYSTEM_TABLE_ACCESS_FOR_DICTIONARY_TABLE,
386 80
ER_NOT_ALLOWED_COMMAND, 13 ER_NO_SYSTEM_TABLE_ACCESS_FOR_SYSTEM_TABLE,
ER_NOT_ALLOWED_WITH_START_TRANSACTION, 80
111 ER_NO_SYSTEM_TABLE_ACCESS_FOR_TABLE,
ER_NOT_FORM_FILE, 5 80
ER_NOT_HINT_UPDATABLE_VARIABLE, 85 ER_NO_SYSTEM_VIEW_ACCESS, 84
ER_NOT_IMPLEMENTED_FOR_CARTESIAN_SRS, ER_NO_TABLES_USED, 10
90 ER_NO_THD_NO_UUID, 143
ER_NOT_IMPLEMENTED_FOR_GEOGRAPHIC_SRS, ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA, 33
84 ER_NO_UNIQUE_LOGFILE, 10
ER_NOT_IMPLEMENTED_FOR_PROJECTED_SRS, ER_NPIPE_CANT_CREATE, 191
90 ER_NPIPE_FAILED_TO_INIT_SECURITY_DESCRIPTOR,
ER_NOT_IMPLEMENTED_GET_TABLESPACE_STATISTICS,
166
219 ER_NPIPE_FAILED_TO_SET_SECURITY_DESCRIPTOR,
ER_NOT_KEYFILE, 5 166
504
ER_NPIPE_PIPE_ALREADY_IN_USE, 166 ER_PARTITION_EXCHANGE_TEMP_TABLE, 49
ER_NULL_CANT_BE_PERSISTED_FOR_READONLY, ER_PARTITION_FIELDS_TOO_LONG, 44
127 ER_PARTITION_FUNCTION_FAILURE, 36
ER_NULL_COLUMN_IN_INDEX, 11 ER_PARTITION_FUNCTION_IS_NOT_ALLOWED, 38
ER_NULL_IN_VALUES_LESS_THAN, 39 ER_PARTITION_FUNC_NOT_ALLOWED_ERROR,
ER_NUMERIC_JSON_VALUE_OUT_OF_RANGE, 72 34
ER_NUM_THREADS_STILL_ALIVE, 418 ER_PARTITION_HANDLER_ADMIN_MSG, 204
ER_OBSOLETE_FILE_PRIVILEGE_FOR_REPLICATION_CHECKS,
ER_PARTITION_INSTEAD_OF_SUBPARTITION, 49
369 ER_PARTITION_MAXVALUE_ERROR, 34
ER_OBSOLETE_REQUIRE_ROW_FORMAT_VIOLATION, ER_PARTITION_MERGE_ERROR, 39
370 ER_PARTITION_MGMT_ON_NONPARTITIONED, 35
ER_OLD_FILE_FORMAT, 32 ER_PARTITION_MOVE_CREATED_DUPLICATE_ROW_PLEA
ER_OLD_KEYFILE, 5 192
ER_OLD_TEMPORALS_UPGRADED, 59 ER_PARTITION_NAME, 42
ER_ONLY_FD_AND_RBR_EVENTS_ALLOWED_IN_BINLOG_STATEMENT,
ER_PARTITION_NOT_DEFINED_ERROR, 35
49 ER_PARTITION_NO_TEMPORARY, 38
ER_ONLY_IMPLEMENTED_FOR_SRID_0_AND_4326, ER_PARTITION_PREFIX_KEY_NOT_SUPPORTED,
89 135
ER_ONLY_INTEGERS_ALLOWED, 39 ER_PARTITION_REQUIRES_VALUES_ERROR, 34
ER_ONLY_ON_RANGE_LIST_PARTITION, 36 ER_PARTITION_WRONG_NO_PART_ERROR, 34
ER_OOM, 148 ER_PARTITION_WRONG_NO_SUBPART_ERROR,
ER_OOM_SAVE_GTIDS, 341 34
ER_OPEN_AS_READONLY, 5 ER_PARTITION_WRONG_VALUES_ERROR, 34
ER_OPEN_ROLE_TABLES, 78 ER_PART_EXPR_TOO_LONG, 84
ER_OPERAND_COLUMNS, 19 ER_PASSWORD_ANONYMOUS_USER, 12
ER_OPERATION_NOT_ALLOWED_ON_GR_SECONDARY, ER_PASSWORD_CANNOT_BE_RETAINED_ON_PLUGIN_CH
117 105
ER_OPERATION_NOT_ALLOWED_WHILE_PRIMARY_CHANGE_IS_RUNNING,
ER_PASSWORD_EXPIRATION_NOT_SUPPORTED_BY_AUT
121 88
ER_OPTION_PREVENTS_STATEMENT, 22 ER_PASSWORD_EXPIRE_ANONYMOUS_USER, 61
ER_OPT_WRONG_TREE, 139 ER_PASSWORD_FORMAT, 56
ER_OUTOFMEMORY, 5 ER_PASSWORD_NOT_ALLOWED, 12
ER_OUT_OF_RESOURCES, 5 ER_PASSWORD_NO_MATCH, 12
ER_OUT_OF_SORTMEMORY, 5 ER_PATH_IN_DATADIR, 85
ER_PAGE_TRACKING_CANNOT_PURGE, 98 ER_PATH_LENGTH, 45
ER_PAGE_TRACKING_NOT_STARTED, 98 ER_PERFORMANCE_SCHEMA_VERSION_CHANGE,
ER_PAGE_TRACKING_RANGE_NOT_TRACKED, 98 416
ER_PARSER_TRACE, 139 ER_PERFSCHEMA_COMPONENTS_INFRASTRUCTURE_BO
ER_PARSE_ERROR, 7 195
ER_PARSE_ERROR_IN_DIGEST_FN, 88 ER_PERFSCHEMA_COMPONENTS_INFRASTRUCTURE_SH
ER_PARSING_VIEW, 143 195
ER_PARTIAL_REVOKES_EXIST, 105 ER_PERFSCHEMA_INIT_FAILED, 150
ER_PARTIAL_REVOKE_AND_DB_GRANT_BOTH_EXISTS, ER_PERFSCHEMA_TABLES_INIT_FAILED, 196
105 ER_PERSISTED_VARIABLES_DECRYPTION_FAILED,
ER_PARTITIONS_MUST_BE_DEFINED_ERROR, 34 398
ER_PARTITION_CLAUSE_ON_NONPARTITIONED, ER_PERSISTED_VARIABLES_ENCRYPTION_FAILED,
50 398
ER_PARTITION_COLUMN_LIST_ERROR, 43 ER_PERSISTED_VARIABLES_KEYRING_SUPPORT_REQUIR
ER_PARTITION_CONST_DOMAIN_ERROR, 38 397
ER_PARTITION_ENTRY_ERROR, 35 ER_PERSISTED_VARIABLES_LACK_KEYRING_SUPPORT,
ER_PARTITION_EXCHANGE_DIFFERENT_OPTION, 398
49 ER_PERSISTED_VARIABLES_MASTER_KEY_CANNOT_BE_
ER_PARTITION_EXCHANGE_FOREIGN_KEY, 50 397
ER_PARTITION_EXCHANGE_PART_TABLE, 49
505
ER_PERSISTED_VARIABLES_MASTER_KEY_NOT_FOUND,ER_PLUGIN_LOAD_PARAMETER_TOO_LONG, 181
397 ER_PLUGIN_NOT_EARLY, 101
ER_PERSISTENT_PRIVILEGES_BOOTSTRAP, 195 ER_PLUGIN_NOT_EARLY_DUP, 364
ER_PERSIST_ONLY_ACCESS_DENIED_ERROR, ER_PLUGIN_NO_INSTALL, 48
85 ER_PLUGIN_NO_INSTALL_DUP, 364
ER_PERSIST_OPTION_HOST_TRUNCATED, 363 ER_PLUGIN_NO_UNINSTALL, 48
ER_PERSIST_OPTION_STATUS, 219 ER_PLUGIN_OOM, 182
ER_PERSIST_OPTION_USER_TRUNCATED, 363 ER_PLUGIN_PARSING_OPTIONS_FAILED, 182
ER_PER_CHANNEL_RPL_FILTER_CONF_FOR_GRP_RPL, ER_PLUGIN_REGISTRATION_DONE, 118
202 ER_PLUGIN_REGISTRATION_FAILED, 181
ER_PFS_MALLOC_ARRAY_OOM, 202 ER_PLUGIN_REQUIRES_REGISTRATION, 118
ER_PFS_MALLOC_ARRAY_OVERFLOW, 202 ER_PLUGIN_SHUTTING_DOWN_PLUGIN, 181
ER_PFS_NOTIFICATION_FUNCTION_REGISTER_FAILED,
ER_PLUGIN_UNINSTALL_ERROR, 350
198 ER_PLUGIN_UNKNOWN_VARIABLE_TYPE, 181
ER_PID_FILEPATH_LOCATIONS_INACCESSIBLE, ER_PLUGIN_VARIABLE_MISSING_NAME, 181
346 ER_PLUGIN_VARIABLE_NOT_ALLOCATED_THREAD_LOCAL,
ER_PID_FILE_PRIV_DIRECTORY_INSECURE, 259 182
ER_PK_INDEX_CANT_BE_INVISIBLE, 77 ER_PLUGIN_VARIABLE_SET_READ_ONLY, 181
ER_PLUGGABLE_PROTOCOL_COMMAND_NOT_SUPPORTED,ER_POINTLESS_WITHOUT_SLOWLOG, 144
70 ER_POLYGON_TOO_LARGE, 92
ER_PLUGINS_SHUTDOWN_END, 418 ER_PREPARE_FOR_PRIMARY_ENGINE, 391
ER_PLUGINS_SHUTDOWN_START, 418 ER_PREPARE_FOR_SECONDARY_ENGINE, 359
ER_PLUGIN_BAD_OPTIONS, 182 ER_PREVENTS_VARIABLE_WITHOUT_RBR, 67
ER_PLUGIN_CANNOT_BE_UNINSTALLED, 60 ER_PRIMARY_CANT_HAVE_NULL, 15
ER_PLUGIN_CANT_LOAD, 181 ER_PRIVILEGE_DEREGISTRATION, 414
ER_PLUGIN_CANT_OPEN_PLUGIN_TABLE, 181 ER_PRIVILEGE_REGISTRATION, 413
ER_PLUGIN_CANT_SET_PERSISTENT_OPTIONS, ER_PRIVILEGE_SYSTEM_INIT_FAILED, 196
182 ER_PROCACCESS_DENIED_ERROR, 27
ER_PLUGIN_COMMON_FAILED_TO_OPEN_FILTER_TABLES,
ER_PROC_AUTO_GRANT_FAIL, 29
218 ER_PROC_AUTO_REVOKE_FAIL, 29
ER_PLUGIN_COMMON_FAILED_TO_OPEN_TABLE, ER_PROTOCOL_COMPRESSION_RESET_LOG,
218 368
ER_PLUGIN_DELETE_BUILTIN, 41 ER_PS_MANY_PARAM, 28
ER_PLUGIN_DID_NOT_DEINITIALIZE_THREADS, ER_PS_NO_RECURSION, 31
171 ER_QUALIFY_WITHOUT_WINDOW_FUNCTION,
ER_PLUGIN_DISABLED, 182 129
ER_PLUGIN_EXCEPTION_OPERATION_FAILED, ER_QUERY_INTERRUPTED, 24
410 ER_QUERY_ON_FOREIGN_DATA_SOURCE, 31
ER_PLUGIN_FAILED_DEINITIALIZATION, 181 ER_QUERY_TIMEOUT, 62
ER_PLUGIN_FAILED_TO_OPEN_TABLE, 344 ER_RANGE_NOT_INCREASING_ERROR, 34
ER_PLUGIN_FAILED_TO_OPEN_TABLES, 344 ER_READING_TABLE_FAILED, 153
ER_PLUGIN_FORCING_SHUTDOWN, 181 ER_READY, 8
ER_PLUGIN_HAS_CONFLICTING_SYSTEM_VARIABLES,ER_READ_LOG_EVENT_FAILED, 201
182 ER_READ_ONLY_MODE, 56
ER_PLUGIN_HAS_NONZERO_REFCOUNT_AFTER_DEINITIALIZATION,
ER_READ_ONLY_TRANSACTION, 17
181 ER_REALLY_RUN_AS_ROOT, 147
ER_PLUGIN_HAS_NONZERO_REFCOUNT_AFTER_SHUTDOWN,
ER_RECORD_FILE_FULL, 11
181 ER_RECOVERING_TABLE, 183
ER_PLUGIN_INIT_FAILED, 152 ER_REDUCED_DBLWR_FILE_CORRUPTED, 414
ER_PLUGIN_INSTALL_ERROR, 350 ER_REDUCED_DBLWR_PAGE_FOUND, 415
ER_PLUGIN_INVALID_TABLE_DEFINITION, 390 ER_REFERENCED_TRG_DOES_NOT_EXIST, 61
ER_PLUGIN_IS_NOT_LOADED, 37 ER_REGEXP_BAD_ESCAPE_SEQUENCE, 89
ER_PLUGIN_IS_PERMANENT, 47 ER_REGEXP_BAD_INTERVAL, 89
ER_PLUGIN_LOAD_OPTIONS_IGNORED, 369 ER_REGEXP_BUFFER_OVERFLOW, 89
506
ER_REGEXP_ERROR, 13 ER_REPLICA_CHANNEL_SQL_SKIP_COUNTER, 66
ER_REGEXP_ILLEGAL_ARGUMENT, 89 ER_REPLICA_CHANNEL_SQL_THREAD_MUST_STOP,
ER_REGEXP_INDEX_OUTOFBOUNDS_ERROR, 89 66
ER_REGEXP_INTERNAL_ERROR, 89 ER_REPLICA_CHANNEL_WAS_NOT_RUNNING, 66
ER_REGEXP_INVALID_BACK_REF, 89 ER_REPLICA_CHANNEL_WAS_RUNNING, 66
ER_REGEXP_INVALID_CAPTURE_GROUP_NAME, ER_REPLICA_CM_INIT_REPOSITORY, 59
104 ER_REPLICA_CONFIGURATION, 53
ER_REGEXP_INVALID_FLAG, 105 ER_REPLICA_CORRUPT_EVENT, 41
ER_REGEXP_INVALID_RANGE, 89 ER_REPLICA_CREATE_EVENT_FAILURE, 342
ER_REGEXP_LOOK_BEHIND_LIMIT, 89 ER_REPLICA_FATAL_ERROR, 342
ER_REGEXP_MAX_LT_MIN, 89 ER_REPLICA_HAS_MORE_GTIDS_THAN_SOURCE,
ER_REGEXP_MISMATCHED_PAREN, 89 60
ER_REGEXP_MISSING_CLOSE_BRACKET, 89 ER_REPLICA_HEARTBEAT_FAILURE, 342
ER_REGEXP_MISSING_FILE, 120 ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE,
ER_REGEXP_MISSING_ICU_DATADIR, 396 42
ER_REGEXP_MISSING_RESOURCE, 120 ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX
ER_REGEXP_PATTERN_TOO_BIG, 90 47
ER_REGEXP_RULE_SYNTAX, 89 ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN,
ER_REGEXP_STACK_OVERFLOW, 90 47
ER_REGEXP_TIME_OUT, 90 ER_REPLICA_IGNORED_SSL_PARAMS, 21
ER_REGEXP_UNIMPLEMENTED, 89 ER_REPLICA_IGNORED_TABLE, 19
ER_REGEX_NUMBER_TOO_BIG, 113 ER_REPLICA_IGNORE_SERVER_IDS, 43
ER_RELAY_LOG_FAIL, 27 ER_REPLICA_INCIDENT, 342
ER_RELAY_LOG_INIT, 28 ER_REPLICA_KILLED_AFTER_RECONNECT, 201
ER_RELAY_LOG_SPACE_LIMIT_DISABLED, 348 ER_REPLICA_MAX_CHANNELS_EXCEEDED, 66
ER_RELOAD_KEYRING_FAILURE, 116 ER_REPLICA_MULTIPLE_CHANNELS_CMD, 66
ER_REMOVED_SPACES, 33 ER_REPLICA_NEW_CHANNEL_WRONG_REPOSITORY,
ER_RENAMED_NAME, 42 66
ER_RENAME_ROLE, 78 ER_REPLICA_NOT_RUNNING, 16
ER_REORG_HASH_ONLY_ON_SAME_NO, 36 ER_REPLICA_NOT_STARTED_ON_SOME_CHANNELS,
ER_REORG_NO_PARAM_ERROR, 36 201
ER_REORG_OUTSIDE_RANGE, 36 ER_REPLICA_POSSIBLY_DIVERGED_AFTER_DDL,
ER_REORG_PARTITION_NOT_EXIST, 36 91
ER_REPLACE_INACCESSIBLE_ROWS, 64 ER_REPLICA_RECONNECT_FAILED, 201
ER_REPLICATION_INCOMPATIBLE_TABLE_WITH_GIPK,ER_REPLICA_RELAY_LOG_PURGE_FAILED, 196
408 ER_REPLICA_RELAY_LOG_READ_FAILURE, 342
ER_REPLICA_AM_INIT_REPOSITORY, 59 ER_REPLICA_RELAY_LOG_TRUNCATE_INFO, 196
ER_REPLICA_ANONYMOUS_TO_GTID_UUID_SAME_AS_GROUP_NAME,
ER_REPLICA_RELAY_LOG_WRITE_FAILURE, 342
384 ER_REPLICA_SILENT_RETRY_TRANSACTION, 54
ER_REPLICA_ANON_TO_GTID_IS_LOCAL_OR_UUID_AND_GTID_MODE_NOT_ON,
ER_REPLICA_SOURCE_COM_FAILURE, 342
383 ER_REPLICA_SQL_THREAD_MUST_STOP, 61
ER_REPLICA_CANT_CREATE_CONVERSION, 45 ER_REPLICA_SQL_THREAD_STOPPED_AFTER_GTIDS_RE
ER_REPLICA_CANT_USE_TEMPDIR, 178 165
ER_REPLICA_CHANGE_SOURCE_TO_EXECUTED, ER_REPLICA_SQL_THREAD_STOPPED_BEFORE_GTIDS_A
178 165
ER_REPLICA_CHANNEL_DOES_NOT_EXIST, 65 ER_REPLICA_SQL_THREAD_STOPPED_BEFORE_GTIDS_R
ER_REPLICA_CHANNEL_IO_THREAD_MUST_STOP, 165
62 ER_REPLICA_SQL_THREAD_STOPPED_GAP_TRX_PROCE
ER_REPLICA_CHANNEL_MUST_STOP, 66 165
ER_REPLICA_CHANNEL_NAME_INVALID_OR_TOO_LONG,ER_REPLICA_SQL_THREAD_STOPPED_UNTIL_CONDITION
66 165
ER_REPLICA_CHANNEL_NOT_RUNNING, 66 ER_REPLICA_SQL_THREAD_STOPPED_UNTIL_POSITION_
ER_REPLICA_CHANNEL_OPERATION_NOT_ALLOWED, 165
71 ER_REPLICA_THREAD, 16
507
ER_REPLICA_WORKER_STOPPED_PREVIOUS_THD_ERROR,
ER_RES_GRP_THD_UNBIND_FROM_CPU_FAILED,
62 198
ER_REQUIRES_PRIMARY_KEY, 15 ER_RETRYING_REPAIR_WITHOUT_QUICK, 182
ER_REQUIRE_ROW_FORMAT_INVALID_VALUE, ER_RETRYING_REPAIR_WITH_KEYCACHE, 182
108 ER_REVOKE_GRANTS, 21
ER_REQUIRE_TABLE_PRIMARY_KEY_CHECK_GENERATE_WITH_GR,
ER_REWRITER_LOAD_FAILED, 220
126 ER_REWRITER_OOM, 220
ER_REQUIRE_TABLE_PRIMARY_KEY_CHECK_GENERATE_WITH_GR_IN_REPO,
ER_REWRITER_QUERY_ERROR_MSG, 217
410 ER_REWRITER_QUERY_FAILED, 217
ER_RESERVED_SYNTAX, 28 ER_REWRITER_READ_FAILED, 220
ER_RESERVED_TABLESPACE_NAME, 91 ER_REWRITER_TABLE_MALFORMED_ERROR,
ER_RESET_SOURCE_TO_VALUE_OUT_OF_RANGE, 220
80 ER_ROLE_GRANTED_TO_ITSELF, 115
ER_RESIGNAL_WITHOUT_ACTIVE_HANDLER, 43 ER_ROLE_NOT_GRANTED, 78
ER_RESOURCE_GROUP_BIND_FAILED, 87 ER_ROW_DATA_TOO_BIG_TO_WRITE_IN_BINLOG,
ER_RESOURCE_GROUP_BUSY, 87 201
ER_RESOURCE_GROUP_DISABLED, 87 ER_ROW_DOES_NOT_MATCH_GIVEN_PARTITION_SET,
ER_RESOURCE_GROUP_EXISTS, 86 50
ER_RESOURCE_GROUP_IS_DISABLED, 197 ER_ROW_DOES_NOT_MATCH_PARTITION, 49
ER_RESOURCE_GROUP_METADATA_UPDATE_SKIPPED, ER_ROW_IN_WRONG_PARTITION, 58
197 ER_ROW_IN_WRONG_PARTITION_PLEASE_REPAIR,
ER_RESOURCE_GROUP_NOT_EXISTS, 86 155
ER_RESOURCE_GROUP_POST_INIT_FAILED, 195 ER_ROW_IS_REFERENCED, 18
ER_RESOURCE_GROUP_SUBSYSTEM_INIT_FAILED, ER_ROW_IS_REFERENCED_2, 32
195 ER_ROW_SINGLE_PARTITION_FIELD_ERROR, 44
ER_RESOURCE_GROUP_VALIDATION_FAILED, ER_RPL_AM_INIT_INFO_MSG, 204
197 ER_RPL_ASYNC_CHANNEL_CANT_CONNECT, 382
ER_RESTART_RECEIVED_INFO, 206 ER_RPL_ASYNC_CHANNEL_CANT_CONNECT_NO_QUORUM,
ER_RESTART_SERVER_FAILED, 90 383
ER_RESULT_SIZE_LIMIT_EXCEEDED, 134 ER_RPL_ASYNC_CHANNEL_STOPPED_QUORUM_LOST,
ER_RES_GRP_FAILED_DETERMINE_CPU_COUNT, 383
198 ER_RPL_ASYNC_CHECK_CONNECTION_ERROR,
ER_RES_GRP_FAILED_TO_DETERMINE_NICE_CAPABILITY,
424
198 ER_RPL_ASYNC_GET_GROUP_MEMBERSHIP_DETAILS_ERRO
ER_RES_GRP_FAILED_TO_GET_THREAD_HANDLE, 424
198 ER_RPL_ASYNC_MANAGED_NAME_ADDED, 383
ER_RES_GRP_FEATURE_NOT_AVAILABLE, 198 ER_RPL_ASYNC_MANAGED_NAME_REMOVED,
ER_RES_GRP_GET_THREAD_PRIO_NOT_SUPPORTED,383
198 ER_RPL_ASYNC_MONITOR_IO_THD_FETCH_GROUP_MAJORI
ER_RES_GRP_INVALID_THREAD_PRIORITY, 198 424
ER_RES_GRP_INVALID_VCPU_ID, 205 ER_RPL_ASYNC_NEXT_FAILOVER_CHANNEL_SELECTED,
ER_RES_GRP_INVALID_VCPU_RANGE, 205 410
ER_RES_GRP_SET_THREAD_PRIORITY_FAILED, ER_RPL_ASYNC_READ_FAILOVER_TABLE, 383
198 ER_RPL_ASYNC_RECONNECT_AUTO_POSITION_OFF,
ER_RES_GRP_SET_THR_AFFINITY_FAILED, 198 112
ER_RES_GRP_SET_THR_AFFINITY_TO_CPUS_FAILED, ER_RPL_ASYNC_RECONNECT_FAIL_NO_SOURCE,
198 381
ER_RES_GRP_SOLARIS_PROCESSOR_AFFINITY_FAILED,
ER_RPL_ASYNC_RECONNECT_GTID_MODE_OFF,
199 112
ER_RES_GRP_SOLARIS_PROCESSOR_BIND_TO_CPUID_FAILED,
ER_RPL_ASYNC_RECONNECT_GTID_MODE_OFF_CHANNEL,
199 385
ER_RES_GRP_SOLARIS_PROCESSOR_BIND_TO_THREAD_FAILED,
ER_RPL_ASYNC_REPLICA_IO_THD_FETCH_GROUP_MAJORIT
199 424
ER_RPL_ASYNC_SENDER_ADDED, 382
508
ER_RPL_ASYNC_SENDER_REMOVED, 382 ER_RPL_ENCRYPTION_MASTER_KEY_RECOVERY_FAILED
ER_RPL_BINLOG_FILTERS_OOM, 146 97
ER_RPL_BINLOG_RELAY_DELEGATES_INIT_FAILED, ER_RPL_ENCRYPTION_UNABLE_TO_CHANGE_OPTION,
153 97
ER_RPL_BINLOG_SKIPPING_REMAINING_HEARTBEAT_INFO,
ER_RPL_ERROR_CREATING_APPLIER_METADATA,
171 167
ER_RPL_BINLOG_SOURCE_SENDS_HEARTBEAT, ER_RPL_ERROR_CREATING_CONNECTION_METADATA,
171 167
ER_RPL_BINLOG_SOURCE_USES_CHECKSUM_AND_REPLICA_CANT,
ER_RPL_ERROR_LOOKING_FOR_LOG, 176
171 ER_RPL_ERROR_READING_REPLICA_WORKER_CONFIGU
ER_RPL_BINLOG_STARTING_DUMP, 171 180
ER_RPL_BINLOG_STORAGE_DELEGATES_INIT_FAILED,ER_RPL_ERROR_READING_SOURCE_CONFIGURATION,
152 181
ER_RPL_BINLOG_TRANSMIT_DELEGATES_INIT_FAILED, ER_RPL_ERROR_WRITING_RELAY_LOG_CONFIGURATION
153 179
ER_RPL_CANNOT_OPEN_RELAY_LOG, 394 ER_RPL_ERROR_WRITING_SOURCE_CONFIGURATION,
ER_RPL_CANT_ADD_DO_TABLE, 148 180
ER_RPL_CANT_ADD_IGNORE_TABLE, 148 ER_RPL_FAILED_TO_CREATE_CACHE_FOR_INFO_FILE,
ER_RPL_CANT_CREATE_REPLICA_THREAD, 174 168
ER_RPL_CANT_FIND_FOLLOWUP_FILE, 176 ER_RPL_FAILED_TO_CREATE_NEW_INFO_FILE,
ER_RPL_CANT_HAVE_SAME_BASENAME, 193 168
ER_RPL_CANT_INITIALIZE_GTID_SETS_IN_AM_INIT_INFO,
ER_RPL_FAILED_TO_DELETE_FROM_REPLICA_WORKERS
179 167
ER_RPL_CANT_MAKE_PATHS, 150 ER_RPL_FAILED_TO_OPEN_INFO_FILE, 168
ER_RPL_CANT_OPEN_INFO_TABLE, 166 ER_RPL_FAILED_TO_OPEN_RELAY_LOG, 180
ER_RPL_CANT_OPEN_LOG_IN_AM_INIT_INFO, ER_RPL_FAILED_TO_RESET_STATE_IN_REPLICA_INFO_R
179 167
ER_RPL_CANT_SCAN_INFO_TABLE, 166 ER_RPL_FAILED_TO_STAT_LOG_IN_INDEX, 178
ER_RPL_CANT_STOP_REPLICA_WHILE_LOCKED_BACKUP, ER_RPL_FILTERS_NOT_ATTACHED_TO_CHANNEL,
102 202
ER_RPL_CHANNELS_REQUIRE_NON_ZERO_SERVER_ID, ER_RPL_FILTER_ADD_WILD_DO_TABLE_FAILED,
167 195
ER_RPL_CORRUPTED_INFO_TABLE, 166 ER_RPL_FILTER_ADD_WILD_IGNORE_TABLE_FAILED,
ER_RPL_CORRUPTED_KEYS_IN_INFO_TABLE, 196
167 ER_RPL_GTID_LOG_EVENT_IN_STREAM, 169
ER_RPL_ENCRYPTION_CANNOT_ROTATE_BINLOG_MASTER_KEY,
ER_RPL_GTID_MEMORY_FINALLY_AVAILABLE,
98 168
ER_RPL_ENCRYPTION_FAILED_TO_ENCRYPT, 97 ER_RPL_GTID_MODE_REQUIRES_ENFORCE_GTID_CONS
ER_RPL_ENCRYPTION_FAILED_TO_FETCH_KEY, 193
96 ER_RPL_GTID_TABLE_CANNOT_OPEN, 139
ER_RPL_ENCRYPTION_FAILED_TO_GENERATE_KEY, ER_RPL_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAUL
97 350
ER_RPL_ENCRYPTION_FAILED_TO_REMOVE_KEY, ER_RPL_GTID_UNSAFE_STMT_CREATE_SELECT,
97 340
ER_RPL_ENCRYPTION_FAILED_TO_ROTATE_LOGS, ER_RPL_GTID_UNSAFE_STMT_ON_NON_TRANS_TABLE,
96 340
ER_RPL_ENCRYPTION_FAILED_TO_STORE_KEY, ER_RPL_INCOMPATIBLE_DECIMAL_IN_RBR, 170
97 ER_RPL_INCONSISTENT_SEQUENCE_NO_IN_TRX,
ER_RPL_ENCRYPTION_HEADER_ERROR, 96 167
ER_RPL_ENCRYPTION_KEYRING_INVALID_KEY, ER_RPL_INCONSISTENT_TIMESTAMPS_IN_TRX,
96 167
ER_RPL_ENCRYPTION_KEY_EXISTS_UNEXPECTED, ER_RPL_INCREMENTING_MEMBER_ACTION_VERSION,
97 393
ER_RPL_ENCRYPTION_KEY_NOT_FOUND, 96 ER_RPL_INFINITY_DENIED, 151
509
ER_RPL_INFINITY_IGNORED, 152 ER_RPL_RELAY_LOG_RECOVERY_INFO_AFTER_CLONE,
ER_RPL_INFO_DATA_TOO_LONG, 50 372
ER_RPL_IO_THREAD_KILLED, 201 ER_RPL_REPLICA_ADDITIONAL_ERROR_INFO_FROM_DA,
ER_RPL_KILL_OLD_DUMP_THREAD_ENCOUNTERED, 177
430 ER_RPL_REPLICA_AUTO_POSITION_IS_1_AND_GTID_MODE_
ER_RPL_LOG_ENTRY_EXCEEDS_REPLICA_MAX_ALLOWED_PACKET,
172
176 ER_RPL_REPLICA_CANT_FLUSH_CONNECTION_METADATA_R
ER_RPL_LOG_NOT_FOUND_WHILE_COUNTING_RELAY_LOG_SPACE,
174
178 ER_RPL_REPLICA_CANT_INITIALIZE_REPLICA_WORKER,
ER_RPL_MTA_ALLOW_COMMIT_OUT_OF_ORDER, 176
430 ER_RPL_REPLICA_CANT_INIT_RELAY_LOG_POSITION,
ER_RPL_MTA_AUTOMATIC_RECOVERY_FAILED, 175
174 ER_RPL_REPLICA_CANT_START_REPLICA_FOR_CHANNEL,
ER_RPL_MTA_CHECKPOINT_PERIOD_DIFFERS_FROM_CNT,
173
176 ER_RPL_REPLICA_CANT_STOP_REPLICA_FOR_CHANNEL,
ER_RPL_MTA_GROUP_RECOVERY_APPLIER_METADATA,173
176 ER_RPL_REPLICA_CANT_USE_CHARSET, 178
ER_RPL_MTA_GROUP_RECOVERY_APPLIER_METADATA_FOR_WORKER,
ER_RPL_REPLICA_CONNECTED_TO_SOURCE_REPLICATION_
176 178
ER_RPL_MTA_RECOVERY_CANT_OPEN_RELAY_LOG, ER_RPL_REPLICA_CONNECTED_TO_SOURCE_RPL_STARTED
174 411
ER_RPL_MTA_RECOVERY_COMPLETE, 175 ER_RPL_REPLICA_CONNECTED_TO_SOURCE_RPL_STARTED
ER_RPL_MTA_RECOVERY_FAILED_TO_START_COORDINATOR,
411
173 ER_RPL_REPLICA_COULD_NOT_CREATE_CHANNEL_LIST,
ER_RPL_MTA_RECOVERY_STARTING_COORDINATOR,167
173 ER_RPL_REPLICA_DUMP_THREAD_KILLED_BY_SOURCE,
ER_RPL_MTA_RECOVERY_SUCCESSFUL, 174 175
ER_RPL_MTA_REPLICA_COORDINATOR_HAS_WAITED,ER_RPL_REPLICA_ERROR_INFO_FROM_DA, 177
180 ER_RPL_REPLICA_ERROR_LOADING_USER_DEFINED_LIBRAR
ER_RPL_MTA_STATISTICS, 175 177
ER_RPL_MULTISOURCE_REQUIRES_TABLE_TYPE_REPOSITORIES,
ER_RPL_REPLICA_ERROR_READING_FROM_SERVER,
168 175
ER_RPL_OPEN_INDEX_FILE_FAILED, 179 ER_RPL_REPLICA_ERROR_READING_RELAY_LOG_EVENTS,
ER_RPL_PLEASE_USE_OPTION_RELAY_LOG, 179 178
ER_RPL_PLUGIN_FUNCTION_FAILED, 153 ER_RPL_REPLICA_ERROR_REQUESTING_BINLOG_DUMP,
ER_RPL_RECOVERY_ERROR, 173 175
ER_RPL_RECOVERY_ERROR_READ_RELAY_LOG, ER_RPL_REPLICA_ERROR_RETRYING, 175
173 ER_RPL_REPLICA_ERROR_RUNNING_QUERY,
ER_RPL_RECOVERY_FILE_SOURCE_POS_INFO, 177
173 ER_RPL_REPLICA_FAILED_TO_CREATE_CHANNEL_FROM_CO
ER_RPL_RECOVERY_IO_ERROR_READING_RELAY_LOG_INDEX,
168
173 ER_RPL_REPLICA_FAILED_TO_CREATE_OR_RECOVER_INFO
ER_RPL_RECOVERY_NO_ROTATE_EVENT_FROM_SOURCE,
172
173 ER_RPL_REPLICA_FAILED_TO_INIT_A_CONNECTION_METAD
ER_RPL_RECOVERY_REPLICATE_SAME_SERVER_ID_REQUIRES_POSITION,
168
173 ER_RPL_REPLICA_FAILED_TO_INIT_CONNECTION_METADAT
ER_RPL_RECOVERY_SKIPPED_GROUP_REPLICATION_CHANNEL,
168
173 ER_RPL_REPLICA_FAILED_TO_INIT_PARTITIONS_HASH,
ER_RPL_RELAY_LOG_INDEX_NEEDS_FILE_NOT_DIRECTORY,
177
179 ER_RPL_REPLICA_FILTER_CREATE_FAILED, 196
ER_RPL_RELAY_LOG_NEEDS_FILE_NOT_DIRECTORY, ER_RPL_REPLICA_FORCING_TO_RECONNECT_IO_THREAD,
178 175
ER_RPL_RELAY_LOG_RECOVERY_GTID_ONLY, ER_RPL_REPLICA_GENERIC_MESSAGE, 167
397
510
ER_RPL_REPLICA_GLOBAL_FILTERS_COPY_FAILED, ER_RPL_REPLICA_SQL_THREAD_STARTING_WITH_PRIVIL
196 369
ER_RPL_REPLICA_INCORRECT_CHANNEL, 192 ER_RPL_REPLICA_SQL_THREAD_STOP_CMD_EXEC_TIME
ER_RPL_REPLICA_INSECURE_CHANGE_SOURCE, 340
192 ER_RPL_REPLICA_STOPPING_AS_SOURCE_OOM,
ER_RPL_REPLICA_IO_THREAD_ABORTED_WAITING_FOR_RELAY_LOG_SPACE,
176
176 ER_RPL_REPLICA_USES_CHECKSUM_AND_SOURCE_PRE
ER_RPL_REPLICA_IO_THREAD_CANT_REGISTER_ON_SOURCE,
174
175 ER_RPL_REPLICA_WORKER_THREAD_CREATION_FAILED
ER_RPL_REPLICA_IO_THREAD_DETECTED_UNEXPECTED_EVENT_SEQUENCE,
176
177 ER_RPL_REPLICA_WORKER_THREAD_CREATION_FAILED
ER_RPL_REPLICA_IO_THREAD_EXITING, 176 176
ER_RPL_REPLICA_IO_THREAD_KILLED, 175 ER_RPL_REPO_HAS_GAPS, 141
ER_RPL_REPLICA_IO_THREAD_STOP_CMD_EXEC_TIMEOUT,
ER_RPL_REWRITEDB_EMPTY_FROM, 149
340 ER_RPL_REWRITEDB_EMPTY_TO, 149
ER_RPL_REPLICA_IO_THREAD_WAS_KILLED, 174 ER_RPL_REWRITEDB_MISSING_ARROW, 149
ER_RPL_REPLICA_MONITOR_IO_THREAD_EXITING, ER_RPL_SERVER_ID_MISSING, 174
383 ER_RPL_SSL_INFO_IN_CONNECTION_METADATA_IGNOR
ER_RPL_REPLICA_MONITOR_IO_THREAD_RECONNECT_CHANNEL,
181
383 ER_RPL_TRX_DELEGATES_INIT_FAILED, 152
ER_RPL_REPLICA_NEW_C_M_NEEDS_REPOS_TYPE_OTHER_THAN_FILE,
ER_RPL_UNEXPECTED_BEGIN_IN_STREAM, 169
178 ER_RPL_UNEXPECTED_COMMIT_ROLLBACK_OR_XID_LO
ER_RPL_REPLICA_NEXT_LOG_IS_ACTIVE, 178 169
ER_RPL_REPLICA_NEXT_LOG_IS_INACTIVE, 178 ER_RPL_UNEXPECTED_XA_ROLLBACK_IN_STREAM,
ER_RPL_REPLICA_QUEUE_EVENT_FAILED_INVALID_CONFIGURATION,
169
177 ER_RPL_UNSUPPORTED_UNIGNORABLE_EVENT_IN_STR
ER_RPL_REPLICA_QUEUE_EVENT_FAILED_INVALID_NON_ROW_FORMAT,
169
370 ER_RPL_WORKER_CANT_FIND_NEXT_RELAY_LOG,
ER_RPL_REPLICA_READ_INVALID_EVENT_FROM_SOURCE,
180
177 ER_RPL_WORKER_CANT_READ_RELAY_LOG, 180
ER_RPL_REPLICA_REPORT_HOST_TOO_LONG, ER_RPL_WORKER_ID_IS, 167
174 ER_RUNNING_APPLIER_PREVENTS_SWITCH_GLOBAL_BIN
ER_RPL_REPLICA_REPORT_PASSWORD_TOO_LONG, 93
175 ER_RUN_HOOK_ERROR, 67
ER_RPL_REPLICA_REPORT_USER_TOO_LONG, ER_SAME_NAME_PARTITION, 36
174 ER_SAME_NAME_PARTITION_FIELD, 43
ER_RPL_REPLICA_RESET_FILTER_OPTIONS, 196 ER_SCHEDULER_KILLING, 142
ER_RPL_REPLICA_SECONDS_BEHIND_SOURCE_DUBIOUS,
ER_SCHEDULER_STARTED, 142
174 ER_SCHEDULER_STOPPED, 142
ER_RPL_REPLICA_SKIP_COUNTER_EXECUTED, ER_SCHEDULER_STOPPING_FAILED_TO_CREATE_WORK
177 142
ER_RPL_REPLICA_SOURCE_UUID_HAS_CHANGED_HOST_PORT_UNCHANGED,
ER_SCHEDULER_STOPPING_FAILED_TO_GET_EVENT,
411 142
ER_RPL_REPLICA_SOURCE_UUID_HAS_NOT_CHANGED,ER_SCHEDULER_WAITING, 142
411 ER_SCHEMA_DIR_CREATE_FAILED, 88
ER_RPL_REPLICA_SOURCE_UUID_HOST_PORT_HAS_CHANGED,
ER_SCHEMA_DIR_EXISTS, 88
411 ER_SCHEMA_DIR_MISSING, 88
ER_RPL_REPLICA_SQL_THREAD_DETECTED_UNEXPECTED_EVENT_SEQUENCE,
ER_SCHEMA_DIR_UNKNOWN, 88
370 ER_SCHEMA_NAME_IN_UPPER_CASE_NOT_ALLOWED,
ER_RPL_REPLICA_SQL_THREAD_EXITING, 177 371
ER_RPL_REPLICA_SQL_THREAD_IO_ERROR_READING_EVENT,
ER_SCHEMA_NAME_IN_UPPER_CASE_NOT_ALLOWED_FO
178 371
ER_RPL_REPLICA_SQL_THREAD_STARTING, 177 ER_SCHEMA_READ_ONLY, 112
ER_SDI_GET_KEYS_INVALID_TABLESPACE, 116
511
ER_SDI_OPERATION_FAILED, 87 ER_SEMISYNC_NOT_SUPPORTED_BY_SOURCE,
ER_SDI_OPERATION_FAILED_MISSING_RECORD, 213
109 ER_SEMISYNC_NO_SPACE_IN_THE_PKT, 211
ER_SECONDARY_ENGINE, 104 ER_SEMISYNC_PROBE_LOG_INFO_IN_ENTRY,
ER_SECONDARY_ENGINE_DDL, 104 209
ER_SECONDARY_ENGINE_DDL_FAILED, 415 ER_SEMISYNC_RECEIVED_ACK_IS_SMALLER,
ER_SECONDARY_ENGINE_DDL_TRACK_PROGRESS, 211
428 ER_SEMISYNC_REPLICA_NET_FLUSH_REPLY_FAILED,
ER_SECONDARY_ENGINE_PLUGIN, 103 213
ER_SECOND_PASSWORD_CANNOT_BE_EMPTY, ER_SEMISYNC_REPLICA_REPLY, 213
103 ER_SEMISYNC_REPLICA_REPLY_WITH_BINLOG_INFO,
ER_SECURE_AUTH_VALUE_UNSUPPORTED, 144 213
ER_SECURE_TRANSPORT_REQUIRED, 72 ER_SEMISYNC_REPLICA_SEND_REPLY_FAILED,
ER_SEC_FILE_PRIV_ARGUMENT_TOO_LONG, 146 213
ER_SEC_FILE_PRIV_CANT_ACCESS_DIR, 145 ER_SEMISYNC_REPLICA_SET_FAILED, 213
ER_SEC_FILE_PRIV_CANT_STAT, 145 ER_SEMISYNC_REPLICA_START, 213
ER_SEC_FILE_PRIV_DIRECTORY_INSECURE, 145 ER_SEMISYNC_REPLY_BINLOG_FILE_TOO_LARGE,
ER_SEC_FILE_PRIV_DIRECTORY_PERMISSIONS, 210
145 ER_SEMISYNC_REPLY_MAGIC_NO_ERROR, 210
ER_SEC_FILE_PRIV_EMPTY, 145 ER_SEMISYNC_REPLY_PKT_LENGTH_TOO_SMALL,
ER_SEC_FILE_PRIV_IGNORED, 145 210
ER_SEC_FILE_PRIV_NULL, 145 ER_SEMISYNC_RPL_ENABLED_ON_SOURCE, 210
ER_SELECT_REDUCED, 20 ER_SEMISYNC_RPL_INIT_FOR_TRX, 209
ER_SEMISYNC_ADD_ACK_TO_SLOT, 211 ER_SEMISYNC_RPL_SWITCHED_OFF, 211
ER_SEMISYNC_BINLOG_REPLY_IS_AHEAD, 210 ER_SEMISYNC_RPL_SWITCHED_ON, 211
ER_SEMISYNC_BINLOG_WRITE_OUT_OF_ORDER, ER_SEMISYNC_SERVER_REPLY, 210
209 ER_SEMISYNC_SOCKET_FD_TOO_LARGE, 213
ER_SEMISYNC_CLEARED_ACTIVE_TRANSACTION_TILL_POS,
ER_SEMISYNC_SOURCE_FAILED_ON_NET_FLUSH,
209 211
ER_SEMISYNC_CLEARED_ALL_ACTIVE_TRANSACTION_NODES,
ER_SEMISYNC_SOURCE_GOT_REPLY_AT_POS,
209 210
ER_SEMISYNC_DISABLED_ON_SOURCE, 210 ER_SEMISYNC_SOURCE_OOM, 210
ER_SEMISYNC_EXECUTION_FAILED_ON_SOURCE, ER_SEMISYNC_SOURCE_SIGNAL_ALL_WAITING_THREADS,
213 210
ER_SEMISYNC_FAILED_REGISTER_REPLICA_TO_RECEIVER,
ER_SEMISYNC_SOURCE_TRX_WAIT_POS, 210
212 ER_SEMISYNC_STARTING_ACK_RECEIVER_THD,
ER_SEMISYNC_FAILED_TO_ALLOCATE_TRX_NODE, 212
209 ER_SEMISYNC_START_BINLOG_DUMP_TO_REPLICA,
ER_SEMISYNC_FAILED_TO_INSERT_TRX_NODE, 212
211 ER_SEMISYNC_STOPPING_ACK_RECEIVER_THREAD,
ER_SEMISYNC_FAILED_TO_START_ACK_RECEIVER_THD,
212
212 ER_SEMISYNC_STOP_BINLOG_DUMP_TO_REPLICA,
ER_SEMISYNC_FAILED_TO_STOP_ACK_RECEIVER_THD,
212
213 ER_SEMISYNC_SYNC_HEADER_UPDATE_INFO,
ER_SEMISYNC_FAILED_TO_WAIT_ON_DUMP_SOCKET,211
212 ER_SEMISYNC_TRACE_ENTER_FUNC, 209
ER_SEMISYNC_FORCED_SHUTDOWN, 210 ER_SEMISYNC_TRACE_EXIT, 209
ER_SEMISYNC_FUNCTION_CALLED_TWICE, 210 ER_SEMISYNC_TRACE_EXIT_WITH_BOOL_EXIT_CODE,
ER_SEMISYNC_INIT_WAIT_POS, 211 209
ER_SEMISYNC_INSERT_LOG_INFO_IN_ENTRY, ER_SEMISYNC_TRACE_EXIT_WITH_INT_EXIT_CODE,
209 209
ER_SEMISYNC_MISSING_MAGIC_NO_FOR_SEMISYNC_PKT,
ER_SEMISYNC_TRX_SKIPPED_AT_POS, 211
213 ER_SEMISYNC_UNREGISTERED_REPLICATOR,
ER_SEMISYNC_MOVE_BACK_WAIT_POS, 210 212
512
ER_SEMISYNC_UNREGISTER_BINLOG_STORAGE_OBSERVER_FAILED,
ER_SERVER_OFFLINE_MODE, 62
212 ER_SERVER_OFFLINE_MODE_REASON, 136
ER_SEMISYNC_UNREGISTER_BINLOG_TRANSMIT_OBSERVER_FAILED,
ER_SERVER_OUTOFMEMORY, 194
212 ER_SERVER_OUT_OF_RESOURCES, 194
ER_SEMISYNC_UNREGISTER_TRX_OBSERVER_FAILED,
ER_SERVER_OUT_OF_SORTMEMORY, 343
212 ER_SERVER_RECORD_FILE_FULL, 343
ER_SEMISYNC_UPDATE_EXISTING_REPLICA_ACK, ER_SERVER_REPLICA_AM_INIT_REPOSITORY,
212 342
ER_SEMISYNC_WAIT_FOR_BINLOG_TIMEDOUT, ER_SERVER_REPLICA_CM_INIT_REPOSITORY,
211 342
ER_SEMISYNC_WAIT_TIME_ASSESSMENT_FOR_COMMIT_TRX_FAILED,
ER_SERVER_REPLICA_CONVERSION_FAILED,
211 344
ER_SEMISYNC_WAIT_TIME_FOR_BINLOG_SENT, ER_SERVER_REPLICA_IGNORED_TABLE, 344
211 ER_SERVER_REPLICA_INIT_QUERY_FAILED, 344
ER_SERVERID_TOO_LARGE, 151 ER_SERVER_RPL_ENCRYPTION_FAILED_TO_ENCRYPT,
ER_SERVER_ACL_TABLE_ERROR, 343 357
ER_SERVER_BINLOG_MASTER_KEY_RECOVERY_OUT_OF_COMBINATION,
ER_SERVER_RPL_ENCRYPTION_FAILED_TO_FETCH_KEY
360 353
ER_SERVER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_AUX_KEY,
ER_SERVER_RPL_ENCRYPTION_FAILED_TO_GENERATE_
360 353
ER_SERVER_BINLOG_UNSAFE_SYSTEM_FUNCTION, ER_SERVER_RPL_ENCRYPTION_FAILED_TO_REMOVE_KE
362 354
ER_SERVER_CANNOT_LOAD_FROM_TABLE_V2, ER_SERVER_RPL_ENCRYPTION_FAILED_TO_ROTATE_LO
343 353
ER_SERVER_CANT_OPEN_FILE, 343 ER_SERVER_RPL_ENCRYPTION_FAILED_TO_STORE_KEY
ER_SERVER_CERT_VERIFY_FAILED, 417 354
ER_SERVER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2,
ER_SERVER_RPL_ENCRYPTION_HEADER_ERROR,
343 353
ER_SERVER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE_V2,
ER_SERVER_RPL_ENCRYPTION_IGNORE_ROTATE_MAST
343 354
ER_SERVER_COST_FAILED_TO_READ, 169 ER_SERVER_RPL_ENCRYPTION_KEYRING_INVALID_KEY,
ER_SERVER_COST_INVALID_COST_CONSTANT, 353
168 ER_SERVER_RPL_ENCRYPTION_KEY_EXISTS_UNEXPECT
ER_SERVER_COST_UNKNOWN_COST_CONSTANT, 353
168 ER_SERVER_RPL_ENCRYPTION_KEY_NOT_FOUND,
ER_SERVER_DISK_FULL_NOWAIT, 343 353
ER_SERVER_DOWNGRADE_FROM_VERSION, 415 ER_SERVER_RPL_ENCRYPTION_MASTER_KEY_RECOVER
ER_SERVER_DOWNGRADE_HELP_TABLE_STATUS, 354
427 ER_SERVER_RPL_ENCRYPTION_UNABLE_TO_INITIALIZE,
ER_SERVER_DOWNGRADE_STATUS, 416 354
ER_SERVER_DOWNGRADE_SYS_SCHEMA, 427 ER_SERVER_RPL_ENCRYPTION_UNABLE_TO_ROTATE_M
ER_SERVER_FILE_NOT_FOUND, 343 354
ER_SERVER_FILE_USED, 343 ER_SERVER_SHUTDOWN, 7
ER_SERVER_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TRX_IN_SBR,
ER_SERVER_SHUTDOWN_COMPLETE, 193
350 ER_SERVER_SHUTDOWN_INFO, 346
ER_SERVER_HANDLER_ERROR, 343 ER_SERVER_SOURCE_FATAL_ERROR_READING_BINLOG
ER_SERVER_INIT_COMPILED_IN_COMMANDS, 341
204 ER_SERVER_STARTUP_ADMIN_INTERFACE, 354
ER_SERVER_ISNT_AVAILABLE, 73 ER_SERVER_STARTUP_MSG, 194
ER_SERVER_NET_PACKET_TOO_LARGE, 342 ER_SERVER_TABLE_CHECK_FAILED, 343
ER_SERVER_NEW_ABORTING_CONNECTION, 342 ER_SERVER_TEST_MESSAGE, 344
ER_SERVER_NOT_FORM_FILE, 343 ER_SERVER_UNKNOWN_SYSTEM_VARIABLE, 342
ER_SERVER_NO_SESSION_TO_SEND_TO, 342 ER_SERVER_UPGRADE_CHECKING_DB, 362
ER_SERVER_NO_SYSTEM_TABLE_ACCESS, 342 ER_SERVER_UPGRADE_EMPTY_SYS, 361
513
ER_SERVER_UPGRADE_FAILED, 361 ER_SIMPLE_ERROR_LOG_COMPONENT_STATUS,
ER_SERVER_UPGRADE_FROM_VERSION, 357 430
ER_SERVER_UPGRADE_HELP_TABLE_STATUS, ER_SIMULATED_INJECTION_ERROR, 128
362 ER_SIZE_OVERFLOW_ERROR, 37
ER_SERVER_UPGRADE_INFO_FILE, 361 ER_SKIP_UPDATING_METADATA_IN_SE_RO_MODE,
ER_SERVER_UPGRADE_MYSQL_TABLES, 361 201
ER_SERVER_UPGRADE_NO_SYS_VERSION, 361 ER_SLOW_LOG_MODE_IGNORED_WHEN_NOT_LOGGING_TO
ER_SERVER_UPGRADE_OFF, 361 97
ER_SERVER_UPGRADE_PENDING, 361 ER_SOURCE, 15
ER_SERVER_UPGRADE_REPAIR_REQUIRED, 361 ER_SOURCE_DELAY_VALUE_OUT_OF_RANGE, 49
ER_SERVER_UPGRADE_REPAIR_STATUS, 361 ER_SOURCE_FATAL_ERROR_READING_BINLOG,
ER_SERVER_UPGRADE_SKIP, 361 19
ER_SERVER_UPGRADE_STATUS, 361 ER_SOURCE_HAS_PURGED_REQUIRED_GTIDS,
ER_SERVER_UPGRADE_SYSTEM_TABLES, 361 53
ER_SERVER_UPGRADE_SYS_SCHEMA, 361 ER_SOURCE_NET_READ, 15
ER_SERVER_UPGRADE_SYS_SCHEMA_OBJECT_COUNT,ER_SOURCE_NET_WRITE, 15
362 ER_SPATIAL_CANT_HAVE_NULL, 20
ER_SERVER_UPGRADE_SYS_SCHEMA_OUTDATED, ER_SPATIAL_FUNCTIONAL_INDEX, 94
362 ER_SPATIAL_MUST_HAVE_GEOM_COL, 46
ER_SERVER_UPGRADE_SYS_SCHEMA_UP_TO_DATE, ER_SPATIAL_UNIQUE_INDEX, 92
362 ER_SPECIFIC_ACCESS_DENIED, 129
ER_SERVER_UPGRADE_SYS_VERSION_EMPTY, ER_SPECIFIC_ACCESS_DENIED_ERROR, 18
361 ER_SPVAR_NONINTEGER_TYPE, 113
ER_SERVER_UPGRADE_VERSION_NOT_SUPPORTED, ER_SP_ALREADY_EXISTS, 23
357 ER_SP_BADRETURN, 23
ER_SERVER_WARN_DEPRECATED, 359 ER_SP_BADSELECT, 23
ER_SERVER_WRONG_VALUE_FOR_VAR, 349 ER_SP_BADSTATEMENT, 24
ER_SESSION_WAS_KILLED, 73 ER_SP_BAD_CURSOR_QUERY, 24
ER_SETNS_FAILED, 363 ER_SP_BAD_CURSOR_SELECT, 24
ER_SET_CONSTANTS_ONLY, 16 ER_SP_BAD_SQLSTATE, 29
ER_SET_EVENT_FAILED, 346 ER_SP_BAD_VAR_SHADOW, 32
ER_SET_PASSWORD_AUTH_PLUGIN_ERROR, 122 ER_SP_CANT_ALTER, 25
ER_SET_STATEMENT_CANNOT_INVOKE_FUNCTION, ER_SP_CANT_SET_AUTOCOMMIT, 32
52 ER_SP_CASE_NOT_FOUND, 25
ER_SE_TYPECODE_CONFLICT, 155 ER_SP_COND_MISMATCH, 24
ER_SHA256_PASSWORD_SECOND_PASSWORD_USED_INFORMATION,
ER_SP_CURSOR_AFTER_HANDLER, 25
355 ER_SP_CURSOR_ALREADY_OPEN, 24
ER_SHAPE_PRIDICTION_UDF, 123 ER_SP_CURSOR_MISMATCH, 24
ER_SHARED_TABLESPACE_USED_BY_PARTITIONED_TABLE,
ER_SP_CURSOR_NOT_OPEN, 24
350 ER_SP_DOES_NOT_EXIST, 23
ER_SHA_PWD_AUTH_REQUIRES_RSA_OR_SSL, ER_SP_DROP_FAILED, 23
218 ER_SP_DUP_COND, 25
ER_SHA_PWD_FAILED_TO_GENERATE_MULTI_ROUND_HASH,
ER_SP_DUP_CURS, 25
218 ER_SP_DUP_HANDLER, 29
ER_SHA_PWD_FAILED_TO_PARSE_AUTH_STRING, ER_SP_DUP_PARAM, 25
218 ER_SP_DUP_VAR, 25
ER_SHA_PWD_RSA_KEY_TOO_LONG, 218 ER_SP_FETCH_NO_DATA, 25
ER_SHA_PWD_SALT_FOR_USER_CORRUPT, 219 ER_SP_LABEL_MISMATCH, 23
ER_SHUTDOWN_COMPLETE, 8 ER_SP_LABEL_REDEFINE, 23
ER_SHUTTING_DOWN_REPLICA_THREADS, 147 ER_SP_LILABEL_MISMATCH, 23
ER_SIGNAL_BAD_CONDITION_TYPE, 43 ER_SP_LOAD_FAILED, 77
ER_SIGNAL_EXCEPTION, 43 ER_SP_NORETURN, 24
ER_SIGNAL_NOT_FOUND, 43 ER_SP_NORETURNEND, 24
ER_SIGNAL_WARN, 43 ER_SP_NOT_VAR_ARG, 30
514
ER_SP_NO_AGGREGATE, 33 ER_SRS_UNUSED_PROJ_PARAMETER_PRESENT,
ER_SP_NO_ALTER_LANGUAGE, 127 122
ER_SP_NO_DROP_SP, 26 ER_SRV_END, 418
ER_SP_NO_RECURSION, 30 ER_SRV_INIT_END, 418
ER_SP_NO_RECURSIVE_CREATE, 23 ER_SRV_INIT_START, 418
ER_SP_NO_RETSET, 30 ER_SRV_START, 418
ER_SP_RECURSION_LIMIT, 32 ER_SR_BOGUS_VALUE, 153
ER_SP_STORE_FAILED, 23 ER_SR_INVALID_CONTEXT, 153
ER_SP_SUBSELECT_NYI, 25 ER_SSL_FIPS_MODE_ERROR, 220
ER_SP_UNDECLARED_VAR, 24 ER_SSL_LIBRARY_ERROR, 143
ER_SP_UNINIT_VAR, 23 ER_SSL_MEMORY_INSTRUMENTATION_INIT_FAILED,
ER_SP_VARCOND_AFTER_CURSHNDLR, 25 351
ER_SP_WRONG_NAME, 32 ER_SSL_TRYING_DATADIR_DEFAULTS, 151
ER_SP_WRONG_NO_OF_ARGS, 24 ER_STACKSIZE_UNEXPECTED, 150
ER_SP_WRONG_NO_OF_FETCH_ARGS, 24 ER_STACK_BACKTRACE, 406
ER_SQLTHREAD_WITH_SECURE_REPLICA, 51 ER_STACK_OVERRUN, 11
ER_SQL_AUTHOR_DEFAULT_ROLES_FAIL, 154 ER_STACK_OVERRUN_NEED_MORE, 31
ER_SQL_HA_READ_FAILED, 153 ER_STARTING_AS, 146
ER_SQL_MODE_MERGED, 70 ER_STARTING_INIT, 346
ER_SQL_MODE_MERGED_WITH_STRICT_MODE, ER_STARTING_REPLICA_MONITOR_IO_THREAD,
193 114
ER_SQL_REPLICA_SKIP_COUNTER_USED_WITH_GTID_MODE_ON,
ER_STARTUP, 29
114 ER_START_REPLICA_CHANNEL_INVALID_CONFIGURATIO
ER_SQL_USER_TABLE_ALTER_WARNING, 155 129
ER_SQL_USER_TABLE_CREATE_WARNING, 154 ER_START_REPLICA_CHANNEL_INVALID_CONFIGURATIO
ER_SRS_ATTRIBUTE_STRING_TOO_LONG, 91 420
ER_SRS_GEOGCS_INVALID_AXES, 92 ER_STATEMENT_NOT_ALLOWED_AFTER_START_TRANSA
ER_SRS_ID_ALREADY_EXISTS, 90 111
ER_SRS_INVALID_ANGULAR_UNIT, 93 ER_STD_BAD_ALLOC_ERROR, 63
ER_SRS_INVALID_CHARACTER_IN_ATTRIBUTE, ER_STD_DOMAIN_ERROR, 63
91 ER_STD_INVALID_ARGUMENT, 64
ER_SRS_INVALID_HEIGHT, 123 ER_STD_LENGTH_ERROR, 63
ER_SRS_INVALID_INVERSE_FLATTENING, 92 ER_STD_LOGIC_ERROR, 64
ER_SRS_INVALID_LATITUDE_OF_ORIGIN, 122 ER_STD_OUT_OF_RANGE_ERROR, 64
ER_SRS_INVALID_LATITUDE_POLAR_STERE_VAR_A, ER_STD_OVERFLOW_ERROR, 64
123 ER_STD_RANGE_ERROR, 64
ER_SRS_INVALID_LONGITUDE_OF_ORIGIN, 122 ER_STD_REGEX_ERROR, 102
ER_SRS_INVALID_PRIME_MERIDIAN, 93 ER_STD_RUNTIME_ERROR, 64
ER_SRS_INVALID_SCALING, 123 ER_STD_UNDERFLOW_ERROR, 64
ER_SRS_INVALID_SEMI_MAJOR_AXIS, 92 ER_STD_UNKNOWN_EXCEPTION, 64
ER_SRS_INVALID_ZONE_WIDTH, 123 ER_STMT_CACHE_FULL, 47
ER_SRS_MISSING_MANDATORY_ATTRIBUTE, 90 ER_STMT_EXECUTION_NOT_ALLOWED_WITHIN_SP_OR_T
ER_SRS_MULTIPLE_ATTRIBUTE_DEFINITIONS, 90 135
ER_SRS_NAME_CANT_BE_EMPTY_OR_WHITESPACE, ER_STMT_HAS_NO_OPEN_CURSOR, 30
90 ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG, 25
ER_SRS_NOT_CARTESIAN, 77 ER_STOP_REPLICA_IO_THREAD_DISK_SPACE,
ER_SRS_NOT_CARTESIAN_UNDEFINED, 77 219
ER_SRS_NOT_FOUND, 79 ER_STOP_REPLICA_IO_THREAD_TIMEOUT, 59
ER_SRS_NOT_GEOGRAPHIC, 92 ER_STOP_REPLICA_MONITOR_IO_THREAD_TIMEOUT,
ER_SRS_ORGANIZATION_CANT_BE_EMPTY_OR_WHITESPACE,
114
90 ER_STOP_REPLICA_SQL_THREAD_TIMEOUT, 59
ER_SRS_PARSE_ERROR, 77 ER_STORAGE_ENGINE_NOT_LOADED, 60
ER_SRS_PROJ_PARAMETER_MISSING, 77 ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_DI
46
515
ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT,
ER_TABLE_CANT_HANDLE_BLOB, 14
38 ER_TABLE_CANT_HANDLE_FT, 17
ER_STORED_FUNCTION_PREVENTS_SWITCH_SQL_LOG_BIN,
ER_TABLE_CANT_HANDLE_SPKEYS, 33
46 ER_TABLE_CHECK_INTACT, 152
ER_SUBPARTITION_ERROR, 35 ER_TABLE_CORRUPT, 59
ER_SUBPARTITION_NAME, 42 ER_TABLE_CREATED_WITH_DIFFERENT_VERSION,
ER_SUBQUERY_NO_1_ROW, 19 163
ER_SUBQUERY_TRANSFORM_REJECTED, 111 ER_TABLE_DEF_CHANGED, 29
ER_SUPPORTED_ONLY_WITH_HYPERGRAPH, ER_TABLE_EXISTS_ERROR, 6
129 ER_TABLE_HAS_NO_FT, 51
ER_SWITCH_TMP_ENGINE, 81 ER_TABLE_INCOMPATIBLE_DECIMAL_FIELD, 162
ER_SYNTAX_ERROR, 13 ER_TABLE_INCOMPATIBLE_YEAR_FIELD, 162
ER_SYSTEMD_NOTIFY_CONNECT_FAILED, 259 ER_TABLE_IN_FK_CHECK, 49
ER_SYSTEMD_NOTIFY_DEBUG, 405 ER_TABLE_IN_SHARED_TABLESPACE, 124
ER_SYSTEMD_NOTIFY_PATH_TOO_LONG, 259 ER_TABLE_IN_SYSTEM_TABLESPACE, 54
ER_SYSTEMD_NOTIFY_WRITE_FAILED, 259 ER_TABLE_MUST_HAVE_A_VISIBLE_COLUMN,
ER_SYSTEM_SCHEMA_NOT_FOUND, 140 115
ER_SYSTEM_TABLES_NOT_SUPPORTED_BY_STORAGE_ENGINE,
ER_TABLE_MUST_HAVE_COLUMNS, 11
194 ER_TABLE_NAME, 42
ER_SYSTEM_TABLE_NOT_TRANSACTIONAL, 180 ER_TABLE_NAME_CAUSES_TOO_LONG_PATH,
ER_SYSTEM_VIEW_INIT_FAILED, 195 106
ER_SYSVAR_CHANGE_DURING_QUERY, 106 ER_TABLE_NAME_IN_UPPER_CASE_NOT_ALLOWED,
ER_SYS_VAR_COMPONENT_FAILED_TO_MAKE_VARIABLE_PERSISTENT,
371
219 ER_TABLE_NAME_IN_UPPER_CASE_NOT_ALLOWED_FOR_FK
ER_SYS_VAR_COMPONENT_FAILED_TO_PARSE_VARIABLE_OPTIONS,
371
219 ER_TABLE_NEEDS_DUMP_UPGRADE, 206
ER_SYS_VAR_COMPONENT_OOM, 219 ER_TABLE_NEEDS_REBUILD, 47
ER_SYS_VAR_COMPONENT_UNKNOWN_VARIABLE_TYPE,
ER_TABLE_NEEDS_UPGRADE, 32
219 ER_TABLE_NOT_EMPTY, 124
ER_SYS_VAR_COMPONENT_VARIABLE_SET_READ_ONLY,
ER_TABLE_NOT_LOCKED, 10
219 ER_TABLE_NOT_LOCKED_FOR_WRITE, 10
ER_SYS_VAR_DEREGISTRATION, 413 ER_TABLE_NO_PRIMARY_KEY, 124
ER_SYS_VAR_NOT_FOUND, 347 ER_TABLE_REFERENCED, 75
ER_SYS_VAR_REGISTRATION, 413 ER_TABLE_SCHEMA_MISMATCH, 54
ER_TABLEACCESS_DENIED_ERROR, 13 ER_TABLE_UPGRADE_REQUIRED, 194
ER_TABLENAME_NOT_ALLOWED_HERE, 20 ER_TABLE_VALUE_CONSTRUCTOR_CANNOT_HAVE_DEFAUL
ER_TABLESAMPLE_ONLY_ON_BASE_TABLES, 108
134 ER_TABLE_VALUE_CONSTRUCTOR_MUST_HAVE_COLUMNS,
ER_TABLESAMPLE_PERCENTAGE, 134 108
ER_TABLESPACE_AUTO_EXTEND_ERROR, 37 ER_TABLE_WITHOUT_PK, 93
ER_TABLESPACE_CANNOT_BE_DECRYPTED, 100 ER_TABLE_WRONG_KEY_DEFINITION, 163
ER_TABLESPACE_CANNOT_BE_ENCRYPTED, 100 ER_TARGET_TABLESPACE_UNENCRYPTED, 100
ER_TABLESPACE_CANNOT_ENCRYPT, 74 ER_TC_BAD_MAGIC_IN_TC_LOG, 172
ER_TABLESPACE_DISCARDED, 55 ER_TC_CANT_AUTO_RECOVER_WITH_TC_HEURISTIC_RECO
ER_TABLESPACE_DUP_FILENAME, 83 172
ER_TABLESPACE_ENGINE_MISMATCH, 86 ER_TC_HEURISTIC_RECOVERY_FAILED, 172
ER_TABLESPACE_EXISTS, 55 ER_TC_HEURISTIC_RECOVERY_MODE, 172
ER_TABLESPACE_IS_NOT_EMPTY, 69 ER_TC_NEED_N_SE_SUPPORTING_2PC_FOR_RECOVERY,
ER_TABLESPACE_MISSING, 55 172
ER_TABLESPACE_MISSING_WITH_NAME, 76 ER_TC_RECOVERING_AFTER_CRASH_USING,
ER_TABLESPACE_TYPE_UNKNOWN, 100 172
ER_TABLES_DIFFERENT_METADATA, 49 ER_TC_RECOVERY_FAILED_THESE_ARE_YOUR_OPTIONS,
ER_TABLE_CANT_HANDLE_AUTO_INCREMENT, 172
14
516
ER_TC_RESTART_WITHOUT_TC_HEURISTIC_RECOVER, ER_THREAD_POOL_LOW_LEVEL_INIT_FAILED,
172 431
ER_TELEMETRY_ERROR, 417 ER_THREAD_POOL_LOW_LEVEL_REARM_FAILED,
ER_TELEMETRY_INFO, 417 208
ER_TELEMETRY_WARNING, 417 ER_THREAD_POOL_MAX_UNUSED_THREADS_INVALID,
ER_TEMPORARY_NAME, 42 207
ER_TEMP_FILE_WRITE_FAILURE, 59 ER_THREAD_POOL_MTL_DISABLE, 428
ER_TEMP_TABLE_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT,
ER_THREAD_POOL_MTL_REENABLE, 428
93 ER_THREAD_POOL_NOT_SUPPORTED_ON_PLATFORM,
ER_TEMP_TABLE_PREVENTS_SWITCH_SESSION_BINLOG_FORMAT,
207
93 ER_THREAD_POOL_PFS_TABLES_ADD_FAILED,
ER_TEXTFILE_NOT_READABLE, 9 353
ER_TF_FORBIDDEN_JOIN_TYPE, 88 ER_THREAD_POOL_PFS_TABLES_INIT_FAILED,
ER_TF_MUST_HAVE_ALIAS, 87 353
ER_THE_USER_ABIDES, 148 ER_THREAD_POOL_PLUGIN_STARTED, 398
ER_THREAD_HANDLING_OOM, 145 ER_THREAD_POOL_POLL_WAIT_ERROR, 432
ER_THREAD_POOL_ALGORITHM_INVALID, 207 ER_THREAD_POOL_QUERY_THREADS_PER_GROUP_INVA
ER_THREAD_POOL_ALLOC_FAILED, 431 407
ER_THREAD_POOL_BUFFER_TOO_SMALL, 208 ER_THREAD_POOL_QUERY_THRS_PER_GRP_EXCEEDS_
ER_THREAD_POOL_CANNOT_REGISTER_DYNAMIC_PRIVILEGE,
407
405 ER_THREAD_POOL_SIZE_TOO_HIGH, 207
ER_THREAD_POOL_CANNOT_SET_THREAD_SPECIFIC_DATA,
ER_THREAD_POOL_SIZE_TOO_LOW, 207
207 ER_THREAD_POOL_SOCKETPAIR_FAILED, 431
ER_THREAD_POOL_CONNECTION_INIT_REPORT, ER_THREAD_POOL_SYSVAR_CHANGE, 406
431 ER_THREAD_PRIORITY_IGNORED, 192
ER_THREAD_POOL_CON_HANDLER_INIT_FAILED, ER_THREAD_STILL_ALIVE, 418
207 ER_TLS_CONFIGURATION_REUSED, 377
ER_THREAD_POOL_CREATE_EPOLL_FAILED, 431 ER_TLS_CONFIGURED_FOR_CHANNEL, 377
ER_THREAD_POOL_CREATE_THREAD_FAILED, ER_TLS_LIBRARY_ERROR_INTERNAL, 417
431 ER_TMPDIR_PATH_TOO_LONG, 381
ER_THREAD_POOL_DEDICATED_LISTENERS_INVALID, ER_TMP_SESSION_FOR_VAR, 405
398 ER_TOO_BIG_DISPLAYWIDTH, 31
ER_THREAD_POOL_EPOLL_WAIT_ERROR, 432 ER_TOO_BIG_ENUM, 76
ER_THREAD_POOL_FAILED_PROCESS_CONNECT_EVENT,ER_TOO_BIG_FIELDLENGTH, 8
208 ER_TOO_BIG_FOR_UNCOMPRESS, 20
ER_THREAD_POOL_FAILED_TO_CREATE_CONNECT_HANDLER_THD,
ER_TOO_BIG_PRECISION, 30
207 ER_TOO_BIG_ROWSIZE, 11
ER_THREAD_POOL_FAILED_TO_CREATE_POOL, ER_TOO_BIG_SCALE, 30
208 ER_TOO_BIG_SELECT, 10
ER_THREAD_POOL_FAILED_TO_CREATE_THD_AND_AUTH_CONN,
ER_TOO_BIG_SET, 10
208 ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT,
ER_THREAD_POOL_IDLE_CONNECTION_CLOSED, 33
410 ER_TOO_LONG_BODY, 31
ER_THREAD_POOL_INIT_FAILED, 207 ER_TOO_LONG_FIELD_COMMENT, 42
ER_THREAD_POOL_INVALID_PRIO_KICKUP_TIMER, ER_TOO_LONG_IDENT, 7
207 ER_TOO_LONG_INDEX_COMMENT, 46
ER_THREAD_POOL_INVALID_STALL_LIMIT, 207 ER_TOO_LONG_KEY, 8
ER_THREAD_POOL_LOW_LEVEL_ARM_FAILED, ER_TOO_LONG_ROUTINE_COMMENT, 77
431 ER_TOO_LONG_SET_ENUM_VALUE, 76
ER_THREAD_POOL_LOW_LEVEL_ARM_FAILED_WITH_ERRNO,
ER_TOO_LONG_STRING, 14
431 ER_TOO_LONG_TABLESPACE_COMMENT, 83
ER_THREAD_POOL_LOW_LEVEL_INIT_ALLOC_FAILED, ER_TOO_LONG_TABLE_COMMENT, 42
431 ER_TOO_LONG_TABLE_PARTITION_COMMENT,
53
517
ER_TOO_MANY_CONCURRENT_TRXS, 42 ER_TRG_ON_VIEW_OR_TEMP_TABLE, 27
ER_TOO_MANY_FIELDS, 11 ER_TRG_WITHOUT_DEFINER, 143
ER_TOO_MANY_GROUP_BY_MODIFIER_BRANCHES, ER_TRG_WRONG_ORDER, 357
129 ER_TRHEAD_POOL_LOW_LEVEL_INIT_FAILED,
ER_TOO_MANY_KEYS, 8 208
ER_TOO_MANY_KEY_PARTS, 8 ER_TRIGGER_INVALID_VALUE, 139
ER_TOO_MANY_PARTITIONS_ERROR, 35 ER_TRUNCATED_WRONG_VALUE, 22
ER_TOO_MANY_PARTITION_FUNC_FIELDS_ERROR, ER_TRUNCATED_WRONG_VALUE_FOR_FIELD, 27
44 ER_TRUNCATE_ILLEGAL_FK, 47
ER_TOO_MANY_ROWS, 15 ER_TRX_GTID_COLLECT_REJECT, 154
ER_TOO_MANY_STORAGE_ENGINES, 155 ER_TRX_WRITE_SET_OOM, 155
ER_TOO_MANY_TABLES, 11 ER_TURNING_LOGGING_OFF_FOR_THE_DURATION,
ER_TOO_MANY_USER_CONNECTIONS, 16 190
ER_TOO_MANY_VALUES_ERROR, 44 ER_TURNING_ON_PARTIAL_REVOKES, 360
ER_TOO_MANY_WINDOWS, 120 ER_TZ_CANT_BUILD_MKTIME_MAP, 165
ER_TO_VECTOR_CONVERSION, 136 ER_TZ_CANT_FIND_DESCRIPTION_FOR_TIME_ZONE,
ER_TP_CANNOT_DISABLE_MTL_WITH_DL, 136 164
ER_TP_QUERY_THRS_PER_GRP_EXCEEDS_TXN_THR_LIMIT,
ER_TZ_CANT_FIND_DESCRIPTION_FOR_TIME_ZONE_ID,
123 164
ER_TRACK_VARIABLES_BOGUS, 148 ER_TZ_CANT_OPEN_AND_LOCK_TIME_ZONE_TABLE,
ER_TRANSACTION_ROLLBACK_DURING_COMMIT, 163
68 ER_TZ_ERROR_LOADING_LEAP_SECOND_TABLE,
ER_TRANSFORM_SOURCE_SRS_MISSING_TOWGS84, 164
93 ER_TZ_NO_TRANSITION_TYPES_IN_TIME_ZONE,
ER_TRANSFORM_SOURCE_SRS_NOT_SUPPORTED, 165
93 ER_TZ_OOM_INITIALIZING_TIME_ZONES, 163
ER_TRANSFORM_TARGET_SRS_MISSING_TOWGS84, ER_TZ_OOM_LOADING_LEAP_SECOND_TABLE,
93 163
ER_TRANSFORM_TARGET_SRS_NOT_SUPPORTED, ER_TZ_OOM_LOADING_TIME_ZONE_DESCRIPTION,
93 165
ER_TRANSPORTS_WHAT_TRANSPORTS, 147 ER_TZ_OOM_WHILE_LOADING_TIME_ZONE, 165
ER_TRANS_CACHE_FULL, 16 ER_TZ_OOM_WHILE_SETTING_TIME_ZONE, 165
ER_TREE_CORRUPT_2_CONSECUTIVE_REDS, ER_TZ_TOO_MANY_LEAPS_IN_LEAP_SECOND_TABLE,
179 164
ER_TREE_CORRUPT_INCORRECT_BLACK_COUNT, ER_TZ_TRANSITION_TABLE_BAD_TRANSITION_TYPE,
179 164
ER_TREE_CORRUPT_PARENT_SHOULD_POINT_AT_PARENT,
ER_TZ_TRANSITION_TABLE_LOAD_ERROR, 164
179 ER_TZ_TRANSITION_TABLE_TOO_MANY_TRANSITIONS,
ER_TREE_CORRUPT_RIGHT_IS_LEFT, 179 164
ER_TREE_CORRUPT_ROOT_SHOULD_BE_BLACK, ER_TZ_TRANSITION_TYPE_TABLE_ABBREVIATIONS_EXCEED
179 164
ER_TRG_ALREADY_EXISTS, 26 ER_TZ_TRANSITION_TYPE_TABLE_LOAD_ERROR,
ER_TRG_CANT_CHANGE_ROW, 27 164
ER_TRG_CANT_OPEN_TABLE, 41 ER_TZ_TRANSITION_TYPE_TABLE_TYPE_TOO_LARGE,
ER_TRG_CANT_PARSE, 152 164
ER_TRG_CORRUPTED_FILE, 40 ER_TZ_UNKNOWN_OR_ILLEGAL_DEFAULT_TIME_ZONE,
ER_TRG_CREATION_CTX_NOT_SET, 193 164
ER_TRG_DOES_NOT_EXIST, 26 ER_UDF_ALREADY_EXISTS, 346
ER_TRG_INVALID_CREATION_CTX, 40 ER_UDF_CANT_ALLOC_FOR_FUNCTION, 154
ER_TRG_IN_WRONG_SCHEMA, 31 ER_UDF_CANT_ALLOC_FOR_STRUCTURES, 154
ER_TRG_NO_CLIENT_CHARSET, 143 ER_UDF_CANT_OPEN_FUNCTION_TABLE, 154
ER_TRG_NO_CREATION_CTX, 40 ER_UDF_DEREGISTRATION, 413
ER_TRG_NO_DEFINER, 32 ER_UDF_DROP_DYNAMICALLY_REGISTERED, 84
ER_TRG_NO_SUCH_ROW_IN_TRG, 27 ER_UDF_ERROR, 75
518
ER_UDF_EXEC_FAILURE, 414 ER_UNKNOWN_UNSUPPORTED_STORAGE_ENGINE,
ER_UDF_EXEC_FAILURE_REASON, 414 144
ER_UDF_EXISTS, 12 ER_UNKNOWN_VARIABLE_IN_PERSISTED_CONFIG_FILE,
ER_UDF_INVALID_ROW_IN_FUNCTION_TABLE, 346
154 ER_UNRESOLVED_HINT_NAME, 70
ER_UDF_NO_PATHS, 12 ER_UNRESOLVED_TABLE_LOCK, 81
ER_UDF_REGISTER_ERROR, 381 ER_UNSUPORTED_LOG_ENGINE, 39
ER_UDF_REGISTER_SERVICE_ERROR, 381 ER_UNSUPPORTED_ACTION_ON_DEFAULT_VAL_GENERA
ER_UDF_REGISTRATION, 413 95
ER_UDF_UNREGISTER_ERROR, 381 ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN,
ER_UKNOWN_AUTH_ID_OR_ACCESS_DENIED_FOR_GRANT_AS,
68
100 ER_UNSUPPORTED_ALTER_ENCRYPTION_INPLACE,
ER_UNABLE_TO_BUILD_HISTOGRAM, 85 74
ER_UNABLE_TO_COLLECT_LOG_STATUS, 91 ER_UNSUPPORTED_ALTER_INPLACE_ON_VIRTUAL_COLU
ER_UNABLE_TO_DROP_COLUMN_STATISTICS, 85 68
ER_UNABLE_TO_RESOLVE_HOSTNAME, 142 ER_UNSUPPORTED_ALTER_ONLINE_ON_VIRTUAL_COLUM
ER_UNABLE_TO_RESOLVE_IP, 142 74
ER_UNABLE_TO_SET_OPTION, 91 ER_UNSUPPORTED_DATE, 146
ER_UNABLE_TO_STORE_COLUMN_STATISTICS, ER_UNSUPPORTED_ENGINE, 49
85 ER_UNSUPPORTED_EXTENSION, 11
ER_UNABLE_TO_STORE_STATISTICS, 79 ER_UNSUPPORTED_INDEX_ALGORITHM, 76
ER_UNABLE_TO_UPDATE_COLUMN_STATISTICS, ER_UNSUPPORTED_PS, 22
85 ER_UNSUPPORTED_SQL_MODE, 105
ER_UNDISCLOSED_PARSE_ERROR_IN_DIGEST_FN, ER_UNSUPPORTED_USE_OF_GRANT_AS, 100
88 ER_UNSUPPORT_COMPRESSED_TEMPORARY_TABLE,
ER_UNDO_RECORD_TOO_BIG, 48 76
ER_UNEXPECTED_GEOMETRY_TYPE, 77 ER_UNTIL_COND_IGNORED, 21
ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF, 35 ER_UPDATE_GTID_PURGED_WITH_GR, 106
ER_UNIT_NOT_FOUND, 105 ER_UPDATE_INFO, 12
ER_UNKNOWN_ALTER_ALGORITHM, 54 ER_UPDATE_LOG_DEPRECATED_IGNORED, 24
ER_UNKNOWN_ALTER_LOCK, 54 ER_UPDATE_LOG_DEPRECATED_TRANSLATED,
ER_UNKNOWN_AUTHID, 77 24
ER_UNKNOWN_AUTH_ID_IN_MANDATORY_ROLE, ER_UPDATE_TABLE_USED, 9
197 ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE, 15
ER_UNKNOWN_CHARACTER_SET, 11 ER_UPDATING_DD_TABLE, 76
ER_UNKNOWN_COLLATION, 21 ER_UPGRADE_NONEXISTENT_SCHEMA, 382
ER_UNKNOWN_COM_ERROR, 6 ER_UPGRADE_PARSE_ERROR, 350
ER_UNKNOWN_ERROR, 10 ER_USAGE_DEPRECATION_COUNTER, 416
ER_UNKNOWN_ERROR_DETECTED_IN_SE, 201 ER_USERNAME, 33
ER_UNKNOWN_ERROR_NUMBER, 153 ER_USERNAME_TRUNKATED, 377
ER_UNKNOWN_EXPLAIN_FORMAT, 53 ER_USER_ACCESS_DENIED_FOR_USER_ACCOUNT_BLOC
ER_UNKNOWN_KEY_CACHE, 22 109
ER_UNKNOWN_LOCALE, 43 ER_USER_ALREADY_EXISTS, 73
ER_UNKNOWN_NETWORK_NAMESPACE, 363 ER_USER_COLUMN_OLD_LENGTH, 74
ER_UNKNOWN_PARTITION, 49 ER_USER_DOES_NOT_EXIST, 73
ER_UNKNOWN_PROCEDURE, 10 ER_USER_LIMIT_REACHED, 18
ER_UNKNOWN_STMT_HANDLER, 19 ER_USER_LOCK_DEADLOCK, 64
ER_UNKNOWN_STORAGE_ENGINE, 22 ER_USER_LOCK_OVERLONG_NAME, 126
ER_UNKNOWN_SYSTEM_VARIABLE, 16 ER_USER_LOCK_WRONG_NAME, 64
ER_UNKNOWN_TABLE, 10 ER_USER_NOT_IN_EXTRA_USERS_BINLOG_POSSIBLY_IN
ER_UNKNOWN_TABLESPACE_TYPE, 350 161
ER_UNKNOWN_TABLE_IN_UPGRADE, 367 ER_USER_REFERENCED_AS_DEFINER, 113
ER_UNKNOWN_TARGET_BINLOG, 27 ER_USER_REGISTRATION_FAILED, 118
ER_UNKNOWN_TIME_ZONE, 22 ER_USER_REQUIRES_ROOT, 147
519
ER_USER_WHAT_USER, 147 ER_VAR_CANT_BE_READ, 19
ER_USING_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_AS_LOCAL_OR_UUID,
ER_VAR_DOES_NOT_EXIST, 84
114 ER_VERBOSE_HINT, 149
ER_UUID_INVALID, 143 ER_VERBOSE_REQUIRES_HELP, 144
ER_UUID_IS, 143 ER_VIEW_CHECKSUM, 28
ER_UUID_SALT, 143 ER_VIEW_CHECK_FAILED, 27
ER_UUID_SCRUB, 144 ER_VIEW_CREATION_CTX_NOT_SET, 194
ER_VALGRIND_COUNT_LEAKS, 153 ER_VIEW_DELETE_MERGE_VIEW, 28
ER_VALGRIND_DO_QUICK_LEAK_CHECK, 153 ER_VIEW_FRM_NO_USER, 32
ER_VALIDATE_PASSWORD_INSUFFICIENT_CHANGED_CHARACTERS,
ER_VIEW_INVALID, 26
127 ER_VIEW_INVALID_CREATION_CTX, 40
ER_VALIDATE_PWD_CONVERT_TO_BUFFER_FAILED, ER_VIEW_MULTIUPDATE, 28
260 ER_VIEW_NONUPD_CHECK, 27
ER_VALIDATE_PWD_COULD_BE_NULL, 259 ER_VIEW_NO_CREATION_CTX, 40
ER_VALIDATE_PWD_DICT_FILE_NOT_LOADED, ER_VIEW_NO_EXPLAIN, 26
217 ER_VIEW_NO_INSERT_FIELD_LIST, 28
ER_VALIDATE_PWD_DICT_FILE_NOT_SPECIFIED, ER_VIEW_OTHER_USER, 32
217 ER_VIEW_PREVENT_UPDATE, 31
ER_VALIDATE_PWD_DICT_FILE_OPEN_FAILED, ER_VIEW_RECURSIVE, 33
259 ER_VIEW_SELECT_CLAUSE, 26
ER_VALIDATE_PWD_DICT_FILE_TOO_BIG, 217 ER_VIEW_SELECT_TMPTABLE, 26
ER_VALIDATE_PWD_FAILED_TO_GET_FLD_FROM_SECURITY_CTX,
ER_VIEW_SELECT_VARIABLE, 26
217 ER_VIEW_UNKNOWN_CHARSET_OR_COLLATION,
ER_VALIDATE_PWD_FAILED_TO_GET_SECURITY_CTX,140
217 ER_VIEW_UNPARSABLE, 163
ER_VALIDATE_PWD_FAILED_TO_READ_DICT_FILE, ER_VIEW_WRONG_LIST, 26
217 ER_VTOKEN_PLUGIN_TOKEN_MISMATCH, 70
ER_VALIDATE_PWD_LENGTH_CHANGED, 217 ER_VTOKEN_PLUGIN_TOKEN_NOT_FOUND, 71
ER_VALIDATE_PWD_STATUS_VAR_REGISTRATION_FAILED,
ER_WAITING_FOR_NO_CONNECTIONS, 416
259 ER_WAITING_FOR_NO_THDS, 416
ER_VALIDATE_PWD_STATUS_VAR_UNREGISTRATION_FAILED,
ER_WAITPID_FAILED, 204
259 ER_WARNING_AUTHCACHE_INVALID_USER_ATTRIBUTES,
ER_VALIDATE_PWD_STRING_CONV_TO_BUFFER_FAILED,
354
260 ER_WARNING_DISCARD_OLD_PASSWORD_CLAUSE_VOID,
ER_VALIDATE_PWD_STRING_CONV_TO_LOWERCASE_FAILED,
354
260 ER_WARNING_NOT_COMPLETE_ROLLBACK, 16
ER_VALIDATE_PWD_STRING_HANDLER_MEM_ALLOCATION_FAILED,
ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_CREATED
260 50
ER_VALIDATE_PWD_STRONG_POLICY_DICT_FILE_UNSPECIFIED,
ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_DROPPED
260 50
ER_VALIDATE_PWD_VARIABLE_REGISTRATION_FAILED,
ER_WARNING_PASSWORD_HISTORY_CLAUSES_VOID,
260 86
ER_VALIDATE_PWD_VARIABLE_UNREGISTRATION_FAILED,
ER_WARNING_RETAIN_CURRENT_PASSWORD_CLAUSE_VOID
260 354
ER_VALUES_IS_NOT_INT_TYPE_ERROR, 47 ER_WARN_ADUIT_LOG_MAX_SIZE_AND_PRUNE_SECONDS,
ER_VALUE_OUT_OF_RANGE, 119 117
ER_VARIABLE_IS_NOT_STRUCT, 21 ER_WARN_ADUIT_LOG_MAX_SIZE_AND_PRUNE_SECONDS_L
ER_VARIABLE_IS_READONLY, 41 390
ER_VARIABLE_NOT_PERSISTED, 79 ER_WARN_ADUIT_LOG_MAX_SIZE_CLOSE_TO_ROTATE_ON_
ER_VARIABLE_NOT_SETTABLE_IN_SF_OR_TRIGGER, 117
51 ER_WARN_ADUIT_LOG_MAX_SIZE_CLOSE_TO_ROTATE_ON_
ER_VARIABLE_NOT_SETTABLE_IN_SP, 56 390
ER_VARIABLE_NOT_SETTABLE_IN_TRANSACTION, ER_WARN_ALLOWED_PACKET_OVERFLOWED,
51 23
520
ER_WARN_ASYNC_CONN_FAILOVER_NETWORK_NAMESPACE,
ER_WARN_DEPRECATED_FLOAT_AUTO_INCREMENT,
116 102
ER_WARN_AUDIT_LOG_DISABLED, 397 ER_WARN_DEPRECATED_FLOAT_DIGITS, 102
ER_WARN_AUDIT_LOG_FORMAT_UNIX_TIMESTAMP_ONLY_WHEN_JSON,
ER_WARN_DEPRECATED_FLOAT_UNSIGNED, 102
117 ER_WARN_DEPRECATED_FOUND_ROWS, 110
ER_WARN_AUDIT_LOG_FORMAT_UNIX_TIMESTAMP_ONLY_WHEN_JSON_LOG,
ER_WARN_DEPRECATED_IDENT, 123
391 ER_WARN_DEPRECATED_INNER_INTO, 110
ER_WARN_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATORY_ROLES,
ER_WARN_DEPRECATED_INTEGER_DISPLAY_WIDTH,
369 102
ER_WARN_BAD_MAX_EXECUTION_TIME, 69 ER_WARN_DEPRECATED_JSON_TABLE_ON_ERROR_ON_
ER_WARN_BINLOG_PARTIAL_UPDATES_DISABLED, 110
86 ER_WARN_DEPRECATED_NESTED_COMMENT_SYNTAX,
ER_WARN_BINLOG_PARTIAL_UPDATES_SUGGESTS_PARTIAL_IMAGES,
96
86 ER_WARN_DEPRECATED_NON_STANDARD_KEY,
ER_WARN_CANNOT_FREE_COMPONENT_DATA_DEALLOCATION_FAILED,
135
412 ER_WARN_DEPRECATED_OR_BLOCKED_CIPHER,
ER_WARN_CANNOT_PERSIST_SENSITIVE_VARIABLES,416
397 ER_WARN_DEPRECATED_SQLMODE, 67
ER_WARN_CANNOT_SECURELY_PERSIST_SENSITIVE_VARIABLES,
ER_WARN_DEPRECATED_SQL_CALC_FOUND_ROWS,
121 110
ER_WARN_CANT_DROP_DEFAULT_KEYCACHE, ER_WARN_DEPRECATED_SUPERFLUOUS_DELIMITER,
31 121
ER_WARN_CANT_OPEN_CERTIFICATE, 417 ER_WARN_DEPRECATED_SYNTAX, 22
ER_WARN_CA_CERT_VERIFY_FAILED, 417 ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT,
ER_WARN_CERTIFICATE_ERROR_STRING, 417 45
ER_WARN_COMPONENTS_INFRASTRUCTURE_MANIFEST_MULTIPLE_KEYRING,
ER_WARN_DEPRECATED_SYNTAX_WITH_VER,
412 38
ER_WARN_COMPONENTS_INFRASTRUCTURE_MANIFEST_NOT_RO,
ER_WARN_DEPRECATED_SYSVAR_UPDATE, 67
385 ER_WARN_DEPRECATED_USER_DEFINED_COLLATIONS,
ER_WARN_COMPONENT_KEYRING_OCI_DUPLICATE_KEY,
126
406 ER_WARN_DEPRECATED_USER_DEFINED_COLLATIONS_
ER_WARN_CONFLICTING_HINT, 70 411
ER_WARN_C_DISABLE_GTID_ONLY_WITH_SOURCE_AUTO_POS_INVALID_POS,
ER_WARN_DEPRECATED_USER_SET_EXPR, 96
119 ER_WARN_DEPRECATED_UTF8MB3_CHARSET_OPTION,
ER_WARN_DATA_OUT_OF_RANGE, 20 351
ER_WARN_DATA_OUT_OF_RANGE_FUNCTIONAL_INDEX,ER_WARN_DEPRECATED_UTF8MB3_COLLATION,
94 96
ER_WARN_DATA_TRUNCATED_FUNCTIONAL_INDEX, ER_WARN_DEPRECATED_UTF8MB3_COLLATION_OPTION
94 351
ER_WARN_DA_PRIVILEGE_NOT_REGISTERED, ER_WARN_DEPRECATED_UTF8_ALIAS_OPTION,
107 351
ER_WARN_DEPRECATED_CHARSET_OPTION, ER_WARN_DEPRECATED_VALUES_FUNCTION_ALWAYS_N
396 110
ER_WARN_DEPRECATED_CLIENT_NO_SCHEMA_OPTION,ER_WARN_DEPRECATED_WITH_NOTE, 127
124 ER_WARN_DEPRECATED_YEAR_UNSIGNED, 109
ER_WARN_DEPRECATED_COLLATION, 120 ER_WARN_DEPRECATED_ZEROFILL, 102
ER_WARN_DEPRECATED_COLLATION_OPTION, ER_WARN_ENGINE_TRANSACTION_ROLLBACK,
396 41
ER_WARN_DEPRECATED_DATETIME_DELIMITER, ER_WARN_FAILED_TO_SETUP_TLS, 417
121 ER_WARN_FIELD_RESOLVED, 21
ER_WARN_DEPRECATED_DYNAMIC_PRIV_IN_GRANT, ER_WARN_FUNC_INDEX_NOT_APPLICABLE, 106
128 ER_WARN_GRP_RPL_VIEW_CHANGE_UUID_FAIL_GET_VA
ER_WARN_DEPRECATED_ENGINE_SYNTAX_NO_REPLACEMENT,
390
129 ER_WARN_GTID_THRESHOLD_BREACH, 384
521
ER_WARN_HOSTNAME_WONT_WORK, 22 ER_WARN_RPL_RECOVERY_NO_ROTATE_EVENT_FROM_SO
ER_WARN_INCORRECT_PRIVILEGE_FOR_DB_RESTRICTIONS,
369
360 ER_WARN_SCHEDULED_TASK_RUN_FAILED, 415
ER_WARN_INDEX_NOT_APPLICABLE, 50 ER_WARN_SF_UDF_NAME_COLLISION, 120
ER_WARN_INVALID_DB_RESTRICTIONS, 360 ER_WARN_SP_STATEMENT_PARTIALLY_EXECUTED,
ER_WARN_INVALID_HINT, 84 135
ER_WARN_INVALID_TIMESTAMP, 23 ER_WARN_SQL_AFTER_MTS_GAPS_GAP_NOT_CALCULATED
ER_WARN_I_S_SKIPPED_TABLE, 46 117
ER_WARN_LANGUAGE_COMPONENT_CANNOT_UNINSTALL,
ER_WARN_SRS_ID_ALREADY_EXISTS, 91
425 ER_WARN_SRS_NOT_FOUND, 77
ER_WARN_LANGUAGE_COMPONENT_RESOURCE_LIMIT,ER_WARN_SRS_NOT_FOUND_AXIS_ORDER, 80
425 ER_WARN_TLS_CHANNEL_INITIALIZATION_ERROR,
ER_WARN_LEGACY_SYNTAX_CONVERTED, 60 376
ER_WARN_LOG_DEPRECATED_NON_STANDARD_KEY,ER_WARN_TOO_FEW_RECORDS, 20
428 ER_WARN_TOO_MANY_RECORDS, 20
ER_WARN_LOG_PRIVILEGE_CHECKS_USER_CORRUPT,ER_WARN_TRG_ALREADY_EXISTS, 121
369 ER_WARN_TRIGGER_DOESNT_HAVE_CREATED,
ER_WARN_LOG_PRIVILEGE_CHECKS_USER_DOES_NOT_EXIST,
61
368 ER_WARN_UNKNOWN_KEYRING_AWS_REGION,
ER_WARN_LOG_PRIVILEGE_CHECKS_USER_NEEDS_RPL_APPLIER_PRIV,
368
369 ER_WARN_UNKNOWN_QB_NAME, 70
ER_WARN_L_DISABLE_GTID_ONLY_WITH_SOURCE_AUTO_POS_INVALID_POS,
ER_WARN_UNLOAD_THE_NOT_PERSISTED, 79
394 ER_WARN_UNSUPPORTED_HINT, 77
ER_WARN_MIGRATION_EMPTY_SOURCE_KEYRING, ER_WARN_UNSUPPORTED_MAX_EXECUTION_TIME,
397 70
ER_WARN_NO_KEYRING_COMPONENT_SERVICE_FOUND,
ER_WARN_USING_OTHER_HANDLER, 21
385 ER_WARN_VAR_VALUE_CHANGE_NOT_SUPPORTED,
ER_WARN_NO_SERVERID_SPECIFIED, 193 113
ER_WARN_NO_SPACE_VERSION_COMMENT, 126 ER_WARN_VIEW_MERGE, 26
ER_WARN_NULL_TO_NOTNULL, 20 ER_WARN_VIEW_WITHOUT_KEY, 26
ER_WARN_ONLY_SOURCE_LOG_FILE_NO_POS, ER_WARN_WRONG_COMPRESSION_ALGORITHM_LOG,
62 368
ER_WARN_ON_MODIFYING_GTID_EXECUTED_TABLE, ER_WARN_WRONG_COMPRESSION_LEVEL_LOG,
70 368
ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO, ER_WASTEFUL_NET_BUFFER_SIZE, 144
62 ER_WILDCARD_NOT_ALLOWED_FOR_MULTIADDRESS_BIND,
ER_WARN_OPTIMIZER_HINT_SYNTAX_ERROR, 69 363
ER_WARN_OPTION_RESET_AND_IGNORED_DURING_INITIALIZE,
ER_WINDOW_CIRCULARITY_IN_WINDOW_GRAPH,
419 81
ER_WARN_PARTIAL_REVOKE_AND_DB_GRANT, ER_WINDOW_DUPLICATE_NAME, 82
360 ER_WINDOW_EXPLAIN_JSON, 83
ER_WARN_PROPERTY_STRING_PARSE_FAILED, ER_WINDOW_FRAME_END_ILLEGAL, 82
356 ER_WINDOW_FRAME_ILLEGAL, 82
ER_WARN_PURGE_LOG_IN_USE, 58 ER_WINDOW_FRAME_START_ILLEGAL, 82
ER_WARN_PURGE_LOG_IS_ACTIVE, 58 ER_WINDOW_FUNCTION_IGNORES_FRAME, 83
ER_WARN_REDACTED_PRIVILEGES, 138 ER_WINDOW_ILLEGAL_ORDER_BY, 82
ER_WARN_REGEXP_USING_DEFAULT, 120 ER_WINDOW_INVALID_WINDOW_FUNC_ALIAS_USE,
ER_WARN_REMOVED_SQL_MODE, 351 82
ER_WARN_REPLICA_ANONYMOUS_TO_GTID_UUID_SAME_AS_VIEW_CHANGE_UUID,
ER_WINDOW_INVALID_WINDOW_FUNC_USE, 82
389 ER_WINDOW_NESTED_WINDOW_FUNC_USE_IN_WINDOW_SP
ER_WARN_REPLICA_GTID_ONLY_AND_GTID_MODE_NOT_ON,
83
394 ER_WINDOW_NO_CHILD_PARTITIONING, 82
ER_WARN_RESERVED_SRID_RANGE, 91 ER_WINDOW_NO_GROUP_ORDER_UNUSED, 83
ER_WINDOW_NO_INHERIT_FRAME, 82
522
ER_WINDOW_NO_REDEFINE_ORDER_BY, 82 ER_WRONG_PARAMETERS_TO_NATIVE_FCT, 39
ER_WINDOW_NO_SUCH_WINDOW, 81 ER_WRONG_PARAMETERS_TO_PROCEDURE, 10
ER_WINDOW_RANGE_BOUND_NOT_CONSTANT, ER_WRONG_PARAMETERS_TO_STORED_FCT, 39
82 ER_WRONG_PARTITION_NAME, 39
ER_WINDOW_RANGE_FRAME_NUMERIC_TYPE, ER_WRONG_PERFSCHEMA_USAGE, 46
82 ER_WRONG_SIZE_NUMBER, 37
ER_WINDOW_RANGE_FRAME_ORDER_TYPE, 82 ER_WRONG_SRID_FOR_COLUMN, 86
ER_WINDOW_RANGE_FRAME_TEMPORAL_TYPE, ER_WRONG_STRING_LENGTH, 33
82 ER_WRONG_SUB_KEY, 9
ER_WINDOW_ROWS_INTERVAL_USE, 83 ER_WRONG_SUM_SELECT, 7
ER_WIN_LISTEN_BUT_HOW, 147 ER_WRONG_TABLESPACE_NAME, 69
ER_WIN_LOAD_LIBRARY_FAILED, 204 ER_WRONG_TABLE_NAME, 10
ER_WL9236_NOW_UNUSED, 83 ER_WRONG_TYPE_COLUMN_VALUE_ERROR, 43
ER_WRITABLE_CONFIG_REMOVED, 146 ER_WRONG_TYPE_FOR_COLUMN_PREFIX_IDX_FLD,
ER_WRITE_ROW_TO_PARTITION_FAILED, 197 203
ER_WRITE_SET_EXCEEDS_LIMIT, 75 ER_WRONG_TYPE_FOR_VAR, 18
ER_WRONG_ARGUMENTS, 17 ER_WRONG_USAGE, 18
ER_WRONG_AUTO_KEY, 8 ER_WRONG_VALUE, 37
ER_WRONG_COLUMN_NAME, 14 ER_WRONG_VALUE_COUNT, 7
ER_WRONG_COMPRESSION_ALGORITHM_CLIENT, ER_WRONG_VALUE_COUNT_ON_ROW, 12
107 ER_WRONG_VALUE_FOR_TYPE, 29
ER_WRONG_COMPRESSION_LEVEL_CLIENT, 107 ER_WRONG_VALUE_FOR_VAR, 18
ER_WRONG_COUNT_FOR_KEY, 179 ER_WRONG_VALUE_FOR_VAR_PLUS_ACTIONABLE_PART
ER_WRONG_COUNT_FOR_ORIGIN, 179 111
ER_WRONG_COUNT_OF_ELEMENTS, 180 ER_X509_CANT_CHMOD_KEY, 159
ER_WRONG_DATETIME_SPEC, 146 ER_X509_CANT_CREATE_CERT, 159
ER_WRONG_DB_NAME, 10 ER_X509_CANT_READ_CA_CERT, 159
ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR, ER_X509_CANT_READ_CA_KEY, 159
34 ER_X509_CANT_WRITE_CERT, 159
ER_WRONG_FIELD_SPEC, 7 ER_X509_CANT_WRITE_KEY, 159
ER_WRONG_FIELD_TERMINATORS, 9 ER_X509_CIPHERS_MISMATCH, 158
ER_WRONG_FIELD_WITH_GROUP, 7 ER_X509_ISSUER_MISMATCH, 158
ER_WRONG_FIELD_WITH_GROUP_V2, 66 ER_X509_NEEDS_RSA_PRIVKEY, 158
ER_WRONG_FILE_NAME, 69 ER_X509_SUBJECT_MISMATCH, 158
ER_WRONG_FK_DEF, 19 ER_XAER_DUPID, 31
ER_WRONG_FK_OPTION_FOR_GENERATED_COLUMN,ER_XAER_INVAL, 28
68 ER_XAER_NOTA, 28
ER_WRONG_GROUP_FIELD, 7 ER_XAER_OUTSIDE, 29
ER_WRONG_JSON_TABLE_VALUE, 87 ER_XAER_RMERR, 29
ER_WRONG_KEY_COLUMN, 14 ER_XAER_RMFAIL, 29
ER_WRONG_KEY_COLUMN_FUNCTIONAL_INDEX, ER_XA_CANT_CREATE_MDL_BACKUP, 367
94 ER_XA_NO_MULTI_2PC_HEURISTIC_RECOVER,
ER_WRONG_LOCK_OF_SYSTEM_TABLE, 30 154
ER_WRONG_MRG_TABLE, 14 ER_XA_RBDEADLOCK, 41
ER_WRONG_MVI_VALUE, 106 ER_XA_RBROLLBACK, 29
ER_WRONG_NAME_FOR_CATALOG, 21 ER_XA_RBTIMEOUT, 41
ER_WRONG_NAME_FOR_INDEX, 21 ER_XA_RECOVERY_DONE, 154
ER_WRONG_NATIVE_TABLE_STRUCTURE, 45 ER_XA_RECOVER_EXPLANATION, 154
ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT, ER_XA_RECOVER_FOUND_TRX_IN_SE, 154
18 ER_XA_RECOVER_FOUND_XA_TRX, 154
ER_WRONG_OBJECT, 26 ER_XA_REPLICATION_FILTERS, 105
ER_WRONG_OUTER_JOIN_UNUSED, 11 ER_XA_RETRY, 75
ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT, 39 ER_XA_STARTING_RECOVERY, 154
ER_WRONG_PARAMCOUNT_TO_PROCEDURE, 10 ER_XA_TEMP_TABLE, 121
523
ER_XPLUGIN_ALL_IO_INTERFACES_DISABLED, ER_XPLUGIN_FAILED_TO_VALIDATE_ADDRESS,
222 376
ER_XPLUGIN_BUFFER_PAGE_ALLOC_FAILED, ER_XPLUGIN_FORCE_STOP_CLIENT, 221
221 ER_XPLUGIN_IPv6_AVAILABLE, 223
ER_XPLUGIN_CLIENT_KILL_MSG, 223 ER_XPLUGIN_LISTENER_SETUP_FAILED, 222
ER_XPLUGIN_COMPRESSION_ERROR, 368 ER_XPLUGIN_LISTENER_STATUS_MSG, 223
ER_XPLUGIN_DETECTED_HANGING_CLIENTS, ER_XPLUGIN_LISTENER_SYS_VARIABLE_ERROR,
221 223
ER_XPLUGIN_EMPTY_ADMIN_CMD, 223 ER_XPLUGIN_MAX_AUTH_ATTEMPTS_REACHED,
ER_XPLUGIN_ERROR_MSG, 218 221
ER_XPLUGIN_ERROR_READING_SOCKET, 222 ER_XPLUGIN_MESSAGE_TOO_LONG, 222
ER_XPLUGIN_EXCEPTION_IN_EVENT_LOOP, 222 ER_XPLUGIN_PEER_DISCONNECTED_WHILE_READING_MSG
ER_XPLUGIN_EXCEPTION_IN_TASK_SCHEDULER, 223
221 ER_XPLUGIN_READ_FAILED_CLOSING_CONNECTION,
ER_XPLUGIN_EXISTING_USER_ACCOUNT_WITH_INCOMPLETE_GRANTS,
223
223 ER_XPLUGIN_REFERENCE_TO_SECURE_CONN_WITH_XPLUG
ER_XPLUGIN_FAILED_AT_SSL_CONF, 222 218
ER_XPLUGIN_FAILED_TO_ACCEPT_CLIENT, 221 ER_XPLUGIN_REFERENCE_TO_USER_ACCOUNT_DOC_SECT
ER_XPLUGIN_FAILED_TO_BIND_INTERFACE_ADDRESS,221
376 ER_XPLUGIN_RETRYING_BIND_ON_PORT, 223
ER_XPLUGIN_FAILED_TO_CLOSE_SQL_SESSION, ER_XPLUGIN_SRV_SESSION_INIT_THREAD_FAILED,
223 221
ER_XPLUGIN_FAILED_TO_CREATE_SESSION_FOR_CONN,
ER_XPLUGIN_STARTUP_FAILED, 217
222 ER_XPLUGIN_TASK_SCHEDULING_FAILED, 222
ER_XPLUGIN_FAILED_TO_EXECUTE_ADMIN_CMD, ER_XPLUGIN_UNABLE_TO_ACCEPT_CONNECTION,
223 222
ER_XPLUGIN_FAILED_TO_GET_CREATION_STMT, ER_XPLUGIN_UNABLE_TO_USE_USER_SESSION_ACCOUNT,
224 221
ER_XPLUGIN_FAILED_TO_GET_ENGINE_INFO, ER_XPLUGIN_UNEXPECTED_EXCEPTION_DISPATCHING_CMD
224 221
ER_XPLUGIN_FAILED_TO_GET_SECURITY_CTX, ER_XPLUGIN_UNINITIALIZED_MESSAGE, 222
223 ER_XPLUGIN_USING_SSL_CONF_FROM_MYSQLX,
ER_XPLUGIN_FAILED_TO_GET_SYS_VAR, 223 217
ER_XPLUGIN_FAILED_TO_INITIALIZE_SESSION, ER_XPLUGIN_USING_SSL_CONF_FROM_SERVER,
222 217
ER_XPLUGIN_FAILED_TO_OPEN_INTERNAL_SESSION, ER_XPLUGIN_USING_SSL_FOR_TLS_CONNECTION,
224 218
ER_XPLUGIN_FAILED_TO_PREPARE_IO_INTERFACES, ER_XPLUING_NET_STARTUP_FAILED, 222
221 ER_YES, 3
ER_XPLUGIN_FAILED_TO_RESET_IPV6_V6ONLY_FLAG,ER_ZLIB_Z_BUF_ERROR, 20
224 ER_ZLIB_Z_DATA_ERROR, 20
ER_XPLUGIN_FAILED_TO_SCHEDULE_CLIENT, ER_ZLIB_Z_MEM_ERROR, 20
221 WARN_AES_KEY_SIZE, 76
ER_XPLUGIN_FAILED_TO_SET_MIN_NUMBER_OF_WORKERS,
WARN_COND_ITEM_TRUNCATED, 43
222 WARN_DATA_TRUNCATED, 21
ER_XPLUGIN_FAILED_TO_SET_SO_REUSEADDR_FLAG,WARN_NAMED_PIPE_ACCESS_EVERYONE, 60
224 WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED,
ER_XPLUGIN_FAILED_TO_STOP_SERVICES, 341 42
ER_XPLUGIN_FAILED_TO_SWITCH_CONTEXT, WARN_NO_CONNECTION_METADATA, 41
224 WARN_ON_BLOCKHOLE_IN_RBR, 59
ER_XPLUGIN_FAILED_TO_SWITCH_SECURITY_CTX, WARN_OPTION_BELOW_LIMIT, 47
350 WARN_OPTION_IGNORED, 41
ER_XPLUGIN_FAILED_TO_UNREGISTER_UDF, 224 WARN_PLUGIN_BUSY, 41
ER_XPLUGIN_FAILED_TO_USE_SSL_CONF, 218
524
WARN_UNENCRYPTED_TABLE_IN_ENCRYPTED_DB, ER_ALTER_INFO error code, 9
99 ER_ALTER_OPERATION_NOT_SUPPORTED error
WARN_UNSUPPORTED_ACL_TABLES_READ, 114 code, 57
WARN_USELESS_SPATIAL_INDEX, 88 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON
ER_ABORTING error code, 147 error code, 57
ER_ABORTING_CONNECTION error code, 13 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_AUTO
ER_ABORTING_USER_CONNECTION error code, 193 error code, 58
ER_ACCESS_DENIED_CHANGE_USER_ERROR error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_CHAN
code, 59 error code, 58
ER_ACCESS_DENIED_ERROR error code, 6 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLU
ER_ACCESS_DENIED_ERROR_WITHOUT_PASSWORD error code, 57
error code, 194 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLU
ER_ACCESS_DENIED_ERROR_WITH_PASSWORD error code, 120
error code, 194 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COPY
ER_ACCESS_DENIED_FOR_USER_ACCOUNT_BLOCKED_BY_PASSWORD_LOCK
error code, 57
error code, 371 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_CH
ER_ACCESS_DENIED_FOR_USER_ACCOUNT_LOCKED error code, 57
error code, 194 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_RE
ER_ACCESS_DENIED_NO_PASSWORD_ERROR error error code, 57
code, 47 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FTS
ER_ACCESS_DENIED_NO_PROXY error code, 135 error code, 58
ER_ACCESS_DENIED_NO_PROXY_GRANT error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_GIS
code, 135 error code, 65
ER_ACCESS_DENIED_NO_PROXY_GRANT_WITH_NAMEER_ALTER_OPERATION_NOT_SUPPORTED_REASON_HIDDE
error code, 428 error code, 58
ER_ACCESS_DENIED_NO_PROXY_WITH_NAME error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOPK
code, 428 error code, 57
ER_ACCOUNT_HAS_BEEN_LOCKED error code, 69 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOT_N
ER_ACCOUNT_WITH_EXPIRED_PASSWORD error error code, 58
code, 398 ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_PARTI
ER_ACL_OPERATION_FAILED error code, 76 error code, 57
ER_ACL_WRONG_OR_MISSING_ACL_TABLES_LOG ER_AMBIGUOUS_FIELD_TERM error code, 34
error code, 365 ER_ANONYMOUS_AUTH_ID_NOT_ALLOWED_IN_MANDATOR
ER_ADDRESSES_FOR_HOSTNAME_HEADER error error code, 197
code, 142 ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_GROUP_NAME
ER_ADDRESSES_FOR_HOSTNAME_LIST_ITEM error error code, 115
code, 143 ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_VIEW_CHANGE
ER_ADD_PARTITION_NO_NEW_PARTITION error error code, 116
code, 36 ER_APPLIER_LOG_EVENT_VALIDATION_ERROR
ER_ADD_PARTITION_SUBPART_ERROR error code, error code, 85
36 ER_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_REQ
ER_ADMIN_WRONG_MRG_TABLE error code, 33 error code, 114
ER_AES_INVALID_IV error code, 59 ER_ATTRIBUTE_IGNORED error code, 87
ER_AES_INVALID_KDF_ITERATIONS error code, 76 ER_AUDIT_API_ABORT error code, 73
ER_AES_INVALID_KDF_NAME error code, 75 ER_AUDIT_CANT_ABORT_COMMAND error code, 192
ER_AES_INVALID_KDF_OPTION_SIZE error code, 76 ER_AUDIT_CANT_ABORT_EVENT error code, 192
ER_AGGREGATE_IN_ORDER_NOT_SELECT error ER_AUDIT_LOG_CANNOT_GENERATE_PASSWORD
code, 65 error code, 369
ER_AGGREGATE_ORDER_FOR_UNION error code, 62 ER_AUDIT_LOG_CANNOT_READ_PASSWORD error
ER_AGGREGATE_ORDER_NON_AGG_QUERY error code, 364
code, 62 ER_AUDIT_LOG_CANNOT_REMOVE_PASSWORD
ER_ALTER_CONSTRAINT_ENFORCEMENT_NOT_SUPPORTED error code, 365
error code, 108 ER_AUDIT_LOG_CANNOT_SET_LOG_POLICY_WITH_OTHER_
ER_ALTER_FILEGROUP_FAILED error code, 37 error code, 214
525
ER_AUDIT_LOG_CANNOT_STORE_PASSWORD error ER_AUDIT_LOG_INSUFFICIENT_PRIVILEGE error
code, 365 code, 106
ER_AUDIT_LOG_COULD_NOT_CREATE_AES_KEY ER_AUDIT_LOG_INVALID_FILE_CONTENT error code,
error code, 345 364
ER_AUDIT_LOG_COULD_NOT_OPEN_FILE_FOR_READING ER_AUDIT_LOG_INVALID_FLUSH_INTERVAL_VALUE
error code, 364 error code, 415
ER_AUDIT_LOG_EC_WRITER_FAILED_TO_CREATE_FILE ER_AUDIT_LOG_JSON_FILTERING_NOT_ENABLED
error code, 215 error code, 344
ER_AUDIT_LOG_EC_WRITER_FAILED_TO_INIT_COMPRESSION
ER_AUDIT_LOG_JSON_FILTER_DOES_NOT_EXIST
error code, 215 error code, 345
ER_AUDIT_LOG_EC_WRITER_FAILED_TO_INIT_ENCRYPTION
ER_AUDIT_LOG_JSON_FILTER_NAME_CANNOT_BE_EMPTY
error code, 215 error code, 344
ER_AUDIT_LOG_ENCRYPTION_PASSWORD_CANNOT_BE_FETCHED
ER_AUDIT_LOG_JSON_FILTER_PARSING_ERROR
error code, 345 error code, 344
ER_AUDIT_LOG_ENCRYPTION_PASSWORD_HAS_NOT_BEEN_SET
ER_AUDIT_LOG_JSON_READER_BUF_TOO_SMALL
error code, 345 error code, 216
ER_AUDIT_LOG_FILE_AUTO_PRUNED error code, 385 ER_AUDIT_LOG_JSON_READER_FAILED_TO_OPEN_FILE
ER_AUDIT_LOG_FILE_HAS_BEEN_SUCCESSFULLY_PROCESSED
error code, 216
error code, 364 ER_AUDIT_LOG_JSON_READER_FAILED_TO_PARSE
ER_AUDIT_LOG_FILE_NAME_DOES_NOT_HAVE_REQUIRED_FORMAT
error code, 216
error code, 364 ER_AUDIT_LOG_JSON_READER_FILE_PARSING_ERROR
ER_AUDIT_LOG_FILE_NAME_KEYRING_ID_VALUE_IS_MISSING
error code, 216
error code, 364 ER_AUDIT_LOG_JSON_USER_NAME_CANNOT_BE_EMPTY
ER_AUDIT_LOG_FILE_NAME_TIMESTAMP_VALUE_IS_MISSING_OR_INVALID
error code, 345
error code, 364 ER_AUDIT_LOG_KEYRING_ID_TIMESTAMP_VALUE_IS_INVALID
ER_AUDIT_LOG_FILE_PRUNE_FAILED error code, 385 error code, 364
ER_AUDIT_LOG_FILTER_FAILED_TO_CLOSE_TABLE_AFTER_READING
ER_AUDIT_LOG_NO_KEYRING_PLUGIN_INSTALLED
error code, 216 error code, 345
ER_AUDIT_LOG_FILTER_FAILED_TO_DELETE_FROM_TABLEER_AUDIT_LOG_ONLY_INCLUDE_LIST_USED error
error code, 216 code, 215
ER_AUDIT_LOG_FILTER_FAILED_TO_INIT_TABLE_FOR_READ
ER_AUDIT_LOG_PASSWORD_HAS_BEEN_COPIED
error code, 216 error code, 365
ER_AUDIT_LOG_FILTER_FAILED_TO_INSERT_INTO_TABLEER_AUDIT_LOG_RENAME_LOG_FILE_BEFORE_FLUSH
error code, 216 error code, 215
ER_AUDIT_LOG_FILTER_FAILED_TO_READ_TABLE ER_AUDIT_LOG_SUPER_PRIVILEGE_REQUIRED
error code, 216 error code, 367
ER_AUDIT_LOG_FILTER_FAILED_TO_STORE_TABLE_FLDS ER_AUDIT_LOG_SWITCHING_TO_INCLUDE_LIST
error code, 216 error code, 214
ER_AUDIT_LOG_FILTER_FAILED_TO_UPDATE_TABLE ER_AUDIT_LOG_TABLE_DEFINITION_NOT_UPDATED
error code, 216 error code, 346
ER_AUDIT_LOG_FILTER_FLD_FILTERNAME_CANNOT_BE_EMPTY
ER_AUDIT_LOG_UDF_INSUFFICIENT_PRIVILEGE
error code, 217 error code, 345
ER_AUDIT_LOG_FILTER_IS_NOT_INSTALLED error ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_COUNT
code, 214 error code, 367
ER_AUDIT_LOG_FILTER_RESULT_MSG error code, ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_TYPE
215 error code, 367
ER_AUDIT_LOG_FILTER_USER_AND_HOST_CANNOT_BE_EMPTY
ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_AR
error code, 216 error code, 368
ER_AUDIT_LOG_HAS_NOT_BEEN_INSTALLED error ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_AR
code, 367 error code, 75
ER_AUDIT_LOG_HOST_NAME_INVALID_CHARACTER ER_AUDIT_LOG_USER_FIRST_CHARACTER_MUST_BE_ALPHAN
error code, 345 error code, 345
ER_AUDIT_LOG_INDEX_MAP_CANNOT_ACCESS_DIR ER_AUDIT_LOG_USER_NAME_INVALID_CHARACTER
error code, 215 error code, 345
526
ER_AUDIT_LOG_WRITER_DEST_FILE_ALREADY_EXISTS ER_AUTHCACHE_USER_SKIPPED_NEEDS_RESOLVE
error code, 215 error code, 160
ER_AUDIT_LOG_WRITER_FAILED_TO_WRITE_TO_FILE ER_AUTHCACHE_USER_TABLE_DODGY error code,
error code, 215 160
ER_AUDIT_LOG_WRITER_INCOMPLETE_FILE_RENAMED ER_AUTHENTICATION_OCI_DOWNLOAD_IDDP_PUBLIC_KEY
error code, 215 error code, 413
ER_AUDIT_LOG_WRITER_RENAME_FILE_FAILED ER_AUTHENTICATION_OCI_DOWNLOAD_PUBLIC_KEY
error code, 215 error code, 394
ER_AUDIT_LOG_WRITER_RENAME_FILE_FAILED_REMOVE_FILE_MANUALLY
ER_AUTHENTICATION_OCI_IAM error code, 395
error code, 215 ER_AUTHENTICATION_OCI_IMDS error code, 394
ER_AUDIT_PLUGIN_DOES_NOT_SUPPORT_AUDIT_AUTH_EVENTS
ER_AUTHENTICATION_OCI_INVALID_AUTHENTICATION_STR
error code, 163 error code, 395
ER_AUDIT_PLUGIN_HAS_INVALID_DATA error code, ER_AUTHENTICATION_OCI_INVALID_TOKEN error
163 code, 413
ER_AUDIT_WARNING error code, 192 ER_AUTHENTICATION_OCI_NONCE error code, 395
ER_AUTHCACHE_CANT_INIT_GRANT_SUBSYSTEM ER_AUTHENTICATION_OCI_NO_GROUPS_FOUND
error code, 161 error code, 395
ER_AUTHCACHE_CANT_OPEN_AND_LOCK_PRIVILEGE_TABLES
ER_AUTHENTICATION_OCI_NO_MATCHING_GROUPS
error code, 161 error code, 395
ER_AUTHCACHE_DB_ENTRY_LOWERCASED_REVOKE_WILL_FAIL
ER_AUTHENTICATION_OCI_PLUGIN_NOT_INITIALIZED
error code, 161 error code, 394
ER_AUTHCACHE_DB_IGNORED_EMPTY_NAME error ER_AUTHENTICATION_OCI_PRIVATE_KEY_ERROR
code, 161 error code, 394
ER_AUTHCACHE_DB_SKIPPED_NEEDS_RESOLVE ER_AUTHENTICATION_OCI_TOKEN_DETAILS_MISMATCH
error code, 161 error code, 413
ER_AUTHCACHE_DEFAULT_ROLES_IGNORED_EMPTY_NAMEER_AUTHENTICATION_OCI_TOKEN_NOT_VERIFIED
error code, 378 error code, 413
ER_AUTHCACHE_DEFAULT_ROLES_UNKNOWN_AUTHORIZATION_ID
ER_AUTHENTICATION_OPENID_CONFIGURATION_NOT_SET
error code, 378 error code, 430
ER_AUTHCACHE_EXPIRED_PASSWORD_UNSUPPORTED ER_AUTHENTICATION_OPENID_FAILED_TO_UPDATE_CONF
error code, 160 error code, 430
ER_AUTHCACHE_PLUGIN_CONFIG error code, 160 ER_AUTHENTICATION_OPENID_INSECURE_CONNECTION
ER_AUTHCACHE_PLUGIN_MISSING error code, 160 error code, 429
ER_AUTHCACHE_PROCS_PRIV_ENTRY_IGNORED_BAD_ROUTINE_TYPE
ER_AUTHENTICATION_OPENID_INVALID_CONFIGURATION
error code, 161 error code, 429
ER_AUTHCACHE_PROCS_PRIV_SKIPPED_NEEDS_RESOLVEER_AUTHENTICATION_OPENID_INVALID_IDENTITY_PROVIDE
error code, 161 error code, 430
ER_AUTHCACHE_PROXIES_PRIV_SKIPPED_NEEDS_RESOLVE
ER_AUTHENTICATION_OPENID_INVALID_TOKEN
error code, 160 error code, 429
ER_AUTHCACHE_ROLE_EDGES_IGNORED_EMPTY_NAME ER_AUTHENTICATION_OPENID_INVALID_TOKEN_SIZE
error code, 377 error code, 430
ER_AUTHCACHE_ROLE_EDGES_UNKNOWN_AUTHORIZATION_ID
ER_AUTHENTICATION_OPENID_ISSUER_MISMATCH
error code, 378 error code, 429
ER_AUTHCACHE_TABLES_PRIV_SKIPPED_NEEDS_RESOLVE
ER_AUTHENTICATION_OPENID_OPTION_DEREGISTER
error code, 161 error code, 433
ER_AUTHCACHE_TABLE_PROXIES_PRIV_MISSING ER_AUTHENTICATION_OPENID_OPTION_REGISTER
error code, 161 error code, 433
ER_AUTHCACHE_USER_IGNORED_DEPRECATED_PASSWORDER_AUTHENTICATION_OPENID_READ_PACKET error
error code, 160 code, 430
ER_AUTHCACHE_USER_IGNORED_INVALID_PASSWORD ER_AUTHENTICATION_OPENID_TOKEN_NOT_VERIFIED
error code, 160 error code, 429
ER_AUTHCACHE_USER_IGNORED_NEEDS_PLUGIN ER_AUTHENTICATION_OPENID_USER_MISMATCH
error code, 160 error code, 429
527
ER_AUTHENTICATION_PLUGIN_AUTH_DATA_CORRUPTER_BAD_DB_ERROR error code, 6
error code, 394 ER_BAD_FIELD_ERROR error code, 7
ER_AUTHENTICATION_PLUGIN_LOG error code, 394 ER_BAD_FT_COLUMN error code, 22
ER_AUTHENTICATION_PLUGIN_OOM error code, 394 ER_BAD_HOST_ERROR error code, 6
ER_AUTHENTICATION_PLUGIN_REGISTRATION_FAILEDER_BAD_LOG_STATEMENT error code, 39
error code, 393 ER_BAD_NULL_ERROR error code, 6
ER_AUTHENTICATION_PLUGIN_REGISTRATION_INSUFFICIENT_BUFFER
ER_BAD_NULL_ERROR_NOT_IGNORED error code,
error code, 393 88
ER_AUTHENTICATION_PLUGIN_SIGNATURE_CORRUPTER_BAD_REPLICA error code, 16
error code, 394 ER_BAD_REPLICA_AUTO_POSITION error code, 52
ER_AUTHENTICATION_PLUGIN_VERIFY_SIGNATURE_FAILED
ER_BAD_REPLICA_UNTIL_COND error code, 21
error code, 394 ER_BAD_TABLE_ERROR error code, 6
ER_AUTHENTICATION_POLICY_MISMATCH error ER_BAD_TIMESTAMP_FORMAT error code, 123
code, 118 ER_BASE64_DECODE_ERROR error code, 39
ER_AUTH_CANT_ACTIVATE_ROLE error code, 158 ER_BASEDIR_SET_TO error code, 195
ER_AUTH_CANT_CREATE_RSA_PAIR error code, 159 ER_BEFORE_DML_VALIDATION_ERROR error code,
ER_AUTH_CANT_WRITE_PRIVKEY error code, 159 67
ER_AUTH_CANT_WRITE_PUBKEY error code, 159 ER_BEG_INITFILE error code, 148
ER_AUTH_CERTS_SAVED_TO_DATADIR error code, ER_BEYOND_SERVER_DOWNGRADE_THRESHOLD
159 error code, 415
ER_AUTH_CERT_GENERATION_DISABLED error ER_BEYOND_SERVER_UPGRADE_THRESHOLD error
code, 159 code, 415
ER_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATORY_ROLES
ER_BINLOG_CACHE_SIZE_GREATER_THAN_MAX
error code, 359 error code, 50
ER_AUTH_KERBEROS_LOGGER_GENERIC_MSG ER_BINLOG_CACHE_SIZE_TOO_LARGE error code,
error code, 390 192
ER_AUTH_KEYS_SAVED_TO_DATADIR error code, ER_BINLOG_CANT_APPEND_LOG_TO_TMP_INDEX
160 error code, 187
ER_AUTH_KEY_GENERATION_DISABLED error code, ER_BINLOG_CANT_CLEAR_IN_USE_FLAG_FOR_CRASHED_BINL
160 error code, 189
ER_AUTH_KEY_GENERATION_SKIPPED_PAIR_PRESENT ER_BINLOG_CANT_CLOSE_TMP_INDEX error code,
error code, 160 188
ER_AUTH_LDAP_ERROR_LOGGER_ERROR_MSG ER_BINLOG_CANT_COPY_INDEX_TO_TMP error
error code, 218 code, 188
ER_AUTH_RSA_CANT_FIND error code, 158 ER_BINLOG_CANT_DELETE_FILE error code, 187
ER_AUTH_RSA_CANT_PARSE error code, 158 ER_BINLOG_CANT_DELETE_FILE_AND_READ_BINLOG_INDEX
ER_AUTH_RSA_CANT_READ error code, 158 error code, 189
ER_AUTH_RSA_CONF_PREVENTS_KEY_GENERATION ER_BINLOG_CANT_DELETE_LOG_FILE_DOES_INDEX_MATCH_F
error code, 159 error code, 189
ER_AUTH_RSA_FILES_NOT_FOUND error code, 158 ER_BINLOG_CANT_FIND_LOG_IN_INDEX error code,
ER_AUTH_SSL_CONF_PREVENTS_CERT_GENERATION189
error code, 159 ER_BINLOG_CANT_GENERATE_NEW_FILE_NAME
ER_AUTH_USING_EXISTING_CERTS error code, 159 error code, 186
ER_AUTOINC_READ_FAILED error code, 33 ER_BINLOG_CANT_LOCATE_OLD_BINLOG_OR_RELAY_LOG_FIL
ER_AUTO_CONVERT error code, 19 error code, 187
ER_AUTO_INCREMENT_CONFLICT error code, 59 ER_BINLOG_CANT_MOVE_TMP_TO_INDEX error
ER_AUTO_INCREMENT_NOT_SUPPORTED_FOR_FLOAT_DOUBLE
code, 188
error code, 427 ER_BINLOG_CANT_OPEN_CRASHED_BINLOG error
ER_AUTO_OPTIONS_FAILED error code, 151 code, 189
ER_AUTO_POSITION_REQUIRES_GTID_MODE_NOT_OFF ER_BINLOG_CANT_OPEN_FOR_LOGGING error code,
error code, 52 186
ER_BACKGROUND_HISTOGRAM_UPDATE error code, ER_BINLOG_CANT_OPEN_TMP_INDEX error code,
426 187
ER_BACK_IN_TIME error code, 146 ER_BINLOG_CANT_RESIZE_CACHE error code, 185
528
ER_BINLOG_CANT_SET_TMP_INDEX_NAME error ER_BINLOG_FAILED_TO_RUN_AFTER_SYNC_HOOK
code, 187 error code, 189
ER_BINLOG_CANT_TRIM_CRASHED_BINLOG error ER_BINLOG_FAILED_TO_SET_PURGE_INDEX_FILE_NAME
code, 189 error code, 188
ER_BINLOG_CANT_USE_FOR_LOGGING error code, ER_BINLOG_FAILED_TO_SYNC_INDEX_FILE error
187 code, 186
ER_BINLOG_CRASHED_BINLOG_TRIMMED error ER_BINLOG_FAILED_TO_SYNC_INDEX_FILE_IN_OPEN
code, 189 error code, 187
ER_BINLOG_CRASH_RECOVERY_COMMIT_FAILED ER_BINLOG_FAILED_TO_WRITE_DROP_FOR_TEMP_TABLES
error code, 403 error code, 180
ER_BINLOG_CRASH_RECOVERY_ENGINE_RESULTS ER_BINLOG_FATAL_ERROR error code, 40
error code, 403 ER_BINLOG_FILE_BEING_READ_NOT_PURGED error
ER_BINLOG_CRASH_RECOVERY_ERROR_RETURNED_SE code, 186
error code, 403 ER_BINLOG_FILE_EXTENSION_NUMBER_EXHAUSTED
ER_BINLOG_CRASH_RECOVERY_MALFORMED_LOG error code, 186
error code, 403 ER_BINLOG_FILE_EXTENSION_NUMBER_RUNNING_LOW
ER_BINLOG_CRASH_RECOVERY_PREPARE_FAILED error code, 186
error code, 403 ER_BINLOG_FILE_NAME_TOO_LONG error code, 186
ER_BINLOG_CRASH_RECOVERY_ROLLBACK_FAILED ER_BINLOG_FILE_OPEN_FAILED error code, 196
error code, 403 ER_BINLOG_IO_ERROR_READING_HEADER error
ER_BINLOG_CREATE_ROUTINE_NEED_SUPER error code, 186
code, 30 ER_BINLOG_LOGGING_IMPOSSIBLE error code, 40
ER_BINLOG_END error code, 147 ER_BINLOG_LOGGING_INCIDENT_TO_STOP_REPLICAS
ER_BINLOG_ERROR_READING_GTIDS_FROM_BINARY_LOG
error code, 189
error code, 186 ER_BINLOG_LOGGING_NOT_POSSIBLE error code,
ER_BINLOG_ERROR_READING_GTIDS_FROM_RELAY_LOG205
error code, 186 ER_BINLOG_LOGICAL_CORRUPTION error code, 58
ER_BINLOG_EVENTS_READ_FROM_APPLIER_METADATA ER_BINLOG_MALFORMED_OR_OLD_RELAY_LOG
error code, 186 error code, 205
ER_BINLOG_EVENTS_READ_FROM_BINLOG_INFO ER_BINLOG_MASTER_KEY_RECOVERY_OUT_OF_COMBINAT
error code, 186 error code, 98
ER_BINLOG_EVENT_WRITE_TO_STMT_CACHE_FAILEDER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_
error code, 196 error code, 98
ER_BINLOG_FAILED_TO_CLOSE_INDEX_FILE_WHILE_REBUILDING
ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_
error code, 187 error code, 98
ER_BINLOG_FAILED_TO_DELETE_INDEX_FILE_WHILE_REBUILDING
ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_OPERATE_
error code, 187 error code, 98
ER_BINLOG_FAILED_TO_DELETE_LOG_FILE error ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_REENCRYP
code, 189 error code, 98
ER_BINLOG_FAILED_TO_OPEN_INDEX_FILE_AFTER_REBUILDING
ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_ROTATE_LO
error code, 187 error code, 98
ER_BINLOG_FAILED_TO_OPEN_REGISTER_FILE ER_BINLOG_MULTIPLE_ENGINES_AND_SELF_LOGGING_EN
error code, 188 error code, 44
ER_BINLOG_FAILED_TO_OPEN_TEMPORARY_INDEX_FILE
ER_BINLOG_NEEDS_SERVERID error code, 150
error code, 187 ER_BINLOG_OOM_WRITING_DELETE_WHILE_OPENING_HEA
ER_BINLOG_FAILED_TO_READ_REGISTER_FILE error code, 180
error code, 189 ER_BINLOG_PURGE_EMFILE error code, 40
ER_BINLOG_FAILED_TO_REINIT_REGISTER_FILE ER_BINLOG_PURGE_FATAL_ERR error code, 28
error code, 188 ER_BINLOG_PURGE_LOGS_CALLED_WITH_FILE_NOT_IN_IN
ER_BINLOG_FAILED_TO_RENAME_INDEX_FILE_WHILE_REBUILDING
error code, 188
error code, 187 ER_BINLOG_PURGE_LOGS_CANT_COPY_TO_REGISTER_FIL
ER_BINLOG_FAILED_TO_RUN_AFTER_FLUSH_HOOK error code, 188
error code, 190 ER_BINLOG_PURGE_LOGS_CANT_FLUSH_REGISTER_FILE
error code, 188
529
ER_BINLOG_PURGE_LOGS_CANT_SYNC_INDEX_FILE ER_BINLOG_UNSAFE_INSERT_TWO_KEYS error
error code, 188 code, 49
ER_BINLOG_PURGE_LOGS_CANT_UPDATE_INDEX_FILE ER_BINLOG_UNSAFE_LIMIT error code, 45
error code, 188 ER_BINLOG_UNSAFE_MESSAGE_AND_STATEMENT
ER_BINLOG_PURGE_LOGS_FAILED_TO_PURGE_LOG error code, 193
error code, 188 ER_BINLOG_UNSAFE_MIXED_STATEMENT error
ER_BINLOG_PURGE_PROHIBITED error code, 27 code, 46
ER_BINLOG_RECOVERING_AFTER_CRASH_USING ER_BINLOG_UNSAFE_MULTIPLE_ENGINES_AND_SELF_LOGGIN
error code, 189 error code, 46
ER_BINLOG_ROW_ENGINE_AND_STMT_ENGINE ER_BINLOG_UNSAFE_NONTRANS_AFTER_TRANS
error code, 44 error code, 45
ER_BINLOG_ROW_INJECTION_AND_STMT_ENGINE ER_BINLOG_UNSAFE_NOWAIT error code, 81
error code, 44 ER_BINLOG_UNSAFE_REPLACE_SELECT error code,
ER_BINLOG_ROW_INJECTION_AND_STMT_MODE 48
error code, 44 ER_BINLOG_UNSAFE_ROUTINE error code, 30
ER_BINLOG_ROW_LOGGING_FAILED error code, 37 ER_BINLOG_UNSAFE_SKIP_LOCKED error code, 81
ER_BINLOG_ROW_MODE_AND_STMT_ENGINE error ER_BINLOG_UNSAFE_STATEMENT error code, 40
code, 44 ER_BINLOG_UNSAFE_SYSTEM_FUNCTION error
ER_BINLOG_ROW_VALUE_OPTION_IGNORED error code, 45
code, 341 ER_BINLOG_UNSAFE_SYSTEM_TABLE error code, 45
ER_BINLOG_ROW_VALUE_OPTION_USED_ONLY_FOR_AFTER_IMAGES
ER_BINLOG_UNSAFE_SYSTEM_VARIABLE error
error code, 341 code, 45
ER_BINLOG_STMT_CACHE_SIZE_GREATER_THAN_MAX ER_BINLOG_UNSAFE_UDF error code, 45
error code, 50 ER_BINLOG_UNSAFE_UPDATE_IGNORE error code,
ER_BINLOG_STMT_CACHE_SIZE_TOO_LARGE error 48
code, 192 ER_BINLOG_UNSAFE_WRITE_AUTOINC_SELECT
ER_BINLOG_STMT_MODE_AND_NO_REPL_TABLES error code, 48
error code, 57 ER_BINLOG_UNSAFE_XA error code, 75
ER_BINLOG_STMT_MODE_AND_ROW_ENGINE error ER_BINLOG_WARNING_SUPPRESSED error code,
code, 44 190
ER_BINLOG_UNABLE_TO_ROTATE_GTID_TABLE_READONLY
ER_BLOBS_AND_NO_TERMINATED error code, 9
error code, 362 ER_BLOB_CANT_HAVE_DEFAULT error code, 10
ER_BINLOG_UNSAFE_ACL_TABLE_READ_IN_DML_DDLER_BLOB_FIELD_IN_PART_FUNC_ERROR error code,
error code, 114 35
ER_BINLOG_UNSAFE_AND_STMT_ENGINE error ER_BLOB_KEY_WITHOUT_LENGTH error code, 14
code, 44 ER_BLOB_USED_AS_KEY error code, 8
ER_BINLOG_UNSAFE_AUTOINC_COLUMNS error ER_BLOCKED_CIPHER error code, 425
code, 45 ER_BOOST_GEOMETRY_CENTROID_EXCEPTION
ER_BINLOG_UNSAFE_AUTOINC_NOT_FIRST error error code, 63
code, 49 ER_BOOST_GEOMETRY_EMPTY_INPUT_EXCEPTION
ER_BINLOG_UNSAFE_CREATE_IGNORE_SELECT error code, 63
error code, 48 ER_BOOST_GEOMETRY_INCONSISTENT_TURNS_EXCEPTION
ER_BINLOG_UNSAFE_CREATE_REPLACE_SELECT error code, 69
error code, 48 ER_BOOST_GEOMETRY_OVERLAY_INVALID_INPUT_EXCEPTION
ER_BINLOG_UNSAFE_CREATE_SELECT_AUTOINC error code, 63
error code, 48 ER_BOOST_GEOMETRY_SELF_INTERSECTION_POINT_EXCEPT
ER_BINLOG_UNSAFE_DEFAULT_EXPRESSION_IN_SUBSTATEMENT
error code, 63
error code, 364 ER_BOOST_GEOMETRY_TURN_INFO_EXCEPTION
ER_BINLOG_UNSAFE_FULLTEXT_PLUGIN error code, error code, 63
60 ER_BOOST_GEOMETRY_UNKNOWN_EXCEPTION
ER_BINLOG_UNSAFE_INSERT_IGNORE_SELECT error code, 63
error code, 48 ER_BOOTSTRAP_CANT_THREAD error code, 139
ER_BINLOG_UNSAFE_INSERT_SELECT_UPDATE ER_BUFPOOL_RESIZE_INPROGRESS error code, 73
error code, 48 ER_BUILD_ID error code, 405
530
ER_BULK_BLOB_TOO_BIG error code, 137 ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_NULL_ESC
ER_BULK_EXECUTOR_ERROR error code, 124 error code, 125
ER_BULK_EXECUTOR_INFO error code, 408 ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_NULL_ESC
ER_BULK_JSON_INVALID error code, 137 error code, 409
ER_BULK_LOADER_COLUMN_TOO_BIG_FOR_LEFTOVER_BUFFER
ER_BULK_PARSER_UNEXPECTED_ENCLOSED_BY_CHARAC
error code, 124 error code, 138
ER_BULK_LOADER_COMPONENT_ERROR error ER_BULK_PARSER_UNEXPECTED_ENCLOSED_BY_CHARAC
code, 124 error code, 433
ER_BULK_LOADER_FILE_CONTAINS_LESS_LINES_THAN_IGNORE_CLAUSE
ER_BULK_PARSER_UNEXPECTED_END_OF_INPUT
error code, 125 error code, 125
ER_BULK_LOADER_FILE_CONTAINS_LESS_LINES_THAN_IGNORE_CLAUSE_LOG
ER_BULK_PARSER_UNEXPECTED_END_OF_INPUT_LOG
error code, 408 error code, 409
ER_BULK_LOADER_INFO error code, 408 ER_BULK_PARSER_UNEXPECTED_ROW_TERMINATOR
ER_BULK_LOAD_DATA_FAILED error code, 124 error code, 125
ER_BULK_LOAD_RESOURCE error code, 129 ER_BULK_PARSER_UNEXPECTED_ROW_TERMINATOR_LOG
ER_BULK_LOAD_SECONDARY_ENGINE error code, error code, 409
129 ER_BULK_READER_COMMUNICATION_ERROR error
ER_BULK_LOAD_TABLE_HAS_INSTANT_COLS error code, 124
code, 129 ER_BULK_READER_COMMUNICATION_ERROR_LOG
ER_BULK_MERGE_INVALID_CHUNK error code, 128 error code, 408
ER_BULK_MERGE_LOADER_INFO error code, 419 ER_BULK_READER_COULDNT_RESOLVE_HOST
ER_BULK_MERGE_NOT_ALL_CHUNKS_CONSUMED error code, 129
error code, 128 ER_BULK_READER_ERROR error code, 129
ER_BULK_MULTI_READER_INFO error code, 419 ER_BULK_READER_FILE_DOESNT_EXIST error code,
ER_BULK_MULTI_READER_OPEN_FILE_FAILED error 129
code, 128 ER_BULK_READER_INFO error code, 408
ER_BULK_MULTI_READER_READ_FILE_FAILED error ER_BULK_READER_LIBCURL_ERROR error code, 124
code, 128 ER_BULK_READER_LIBCURL_ERROR_LOG error
ER_BULK_PARSER_COPY_BUFFER_SIZE_EXCEEDED code, 408
error code, 125 ER_BULK_READER_LIBCURL_INIT_FAILED error
ER_BULK_PARSER_COPY_BUFFER_SIZE_EXCEEDED_LOGcode, 124
error code, 409 ER_BULK_READER_LIBCURL_INIT_FAILED_LOG
ER_BULK_PARSER_ERROR error code, 136 error code, 408
ER_BULK_PARSER_INCOMPLETE_ESCAPE_SEQUENCEER_BULK_READER_OPEN_FILE_FAILED error code,
error code, 125 128
ER_BULK_PARSER_INCOMPLETE_ESCAPE_SEQUENCE_LOG
ER_BULK_READER_SERVER_ERROR error code, 124
error code, 409 ER_BULK_READER_SERVER_ERROR_LOG error
ER_BULK_PARSER_MISSING_ENCLOSED_BY error code, 408
code, 125 ER_BULK_READER_ZSTD_ERROR error code, 136
ER_BULK_PARSER_MISSING_ENCLOSED_BY_LOG ER_BULK_READER_ZSTD_ERROR_LOG error code,
error code, 408 428
ER_BULK_PARSER_ROW_BUFFER_MAX_TOTAL_COLS_EXCEEDED
ER_BULK_SCANNER_INFO error code, 429
error code, 125 ER_BULK_SORTING_LOADER_INFO error code, 419
ER_BULK_PARSER_ROW_BUFFER_MAX_TOTAL_COLS_EXCEEDED_LOG
ER_BULK_SORTING_LOADER_WAIT error code, 128
error code, 408 ER_BULK_SORTING_LOADER_WRITE error code, 128
ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_COLUMN_TERMINATOR
ER_BULK_WRITER_INFO error code, 419
error code, 125 ER_BULK_WRITER_LIBCURL_ERROR error code, 128
ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_COLUMN_TERMINATOR_LOG
ER_BULK_WRITER_LIBCURL_ERROR_LOG error
error code, 409 code, 419
ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_ENDING_ENCLOSED_BY
ER_BULK_WRITER_LIBCURL_INIT_FAILED error code,
error code, 125 128
ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_ENDING_ENCLOSED_BY_LOG
ER_BULK_WRITER_LIBCURL_INIT_FAILED_LOG error
error code, 409 code, 419
531
ER_CACHING_SHA2_PASSWORD_SECOND_PASSWORD_USED_INFORMATION
ER_CANNOT_USE_ENCRYPTION_CLAUSE error
error code, 355 code, 100
ER_CALL_ME_LOCALHOST error code, 147 ER_CANT_ACCESS_CAPATH error code, 151
ER_CANNOT_ADD_FOREIGN error code, 17 ER_CANT_AGGREGATE_2COLLATIONS error code,
ER_CANNOT_ADD_FOREIGN_BASE_COL_STORED 21
error code, 75 ER_CANT_AGGREGATE_3COLLATIONS error code,
ER_CANNOT_ADD_FOREIGN_BASE_COL_VIRTUAL 21
error code, 73 ER_CANT_AGGREGATE_NCOLLATIONS error code,
ER_CANNOT_ALTER_SRID_DUE_TO_INDEX error 21
code, 86 ER_CANT_ALLOC_TABLE_OBJECT error code, 183
ER_CANNOT_CHANGE_TO_ROOT_DIR error code, ER_CANT_CHANGE_SYS_VAR_IN_READ_ONLY_MODE
195 error code, 126
ER_CANNOT_CONVERT_STRING error code, 102 ER_CANT_CHANGE_TX_CHARACTERISTICS error
ER_CANNOT_CREATE_VIRTUAL_INDEX_CONSTRAINT code, 39
error code, 73 ER_CANT_CHECK_PID_PATH error code, 259
ER_CANNOT_DISCARD_TEMPORARY_TABLE error ER_CANT_CHOWN_DATADIR error code, 150
code, 61 ER_CANT_COMBINE_ANONYMOUS_TO_GTID_AND_AUTOPOSITI
ER_CANNOT_DROP_COLUMN_FUNCTIONAL_INDEX error code, 114
error code, 94 ER_CANT_CREATE_ADMIN_THREAD error code, 354
ER_CANNOT_EXECUTE_IN_PRIMARY error code, 129 ER_CANT_CREATE_CACHE_FOR_DB_OPT error
ER_CANNOT_FIND_KEY_IN_KEYRING error code, 74 code, 183
ER_CANNOT_GET_SERVER_VERSION_FROM_TABLESPACE_HEADER
ER_CANT_CREATE_DB error code, 3
error code, 357 ER_CANT_CREATE_FILE error code, 3
ER_CANNOT_GRANT_ROLES_TO_ANONYMOUS_USER ER_CANT_CREATE_GEOMETRY_OBJECT error code,
error code, 103 30
ER_CANNOT_GRANT_SYSTEM_PRIV_TO_MANDATORY_ROLEER_CANT_CREATE_HANDLER_FILE error code, 35
error code, 105 ER_CANT_CREATE_HANDLER_OBJECT_FOR_TABLE
ER_CANNOT_INTERPRET_PERSISTED_SENSITIVE_VARIABLES
error code, 183
error code, 397 ER_CANT_CREATE_HANDLE_MGR_THREAD error
ER_CANNOT_LOAD_FROM_TABLE_V2 error code, 49 code, 140
ER_CANNOT_LOCK_USER_MANAGEMENT_CACHES ER_CANT_CREATE_INTERRUPT_THREAD error code,
error code, 79 146
ER_CANNOT_LOG_PARTIAL_DROP_DATABASE_WITH_GTIDER_CANT_CREATE_NAMED_PIPES_THREAD error
error code, 67 code, 146
ER_CANNOT_PERSIST_SENSITIVE_VARIABLES error ER_CANT_CREATE_PID_FILE error code, 145
code, 121 ER_CANT_CREATE_SCHEDULER_THREAD error
ER_CANNOT_PURGE_BINLOG_WITH_BACKUP_LOCK code, 142
error code, 120 ER_CANT_CREATE_SHM_THREAD error code, 146
ER_CANNOT_SET_DATABASE_ENCRYPTION error ER_CANT_CREATE_SHUTDOWN_THREAD error
code, 100 code, 145
ER_CANNOT_SET_LOG_ERROR_SERVICES error ER_CANT_CREATE_TABLE error code, 3
code, 196 ER_CANT_CREATE_TABLE_SHARE_FROM_FRM
ER_CANNOT_SET_SERVER_VERSION_IN_TABLESPACE_HEADER
error code, 183
error code, 357 ER_CANT_CREATE_TCPIP_THREAD error code, 146
ER_CANNOT_SET_TABLESPACE_ENCRYPTION error ER_CANT_CREATE_TEST_FILE error code, 145
code, 100 ER_CANT_CREATE_THREAD error code, 12
ER_CANNOT_SET_TABLE_ENCRYPTION error code, ER_CANT_CREATE_USER_WITH_GRANT error code,
100 29
ER_CANNOT_USER error code, 28 ER_CANT_CREATE_UUID error code, 144
ER_CANNOT_USER_REFERENCED_AS_DEFINER ER_CANT_DETACH_SESSION_LEFT_BY_PLUGIN
error code, 113 error code, 171
ER_CANNOT_USE_AUTOEXTEND_SIZE_CLAUSE ER_CANT_DO_IMPLICIT_COMMIT_IN_TRX_WHEN_GTID_NEXT_IS
error code, 115 error code, 52
532
ER_CANT_DO_THIS_DURING_AN_TRANSACTION ER_CANT_OPEN_TABLE_MYSQL_PROC error code,
error code, 15 184
ER_CANT_DROP_FIELD_OR_KEY error code, 9 ER_CANT_PARSE_STORED_ROUTINE_BODY error
ER_CANT_ENFORCE_GTID_CONSISTENCY_WITH_ONGOING_GTID_VIOLATING_TX
code, 184
error code, 69 ER_CANT_PROCESS_EXPRESSION_FOR_GENERATED_COL
ER_CANT_EXECUTE_COMMAND_WITH_ASSIGNED_GTID_NEXTerror code, 370
error code, 121 ER_CANT_READ_DIR error code, 4
ER_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION ER_CANT_READ_ERRMSGS error code, 149
error code, 53 ER_CANT_READ_FRM_FILE error code, 163
ER_CANT_FIND_DL_ENTRY error code, 12 ER_CANT_READ_TABLE_MYSQL_PROC error code,
ER_CANT_FIND_SYSTEM_REC error code, 4 185
ER_CANT_FIND_UDF error code, 11 ER_CANT_REMOVE_ALL_FIELDS error code, 9
ER_CANT_GET_STAT error code, 4 ER_CANT_REMOVE_PID_FILE error code, 145
ER_CANT_HASH_DO_AND_IGNORE_RULES error ER_CANT_RENAME_LOG_TABLE error code, 39
code, 151 ER_CANT_REOPEN_TABLE error code, 12
ER_CANT_IDENTIFY_CHARSET_USING_DEFAULT ER_CANT_REPLICATE_ANONYMOUS_WITH_AUTO_POSITION
error code, 184 error code, 344
ER_CANT_INCREASE_MAX_OPEN_FILES error code, ER_CANT_REPLICATE_ANONYMOUS_WITH_GTID_MODE_ON
148 error code, 344
ER_CANT_INITIALIZE_BUILTIN_PLUGINS error code, ER_CANT_REPLICATE_GTID_WITH_GTID_MODE_OFF
150 error code, 344
ER_CANT_INITIALIZE_DYNAMIC_PLUGINS error code, ER_CANT_RESET_SOURCE error code, 75
150 ER_CANT_SAVE_GTIDS error code, 151
ER_CANT_INITIALIZE_EARLY_PLUGINS error code, ER_CANT_SET_DATA_DIR error code, 353
150 ER_CANT_SET_ERROR_LOG_SERVICE error code, 90
ER_CANT_INITIALIZE_GTID error code, 150 ER_CANT_SET_ERROR_SUPPRESSION_LIST error
ER_CANT_INITIALIZE_UDF error code, 11 code, 92
ER_CANT_INIT_DBS error code, 149 ER_CANT_SET_ERROR_SUPPRESSION_LIST_FROM_COMMA
ER_CANT_INIT_SCHEDULER_THREAD error code, error code, 348
142 ER_CANT_SET_GTID_MODE error code, 68
ER_CANT_INIT_TC_LOG error code, 141 ER_CANT_SET_GTID_NEXT_LIST_TO_NON_NULL_WHEN_GT
ER_CANT_INIT_TIMER error code, 151 error code, 53
ER_CANT_JOIN_SHUTDOWN_THREAD error code, ER_CANT_SET_GTID_NEXT_TO_ANONYMOUS_WHEN_GTID_
151 error code, 52
ER_CANT_LOCK error code, 4 ER_CANT_SET_GTID_NEXT_TO_AUTOMATIC_TAGGED_WHE
ER_CANT_LOCK_LOG_TABLE error code, 38 error code, 130
ER_CANT_LOCK_TABLE error code, 183 ER_CANT_SET_GTID_NEXT_TO_GTID_WHEN_GTID_MODE_I
ER_CANT_LOCK_TABLESPACE error code, 183 error code, 52
ER_CANT_MODIFY_SRID_0 error code, 91 ER_CANT_SET_GTID_NEXT_WHEN_OWNING_GTID
ER_CANT_MODIFY_SRS_USED_BY_COLUMN error error code, 53
code, 91 ER_CANT_SET_GTID_PURGED_DUE_SETS_CONSTRAINTS
ER_CANT_OPEN_AND_LOCK_PRIVILEGE_TABLES error code, 79
error code, 163 ER_CANT_SET_GTID_PURGED_WHEN_GTID_EXECUTED_IS_
ER_CANT_OPEN_CA error code, 151 error code, 56
ER_CANT_OPEN_DATADIR_AFTER_UPGRADE_FAILUREER_CANT_SET_GTID_PURGED_WHEN_OWNED_GTIDS_IS_N
error code, 185 error code, 57
ER_CANT_OPEN_DB_OPT_USING_DEFAULT_CHARSETER_CANT_SET_HANDLER_REFERENCE_FOR_TABLE
error code, 183 error code, 183
ER_CANT_OPEN_DIR error code, 185 ER_CANT_SET_PATH_FOR error code, 185
ER_CANT_OPEN_ERROR_LOG error code, 151 ER_CANT_SET_PERSISTED error code, 126
ER_CANT_OPEN_FILE error code, 4 ER_CANT_SET_SQL_AFTER_OR_BEFORE_GTIDS_WITH_ANO
ER_CANT_OPEN_FRM_FILE error code, 163 error code, 115
ER_CANT_OPEN_LIBRARY error code, 12 ER_CANT_SET_UP_PERSISTED_VALUES error code,
151
533
ER_CANT_SET_VARIABLE_WHEN_OWNING_GTID ER_CHANGE_SOURCE_PASSWORD_LENGTH error
error code, 71 code, 64
ER_CANT_START_ERROR_LOG_SERVICE error code, ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_C
195 error code, 106
ER_CANT_STAT_DATADIR error code, 150 ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_L
ER_CANT_STAT_FILE error code, 189 error code, 107
ER_CANT_UPDATE_TABLE_IN_CREATE_TABLE_SELECT ER_CHANGE_SOURCE_WRONG_COMPRESSION_LEVEL_CLIENT
error code, 50 error code, 106
ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG ER_CHARACTER_SET_MISMATCH error code, 113
error code, 31 ER_CHECKING_TABLE error code, 182
ER_CANT_UPDATE_WITH_READLOCK error code, 18 ER_CHECKREAD error code, 4
ER_CANT_UPGRADE_GENERATED_COLUMNS_TO_DD ER_CHECK_CONSTRAINT_CLAUSE_USING_FK_REFER_ACTION_
error code, 183 error code, 99
ER_CANT_USE_ANONYMOUS_TO_GTID_WITH_GTID_MODE_NOT_ON
ER_CHECK_CONSTRAINT_DUP_NAME error code, 99
error code, 114 ER_CHECK_CONSTRAINT_FUNCTION_IS_NOT_ALLOWED
ER_CANT_USE_AUTO_POSITION_WITH_GTID_MODE_OFFerror code, 99
error code, 69 ER_CHECK_CONSTRAINT_NAMED_FUNCTION_IS_NOT_ALLOWE
ER_CANT_USE_GTID_ONLY_WITH_GTID_MODE_NOT_ON error code, 99
error code, 119 ER_CHECK_CONSTRAINT_NOT_FOUND error code,
ER_CANT_USE_OPTION_HERE error code, 19 99
ER_CANT_USE_SAME_UUID_AS_GROUP_NAME ER_CHECK_CONSTRAINT_REFERS_AUTO_INCREMENT_COLUM
error code, 115 error code, 99
ER_CANT_USE_SAME_UUID_AS_VIEW_CHANGE_UUID ER_CHECK_CONSTRAINT_REFERS_UNKNOWN_COLUMN
error code, 116 error code, 99
ER_CANT_WAIT_FOR_EXECUTED_GTID_SET_WHILE_OWNING_A_GTID
ER_CHECK_CONSTRAINT_ROW_VALUE error code,
error code, 73 99
ER_CAPACITY_EXCEEDED error code, 73 ER_CHECK_CONSTRAINT_VARIABLES error code, 99
ER_CAPACITY_EXCEEDED_IN_PARSER error code, ER_CHECK_CONSTRAINT_VIOLATED error code, 99
74 ER_CHECK_NOT_IMPLEMENTED error code, 15
ER_CAPACITY_EXCEEDED_IN_RANGE_OPTIMIZER ER_CHECK_NO_SUCH_TABLE error code, 15
error code, 73 ER_CHECK_TABLE_INSTANT_VERSION_BIT_SET
ER_CA_SELF_SIGNED error code, 143 error code, 410
ER_CHANGED_ENFORCE_GTID_CONSISTENCY ER_CHECK_TABLE_MIN_REC_FLAG_NOT_SET error
error code, 141 code, 412
ER_CHANGED_GTID_MODE error code, 141 ER_CHECK_TABLE_MIN_REC_FLAG_SET error code,
ER_CHANGED_MAX_CONNECTIONS error code, 148 412
ER_CHANGED_MAX_OPEN_FILES error code, 148 ER_CLAUSE_IGNORED error code, 138
ER_CHANGED_TABLE_OPEN_CACHE error code, 148 ER_CLIENT_DOES_NOT_SUPPORT error code, 86
ER_CHANGE_REPLICATION_SOURCE_NO_OPTIONS_FOR_GTID_ONLY
ER_CLIENT_FILE_PRIVILEGE_FOR_REPLICATION_CHECKS
error code, 119 error code, 123
ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POSITION_WITH_GTID_ONLY
ER_CLIENT_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TR
error code, 119 error code, 93
ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POS_WITHOUT_POSITIONS
ER_CLIENT_INTERACTION_TIMEOUT error code, 116
error code, 119 ER_CLIENT_KEYRING_UDF_KEY_INVALID error code,
ER_CHANGE_REP_SOURCE_CANT_DISABLE_GTID_ONLY_WITHOUT_POSITIONS
107
error code, 119 ER_CLIENT_KEYRING_UDF_KEY_TOO_LONG error
ER_CHANGE_REP_SOURCE_CANT_DISABLE_REQ_ROW_FORMAT_WITH_GTID_ONLY
code, 107
error code, 119 ER_CLIENT_KEYRING_UDF_KEY_TYPE_INVALID
ER_CHANGE_REP_SOURCE_GR_CHANNEL_WITH_GTID_MODE_NOT_ON
error code, 107
error code, 119 ER_CLIENT_KEYRING_UDF_KEY_TYPE_TOO_LONG
ER_CHANGE_RPL_INFO_REPOSITORY_FAILURE error code, 107
error code, 50 ER_CLIENT_LOCAL_FILES_DISABLED error code, 109
ER_CHANGE_RPL_SRC_WRONG_COMPRESSION_ALGORITHM_SIZE
ER_CLIENT_PRIVILEGE_CHECKS_USER_CANNOT_BE_ANONYM
error code, 116 error code, 107
534
ER_CLIENT_PRIVILEGE_CHECKS_USER_CORRUPT ER_COMMAND_BACKEND_FAILED_TO_FETCH_SECURITY_C
error code, 107 error code, 122
ER_CLIENT_PRIVILEGE_CHECKS_USER_DOES_NOT_EXIST
ER_COMMAND_SERVICE_BACKEND_FAILED error
error code, 107 code, 123
ER_CLIENT_PRIVILEGE_CHECKS_USER_NEEDS_RPL_APPLIER_PRIV
ER_COMMENT_CONTAINS_INVALID_STRING error
error code, 107 code, 121
ER_CLIENT_QUERY_FAILURE_INVALID_NON_ROW_FORMAT
ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG error
error code, 108 code, 30
ER_CLONE_CHARSET error code, 103 ER_COMPONENTS_CANT_ACQUIRE_SERVICE_IMPLEMENTA
ER_CLONE_CLIENT_TRACE error code, 352 error code, 78
ER_CLONE_CONFIG error code, 103 ER_COMPONENTS_CANT_LOAD error code, 78
ER_CLONE_CREATE_HANDLER_FAIL_TRACE error ER_COMPONENTS_CANT_RELEASE_SERVICE error
code, 202 code, 79
ER_CLONE_DDL_IN_PROGRESS error code, 85 ER_COMPONENTS_CANT_SATISFY_DEPENDENCY
ER_CLONE_DISALLOWED error code, 103 error code, 78
ER_CLONE_DISK_SPACE error code, 103 ER_COMPONENTS_CANT_UNLOAD error code, 79
ER_CLONE_DONOR error code, 102 ER_COMPONENTS_FAILED_TO_ACQUIRE_SERVICE_IMPLEM
ER_CLONE_DONOR_TRACE error code, 352 error code, 205
ER_CLONE_DONOR_VERSION error code, 102 ER_COMPONENTS_INFRASTRUCTURE_BOOTSTRAP
ER_CLONE_ENCRYPTION error code, 103 error code, 143
ER_CLONE_HANDLER_EXIST_TRACE error code, 202 ER_COMPONENTS_INFRASTRUCTURE_MANIFEST_DEINIT
ER_CLONE_IN_PROGRESS error code, 103 error code, 385
ER_CLONE_LOOPBACK error code, 103 ER_COMPONENTS_INFRASTRUCTURE_MANIFEST_INIT
ER_CLONE_NETWORK_PACKET error code, 109 error code, 385
ER_CLONE_OS error code, 103 ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN
ER_CLONE_PLATFORM error code, 103 error code, 143
ER_CLONE_PLUGIN_MATCH error code, 103 ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN_END
ER_CLONE_PLUGIN_NOT_LOADED_TRACE error error code, 418
code, 202 ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN_START
ER_CLONE_PROTOCOL error code, 102 error code, 418
ER_CLONE_PROTOCOL_TRACE error code, 352 ER_COMPONENTS_LOAD_CANT_INITIALIZE error
ER_CLONE_SERVER_TRACE error code, 352 code, 78
ER_CLONE_SHUTDOWN_TRACE error code, 366 ER_COMPONENTS_LOAD_CANT_REGISTER_SERVICE_IMPL
ER_CLONE_SYS_CONFIG error code, 103 error code, 78
ER_CLONE_TOO_MANY_CONCURRENT_CLONES ER_COMPONENTS_NO_SCHEME error code, 78
error code, 85 ER_COMPONENTS_NO_SCHEME_SERVICE error
ER_CMD_NEED_SUPER_OR_CREATE_SPATIAL_REFERENCE_SYSTEM
code, 78
error code, 138 ER_COMPONENTS_PERSIST_LOADER_BOOTSTRAP
ER_COALESCE_ONLY_ON_HASH_PARTITION error error code, 143
code, 36 ER_COMPONENTS_UNLOAD_CANT_DEINITIALIZE
ER_COALESCE_PARTITION_NO_PARTITION error error code, 78
code, 36 ER_COMPONENTS_UNLOAD_CANT_UNREGISTER_SERVICE
ER_COLLATION_CHARSET_MISMATCH error code, 20 error code, 79
ER_COLUMNACCESS_DENIED_ERROR error code, 13 ER_COMPONENTS_UNLOAD_DUPLICATE_IN_GROUP
ER_COLUMN_CHANGE_SIZE error code, 104 error code, 79
ER_COLUMN_CHECK_CONSTRAINT_REFERENCES_OTHER_COLUMN
ER_COMPONENTS_UNLOAD_NOT_LOADED error
error code, 99 code, 78
ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2 ER_COMPONENT_EE_DATA_DECRYPTION_ERROR
error code, 54 error code, 405
ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE ER_COMPONENT_EE_DATA_ENCRYPTION_ERROR
error code, 38 error code, 405
ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE_V2 ER_COMPONENT_EE_DATA_LENGTH_OUT_OF_RAGE
error code, 61 error code, 404
535
ER_COMPONENT_EE_DATA_SIGN_ERROR error ER_COMPONENT_MASKING_RANDOM_CREATE
code, 405 error code, 414
ER_COMPONENT_EE_FUNCTION_DEREGISTRATION_FAILURE
ER_COMPONENT_MASKING_RANDOM_CREATE_REASON
error code, 404 error code, 414
ER_COMPONENT_EE_FUNCTION_INVALID_ALGORITHMER_COMPONENT_MASKING_VAR_REGISTRATION_FAILURE
error code, 404 error code, 425
ER_COMPONENT_EE_FUNCTION_INVALID_ARGUMENTS ER_COMPONENT_SERVICE_CALL error code, 414
error code, 404 ER_COMPONENT_SERVICE_CALL_RESULT error
ER_COMPONENT_EE_FUNCTION_KEY_LENGTH_OUT_OF_RANGE
code, 414
error code, 404 ER_COMPONENT_TABLE_INCORRECT error code, 79
ER_COMPONENT_EE_FUNCTION_PRIVATE_KEY_GENERATION_FAILURE
ER_COMPONENT_UNLOCK error code, 414
error code, 404 ER_CONCURRENT_PROCEDURE_USAGE error code,
ER_COMPONENT_EE_FUNCTION_PUBLIC_KEY_GENERATION_FAILURE
120
error code, 404 ER_CONDITIONAL_DEBUG error code, 405
ER_COMPONENT_EE_FUNCTION_REGISTRATION_FAILURE
ER_COND_ITEM_TOO_LONG error code, 43
error code, 404 ER_CONFIG_OPTION_WITHOUT_GROUP error code,
ER_COMPONENT_EE_INSUFFICIENT_LENGTH error 153
code, 405 ER_CONFIRMING_THE_FUTURE error code, 146
ER_COMPONENT_EE_OPENSSL_ERROR error code, ER_CONFLICTING_DECLARATIONS error code, 23
405 ER_CONFLICT_FN_PARSE_ERROR error code, 42
ER_COMPONENT_EE_SYS_VAR_DEREGISTRATION_FAILURE
ER_CONNECTIONS_SHUTDOWN_END error code,
error code, 404 418
ER_COMPONENT_EE_SYS_VAR_REGISTRATION_FAILUREER_CONNECTIONS_SHUTDOWN_START error code,
error code, 404 418
ER_COMPONENT_FILTER_CONFUSED error code, ER_CONNECTION_ABORTED error code, 341
219 ER_CONNECTION_CONTROL_FAILED_DEINIT error
ER_COMPONENT_FILTER_DIAGNOSTICS error code, code, 434
90 ER_CONNECTION_CONTROL_FAILED_TO_GET_ATTRIBUTE_FRO
ER_COMPONENT_FILTER_FLABBERGASTED error error code, 434
code, 84 ER_CONNECTION_CONTROL_FAILED_TO_GET_SECURITY_CTX
ER_COMPONENT_FILTER_WRONG_VALUE error error code, 434
code, 341 ER_CONNECTION_CONTROL_STATUS_VAR_REG_FAILED
ER_COMPONENT_KEYRING_OCI_CREATE_PRIVATE_KEY error code, 433
error code, 406 ER_CONNECTION_CONTROL_STATUS_VAR_UNREG_FAILED
ER_COMPONENT_KEYRING_OCI_INVALID_CONFIG_VAR error code, 433
error code, 418 ER_CONNECTION_CONTROL_VARIABLE_REGISTRATION_FAILE
ER_COMPONENT_KEYRING_OCI_OPEN_KEY_FILE error code, 434
error code, 406 ER_CONNECTION_CONTROL_VARIABLE_UNREGISTRATION_FAI
ER_COMPONENT_KEYRING_OCI_READ_KEY_FILE error code, 434
error code, 406 ER_CONNECTION_HANDLING_OOM error code, 145
ER_COMPONENT_LOCK error code, 414 ER_CONNECTION_METADATA error code, 16
ER_COMPONENT_MANIPULATE_ROW_FAILED error ER_CONNECT_TO_FOREIGN_DATA_SOURCE error
code, 79 code, 30
ER_COMPONENT_MASKING_ABI error code, 414 ER_CONNECT_TO_SOURCE error code, 18
ER_COMPONENT_MASKING_ABI_REASON error ER_CONN_ATTR_TRUNCATED error code, 158
code, 414 ER_CONN_CONTROL_DELAY_ACTION_INIT_FAILED
ER_COMPONENT_MASKING_CANNOT_ACCESS_TABLEerror code, 220
error code, 414 ER_CONN_CONTROL_ERROR_MSG error code, 218
ER_COMPONENT_MASKING_INVALID_FLUSH_INTERVAL_VALUE
ER_CONN_CONTROL_EVENT_COORDINATOR_INIT_FAILED
error code, 424 error code, 220
ER_COMPONENT_MASKING_NOTIFICATION_REGISTRATION_FAILURE
ER_CONN_CONTROL_FAILED_TO_SET_CONN_DELAY
error code, 425 error code, 220
ER_COMPONENT_MASKING_OTHER_ERROR error ER_CONN_CONTROL_FAILED_TO_UPDATE_CONN_DELAY_HASH
code, 414 error code, 220
536
ER_CONN_CONTROL_INVALID_CONN_DELAY_TYPE ER_CONN_UNIX_LOCK_FILE_CANT_SYNC error
error code, 220 code, 158
ER_CONN_CONTROL_STAT_CONN_DELAY_TRIGGERED_RESET_FAILED
ER_CONN_UNIX_LOCK_FILE_CANT_WRITE error
error code, 220 code, 157
ER_CONN_CONTROL_STAT_CONN_DELAY_TRIGGERED_UPDATE_FAILED
ER_CONN_UNIX_LOCK_FILE_EMPTY error code, 157
error code, 220 ER_CONN_UNIX_LOCK_FILE_FAIL error code, 157
ER_CONN_INIT_CONNECT_IGNORED error code, 220 ER_CONN_UNIX_LOCK_FILE_GIVING_UP error code,
ER_CONN_INIT_CONNECT_IGNORED_MFA error 157
code, 415 ER_CONN_UNIX_LOCK_FILE_PIDLESS error code,
ER_CONN_LIMIT error code, 397 157
ER_CONN_PER_THREAD_NO_THREAD error code, ER_CONN_UNIX_NO_BIND_NO_START error code,
155 157
ER_CONN_PIP_CANT_CREATE_EVENT error code, ER_CONN_UNIX_NO_FD error code, 157
155 ER_CONN_UNIX_PATH_TOO_LONG error code, 157
ER_CONN_PIP_CANT_CREATE_PIPE error code, 155 ER_CONN_UNIX_PID_CLAIMED_SOCKET_FILE error
ER_CONN_SHM_CANT_CREATE_CONNECTION error code, 156
code, 155 ER_CONSECUTIVE_REORG_PARTITIONS error code,
ER_CONN_SHM_CANT_CREATE_SERVICE error 36
code, 155 ER_CONSTRAINT_NOT_FOUND error code, 108
ER_CONN_SHM_LISTENER error code, 155 ER_CONVERT_MULTI_VALUE error code, 415
ER_CONN_SOCKET_ACCEPT_FAILED error code, 158 ER_CON_COUNT_ERROR error code, 5
ER_CONN_SOCKET_SELECT_FAILED error code, 158 ER_CORE_VALUES error code, 146
ER_CONN_TCP_ADDRESS error code, 156 ER_CORRUPTED_JSON_DIFF error code, 86
ER_CONN_TCP_BIND_FAIL error code, 156 ER_CORRUPT_HELP_DB error code, 19
ER_CONN_TCP_BIND_RETRY error code, 156 ER_COULD_NOT_APPLY_JSON_DIFF error code, 86
ER_CONN_TCP_CANT_RESET_V6ONLY error code, ER_COULD_NOT_CREATE_WINDOWS_REGISTRY_KEY
156 error code, 350
ER_CONN_TCP_CANT_RESOLVE_HOSTNAME error ER_COULD_NOT_REINITIALIZE_AUDIT_LOG_FILTERS
code, 156 error code, 345
ER_CONN_TCP_CREATED error code, 156 ER_CRASHED_ON_REPAIR error code, 16
ER_CONN_TCP_ERROR_WITH_STRERROR error ER_CRASHED_ON_USAGE error code, 16
code, 156 ER_CREATED_SYSTEM_WITH_VERSION error code,
ER_CONN_TCP_IPV6_AVAILABLE error code, 156 201
ER_CONN_TCP_IPV6_UNAVAILABLE error code, 156 ER_CREATE_FILEGROUP_FAILED error code, 37
ER_CONN_TCP_IP_NOT_LOGGED error code, 156 ER_CREATE_SELECT_WITH_GIPK_DISALLOWED_IN_SBR
ER_CONN_TCP_IS_THERE_ANOTHER_USING_PORT error code, 122
error code, 156 ER_CREATING_NEW_UUID error code, 144
ER_CONN_TCP_LISTEN_FAIL error code, 157 ER_CREATING_NEW_UUID_FIRST_START error code,
ER_CONN_TCP_NO_SOCKET error code, 156 195
ER_CONN_TCP_RESOLVE_INFO error code, 157 ER_CREDENTIALLESS_AUTO_USER_BAD error code,
ER_CONN_TCP_START_FAIL error code, 157 144
ER_CONN_UNIX_IS_THERE_ANOTHER_USING_SOCKETER_CREDENTIALS_CONTRADICT_TO_HISTORY error
error code, 156 code, 85
ER_CONN_UNIX_LISTEN_FAILED error code, 157 ER_CTE_MAX_RECURSION_DEPTH error code, 85
ER_CONN_UNIX_LOCK_FILE_CANT_CLOSE error ER_CTE_RECURSIVE_FORBIDDEN_JOIN_ORDER
code, 158 error code, 81
ER_CONN_UNIX_LOCK_FILE_CANT_CREATE error ER_CTE_RECURSIVE_FORBIDS_AGGREGATION
code, 157 error code, 81
ER_CONN_UNIX_LOCK_FILE_CANT_DELETE error ER_CTE_RECURSIVE_NOT_UNION error code, 122
code, 158 ER_CTE_RECURSIVE_REQUIRES_NONRECURSIVE_FIRST
ER_CONN_UNIX_LOCK_FILE_CANT_OPEN error error code, 81
code, 157 ER_CTE_RECURSIVE_REQUIRES_SINGLE_REFERENCE
ER_CONN_UNIX_LOCK_FILE_CANT_READ error error code, 81
code, 157
537
ER_CTE_RECURSIVE_REQUIRES_UNION error code, ER_DA_UDF_INVALID_RETURN_TYPE_TO_SET_CHARSET
81 error code, 109
ER_CURRENT_PASSWORD_CANNOT_BE_RETAINED ER_DA_UNKNOWN_ERROR_NUMBER error code, 104
error code, 105 ER_DBACCESS_DENIED_ERROR error code, 6
ER_CURRENT_PASSWORD_NOT_REQUIRED error ER_DBUG_CHECK_SHARES_DROPPED error code,
code, 104 172
ER_CUT_VALUE_GROUP_CONCAT error code, 20 ER_DBUG_CHECK_SHARES_INFO error code, 171
ER_CYCLE_TIMER_IS_NOT_AVAILABLE error code, ER_DBUG_CHECK_SHARES_OPEN error code, 171
202 ER_DB_ACCESS_DENIED error code, 103
ER_DATABASE_NAME error code, 42 ER_DB_CREATE_EXISTS error code, 4
ER_DATA_DIRECTORY_UNUSABLE error code, 350 ER_DB_DROP_EXISTS error code, 4
ER_DATA_DIRECTORY_UNUSABLE_DELETABLE ER_DB_DROP_RMDIR error code, 4
error code, 365 ER_DB_DROP_RMDIR2 error code, 83
ER_DATA_INCOMPATIBLE_WITH_VECTOR error ER_DB_OPT_NOT_FOUND_USING_DEFAULT_CHARSET
code, 136 error code, 184
ER_DATA_OUT_OF_RANGE error code, 46 ER_DDL_MSG_1 error code, 391
ER_DATA_TOO_LONG error code, 29 ER_DD_ABORTING_PARTIAL_UPGRADE error code,
ER_DATETIME_FUNCTION_OVERFLOW error code, 162
31 ER_DD_CACHE_NOT_EMPTY_AT_SHUTDOWN error
ER_DA_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATORY_ROLES
code, 140
error code, 104 ER_DD_CANT_CREATE_OBJECT_KEY error code, 140
ER_DA_CANT_OPEN_ERROR_LOG error code, 113 ER_DD_CANT_CREATE_SP error code, 183
ER_DA_CONN_LIMIT error code, 120 ER_DD_CANT_FETCH_TABLE_DATA error code, 183
ER_DA_ERROR_LOG_COMPONENT_FLUSH_FAILED ER_DD_CANT_FIX_SE_DATA error code, 183
error code, 117 ER_DD_CANT_GET_OBJECT_KEY error code, 140
ER_DA_ERROR_LOG_MULTIPLE_FILTERS error code, ER_DD_CANT_RESOLVE_VIEW error code, 152
113 ER_DD_CREATED_FOR_UPGRADE error code, 162
ER_DA_ERROR_LOG_TABLE_DISABLED error code, ER_DD_ERROR_CREATING_ENTRY error code, 183
113 ER_DD_FAILSAFE error code, 139
ER_DA_GLOBAL_CONN_LIMIT error code, 120 ER_DD_FRM_EXISTS_FOR_TABLE error code, 162
ER_DA_GRP_RPL_RECOVERY_ENDPOINT_FORMAT ER_DD_INITIALIZE error code, 206
error code, 111 ER_DD_INITIALIZE_SQL_ERROR error code, 346
ER_DA_GRP_RPL_RECOVERY_ENDPOINT_INVALID ER_DD_INIT_FAILED error code, 140
error code, 111 ER_DD_INIT_UPGRADE_FAILED error code, 140
ER_DA_GRP_RPL_STARTED_AUTO_REJOIN error ER_DD_METADATA_NOT_FOUND error code, 140
code, 106 ER_DD_MINOR_DOWNGRADE error code, 206
ER_DA_INVALID_CONDITION_NUMBER error code, 51 ER_DD_MINOR_DOWNGRADE_VERSION_NOT_SUPPORTED
ER_DA_NO_ERROR_LOG_PARSER_CONFIGURED error code, 206
error code, 113 ER_DD_NO_VERSION_FOUND error code, 206
ER_DA_OOM error code, 109 ER_DD_NO_WRITES_NO_REPOPULATION error code,
ER_DA_PLUGIN_INSTALL_ERROR error code, 104 139
ER_DA_RPL_GTID_TABLE_CANNOT_OPEN error ER_DD_OBJECT_RELEASER_REMAINS error code,
code, 104 140
ER_DA_SSL_FIPS_MODE_ERROR error code, 119 ER_DD_OBJECT_REMAINS error code, 140
ER_DA_SSL_LIBRARY_ERROR error code, 104 ER_DD_OBJECT_REMAINS_IN_RELEASER error
ER_DA_UDF_INVALID_ARGUMENT_TO_SET_CHARSET code, 140
error code, 109 ER_DD_RESTART error code, 206
ER_DA_UDF_INVALID_CHARSET error code, 108 ER_DD_SCHEMA_NOT_FOUND error code, 162
ER_DA_UDF_INVALID_CHARSET_SPECIFIED error ER_DD_SE_INIT_FAILED error code, 162
code, 108 ER_DD_TABLESPACE_NOT_FOUND error code, 152
ER_DA_UDF_INVALID_COLLATION error code, 108 ER_DD_TABLE_NOT_FOUND error code, 162
ER_DA_UDF_INVALID_EXTENSION_ARGUMENT_TYPE ER_DD_TRG_CANT_ADD error code, 152
error code, 108 ER_DD_TRG_CONNECTION_COLLATION_MISSING
error code, 152
538
ER_DD_TRG_DB_COLLATION_MISSING error code, ER_DD_UPGRADE_TABLE_STATS_MIGRATE_COMPLETED
152 error code, 200
ER_DD_TRG_DEFINER_OOM error code, 152 ER_DD_UPGRADE_VERSION_NOT_SUPPORTED
ER_DD_TRG_FILE_UNREADABLE error code, 152 error code, 206
ER_DD_UPDATE_DATADIR_FLAG_FAIL error code, ER_DD_UPGRADE_VIEW_COLUMN_NAME_TOO_LONG
429 error code, 205
ER_DD_UPDATING_PLUGIN_MD_FAILED error code, ER_DD_VERSION_FOUND error code, 139
140 ER_DD_VERSION_INSTALLED error code, 139
ER_DD_UPGRADE error code, 206 ER_DD_VERSION_UNSUPPORTED error code, 139
ER_DD_UPGRADE_COMPLETED error code, 363 ER_DD_VIEW_CANT_ALLOC_CHARSET error code,
ER_DD_UPGRADE_DD_OPEN_FAILED error code, 199 140
ER_DD_UPGRADE_DD_POPULATED error code, 199 ER_DD_VIEW_CANT_CREATE error code, 140
ER_DD_UPGRADE_FAILED_FIND_VALID_DATA_DIR ER_DD_VIEW_WITHOUT_DEFINER error code, 152
error code, 200 ER_DEBUG_SYNC_EXECUTED error code, 141
ER_DD_UPGRADE_FAILED_INIT_DD_SE error code, ER_DEBUG_SYNC_HIT error code, 141
200 ER_DEBUG_SYNC_HIT_LIMIT error code, 43
ER_DD_UPGRADE_FAILED_TO_ACQUIRE_TABLESPACEER_DEBUG_SYNC_OOM error code, 141
error code, 199 ER_DEBUG_SYNC_THREAD_MAX error code, 141
ER_DD_UPGRADE_FAILED_TO_CREATE_INDEX_STATSER_DEBUG_SYNC_TIMEOUT error code, 43
error code, 200 ER_DEFAULT_AS_VAL_GENERATED error code, 95
ER_DD_UPGRADE_FAILED_TO_CREATE_TABLE_STATSER_DEFAULT_SE_UNAVAILABLE error code, 151
error code, 200 ER_DEFAULT_VAL_GENERATED_FUNCTION_IS_NOT_ALLOW
ER_DD_UPGRADE_FAILED_TO_FETCH_TABLES error code, 95
error code, 199 ER_DEFAULT_VAL_GENERATED_NAMED_FUNCTION_IS_NO
ER_DD_UPGRADE_FAILED_TO_FETCH_TABLESPACES error code, 95
error code, 199 ER_DEFAULT_VAL_GENERATED_NON_PRIOR error
ER_DD_UPGRADE_FAILED_TO_RESOLVE_TABLESPACE_ENGINE
code, 95
error code, 199 ER_DEFAULT_VAL_GENERATED_REF_AUTO_INC
ER_DD_UPGRADE_FAILED_TO_UPDATE_VER_NO_IN_TABLESPACE
error code, 95
error code, 206 ER_DEFAULT_VAL_GENERATED_ROW_VALUE error
ER_DD_UPGRADE_FOUND_PARTIALLY_UPGRADED_DD_ABORT
code, 95
error code, 200 ER_DEFAULT_VAL_GENERATED_VARIABLES error
ER_DD_UPGRADE_FOUND_PARTIALLY_UPGRADED_DD_CONTINUE
code, 95
error code, 200 ER_DEFINITION_CONTAINS_INVALID_STRING error
ER_DD_UPGRADE_INDEX_STATS_MIGRATE_COMPLETED code, 121
error code, 200 ER_DEPART_WITH_GRACE error code, 143
ER_DD_UPGRADE_INFO_FILE_CLOSE_FAILED error ER_DEPENDENT_BY_CHECK_CONSTRAINT error
code, 200 code, 110
ER_DD_UPGRADE_INFO_FILE_OPEN_FAILED error ER_DEPENDENT_BY_DEFAULT_GENERATED_VALUE
code, 200 error code, 95
ER_DD_UPGRADE_OFF error code, 206 ER_DEPENDENT_BY_FUNCTIONAL_INDEX error
ER_DD_UPGRADE_RENAME_IDX_STATS_FILE_FAILED code, 100
error code, 199 ER_DEPENDENT_BY_GENERATED_COLUMN error
ER_DD_UPGRADE_SCHEMA_UNAVAILABLE error code, 68
code, 206 ER_DEPENDENT_BY_PARTITION_FUNC error code,
ER_DD_UPGRADE_SDI_INFO_UPDATE_FAILED error 102
code, 201 ER_DEPRECATED_NATIONAL error code, 91
ER_DD_UPGRADE_SE_LOGS_FAILED error code, 200 ER_DEPRECATED_PERSISTED_VARIABLE_WITH_ALIAS
ER_DD_UPGRADE_START error code, 200 error code, 390
ER_DD_UPGRADE_TABLESPACE_MIGRATION_FAILED ER_DEPRECATED_SYNTAX_NO_REPLACEMENT
error code, 200 error code, 205
ER_DD_UPGRADE_TABLE_INTACT_ERROR error ER_DEPRECATED_SYNTAX_WITH_REPLACEMENT
code, 204 error code, 205
539
ER_DEPRECATED_TIMESTAMP_IMPLICIT_DEFAULTS ER_DUP_LIST_ENTRY error code, 62
error code, 144 ER_DUP_SIGNAL_SET error code, 43
ER_DEPRECATED_UTF8_ALIAS error code, 91 ER_DUP_UNIQUE error code, 14
ER_DEPRECATE_MSG_NO_REPLACEMENT error ER_DUP_UNKNOWN_IN_INDEX error code, 58
code, 205 ER_EMPTY_PIPELINE_FOR_ERROR_LOG_SERVICE
ER_DEPRECATE_MSG_WITH_REPLACEMENT error error code, 90
code, 193 ER_EMPTY_PRIVILEGE_NAME_IGNORED error code,
ER_DEPRECATE_NON_COMPOSABLE_MULTIPLE_ENGINE 381
error code, 137 ER_EMPTY_QUERY error code, 7
ER_DERIVED_MUST_HAVE_ALIAS error code, 19 ER_ENDING_INIT error code, 346
ER_DES_FILE_WRONG_KEY error code, 153 ER_END_INITFILE error code, 148
ER_DETACHED_SESSIONS_LEFT_BY_PLUGIN error ER_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_G
code, 171 error code, 69
ER_DETACHING_SESSION_LEFT_BY_PLUGIN error ER_ENGINE_ATTRIBUTE_NOT_SUPPORTED error
code, 171 code, 111
ER_DIAG_LOG_STRING error code, 433 ER_ENGINE_CANNOT_BE_DEFAULT error code, 135
ER_DIMENSION_UNSUPPORTED error code, 65 ER_ENGINE_CANT_DROP_MISSING_TABLE error
ER_DISABLED_STORAGE_ENGINE error code, 72 code, 83
ER_DISABLED_STORAGE_ENGINE_AS_DEFAULT ER_ENGINE_CANT_DROP_TABLE error code, 83
error code, 141 ER_ENGINE_COST_FAILED_TO_READ error code,
ER_DISABLE_AUTO_POSITION_REQUIRES_ASYNC_RECONNECT_OFF
169
error code, 112 ER_ENGINE_COST_INVALID_CONST_CONSTANT_FOR_SE_AND_
ER_DISABLE_GTID_MODE_REQUIRES_ASYNC_RECONNECT_OFF
error code, 169
error code, 112 ER_ENGINE_COST_INVALID_DEVICE_TYPE_FOR_SE
ER_DISALLOWED_OPERATION error code, 87 error code, 169
ER_DISCARD_FK_CHECKS_RUNNING error code, 54 ER_ENGINE_COST_UNKNOWN_COST_CONSTANT
ER_DISCONNECTING_REMAINING_CLIENTS error error code, 168
code, 147 ER_ENGINE_COST_UNKNOWN_STORAGE_ENGINE
ER_DISK_FULL_NOWAIT error code, 88 error code, 169
ER_DIVISION_BY_ZERO error code, 27 ER_ENGINE_OUT_OF_MEMORY error code, 61
ER_DONT_SUPPORT_REPLICA_PRESERVE_COMMIT_ORDER ER_ERRMSG_CANT_FIND_FILE error code, 162
error code, 62 ER_ERRMSG_CANT_READ error code, 162
ER_DROP_DATABASE_FAILED_RMDIR_MANUALLY ER_ERRMSG_MISSING_IN_FILE error code, 162
error code, 205 ER_ERRMSG_OOM error code, 162
ER_DROP_FILEGROUP_FAILED error code, 37 ER_ERRMSG_REPLACEMENTS_FAILED error code,
ER_DROP_INDEX_FK error code, 38 191
ER_DROP_LAST_PARTITION error code, 36 ER_ERRMSG_REPLACEMENT_DODGY error code,
ER_DROP_PARTITION_NON_EXISTENT error code, 35 191
ER_DROP_PK_COLUMN_TO_DROP_GIPK error code, ER_ERROR_DURING_COMMIT error code, 15
122 ER_ERROR_DURING_FLUSH_LOGS error code, 15
ER_DUPLICATED_VALUE_IN_TYPE error code, 22 ER_ERROR_DURING_FLUSH_LOG_COMMIT_PHASE
ER_DUPLICATE_OPTION_KEY error code, 80 error code, 205
ER_DUPLICATE_SYS_VAR error code, 347 ER_ERROR_DURING_OPTIMIZE_TABLE error code,
ER_DUPLICATE_TABLE_LOCK error code, 81 182
ER_DUP_ARGUMENT error code, 18 ER_ERROR_DURING_ROLLBACK error code, 15
ER_DUP_ENTRY error code, 7 ER_ERROR_ENABLING_KEYS error code, 182
ER_DUP_ENTRY_AUTOINCREMENT_CASE error ER_ERROR_INFO_FROM_DA error code, 343
code, 39 ER_ERROR_IN_TRIGGER_BODY error code, 47
ER_DUP_ENTRY_WITH_KEY_NAME error code, 40 ER_ERROR_IN_UNKNOWN_TRIGGER_BODY error
ER_DUP_FD_OPEN_FAILED error code, 195 code, 47
ER_DUP_FIELDNAME error code, 7 ER_ERROR_LOG_DESTINATION_NOT_A_FILE error
ER_DUP_INDEX error code, 56 code, 381
ER_DUP_KEY error code, 4 ER_ERROR_ON_MODIFYING_GTID_EXECUTED_TABLE
ER_DUP_KEYNAME error code, 7 error code, 74
540
ER_ERROR_ON_READ error code, 4 ER_EXCEEDED_MV_KEYS_SPACE error code, 105
ER_ERROR_ON_RENAME error code, 5 ER_EXCEEDS_VECTOR_MAX_DIMENSIONS error
ER_ERROR_ON_SOURCE error code, 60 code, 136
ER_ERROR_ON_WRITE error code, 5 ER_EXCEPTIONS_WRITE_ERROR error code, 42
ER_ERROR_WHEN_EXECUTING_COMMAND error ER_EXCESS_ARGUMENTS error code, 149
code, 18 ER_EXPLAIN_ANALYZE_JSON_FORMAT_VERSION_NOT_SUP
ER_EVENT_ALREADY_EXISTS error code, 37 error code, 137
ER_EVENT_CANNOT_ALTER_IN_THE_PAST error ER_EXPLAIN_INTO_FORMAT_NOT_SUPPORTED
code, 40 error code, 127
ER_EVENT_CANNOT_CREATE_IN_THE_PAST error ER_EXPLAIN_INTO_FOR_CONNECTION_NOT_SUPPORTED
code, 40 error code, 127
ER_EVENT_CANT_FIND_TIMEZONE error code, 184 ER_EXPLAIN_INTO_IMPLICIT_FORMAT_NOT_SUPPORTED
ER_EVENT_CANT_GET_CHARSET error code, 184 error code, 127
ER_EVENT_CANT_GET_COLLATION error code, 184 ER_EXPLAIN_NOT_SUPPORTED error code, 61
ER_EVENT_CANT_GET_LOCK_FOR_DROPPING_EVENTER_FAILED_DEFAULT_ROLES error code, 78
error code, 185 ER_FAILED_GET_DD_PROPERTY error code, 416
ER_EVENT_CANT_GET_TIMEZONE_FROM_FIELD ER_FAILED_READ_FROM_PAR_FILE error code, 46
error code, 184 ER_FAILED_REVOKE_ROLE error code, 78
ER_EVENT_CANT_INIT_QUEUE error code, 141 ER_FAILED_ROLE_GRANT error code, 77
ER_EVENT_CANT_OPEN_TABLE_MYSQL_EVENT ER_FAILED_SET_DD_PROPERTY error code, 416
error code, 184 ER_FAILED_START_MYSQLD_DAEMON error code,
ER_EVENT_DOES_NOT_EXIST error code, 37 195
ER_EVENT_DROPPING error code, 170 ER_FAILED_TO_ACQUIRE_LOCK_ON_RESOURCE_GROUP
ER_EVENT_ENDS_BEFORE_STARTS error code, 37 error code, 198
ER_EVENT_ERROR_CREATING_QUERY_TO_WRITE_TO_BINLOG
ER_FAILED_TO_ADD_RESOURCE_GROUP_TO_MAP
error code, 185 error code, 197
ER_EVENT_ERROR_DURING_COMPILATION error ER_FAILED_TO_ADD_RPL_FILTER error code, 202
code, 170 ER_FAILED_TO_ALLOCATE_MEMORY_FOR_RESOURCE_GR
ER_EVENT_EXECUTION_FAILED error code, 142 error code, 197
ER_EVENT_EXECUTION_FAILED_CANT_AUTHENTICATE_USER
ER_FAILED_TO_ALLOCATE_MEMORY_FOR_RESOURCE_GR
error code, 169 error code, 197
ER_EVENT_EXECUTION_FAILED_USER_LOST_EVEN_PRIVILEGE
ER_FAILED_TO_ALLOCATE_SSL_BIO error code, 346
error code, 170 ER_FAILED_TO_APPLY_RESOURCE_GROUP_CONTROLLER
ER_EVENT_EXEC_TIME_IN_THE_PAST error code, 38 error code, 198
ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG ER_FAILED_TO_BINLOG_DROP_EVENT error code,
error code, 37 201
ER_EVENT_INVALID_CREATION_CTX error code, 41 ER_FAILED_TO_BUILD_DO_AND_IGNORE_TABLE_HASHES
ER_EVENT_LAST_EXECUTION error code, 141 error code, 202
ER_EVENT_MESSAGE_STACK error code, 141 ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE
ER_EVENT_PURGING_QUEUE error code, 141 error code, 166
ER_EVENT_RECURSION_FORBIDDEN error code, 39 ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE_OOM
ER_EVENT_SAME_NAME error code, 38 error code, 166
ER_EVENT_SCHEDULER_ERROR_GETTING_EVENT_OBJECT ER_FAILED_TO_CONSTRUCT_DROP_EVENT_QUERY
error code, 185 error code, 201
ER_EVENT_SCHEDULER_ERROR_LOADING_FROM_DBER_FAILED_TO_CREATE_GTID_TABLE_COMPRESSION_THR
error code, 185 error code, 166
ER_EVENT_SCHEDULER_GOT_BAD_DATA_FROM_TABLE ER_FAILED_TO_CREATE_RPL_OPT_TRACKER_THREAD
error code, 185 error code, 433
ER_EVENT_SET_VAR_ERROR error code, 39 ER_FAILED_TO_CREATE_SDI_FOR_TABLESPACE
ER_EVENT_UNABLE_TO_DROP_EVENT error code, error code, 199
185 ER_FAILED_TO_DECREMENT_NUMBER_OF_THREADS
ER_EXCEEDED_MAX_REGULAR_STATEMENT_HANDLE_LIMITerror code, 171
error code, 137 ER_FAILED_TO_DELETE_FROM_GTID_EXECUTED_TABLE
ER_EXCEEDED_MV_KEYS_NUM error code, 105 error code, 166
541
ER_FAILED_TO_DESERIALIZE_RESOURCE_GROUP ER_FIELD_IN_GROUPING_NOT_GROUP_BY error
error code, 197 code, 83
ER_FAILED_TO_DETERMINE_IF_ROLE_IS_MANDATORYER_FIELD_IN_ORDER_NOT_SELECT error code, 65
error code, 109 ER_FIELD_NOT_FOUND_PART_ERROR error code, 34
ER_FAILED_TO_FETCH_MANDATORY_ROLE_LIST ER_FIELD_SPECIFIED_TWICE error code, 10
error code, 109 ER_FIELD_TYPE_NOT_ALLOWED_AS_PARTITION_FIELD
ER_FAILED_TO_FIND_COLLATION_NAME error code, error code, 44
194 ER_FILEGROUP_OPTION_ONLY_ONCE error code, 37
ER_FAILED_TO_FIND_DL_ENTRY error code, 192 ER_FILE_CORRUPT error code, 60
ER_FAILED_TO_FIND_LOCALE_NAME error code, 194 ER_FILE_EXISTS_DURING_UPGRADE error code, 185
ER_FAILED_TO_FIND_MYSQLD_STATUS error code, ER_FILE_EXISTS_ERROR error code, 9
204 ER_FILE_HAS_OLD_FORMAT error code, 194
ER_FAILED_TO_GENERATE_UNIQUE_LOGFILE error ER_FILE_NOT_FOUND error code, 4
code, 192 ER_FILE_TYPE_UNKNOWN error code, 163
ER_FAILED_TO_GET_ABSOLUTE_PATH error code, ER_FILE_USED error code, 5
195 ER_FIREWALL_ACCESS_DENIED error code, 214
ER_FAILED_TO_HANDLE_DEFAULTS_FILE error ER_FIREWALL_DEPRECATED_USER_PROFILE error
code, 347 code, 388
ER_FAILED_TO_INIT_SYS_VAR error code, 347 ER_FIREWALL_FAILED_TO_READ_FIREWALL_TABLES
ER_FAILED_TO_INIT_THREAD_ATTR_FOR_GTID_TABLE_COMPRESSION
error code, 213
error code, 166 ER_FIREWALL_FAILED_TO_REG_DYNAMIC_PRIVILEGES
ER_FAILED_TO_JOIN_GTID_TABLE_COMPRESSION_THREAD
error code, 214
error code, 166 ER_FIREWALL_INVALID_RELOAD_INTERVAL_VALUE
ER_FAILED_TO_LOCK_MEM error code, 148 error code, 419
ER_FAILED_TO_OPEN_COST_CONSTANT_TABLES ER_FIREWALL_PFS_TABLE_REGISTER_FAILED error
error code, 169 code, 385
ER_FAILED_TO_OPEN_SHARED_LIBRARY error code, ER_FIREWALL_RECORDING_STMT_WAS_TRUNCATED
192 error code, 214
ER_FAILED_TO_PERSIST_RESOURCE_GROUP_METADATA ER_FIREWALL_RECORDING_STMT_WITHOUT_TEXT
error code, 197 error code, 214
ER_FAILED_TO_READ_FILE error code, 192 ER_FIREWALL_RELOADING_CACHE error code, 214
ER_FAILED_TO_REMOVE_TEMP_TABLE error code, ER_FIREWALL_RESET_FOR_USER error code, 214
180 ER_FIREWALL_SCHEDULER_REGISTER_FAILED
ER_FAILED_TO_REPAIR_TABLE error code, 180 error code, 419
ER_FAILED_TO_SET_PERSISTED_OPTIONS error ER_FIREWALL_SERVICES_NOT_ACQUIRED error
code, 205 code, 385
ER_FAILED_TO_START_REPLICA_THREAD error ER_FIREWALL_SKIPPED_UNKNOWN_USER_MODE
code, 201 error code, 214
ER_FAILED_TO_STORE_SDI_FOR_TABLESPACE ER_FIREWALL_STATUS_FLUSHED error code, 214
error code, 199 ER_FIREWALL_SUSPICIOUS_STMT error code, 214
ER_FAILED_TO_UPDATE_RESOURCE_GROUP error ER_FIREWALL_UDF_REGISTER_FAILED error code,
code, 197 385
ER_FAILED_TO_VALIDATE_CERTIFICATES_SERVER_EXITER_FIXING_CLIENT_CHARSET error code, 148
error code, 417 ER_FK_CANNOT_CHANGE_ENGINE error code, 95
ER_FAILED_TO_WRITE_TO_FILE error code, 193 ER_FK_CANNOT_DROP_PARENT error code, 92
ER_FAIL_CHROOT error code, 147 ER_FK_CANNOT_OPEN_PARENT error code, 55
ER_FAIL_SETGID error code, 147 ER_FK_CANNOT_USE_VIRTUAL_COLUMN error code,
ER_FAIL_SETREGID error code, 147 92
ER_FAIL_SETREUID error code, 147 ER_FK_COLUMN_CANNOT_CHANGE error code, 56
ER_FAIL_SETUID error code, 147 ER_FK_COLUMN_CANNOT_CHANGE_CHILD error
ER_FEATURE_DISABLED error code, 22 code, 56
ER_FEATURE_DISABLED_SEE_DOC error code, 73 ER_FK_COLUMN_CANNOT_DROP error code, 56
ER_FEATURE_NOT_AVAILABLE error code, 68 ER_FK_COLUMN_CANNOT_DROP_CHILD error code,
ER_FEATURE_UNSUPPORTED error code, 87 56
542
ER_FK_COLUMN_NOT_NULL error code, 56 ER_FUNCTIONAL_INDEX_ON_LOB error code, 94
ER_FK_DEPTH_EXCEEDED error code, 61 ER_FUNCTIONAL_INDEX_PRIMARY_KEY error code,
ER_FK_DUP_NAME error code, 56 94
ER_FK_FAIL_ADD_SYSTEM error code, 55 ER_FUNCTIONAL_INDEX_REF_AUTO_INCREMENT
ER_FK_INCOMPATIBLE_COLUMNS error code, 96 error code, 94
ER_FK_INCORRECT_OPTION error code, 56 ER_FUNCTIONAL_INDEX_ROW_VALUE_IS_NOT_ALLOWED
ER_FK_NO_COLUMN_PARENT error code, 92 error code, 97
ER_FK_NO_INDEX_CHILD error code, 55 ER_FUNCTION_DOES_NOT_SUPPORT_CHARACTER_SET
ER_FK_NO_INDEX_PARENT error code, 55 error code, 112
ER_FK_NO_UNIQUE_INDEX_PARENT error code, 135 ER_FUNCTION_NOT_DEFINED error code, 12
ER_FORBID_SCHEMA_CHANGE error code, 32 ER_FUNC_INEXISTENT_NAME_COLLISION error
ER_FORCE_CLOSE_THREAD error code, 193 code, 42
ER_FORCING_CLOSE error code, 8 ER_FUTURE_DATE error code, 146
ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST error ER_GENERATED_COLUMN_FUNCTION_IS_NOT_ALLOWED
code, 31 error code, 68
ER_FOREIGN_DATA_STRING_INVALID error code, 31 ER_GENERATED_COLUMN_NAMED_FUNCTION_IS_NOT_ALL
ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE error code, 94
error code, 31 ER_GENERATED_COLUMN_NON_PRIOR error code,
ER_FOREIGN_DUPLICATE_KEY_OLD_UNUSED error 68
code, 38 ER_GENERATED_COLUMN_REF_AUTO_INC error
ER_FOREIGN_DUPLICATE_KEY_WITHOUT_CHILD_INFOcode, 68
error code, 51 ER_GENERATED_COLUMN_ROW_VALUE error code,
ER_FOREIGN_DUPLICATE_KEY_WITH_CHILD_INFO 95
error code, 51 ER_GENERATED_COLUMN_VARIABLES error code,
ER_FOREIGN_KEY_ON_PARTITIONED error code, 35 95
ER_FOREIGN_KEY_WITH_ATOMIC_CREATE_SELECT ER_GEOMETRY_IN_UNKNOWN_LENGTH_UNIT error
error code, 111 code, 104
ER_FOREIGN_SERVER_DOESNT_EXIST error code, ER_GEOMETRY_PARAM_LATITUDE_OUT_OF_RANGE
34 error code, 92
ER_FOREIGN_SERVER_EXISTS error code, 34 ER_GEOMETRY_PARAM_LONGITUDE_OUT_OF_RANGE
ER_FOUND_MISSING_GTIDS error code, 259 error code, 92
ER_FOUND_ROWS_WHILE_REPAIRING error code, ER_GET_ERRMSG error code, 22
182 ER_GET_ERRNO error code, 5
ER_FPARSER_BAD_HEADER error code, 25 ER_GET_ERRNO_FROM_STORAGE_ENGINE error
ER_FPARSER_EOF_IN_COMMENT error code, 25 code, 194
ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER ER_GET_STACKED_DA_WITHOUT_ACTIVE_HANDLER
error code, 26 error code, 60
ER_FPARSER_ERROR_IN_PARAMETER error code, ER_GET_TEMPORARY_ERRMSG error code, 22
25 ER_GIPK_COLUMN_ALTER_NOT_ALLOWED error
ER_FPARSER_TOO_BIG_FILE error code, 25 code, 122
ER_FSEEK_FAIL error code, 27 ER_GIPK_COLUMN_EXISTS error code, 122
ER_FT_BOOL_SYNTAX_INVALID error code, 144 ER_GIPK_FAILED_AUTOINC_COLUMN_EXISTS error
ER_FT_MATCHING_KEY_NOT_FOUND error code, 16 code, 122
ER_FULLTEXT_FUNCTIONAL_INDEX error code, 94 ER_GIS_DATA_WRONG_ENDIANESS error code, 64
ER_FULLTEXT_NOT_SUPPORTED_WITH_PARTITIONINGER_GIS_DIFFERENT_SRIDS error code, 63
error code, 51 ER_GIS_DIFFERENT_SRIDS_AGGREGATION error
ER_FULLTEXT_WITH_ROLLUP error code, 120 code, 116
ER_FUNCTIONAL_INDEX_DATA_IS_TOO_LONG error ER_GIS_INVALID_DATA error code, 63
code, 106 ER_GIS_MAX_POINTS_IN_GEOMETRY_OVERFLOWED
ER_FUNCTIONAL_INDEX_FUNCTION_IS_NOT_ALLOWED error code, 70
error code, 94 ER_GIS_UNKNOWN_ERROR error code, 63
ER_FUNCTIONAL_INDEX_ON_FIELD error code, 94 ER_GIS_UNKNOWN_EXCEPTION error code, 63
ER_FUNCTIONAL_INDEX_ON_JSON_OR_GEOMETRY_FUNCTION
ER_GIS_UNSUPPORTED_ARGUMENT error code, 63
error code, 94 ER_GLOBAL_CONN_LIMIT error code, 396
543
ER_GLOBAL_VARIABLE error code, 18 ER_GROUP_REPLICATION_METADATA_CERT_INFO_PACKET_CO
ER_GLOBSTAT_CHANGE_DURING_QUERY error error code, 423
code, 106 ER_GROUP_REPLICATION_METADATA_CERT_INFO_PACKET_EM
ER_GNO_EXHAUSTED error code, 52 error code, 422
ER_GRANT_WRONG_HOST_OR_USER error code, 13 ER_GROUP_REPLICATION_METADATA_ERROR_ON_SEND_ERR
ER_GROUPING_ON_TIMESTAMP_IN_DST error code, error code, 423
106 ER_GROUP_REPLICATION_METADATA_INITIALIZATION_FAILURE
ER_GROUP_REPLICATION_APPLIER_INIT_ERROR error code, 423
error code, 67 ER_GROUP_REPLICATION_METADATA_MEMORY_ALLOC
ER_GROUP_REPLICATION_CERTIFICATION_MODULE_FAILURE
error code, 423
error code, 423 ER_GROUP_REPLICATION_METADATA_MESSAGE_PAYLOAD_EM
ER_GROUP_REPLICATION_CERTIFIER_MESSAGE_LARGEerror code, 422
error code, 420 ER_GROUP_REPLICATION_METADATA_NO_VALID_DONOR
ER_GROUP_REPLICATION_COMMAND_FAILURE error code, 424
error code, 87 ER_GROUP_REPLICATION_METADATA_PAYLOAD_DECODING
ER_GROUP_REPLICATION_COMMUNICATION_LAYER_JOIN_ERROR
error code, 422
error code, 67 ER_GROUP_REPLICATION_METADATA_PAYLOAD_EMPTY
ER_GROUP_REPLICATION_COMMUNICATION_LAYER_SESSION_ERROR
error code, 422
error code, 67 ER_GROUP_REPLICATION_METADATA_PROTOBUF_PARSING
ER_GROUP_REPLICATION_COMPRESS_EXCEEDS_MAX_SIZE
error code, 421
error code, 420 ER_GROUP_REPLICATION_METADATA_READ_GTID_EXECUTED
ER_GROUP_REPLICATION_COMPRESS_OUT_OF_MEMORY error code, 422
error code, 420 ER_GROUP_REPLICATION_METADATA_SAVE_RECOVERY_COP
ER_GROUP_REPLICATION_COMPRESS_PROCESS error code, 422
error code, 420 ER_GROUP_REPLICATION_METADATA_SENDER
ER_GROUP_REPLICATION_CONFIGURATION error error code, 420
code, 67 ER_GROUP_REPLICATION_METADATA_SENDER_IS_REMOTE
ER_GROUP_REPLICATION_DECOMPRESS_CORRUPTED error code, 420
error code, 421 ER_GROUP_REPLICATION_METADATA_SEND_ERROR
ER_GROUP_REPLICATION_DECOMPRESS_END error code, 422
error code, 421 ER_GROUP_REPLICATION_METADATA_SET_IN_RECOVERY_FAI
ER_GROUP_REPLICATION_DECOMPRESS_EXCEEDS_MAX_SIZE
error code, 423
error code, 421 ER_GROUP_REPLICATION_NO_CERTIFICATION_DONOR_AVAILA
ER_GROUP_REPLICATION_DECOMPRESS_OUT_OF_MEMORY
error code, 424
error code, 421 ER_GROUP_REPLICATION_PASSWORD_LENGTH
ER_GROUP_REPLICATION_DECOMPRESS_PROCESS error code, 111
error code, 421 ER_GROUP_REPLICATION_PLUGIN_NOT_INSTALLED
ER_GROUP_REPLICATION_DECOMPRESS_TRUNCATED error code, 165
error code, 421 ER_GROUP_REPLICATION_PROTOBUF_SERIALIZING_ERROR
ER_GROUP_REPLICATION_ERROR_COMPRESS_INITIALIZE
error code, 421
error code, 420 ER_GROUP_REPLICATION_RECOVERY_ERROR_ADD_GTID_EXE
ER_GROUP_REPLICATION_ERROR_DECOMPRESS_INITIALIZE
error code, 423
error code, 420 ER_GROUP_REPLICATION_RECOVERY_FETCHING_GTID_EXECU
ER_GROUP_REPLICATION_ERROR_RECEIVED_WAITING_METADATA
error code, 423
error code, 422 ER_GROUP_REPLICATION_RECOVERY_METADATA_SENDER_N
ER_GROUP_REPLICATION_FORCE_MEMBERS_COMMAND_FAILURE
error code, 423
error code, 123 ER_GROUP_REPLICATION_RECOVERY_SKIPPED_GTID_PRESEN
ER_GROUP_REPLICATION_MAX_GROUP_SIZE error error code, 423
code, 75 ER_GROUP_REPLICATION_RECOVERY_STOPPED_GTID_PRESE
ER_GROUP_REPLICATION_METADATA_CERT_INFO_ENCODING_ERROR
error code, 424
error code, 423 ER_GROUP_REPLICATION_RUNNING error code, 67
ER_GROUP_REPLICATION_METADATA_CERT_INFO_ERROR_PROCESSING
ER_GROUP_REPLICATION_STOP_APPLIER_THREAD_TIMEOUT
error code, 422 error code, 67
544
ER_GROUP_REPLICATION_TIMEOUT_ERROR_FETCHING_METADATA
ER_GRP_RPL_APPLIER_THD_EXECUTION_ABORTED
error code, 422 error code, 231
ER_GROUP_REPLICATION_UNKOWN_COMPRESSION_TYPE ER_GRP_RPL_APPLIER_THD_KILLED error code, 230
error code, 420 ER_GRP_RPL_APPLIER_THD_SETUP_ERROR error
ER_GROUP_REPLICATION_USER_EMPTY_MSG error code, 237
code, 110 ER_GRP_RPL_APPLIER_THD_START_ERROR error
ER_GROUP_REPLICATION_USER_MANDATORY_MSG code, 237
error code, 111 ER_GRP_RPL_APPLIER_THD_STOP_ERROR error
ER_GRP_OPERATION_NOT_ALLOWED_GR_MUST_STOP code, 237
error code, 110 ER_GRP_RPL_APPOINTED_PRIMARY_NOT_PRESENT
ER_GRP_RPL_ABORTS_AS_SSL_NOT_SUPPORTED_BY_MYSQLD
error code, 348
error code, 248 ER_GRP_RPL_AUTO_INC_OFFSET_RESET error
ER_GRP_RPL_ADD_GRPSID_TO_GRPGTIDSID_MAP_ERROR code, 238
error code, 231 ER_GRP_RPL_AUTO_INC_OFFSET_SET error code,
ER_GRP_RPL_ADD_GTID_INFO_WITHOUT_LOCAL_GTID_FAILED
238
error code, 239 ER_GRP_RPL_AUTO_INC_RESET error code, 238
ER_GRP_RPL_ADD_GTID_INFO_WITHOUT_REMOTE_GTID_FAILED
ER_GRP_RPL_AUTO_INC_SET error code, 238
error code, 239 ER_GRP_RPL_BINLOG_DISABLED error code, 248
ER_GRP_RPL_ADD_GTID_INFO_WITH_LOCAL_GTID_FAILEDER_GRP_RPL_BLOCK_SIZE_DIFF_FROM_GRP error
error code, 239 code, 237
ER_GRP_RPL_ADD_GTID_INFO_WITH_REMOTE_GTID_FAILED
ER_GRP_RPL_BROADCASTING_TRANS_TO_GRP_FAILED
error code, 239 error code, 244
ER_GRP_RPL_ADD_GTID_TO_GRPGTID_EXECUTED_ERROR ER_GRP_RPL_BROADCAST_COMMIT_MSSG_TOO_BIG
error code, 232 error code, 252
ER_GRP_RPL_ADD_RETRIEVED_SET_TO_GRP_GTID_EXECUTED_ERROR
ER_GRP_RPL_BROADCAST_COMMIT_TRANS_MSSG_FAILED
error code, 232 error code, 231
ER_GRP_RPL_ADD_VIEW_CHANGE_UUID_TO_GRP_SID_MAP_ERROR
ER_GRP_RPL_CANNOT_EXECUTE_TRANS_IN_ERROR_STAT
error code, 390 error code, 243
ER_GRP_RPL_ALL_DONORS_LEFT_ABORT_RECOVERYER_GRP_RPL_CANNOT_EXECUTE_TRANS_IN_OFFLINE_MO
error code, 240 error code, 243
ER_GRP_RPL_ALL_OBSERVERS_UNREGISTERED ER_GRP_RPL_CANNOT_EXECUTE_TRANS_WHILE_RECOVE
error code, 247 error code, 242
ER_GRP_RPL_APPLIER_CHANNEL_STILL_RUNNING ER_GRP_RPL_CANNOT_EXECUTE_TRANS_WHILE_STOPPIN
error code, 384 error code, 242
ER_GRP_RPL_APPLIER_ERROR_PACKET_RECEIVED ER_GRP_RPL_CANT_GENERATE_GTID error code,
error code, 425 232
ER_GRP_RPL_APPLIER_EXECUTION_FATAL_ERROR ER_GRP_RPL_CANT_KILL_THREAD error code, 366
error code, 231 ER_GRP_RPL_CANT_READ_GRP_GTID_EXTRACTED
ER_GRP_RPL_APPLIER_HANDLER_IS_IN_USE error error code, 233
code, 250 ER_GRP_RPL_CANT_READ_GTID error code, 233
ER_GRP_RPL_APPLIER_HANDLER_NOT_INITIALIZED ER_GRP_RPL_CANT_READ_WRITE_SET_ITEM error
error code, 250 code, 233
ER_GRP_RPL_APPLIER_HANDLER_ROLE_IS_IN_USE ER_GRP_RPL_CERTIFICATION_INITIALIZATION_FAILURE
error code, 250 error code, 232
ER_GRP_RPL_APPLIER_INITIALIZED error code, 248 ER_GRP_RPL_CERTIFICATION_REC_PROCESS error
ER_GRP_RPL_APPLIER_METADATA_REPO_MUST_BE_TABLE code, 244
error code, 248 ER_GRP_RPL_CERTIFIER_MSSG_PROCESS_ERROR
ER_GRP_RPL_APPLIER_NOT_STARTED_DUE_TO_RUNNING_PREV_SHUTDOWN
error code, 233
error code, 248 ER_GRP_RPL_CHANGE_GRP_MEM_NOT_PROCESSED
ER_GRP_RPL_APPLIER_PIPELINE_NOT_DISPOSED error code, 234
error code, 231 ER_GRP_RPL_CHANNEL_THREAD_WHEN_GROUP_ACTION_
ER_GRP_RPL_APPLIER_TERMINATION_TIMED_OUT_ON_SHUTDOWN
error code, 348
error code, 246 ER_GRP_RPL_CHECK_STATUS_TABLE error code,
241
545
ER_GRP_RPL_CLONE_PROCESS_EXEC_ERROR ER_GRP_RPL_ERROR_FETCHING_GTID_SET error
error code, 366 code, 232
ER_GRP_RPL_CLONE_PROCESS_PREPARE_ERROR ER_GRP_RPL_ERROR_GTID_EXECUTION_INFO error
error code, 366 code, 230
ER_GRP_RPL_COMMUNICATION_SSL_CONF_INFO ER_GRP_RPL_ERROR_GTID_SET_EXTRACTION
error code, 248 error code, 348
ER_GRP_RPL_CONFIGURATION_ACTION_END error ER_GRP_RPL_ERROR_MSG error code, 219
code, 349 ER_GRP_RPL_ERROR_ON_CERT_DB_INSTALL error
ER_GRP_RPL_CONFIGURATION_ACTION_ERROR code, 357
error code, 348 ER_GRP_RPL_ERROR_ON_MESSAGE_SENDING
ER_GRP_RPL_CONFIGURATION_ACTION_KILLED_ERROR
error code, 348
error code, 349 ER_GRP_RPL_ERROR_SENDING_SINGLE_PRIMARY_MSSG
ER_GRP_RPL_CONFIGURATION_ACTION_LOCAL_TERMINATION
error code, 231
error code, 349 ER_GRP_RPL_ERROR_SET_MULTI_CONSENSUS_LEADER
ER_GRP_RPL_CONFIGURATION_ACTION_START error code, 396
error code, 349 ER_GRP_RPL_ERROR_SET_SINGLE_CONSENSUS_LEADER
ER_GRP_RPL_CONFIG_RECOVERY error code, 241 error code, 395
ER_GRP_RPL_CONFLICT_DETECTION_DISABLED ER_GRP_RPL_ERROR_STOPPING_CHANNELS error
error code, 233 code, 231
ER_GRP_RPL_CONNECTION_METADATA_REPO_MUST_BE_TABLE
ER_GRP_RPL_ERROR_WHILE_WAITING_FOR_CONFLICT_DETEC
error code, 249 error code, 244
ER_GRP_RPL_CONN_INTERNAL_PLUGIN_FAIL error ER_GRP_RPL_ESTABLISHING_CONN_GRP_REC_DONOR
code, 240 error code, 241
ER_GRP_RPL_CONN_KILLED error code, 417 ER_GRP_RPL_ESTABLISH_RECOVERY_WITH_ANOTHER_DONO
ER_GRP_RPL_COPY_FROM_EMPTY_STRING error error code, 241
code, 240 ER_GRP_RPL_ESTABLISH_RECOVERY_WITH_DONOR
ER_GRP_RPL_CREATE_APPLIER_CACHE_ERROR error code, 241
error code, 230 ER_GRP_RPL_EVENT_HANDLING_ERROR error
ER_GRP_RPL_CREATE_GRP_RPL_REC_CHANNEL code, 230
error code, 241 ER_GRP_RPL_EXCEEDS_AUTO_INC_VALUE error
ER_GRP_RPL_CREATE_SESSION_UNABLE error code, 236
code, 240 ER_GRP_RPL_EXIT_GRP_GCS_ERROR error code,
ER_GRP_RPL_DATA_NOT_PROVIDED_BY_MEM error 252
code, 236 ER_GRP_RPL_FAILED_TO_BOOTSTRAP_EVENT_HANDLING_INF
ER_GRP_RPL_DEBUG_OPTIONS error code, 252 error code, 250
ER_GRP_RPL_DEFAULT_TABLE_ENCRYPTION_DIFF_FROM_GRP
ER_GRP_RPL_FAILED_TO_BROADCAST_GRP_MEMBERSHIP_NO
error code, 360 error code, 242
ER_GRP_RPL_DISABLE_READ_ONLY_FAILED error ER_GRP_RPL_FAILED_TO_BROADCAST_MEMBER_STATUS_NOT
code, 235 error code, 242
ER_GRP_RPL_DISABLE_SRV_READ_MODE_RESTRICTEDER_GRP_RPL_FAILED_TO_CALL_GRP_COMMUNICATION_INTER
error code, 234 error code, 245
ER_GRP_RPL_DONOR_CONN_TERMINATION error ER_GRP_RPL_FAILED_TO_CONFIRM_IF_SERVER_LEFT_GRP
code, 241 error code, 246
ER_GRP_RPL_DONOR_SERVER_CONN error code, ER_GRP_RPL_FAILED_TO_CREATE_TRANS_CONTEXT
241 error code, 243
ER_GRP_RPL_DONOR_TRANS_INFO_ERROR error ER_GRP_RPL_FAILED_TO_ENABLE_READ_ONLY_MODE_ON_SH
code, 231 error code, 246
ER_GRP_RPL_DONOR_VIEW_CHANGE_UUID_TRANS_INFO_ERROR
ER_GRP_RPL_FAILED_TO_ENABLE_SUPER_READ_ONLY_MODE
error code, 390 error code, 245
ER_GRP_RPL_ENABLE_READ_ONLY_FAILED error ER_GRP_RPL_FAILED_TO_EXTRACT_TRANS_WRITE_SET
code, 235 error code, 243
ER_GRP_RPL_ERROR_FETCHING_GTID_EXECUTED_SETER_GRP_RPL_FAILED_TO_GATHER_TRANS_WRITE_SET
error code, 232 error code, 243
546
ER_GRP_RPL_FAILED_TO_GENERATE_SIDNO_FOR_GRPER_GRP_RPL_FAILOVER_CONF_DEFAULT_CONFIGURATION
error code, 248 error code, 392
ER_GRP_RPL_FAILED_TO_GENERATE_SIDNO_FOR_VIEW_CHANGE_UUID
ER_GRP_RPL_FAILOVER_CONF_GET_EXCHANGEABLE_DAT
error code, 389 error code, 392
ER_GRP_RPL_FAILED_TO_INIT_APPLIER_HANDLER ER_GRP_RPL_FAILOVER_CONF_PARSE_ON_MEMBER_JOIN
error code, 250 error code, 392
ER_GRP_RPL_FAILED_TO_INIT_APPLIER_MODULE ER_GRP_RPL_FAILOVER_CONF_UNABLE_TO_SET_DEFAULT
error code, 248 error code, 392
ER_GRP_RPL_FAILED_TO_INIT_COMMUNICATION_ENGINE
ER_GRP_RPL_FAILOVER_PRIMARY_BACK_TO_MAJORITY
error code, 245 error code, 393
ER_GRP_RPL_FAILED_TO_INIT_HANDLER error ER_GRP_RPL_FAILOVER_PRIMARY_WITHOUT_MAJORITY
code, 247 error code, 393
ER_GRP_RPL_FAILED_TO_INSERT_TRX_ON_TCM_ON_AFTER_CERTIFICATION
ER_GRP_RPL_FAILOVER_REGISTER_MESSAGE_LISTENER_
error code, 355 error code, 392
ER_GRP_RPL_FAILED_TO_LOG_VIEW_CHANGE ER_GRP_RPL_FATAL_REC_PROCESS error code, 244
error code, 403 ER_GRP_RPL_FETCH_FORMAT_DESC_LOG_EVENT_FAILED
ER_GRP_RPL_FAILED_TO_NOTIFY_GRP_MEMBERSHIP_EVENT
error code, 239
error code, 242 ER_GRP_RPL_FETCH_GTID_LOG_EVENT_FAILED
ER_GRP_RPL_FAILED_TO_PARSE_THE_GRP_NAME error code, 239
error code, 247 ER_GRP_RPL_FETCH_LOG_EVENT_FAILED error
ER_GRP_RPL_FAILED_TO_PARSE_THE_VIEW_CHANGE_UUID
code, 240
error code, 389 ER_GRP_RPL_FETCH_SNAPSHOT_VERSION_FAILED
ER_GRP_RPL_FAILED_TO_REGISTER_BINLOG_STATE_OBSERVER
error code, 239
error code, 247 ER_GRP_RPL_FETCH_TRANS_CONTEXT_FAILED
ER_GRP_RPL_FAILED_TO_REGISTER_SERVER_STATE_OBSERVER
error code, 238
error code, 247 ER_GRP_RPL_FETCH_TRANS_CONTEXT_LOG_EVENT_FAILE
ER_GRP_RPL_FAILED_TO_REGISTER_TRANS_OUTCOME_NOTIFICTION
error code, 239
error code, 243 ER_GRP_RPL_FETCH_TRANS_DATA_FAILED error
ER_GRP_RPL_FAILED_TO_REGISTER_TRANS_STATE_OBSERVER
code, 237
error code, 247 ER_GRP_RPL_FETCH_VIEW_CHANGE_LOG_EVENT_FAILED
ER_GRP_RPL_FAILED_TO_REINIT_BINLOG_CACHE_FOR_READ
error code, 239
error code, 243 ER_GRP_RPL_FINISHED_AUTO_REJOIN error code,
ER_GRP_RPL_FAILED_TO_SHUTDOWN_REGISTRY_MODULE
360
error code, 247 ER_GRP_RPL_FK_WITH_CASCADE_UNSUPPORTED
ER_GRP_RPL_FAILED_TO_START_COMMUNICATION_ENGINE
error code, 238
error code, 245 ER_GRP_RPL_FLOW_CONTROL_STATS error code,
ER_GRP_RPL_FAILED_TO_START_ON_BOOT error 253
code, 247 ER_GRP_RPL_FLOW_CTRL_MAX_QUOTA_SMALLER_THAN_
ER_GRP_RPL_FAILED_TO_START_ON_SECONDARY_WITH_ASYNC_CHANNELS
error code, 249
error code, 245 ER_GRP_RPL_FLOW_CTRL_MIN_QUOTA_GREATER_THAN_M
ER_GRP_RPL_FAILED_TO_START_WITH_INVALID_SERVER_ID
error code, 249
error code, 245 ER_GRP_RPL_FLOW_CTRL_MIN_RECOVERY_QUOTA_GREA
ER_GRP_RPL_FAILED_TO_STOP_ON_PLUGIN_UNINSTALL
error code, 249
error code, 247 ER_GRP_RPL_FORCE_MEMBERS_MUST_BE_EMPTY
ER_GRP_RPL_FAILED_TO_UNREGISTER_BINLOG_STATE_OBSERVER
error code, 245
error code, 247 ER_GRP_RPL_FORCE_MEMBERS_WHEN_LEAVING
ER_GRP_RPL_FAILED_TO_UNREGISTER_SERVER_STATE_OBSERVER
error code, 357
error code, 247 ER_GRP_RPL_FORCE_MEMBER_VALUE_SET error
ER_GRP_RPL_FAILED_TO_UNREGISTER_TRANS_STATE_OBSERVER
code, 252
error code, 247 ER_GRP_RPL_FORCE_MEMBER_VALUE_SET_ERROR
ER_GRP_RPL_FAILOVER_CHANNEL_STATUS_PROPAGATION
error code, 252
error code, 117 ER_GRP_RPL_FORCE_MEMBER_VALUE_TIME_OUT
ER_GRP_RPL_FAILOVER_CONF_CHANNEL_DOES_NOT_EXIST
error code, 252
error code, 392 ER_GRP_RPL_GCS_GR_ERROR_MSG error code, 253
547
ER_GRP_RPL_GCS_INTERFACE_ERROR error code, ER_GRP_RPL_JOIN_WHEN_GROUP_ACTION_RUNNING
252 error code, 348
ER_GRP_RPL_GMS_LISTENER_FAILED_TO_LOG_NOTIFICATION
ER_GRP_RPL_KILLED_FAILED_ID error code, 240
error code, 252 ER_GRP_RPL_KILLED_SESSION_ID error code, 240
ER_GRP_RPL_GROUP_NAME_PARSE_ERROR error ER_GRP_RPL_LOCAL_GTID_SETS_PROCESS_ERROR
code, 231 error code, 236
ER_GRP_RPL_GROUP_NAME_SAME_AS_VIEW_CHANGE_UUID
ER_GRP_RPL_LOG_REPLICA_UPDATES_NOT_SET
error code, 389 error code, 248
ER_GRP_RPL_GRP_COMMUNICATION_ENG_INIT_FAILED ER_GRP_RPL_LOWER_CASE_TABLE_NAMES_DIFF_FROM_GRP
error code, 252 error code, 341
ER_GRP_RPL_GRP_COMMUNICATION_INIT_WITH_CONF ER_GRP_RPL_MAXIMUM_CONNECTION_RETRIES_REACHED
error code, 250 error code, 240
ER_GRP_RPL_GRP_MEMBER_OFFLINE error code, ER_GRP_RPL_MEMBER_ACTIONS_RESET error
252 code, 388
ER_GRP_RPL_GRP_NAME_IS_NOT_VALID_UUID ER_GRP_RPL_MEMBER_ACTION_DEFAULT_CONFIGURATION
error code, 249 error code, 388
ER_GRP_RPL_GRP_NAME_IS_SAME_AS_ANONYMOUS_TO_GTID_UUID
ER_GRP_RPL_MEMBER_ACTION_DISABLED error
error code, 384 code, 388
ER_GRP_RPL_GRP_NAME_IS_TOO_LONG error ER_GRP_RPL_MEMBER_ACTION_ENABLED error
code, 249 code, 388
ER_GRP_RPL_GRP_NAME_OPTION_MANDATORY ER_GRP_RPL_MEMBER_ACTION_FAILURE error
error code, 249 code, 387
ER_GRP_RPL_GRP_VIEW_CHANGE_UUID_IS_INCOMPATIBLE_WITH_SERVER_UUID
ER_GRP_RPL_MEMBER_ACTION_FAILURE_IGNORE
error code, 389 error code, 387
ER_GRP_RPL_GTID_ALREADY_USED error code, 230 ER_GRP_RPL_MEMBER_ACTION_GET_EXCHANGEABLE_DATA
ER_GRP_RPL_GTID_EXECUTED_EXTRACT_ERROR error code, 388
error code, 236 ER_GRP_RPL_MEMBER_ACTION_INVALID_ACTIONS_ON_MEMB
ER_GRP_RPL_GTID_MODE_OFF error code, 248 error code, 388
ER_GRP_RPL_GTID_PURGED_EXTRACT_ERROR ER_GRP_RPL_MEMBER_ACTION_PARSE_ON_MEMBER_JOIN
error code, 366 error code, 388
ER_GRP_RPL_GTID_SET_EXTRACT_ERROR error ER_GRP_RPL_MEMBER_ACTION_PARSE_ON_RECEIVE
code, 236 error code, 387
ER_GRP_RPL_GTID_SET_EXTRACT_ERROR_DURING_RECOVERY
ER_GRP_RPL_MEMBER_ACTION_TRIGGERED error
error code, 356 code, 387
ER_GRP_RPL_HAS_STARTED error code, 412 ER_GRP_RPL_MEMBER_ACTION_UNABLE_TO_SET_DEFAULT_C
ER_GRP_RPL_INCORRECT_TYPE_SET_FOR_PARALLEL_APPLIER
error code, 388
error code, 249 ER_GRP_RPL_MEMBER_ACTION_UPDATE_ACTIONS
ER_GRP_RPL_INIT_CERTIFICATION_INFO_FAILURE error code, 387
error code, 233 ER_GRP_RPL_MEMBER_ACTION_UPDATE_ACTIONS_ON_MEMB
ER_GRP_RPL_INTERNAL_QUERY error code, 240 error code, 388
ER_GRP_RPL_INVALID_BINLOG_FORMAT error code, ER_GRP_RPL_MEMBER_ADDED error code, 235
242 ER_GRP_RPL_MEMBER_ALREADY_EXISTS error
ER_GRP_RPL_INVALID_COMMUNICATION_PROTOCOL code, 236
error code, 360 ER_GRP_RPL_MEMBER_CFG_INCOMPATIBLE_WITH_GRP_CFG
ER_GRP_RPL_INVALID_DEBUG_OPTIONS error code, error code, 237
252 ER_GRP_RPL_MEMBER_CHANGE error code, 235
ER_GRP_RPL_INVALID_GTID_SET error code, 232 ER_GRP_RPL_MEMBER_CONF_INFO error code, 246
ER_GRP_RPL_INVALID_SSL_RECOVERY_STRING ER_GRP_RPL_MEMBER_CONTACT_RESTORED error
error code, 250 code, 234
ER_GRP_RPL_IS_STARTING error code, 375 ER_GRP_RPL_MEMBER_EXIT_PLUGIN_ERROR error
ER_GRP_RPL_IS_STOPPED error code, 246 code, 235
ER_GRP_RPL_IS_STOPPING error code, 246 ER_GRP_RPL_MEMBER_EXPELLED error code, 235
ER_GRP_RPL_JOINER_EXIT_WHEN_GROUP_ACTION_RUNNING
ER_GRP_RPL_MEMBER_INFO_DOES_NOT_EXIST
error code, 348 error code, 416
548
ER_GRP_RPL_MEMBER_LEFT_GRP error code, 235 ER_GRP_RPL_NULL_PACKET error code, 233
ER_GRP_RPL_MEMBER_NOT_FOUND error code, 240 ER_GRP_RPL_ONLY_ONE_SERVER_ALIVE error
ER_GRP_RPL_MEMBER_REMOVED error code, 234 code, 244
ER_GRP_RPL_MEMBER_SERVER_UUID_IS_INCOMPATIBLE_WITH_GRP
ER_GRP_RPL_OOM_FAILED_TO_GENERATE_IDENTIFICATIO
error code, 245 error code, 242
ER_GRP_RPL_MEMBER_STATS_INFO error code, 253 ER_GRP_RPL_PAXOS_SINGLE_LEADER_DIFF_FROM_GRP
ER_GRP_RPL_MEMBER_STOP_RPL_CHANNELS_ERROR error code, 396
error code, 237 ER_GRP_RPL_PAXOS_SINGLE_LEADER_DIFF_FROM_OLD_G
ER_GRP_RPL_MEMBER_TRANS_GREATER_THAN_GRPerror code, 410
error code, 237 ER_GRP_RPL_PIPELINE_CREATE_FAILED error code,
ER_GRP_RPL_MEMBER_VERSION_LOWER_THAN_GRP253
error code, 236 ER_GRP_RPL_PIPELINE_FLUSH_FAIL error code, 253
ER_GRP_RPL_MEMBER_VER_INCOMPATIBLE error ER_GRP_RPL_PIPELINE_REINIT_FAILED_READ error
code, 236 code, 253
ER_GRP_RPL_MEMBER_VER_READ_COMPATIBLE ER_GRP_RPL_PIPELINE_REINIT_FAILED_WRITE
error code, 364 error code, 253
ER_GRP_RPL_MEM_ONLINE error code, 234 ER_GRP_RPL_PLUGIN_ABORT error code, 346
ER_GRP_RPL_MEM_REACHABLE error code, 234 ER_GRP_RPL_PLUGIN_STRUCT_INIT_NOT_POSSIBLE_ON_S
ER_GRP_RPL_MEM_UNREACHABLE error code, 234 error code, 245
ER_GRP_RPL_MESSAGE_SERVICE_FATAL_ERROR ER_GRP_RPL_PREEMPTIVE_GARBAGE_COLLECTION_DIFF_
error code, 368 error code, 427
ER_GRP_RPL_MESSAGE_SERVICE_INIT_FAILURE ER_GRP_RPL_PRIMARY_ELECTION_PROCESS_ERROR
error code, 106 error code, 349
ER_GRP_RPL_MISSING_GRP_RPL_ACTION_COORDINATORER_GRP_RPL_PRIMARY_ELECTION_STOP_ERROR
error code, 348 error code, 349
ER_GRP_RPL_MISSING_GRP_RPL_APPLIER error ER_GRP_RPL_PRIMARY_KEY_NOT_DEFINED error
code, 233 code, 238
ER_GRP_RPL_MODULE_TERMINATE_ERROR error ER_GRP_RPL_PRIMARY_MEMBER_LEFT_GRP error
code, 249 code, 234
ER_GRP_RPL_MSG_DECODING_FAILED error code, ER_GRP_RPL_PROCESS_GTID_SET_ERROR error
425 code, 233
ER_GRP_RPL_MSG_DISCARDED error code, 233 ER_GRP_RPL_PROCESS_INTERSECTION_GTID_SET_ERROR
ER_GRP_RPL_MSG_TOO_LONG_BROADCASTING_TRANS_FAILED
error code, 233
error code, 244 ER_GRP_RPL_PURGE_APPLIER_LOGS error code,
ER_GRP_RPL_MULTIPLE_CACHE_TYPE_NOT_SUPPORTED_FOR_SESSION
237
error code, 243 ER_GRP_RPL_PURGE_REC error code, 241
ER_GRP_RPL_MYSQL_NETWORK_PROVIDER_CLIENT_ERROR_COMMAND_ERR
ER_GRP_RPL_QUERY_FAIL error code, 240
error code, 392 ER_GRP_RPL_READ_UNABLE_FOR_READ_ONLY_SUPER_RE
ER_GRP_RPL_MYSQL_NETWORK_PROVIDER_CLIENT_ERROR_CONN_ERR
error code, 244
error code, 392 ER_GRP_RPL_RECEIVED_SET_MISSING_GTIDS
ER_GRP_RPL_MYSQL_NETWORK_PROVIDER_SERVER_ERROR_COMMAND_ERR
error code, 233
error code, 418 ER_GRP_RPL_RECOVERY_CHANNEL_STILL_RUNNING
ER_GRP_RPL_NEEDS_INNODB_TABLE error code, error code, 115
238 ER_GRP_RPL_RECOVERY_ENDPOINT_FORMAT
ER_GRP_RPL_NEW_PRIMARY_ELECTED error code, error code, 376
235 ER_GRP_RPL_RECOVERY_ENDPOINT_INTERFACES_IPS
ER_GRP_RPL_NOTIFY_CERTIFICATION_OUTCOME_FAILED
error code, 376
error code, 239 ER_GRP_RPL_RECOVERY_ENDPOINT_INVALID error
ER_GRP_RPL_NO_POSSIBLE_RECOVERY error code, code, 376
366 ER_GRP_RPL_RECOVERY_ENDPOINT_INVALID_DONOR_EN
ER_GRP_RPL_NO_STAGE_SERVICE error code, 349 error code, 376
ER_GRP_RPL_NO_SUITABLE_PRIMARY_MEM error ER_GRP_RPL_RECOVERY_EVAL_ERROR error code,
code, 235 366
ER_GRP_RPL_NO_VALID_DONOR error code, 241
549
ER_GRP_RPL_RECOVERY_MODULE_TERMINATION_TIMED_OUT_ON_SHUTDOWN
ER_GRP_RPL_SEND_STATS_ERROR error code, 252
error code, 246 ER_GRP_RPL_SEND_TRX_PREPARED_MESSAGE_FAILED
ER_GRP_RPL_RECOVERY_STRAT_CHOICE error error code, 355
code, 367 ER_GRP_RPL_SEND_TRX_SYNC_BEFORE_EXECUTION_FAILED
ER_GRP_RPL_RECOVERY_STRAT_CLONE_PURGED error code, 356
error code, 367 ER_GRP_RPL_SERVER_ALREADY_LEFT error code,
ER_GRP_RPL_RECOVERY_STRAT_CLONE_THRESHOLD 246
error code, 366 ER_GRP_RPL_SERVER_CONN_ERROR error code,
ER_GRP_RPL_RECOVERY_STRAT_FALLBACK error 232
code, 367 ER_GRP_RPL_SERVER_IS_ALREADY_LEAVING error
ER_GRP_RPL_RECOVERY_STRAT_NO_FALLBACK code, 246
error code, 367 ER_GRP_RPL_SERVER_SET_TO_OFFLINE_MODE_DUE_TO_ERR
ER_GRP_RPL_RECOVERY_WAIT_APPLIER_BACKLOG_FINISH
error code, 368
error code, 428 ER_GRP_RPL_SERVER_SET_TO_READ_ONLY_DUE_TO_ERROR
ER_GRP_RPL_RECOVERY_WAIT_APPLIER_BACKLOG_START
error code, 251
error code, 428 ER_GRP_RPL_SERVER_UDF_ERROR error code, 349
ER_GRP_RPL_REGISTER_TRX_TO_WAIT_FOR_DEPENDENCIES_FAILED
ER_GRP_RPL_SESSION_OPEN_FAILED error code,
error code, 356 235
ER_GRP_RPL_REGISTER_TRX_TO_WAIT_FOR_GROUP_PREPARE_FAILED
ER_GRP_RPL_SET_GRP_COMMUNICATION_ENG_LOGGER_FAIL
error code, 355 error code, 252
ER_GRP_RPL_REGISTER_TRX_TO_WAIT_FOR_SYNC_BEFORE_EXECUTION_FAILED
ER_GRP_RPL_SET_MULTI_CONSENSUS_LEADER
error code, 356 error code, 395
ER_GRP_RPL_RELEASE_BEGIN_TRX_AFTER_DEPENDENCIES_COMMIT_FAILED
ER_GRP_RPL_SET_SINGLE_CONSENSUS_LEADER
error code, 356 error code, 395
ER_GRP_RPL_RELEASE_BEGIN_TRX_AFTER_WAIT_FOR_SYNC_BEFORE_EXEC
ER_GRP_RPL_SET_STABLE_TRANS_ERROR error
error code, 356 code, 233
ER_GRP_RPL_RELEASE_COMMIT_AFTER_GROUP_PREPARE_FAILED
ER_GRP_RPL_SINGLE_PRIM_MODE_NOT_ALLOWED_WITH_UPD
error code, 355 error code, 249
ER_GRP_RPL_REPLICA_APPLIER_THREAD_ERROR_OUT
ER_GRP_RPL_SQL_SERVICE_COMM_SESSION_NOT_INITIALIZE
error code, 254 error code, 250
ER_GRP_RPL_REPLICA_APPLIER_THREAD_UNBLOCKED
ER_GRP_RPL_SQL_SERVICE_FAILED_TO_FETCH_SECURITY_CT
error code, 253 error code, 251
ER_GRP_RPL_REPLICA_IO_THD_PRIMARY_UNKNOWN ER_GRP_RPL_SQL_SERVICE_FAILED_TO_INIT_SESSION_THREA
error code, 238 error code, 250
ER_GRP_RPL_REPLICA_IO_THREAD_ERROR_OUT ER_GRP_RPL_SQL_SERVICE_FAILED_TO_RUN_SQL_QUERY
error code, 253 error code, 251
ER_GRP_RPL_REPLICA_IO_THREAD_UNBLOCKED ER_GRP_RPL_SQL_SERVICE_MAX_CONN_ERROR_FROM_SERV
error code, 253 error code, 251
ER_GRP_RPL_REPLICA_PRESERVE_COMMIT_ORDER_NOT_SET
ER_GRP_RPL_SQL_SERVICE_RETRIES_EXCEEDED_ON_SESSIO
error code, 249 error code, 251
ER_GRP_RPL_REPLICA_SQL_THD_ON_SECONDARY_MEMBER
ER_GRP_RPL_SQL_SERVICE_SERVER_ACCESS_DENIED_FOR_
error code, 238 error code, 251
ER_GRP_RPL_REPLICA_SQL_THD_PRIMARY_UNKNOWNER_GRP_RPL_SQL_SERVICE_SERVER_ERROR_ON_CONN
error code, 238 error code, 251
ER_GRP_RPL_REPLICA_THREAD_ERROR_ON_CLONE ER_GRP_RPL_SQL_SERVICE_SERVER_INTERNAL_FAILURE
error code, 367 error code, 251
ER_GRP_RPL_REPLICA_THREAD_ERROR_ON_SECONDARY_MEMBER
ER_GRP_RPL_SQL_SERVICE_SERVER_SESSION_KILLED
error code, 393 error code, 251
ER_GRP_RPL_REQUESTING_NON_MEMBER_SERVER_TO_LEAVE
ER_GRP_RPL_SRV_BLOCKED error code, 234
error code, 246 ER_GRP_RPL_SRV_BLOCKED_FOR_SECS error
ER_GRP_RPL_RESET_APPLIER_MODULE_LOGS_ERRORcode, 234
error code, 237 ER_GRP_RPL_SRV_NOT_ONLINE error code, 234
ER_GRP_RPL_SALVE_IO_THD_ON_SECONDARY_MEMBER
ER_GRP_RPL_SRV_ONLINE error code, 234
error code, 238 ER_GRP_RPL_SRV_PRIMARY_MEM error code, 235
550
ER_GRP_RPL_SRV_SECONDARY_MEM error code, ER_GRP_RPL_UNABLE_TO_ENSURE_EXECUTION_REC
235 error code, 244
ER_GRP_RPL_SSL_DISABLED error code, 248 ER_GRP_RPL_UNABLE_TO_EVALUATE_APPLIER_STATUS
ER_GRP_RPL_STARTED_AUTO_REJOIN error code, error code, 244
360 ER_GRP_RPL_UNABLE_TO_INIT_COMMUNICATION_ENGINE
ER_GRP_RPL_STARTING_GRP_REC error code, 241 error code, 248
ER_GRP_RPL_START_FAILED error code, 236 ER_GRP_RPL_UNABLE_TO_KILL_CONN_REC_DONOR_APPL
ER_GRP_RPL_START_GRP_RPL_FAILED error code, error code, 241
240 ER_GRP_RPL_UNABLE_TO_KILL_CONN_REC_DONOR_FAILO
ER_GRP_RPL_STOPPING_GRP_REC error code, 241 error code, 242
ER_GRP_RPL_SUPER_READ_OFF error code, 240 ER_GRP_RPL_UNABLE_TO_RESET_SERVER_READ_MODE
ER_GRP_RPL_SUPER_READ_ON error code, 240 error code, 244
ER_GRP_RPL_SUPER_READ_ONLY_ACTIVATE_ERRORER_GRP_RPL_UNBLOCK_CERTIFIED_TRANS error
error code, 235 code, 245
ER_GRP_RPL_TIMEOUT_ON_VIEW_AFTER_JOINING_GRPER_GRP_RPL_UNBLOCK_WAITING_THD error code,
error code, 245 231
ER_GRP_RPL_TIMEOUT_RECEIVED_VC_LEAVE_ON_REJOIN
ER_GRP_RPL_UNKNOWN_GRP_RPL_APPLIER_PIPELINE_RE
error code, 381 error code, 250
ER_GRP_RPL_TIMEOUT_RECEIVED_VC_ON_REJOIN ER_GRP_RPL_UNREACHABLE_MAJORITY_TIMEOUT_FOR_M
error code, 360 error code, 251
ER_GRP_RPL_TIMEOUT_RECEIVING_VIEW_CHANGE_ON_SHUTDOWN
ER_GRP_RPL_UNSUPPORTED_TRANS_ISOLATION
error code, 246 error code, 242
ER_GRP_RPL_TRANS_GREATER_THAN_GRP error ER_GRP_RPL_UPDATE_GRPGTID_EXECUTED_ERROR
code, 236 error code, 231
ER_GRP_RPL_TRANS_NOT_PRESENT_IN_GRP error ER_GRP_RPL_UPDATE_GRPGTID_VIEW_CHANGE_UUID_EX
code, 236 error code, 390
ER_GRP_RPL_TRANS_SIZE_EXCEEDS_LIMIT error ER_GRP_RPL_UPDATE_GTID_SET_ERROR error
code, 243 code, 232
ER_GRP_RPL_TRANS_WRITE_SET_EXTRACT_DIFF_FROM_GRP
ER_GRP_RPL_UPDATE_LAST_CONFLICT_FREE_TRANS_ERR
error code, 237 error code, 232
ER_GRP_RPL_TRX_ALREADY_EXISTS_ON_TCM_ON_AFTER_CERTIFICATION
ER_GRP_RPL_UPDATE_SERV_CERTIFICATE_FAILED
error code, 355 error code, 239
ER_GRP_RPL_TRX_DOES_NOT_EXIST_ON_TCM_ON_HANDLE_REMOTE_PREPARE
ER_GRP_RPL_UPDATE_TRANS_SNAPSHOT_REF_VER_ERRO
error code, 355 error code, 232
ER_GRP_RPL_TRX_WAIT_FOR_GROUP_GTID_EXECUTED ER_GRP_RPL_VCLE_NOT_BEING_LOGGED error
error code, 356 code, 421
ER_GRP_RPL_TRX_WAIT_FOR_GROUP_PREPARE_FAILEDER_GRP_RPL_VIEW_CHANGE_UUID_DIFF_FROM_GRP
error code, 355 error code, 389
ER_GRP_RPL_TRX_WAIT_FOR_SYNC_BEFORE_EXECUTION_FAILED
ER_GRP_RPL_VIEW_CHANGE_UUID_FAIL_GET_VARIABLE
error code, 356 error code, 116
ER_GRP_RPL_UDF_ERROR error code, 106 ER_GRP_RPL_VIEW_CHANGE_UUID_INVALID error
ER_GRP_RPL_UDF_REGISTER_ERROR error code, code, 388
349 ER_GRP_RPL_VIEW_CHANGE_UUID_IS_SAME_AS_ANONYM
ER_GRP_RPL_UDF_REGISTER_SERVICE_ERROR error code, 389
error code, 349 ER_GRP_RPL_VIEW_CHANGE_UUID_PARSE_ERROR
ER_GRP_RPL_UDF_UNREGISTER_ERROR error error code, 389
code, 349 ER_GRP_RPL_VIEW_CHANGE_UUID_SAME_AS_GROUP_NAM
ER_GRP_RPL_UNABLE_TO_CERTIFY_PLUGIN_TRANS error code, 389
error code, 244 ER_GRP_RPL_WAITING_FOR_VIEW_UPDATE error
ER_GRP_RPL_UNABLE_TO_CONVERT_EVENT_TO_PACKETcode, 246
error code, 253 ER_GRP_RPL_WAIT_FOR_DEPENDENCIES_FAILED
ER_GRP_RPL_UNABLE_TO_CONVERT_PACKET_TO_EVENTerror code, 356
error code, 253 ER_GRP_RPL_WHILE_SENDING_MSG_REC error
code, 244
551
ER_GRP_RPL_WRITE_IDENT_HASH_BASE64_ENCODING_FAILED
ER_GTID_MODE_ON_REQUIRES_ENFORCE_GTID_CONSISTENC
error code, 242 error code, 52
ER_GRP_RPL_WRITE_TO_TRANSACTION_MESSAGE_FAILED
ER_GTID_NEXT_CANT_BE_AUTOMATIC_IF_GTID_NEXT_LIST_IS
error code, 243 error code, 52
ER_GRP_TRX_CONSISTENCY_AFTER_ON_TRX_BEGIN ER_GTID_NEXT_TAG_GTID_MODE_OFF error code,
error code, 97 130
ER_GRP_TRX_CONSISTENCY_BEFORE error code, ER_GTID_NEXT_TYPE_UNDEFINED_GTID error code,
97 56
ER_GRP_TRX_CONSISTENCY_BEGIN_NOT_ALLOWED ER_GTID_PURGED_WAS_CHANGED error code, 57
error code, 97 ER_GTID_PURGED_WAS_UPDATED error code, 193
ER_GRP_TRX_CONSISTENCY_NOT_ALLOWED error ER_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAULT_EXPRESS
code, 97 error code, 95
ER_GR_ELECTED_PRIMARY_GTID_INFORMATION ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_AS
error code, 371 error code, 60
ER_GR_HOLD_KILLED error code, 96 ER_GTID_UNSAFE_CREATE_SELECT error code, 53
ER_GR_HOLD_MEMBER_STATUS_ERROR error ER_GTID_UNSAFE_NON_TRANSACTIONAL_TABLE
code, 96 error code, 53
ER_GR_HOLD_WAIT_TIMEOUT error code, 96 ER_HANDLERTON_OOM error code, 155
ER_GR_RM_CHANNEL_LAG_QUERY_EXECUTION_FAILED ER_HANDSHAKE_ERROR error code, 6
error code, 434 ER_HEALTH_ERROR error code, 384
ER_GR_RM_CHANNEL_LAG_QUERY_EXECUTION_SUCCESSER_HEALTH_INFO error code, 384
error code, 434 ER_HEALTH_WARNING error code, 384
ER_GR_RM_GR_MEMBER_NOT_REMOVED_APPLIER_THRESHOLD_HIT_N_MEMBERS
ER_HEALTH_WARNING_DISK_USAGE_LEVEL_1 error
error code, 435 code, 384
ER_GR_RM_GR_MEMBER_NOT_REMOVED_APPLIER_THRESHOLD_HIT_QUARANTINE
ER_HEALTH_WARNING_DISK_USAGE_LEVEL_2 error
error code, 434 code, 384
ER_GR_RM_GR_MEMBER_NOT_REMOVED_MEMORY_THRESHOLD_HIT_N_MEMBERS
ER_HEALTH_WARNING_DISK_USAGE_LEVEL_3 error
error code, 435 code, 384
ER_GR_RM_GR_MEMBER_NOT_REMOVED_MEMORY_THRESHOLD_HIT_QUARANTINE
ER_HEALTH_WARNING_MEMORY_USAGE_LEVEL_1
error code, 435 error code, 395
ER_GR_RM_GR_MEMBER_NOT_REMOVED_RECOVERY_THRESHOLD_HIT_N_MEMBERS
ER_HEALTH_WARNING_MEMORY_USAGE_LEVEL_2
error code, 435 error code, 395
ER_GR_RM_GR_MEMBER_NOT_REMOVED_RECOVERY_THRESHOLD_HIT_QUARANTINE
ER_HEALTH_WARNING_MEMORY_USAGE_LEVEL_3
error code, 435 error code, 395
ER_GR_RM_GR_MGMT_SERVICE_ACQUIRE_FAILED ER_HOSTNAME error code, 33
error code, 434 ER_HOSTNAME_DOESNT_RESOLVE_TO error code,
ER_GR_RM_MEMBER_LEAVING_APPLIER_THRESHOLD_HIT
142
error code, 435 ER_HOSTNAME_RESEMBLES_IPV4 error code, 142
ER_GR_RM_MEMBER_LEAVING_MEMORY_THRESHOLD_HITER_HOSTNAME_TOO_LONG error code, 110
error code, 435 ER_HOSTNAME_TRUNKATED error code, 377
ER_GR_RM_MEMBER_LEAVING_RECOVERY_THRESHOLD_HIT
ER_HOST_IS_BLOCKED error code, 12
error code, 435 ER_HOST_NOT_PRIVILEGED error code, 12
ER_GR_RM_MEMORY_STATS_FETCH_FAILED error ER_HYPERGRAPH_NOT_SUPPORTED_YET error
code, 434 code, 113
ER_GR_RM_MEMORY_STATS_FETCH_SUCCESS ER_IB_BUFFER_POOL_FULL error code, 407
error code, 434 ER_IB_BUFFER_POOL_OVERUSE error code, 407
ER_GTID_ALREADY_ADDED_BY_USER error code, ER_IB_BULK_FLUSHER_INFO error code, 407
165 ER_IB_BULK_FLUSHER_PUNCH_HOLE error code,
ER_GTID_EXECUTED_WAS_CHANGED error code, 57 417
ER_GTID_EXECUTED_WAS_UPDATED error code, ER_IB_BULK_LOAD_MERGE_FAIL error code, 409
193 ER_IB_BULK_LOAD_STATS_INFO error code, 429
ER_GTID_MODE_CAN_ONLY_CHANGE_ONE_STEP_AT_A_TIME
ER_IB_BULK_LOAD_STATS_WARN error code, 424
error code, 53 ER_IB_BULK_LOAD_SUBTREE_INFO error code, 407
ER_GTID_MODE_OFF error code, 65 ER_IB_BULK_LOAD_THREAD_FAIL error code, 409
552
ER_IB_CANNOT_UPGRADE_WITH_DISCARDED_TABLESPACES
ER_IB_ERR_SCHED_SETAFFNINITY_FAILED error
error code, 377 code, 379
ER_IB_CLONE_GTID_PERSIST error code, 270 ER_IB_ERR_TEMP_TABLESPACE_DIR_CONTAINS_SEMICOLO
ER_IB_CLONE_INTERNAL error code, 269 error code, 379
ER_IB_CLONE_NON_INNODB_TABLE error code, 366 ER_IB_ERR_TEMP_TABLESPACE_DIR_DOESNT_EXIST
ER_IB_CLONE_OPERATION error code, 366 error code, 379
ER_IB_CLONE_PUNCH_HOLE error code, 269 ER_IB_ERR_TEMP_TABLESPACE_DIR_EMPTY error
ER_IB_CLONE_RESTART error code, 366 code, 379
ER_IB_CLONE_SQL error code, 269 ER_IB_ERR_TEMP_TABLESPACE_DIR_SUBDIR_OF_DATADIR
ER_IB_CLONE_START_STOP error code, 366 error code, 379
ER_IB_CLONE_STATUS_FILE error code, 269 ER_IB_ERR_UNKNOWN_PAGE_FETCH_MODE error
ER_IB_CLONE_TIMEOUT error code, 269 code, 379
ER_IB_CLONE_USER_DATA error code, 366 ER_IB_ERR_ZLIB_BUF_ERROR error code, 379
ER_IB_CLONE_VALIDATE error code, 269 ER_IB_ERR_ZLIB_DATA_ERROR error code, 380
ER_IB_DBLWR_BYTES_INFO error code, 398 ER_IB_ERR_ZLIB_MEM_ERROR error code, 380
ER_IB_DBLWR_DECOMPRESS_FAILED error code, ER_IB_ERR_ZLIB_UNCOMPRESS_FAILED error code,
382 379
ER_IB_DBLWR_DECRYPT_FAILED error code, 382 ER_IB_ERR_ZLIB_UNKNOWN_ERROR error code, 380
ER_IB_DBLWR_KEY_MISSING error code, 382 ER_IB_FAILED_TO_DELETE_TABLESPACE_FILE
ER_IB_DDL_CONVERT_HEAP_NOT_FOUND error error code, 378
code, 415 ER_IB_FIXED_PAGE_ID error code, 419
ER_IB_DELETE_SCHEMA_DIR error code, 430 ER_IB_HIDDEN_NAME_CONFLICT error code, 410
ER_IB_DICT_INVALID_COLUMN_POSITION error ER_IB_IMPORT_INDEX_METADATA_READ_FAILED
code, 410 error code, 319
ER_IB_DICT_LOG_TABLE_INFO error code, 410 ER_IB_IMPORT_START_CFG_NAME error code, 323
ER_IB_DUPLICATE_KEY error code, 407 ER_IB_INDEX_BUILDER_DONE error code, 411
ER_IB_ERR_ACCESSING_OUT_OF_BOUND_FIELD_IN_INDEX
ER_IB_INDEX_BUILDER_INIT error code, 411
error code, 334 ER_IB_INDEX_LOADER_DONE error code, 411
ER_IB_ERR_CORRUPT_TABLESPACE_UNRECOVERABLE ER_IB_INDEX_LOG_VERSION_MISMATCH error code,
error code, 424 411
ER_IB_ERR_DDL_LOG_INSERT_FAILURE error code, ER_IB_INDEX_PART_TOO_LONG error code, 416
378 ER_IB_INNODB_TBSP_OUT_OF_SPACE error code,
ER_IB_ERR_FOUND_N_DUPLICATE_KEYS error code, 384
380 ER_IB_INSERT_DELETE_SCHEMA_DIRECTORY_DDL_LOG
ER_IB_ERR_FOUND_N_RECORDS_WRONG_ORDER error code, 431
error code, 380 ER_IB_LOAD_BULK_CONCURRENCY_REDUCED
ER_IB_ERR_INDEX_DUPLICATE_KEY error code, 380 error code, 409
ER_IB_ERR_INDEX_RECORDS_WRONG_ORDER ER_IB_LOB_ROLLBACK_INDEX_LEN error code, 370
error code, 380 ER_IB_LOCK_VALIDATE_LATCH_ORDER_VIOLATION
ER_IB_ERR_LOG_PARSING_BUFFER_OVERFLOW error code, 378
error code, 379 ER_IB_LONG_AHI_DISABLE_WAIT error code, 271
ER_IB_ERR_NOT_ENOUGH_MEMORY_FOR_PARSE_BUFFER ER_IB_LONG_ROLLBACK error code, 427
error code, 379 ER_IB_LONG_ROLLBACK_FULL error code, 427
ER_IB_ERR_PAGE_ARCH_DBLWR_INIT_FAILED error ER_IB_MSG_0 error code, 260
code, 391 ER_IB_MSG_1 error code, 260
ER_IB_ERR_PAGE_ARCH_INVALID_DOUBLE_WRITE_BUF ER_IB_MSG_10 error code, 261
error code, 375 ER_IB_MSG_100 error code, 266
ER_IB_ERR_PAGE_ARCH_INVALID_FORMAT error ER_IB_MSG_1000 error code, 322
code, 375 ER_IB_MSG_1001 error code, 322
ER_IB_ERR_PAGE_ARCH_RECOVERY_FAILED error ER_IB_MSG_1002 error code, 322
code, 375 ER_IB_MSG_1003 error code, 322
ER_IB_ERR_PARALLEL_READ_OOM error code, 380 ER_IB_MSG_1004 error code, 322
ER_IB_ERR_RECOVERY_REDO_DISABLED error ER_IB_MSG_1005 error code, 322
code, 376 ER_IB_MSG_1006 error code, 322
553
ER_IB_MSG_1007 error code, 323 ER_IB_MSG_1058 error code, 326
ER_IB_MSG_1008 error code, 323 ER_IB_MSG_1059 error code, 326
ER_IB_MSG_1009 error code, 323 ER_IB_MSG_106 error code, 267
ER_IB_MSG_101 error code, 266 ER_IB_MSG_1060 error code, 326
ER_IB_MSG_1010 error code, 323 ER_IB_MSG_1065 error code, 326
ER_IB_MSG_1011 error code, 323 ER_IB_MSG_107 error code, 267
ER_IB_MSG_1012 error code, 323 ER_IB_MSG_1070 error code, 327
ER_IB_MSG_1013 error code, 323 ER_IB_MSG_1071 error code, 327
ER_IB_MSG_1015 error code, 323 ER_IB_MSG_1072 error code, 327
ER_IB_MSG_1016 error code, 323 ER_IB_MSG_1073 error code, 327
ER_IB_MSG_1017 error code, 323 ER_IB_MSG_1074 error code, 327
ER_IB_MSG_1018 error code, 323 ER_IB_MSG_1075 error code, 327
ER_IB_MSG_1019 error code, 323 ER_IB_MSG_1076 error code, 327
ER_IB_MSG_102 error code, 266 ER_IB_MSG_1077 error code, 327
ER_IB_MSG_1020 error code, 323 ER_IB_MSG_1078 error code, 327
ER_IB_MSG_1021 error code, 323 ER_IB_MSG_1079 error code, 327
ER_IB_MSG_1022 error code, 324 ER_IB_MSG_108 error code, 267
ER_IB_MSG_1023 error code, 324 ER_IB_MSG_1080 error code, 327
ER_IB_MSG_1024 error code, 324 ER_IB_MSG_1081 error code, 327
ER_IB_MSG_1025 error code, 324 ER_IB_MSG_1082 error code, 328
ER_IB_MSG_1026 error code, 324 ER_IB_MSG_1083 error code, 328
ER_IB_MSG_1027 error code, 324 ER_IB_MSG_1085 error code, 328
ER_IB_MSG_1028 error code, 324 ER_IB_MSG_1086 error code, 328
ER_IB_MSG_1029 error code, 324 ER_IB_MSG_1087 error code, 328
ER_IB_MSG_103 error code, 266 ER_IB_MSG_1088 error code, 328
ER_IB_MSG_1030 error code, 324 ER_IB_MSG_1089 error code, 328
ER_IB_MSG_1031 error code, 324 ER_IB_MSG_109 error code, 267
ER_IB_MSG_1032 error code, 324 ER_IB_MSG_1090 error code, 328
ER_IB_MSG_1033 error code, 324 ER_IB_MSG_1091 error code, 328
ER_IB_MSG_1034 error code, 324 ER_IB_MSG_1092 error code, 328
ER_IB_MSG_1035 error code, 324 ER_IB_MSG_1093 error code, 328
ER_IB_MSG_1036 error code, 324 ER_IB_MSG_1094 error code, 328
ER_IB_MSG_1037 error code, 325 ER_IB_MSG_1095 error code, 328
ER_IB_MSG_1038 error code, 325 ER_IB_MSG_1096 error code, 329
ER_IB_MSG_1039 error code, 325 ER_IB_MSG_1097 error code, 329
ER_IB_MSG_104 error code, 267 ER_IB_MSG_1098 error code, 329
ER_IB_MSG_1040 error code, 325 ER_IB_MSG_1099 error code, 329
ER_IB_MSG_1041 error code, 325 ER_IB_MSG_11 error code, 261
ER_IB_MSG_1042 error code, 325 ER_IB_MSG_110 error code, 267
ER_IB_MSG_1043 error code, 325 ER_IB_MSG_1100 error code, 329
ER_IB_MSG_1044 error code, 325 ER_IB_MSG_1101 error code, 329
ER_IB_MSG_1045 error code, 325 ER_IB_MSG_1102 error code, 329
ER_IB_MSG_1046 error code, 325 ER_IB_MSG_1103 error code, 329
ER_IB_MSG_1047 error code, 325 ER_IB_MSG_1104 error code, 329
ER_IB_MSG_1048 error code, 325 ER_IB_MSG_1105 error code, 329
ER_IB_MSG_1049 error code, 325 ER_IB_MSG_1107 error code, 329
ER_IB_MSG_105 error code, 267 ER_IB_MSG_1108 error code, 329
ER_IB_MSG_1051 error code, 325 ER_IB_MSG_1109 error code, 329
ER_IB_MSG_1052 error code, 326 ER_IB_MSG_111 error code, 267
ER_IB_MSG_1053 error code, 326 ER_IB_MSG_1110 error code, 330
ER_IB_MSG_1054 error code, 326 ER_IB_MSG_1111 error code, 330
ER_IB_MSG_1055 error code, 326 ER_IB_MSG_1112 error code, 330
ER_IB_MSG_1056 error code, 326 ER_IB_MSG_1113 error code, 330
ER_IB_MSG_1057 error code, 326 ER_IB_MSG_1114 error code, 330
554
ER_IB_MSG_1115 error code, 330 ER_IB_MSG_1189 error code, 335
ER_IB_MSG_1116 error code, 330 ER_IB_MSG_119 error code, 267
ER_IB_MSG_1117 error code, 330 ER_IB_MSG_1191 error code, 335
ER_IB_MSG_1119 error code, 330 ER_IB_MSG_1192 error code, 335
ER_IB_MSG_112 error code, 267 ER_IB_MSG_1193 error code, 335
ER_IB_MSG_1120 error code, 330 ER_IB_MSG_1194 error code, 335
ER_IB_MSG_1121 error code, 330 ER_IB_MSG_1195 error code, 335
ER_IB_MSG_1122 error code, 330 ER_IB_MSG_1196 error code, 335
ER_IB_MSG_1123 error code, 330 ER_IB_MSG_1197 error code, 335
ER_IB_MSG_1124 error code, 330 ER_IB_MSG_1198 error code, 335
ER_IB_MSG_1125 error code, 330 ER_IB_MSG_1199 error code, 335
ER_IB_MSG_1126 error code, 331 ER_IB_MSG_12 error code, 261
ER_IB_MSG_1127 error code, 331 ER_IB_MSG_120 error code, 267
ER_IB_MSG_1128 error code, 331 ER_IB_MSG_1200 error code, 335
ER_IB_MSG_1129 error code, 331 ER_IB_MSG_1201 error code, 335
ER_IB_MSG_1130 error code, 331 ER_IB_MSG_1202 error code, 336
ER_IB_MSG_1131 error code, 331 ER_IB_MSG_1203 error code, 336
ER_IB_MSG_1132 error code, 331 ER_IB_MSG_1204 error code, 336
ER_IB_MSG_1133 error code, 331 ER_IB_MSG_1205 error code, 336
ER_IB_MSG_1134 error code, 331 ER_IB_MSG_1206 error code, 336
ER_IB_MSG_1139 error code, 332 ER_IB_MSG_1207 error code, 336
ER_IB_MSG_1142 error code, 332 ER_IB_MSG_1208 error code, 336
ER_IB_MSG_1144 error code, 332 ER_IB_MSG_1209 error code, 336
ER_IB_MSG_1145 error code, 332 ER_IB_MSG_121 error code, 267
ER_IB_MSG_1146 error code, 332 ER_IB_MSG_1210 error code, 336
ER_IB_MSG_1147 error code, 332 ER_IB_MSG_1211 error code, 336
ER_IB_MSG_1148 error code, 332 ER_IB_MSG_1212 error code, 336
ER_IB_MSG_1149 error code, 332 ER_IB_MSG_1213 error code, 336
ER_IB_MSG_1150 error code, 332 ER_IB_MSG_1214 error code, 336
ER_IB_MSG_1151 error code, 332 ER_IB_MSG_1215 error code, 336
ER_IB_MSG_1152 error code, 333 ER_IB_MSG_1217 error code, 337
ER_IB_MSG_1154 error code, 333 ER_IB_MSG_1218 error code, 337
ER_IB_MSG_1155 error code, 333 ER_IB_MSG_1219 error code, 337
ER_IB_MSG_1156 error code, 333 ER_IB_MSG_122 error code, 267
ER_IB_MSG_1157 error code, 333 ER_IB_MSG_1220 error code, 337
ER_IB_MSG_1158 error code, 333 ER_IB_MSG_1221 error code, 337
ER_IB_MSG_1159 error code, 333 ER_IB_MSG_1222 error code, 337
ER_IB_MSG_1160 error code, 333 ER_IB_MSG_1223 error code, 337
ER_IB_MSG_1161 error code, 333 ER_IB_MSG_1224 error code, 337
ER_IB_MSG_1162 error code, 333 ER_IB_MSG_1225 error code, 337
ER_IB_MSG_1163 error code, 333 ER_IB_MSG_1226 error code, 337
ER_IB_MSG_1164 error code, 333 ER_IB_MSG_1227 error code, 337
ER_IB_MSG_1165 error code, 333 ER_IB_MSG_1228 error code, 337
ER_IB_MSG_1177 error code, 334 ER_IB_MSG_1229 error code, 337
ER_IB_MSG_1178 error code, 334 ER_IB_MSG_123 error code, 267
ER_IB_MSG_1179 error code, 334 ER_IB_MSG_1231 error code, 337
ER_IB_MSG_1180 error code, 334 ER_IB_MSG_1233 error code, 338
ER_IB_MSG_1181 error code, 334 ER_IB_MSG_1235 error code, 338
ER_IB_MSG_1182 error code, 334 ER_IB_MSG_1238 error code, 338
ER_IB_MSG_1183 error code, 334 ER_IB_MSG_1239 error code, 338
ER_IB_MSG_1185 error code, 334 ER_IB_MSG_124 error code, 267
ER_IB_MSG_1186 error code, 334 ER_IB_MSG_1241 error code, 338
ER_IB_MSG_1187 error code, 335 ER_IB_MSG_1245 error code, 338
ER_IB_MSG_1188 error code, 335 ER_IB_MSG_1246 error code, 338
555
ER_IB_MSG_1247 error code, 338 ER_IB_MSG_140 error code, 269
ER_IB_MSG_1248 error code, 339 ER_IB_MSG_141 error code, 269
ER_IB_MSG_1249 error code, 339 ER_IB_MSG_142 error code, 269
ER_IB_MSG_125 error code, 268 ER_IB_MSG_143 error code, 269
ER_IB_MSG_1250 error code, 339 ER_IB_MSG_144 error code, 269
ER_IB_MSG_1251 error code, 339 ER_IB_MSG_145 error code, 269
ER_IB_MSG_1253 error code, 339 ER_IB_MSG_146 error code, 269
ER_IB_MSG_1255 error code, 339 ER_IB_MSG_147 error code, 269
ER_IB_MSG_1256 error code, 339 ER_IB_MSG_148 error code, 269
ER_IB_MSG_1257 error code, 339 ER_IB_MSG_15 error code, 261
ER_IB_MSG_1258 error code, 339 ER_IB_MSG_156 error code, 270
ER_IB_MSG_1259 error code, 339 ER_IB_MSG_157 error code, 270
ER_IB_MSG_126 error code, 268 ER_IB_MSG_158 error code, 270
ER_IB_MSG_1260 error code, 339 ER_IB_MSG_159 error code, 270
ER_IB_MSG_1261 error code, 339 ER_IB_MSG_16 error code, 261
ER_IB_MSG_1262 error code, 339 ER_IB_MSG_160 error code, 270
ER_IB_MSG_1263 error code, 339 ER_IB_MSG_161 error code, 270
ER_IB_MSG_1266 error code, 340 ER_IB_MSG_162 error code, 270
ER_IB_MSG_1268 error code, 340 ER_IB_MSG_163 error code, 270
ER_IB_MSG_1269 error code, 340 ER_IB_MSG_164 error code, 270
ER_IB_MSG_127 error code, 268 ER_IB_MSG_165 error code, 270
ER_IB_MSG_1272 error code, 346 ER_IB_MSG_166 error code, 270
ER_IB_MSG_1273 error code, 346 ER_IB_MSG_167 error code, 270
ER_IB_MSG_1274 error code, 347 ER_IB_MSG_168 error code, 270
ER_IB_MSG_1275 error code, 347 ER_IB_MSG_169 error code, 270
ER_IB_MSG_1277 error code, 347 ER_IB_MSG_17 error code, 261
ER_IB_MSG_128 error code, 268 ER_IB_MSG_170 error code, 271
ER_IB_MSG_1280 error code, 347 ER_IB_MSG_171 error code, 271
ER_IB_MSG_1281 error code, 347 ER_IB_MSG_172 error code, 271
ER_IB_MSG_1282 error code, 347 ER_IB_MSG_173 error code, 271
ER_IB_MSG_1283 error code, 347 ER_IB_MSG_174 error code, 271
ER_IB_MSG_1284 error code, 347 ER_IB_MSG_175 error code, 271
ER_IB_MSG_1285 error code, 363 ER_IB_MSG_176 error code, 271
ER_IB_MSG_129 error code, 268 ER_IB_MSG_177 error code, 271
ER_IB_MSG_13 error code, 261 ER_IB_MSG_178 error code, 271
ER_IB_MSG_130 error code, 268 ER_IB_MSG_179 error code, 271
ER_IB_MSG_131 error code, 268 ER_IB_MSG_18 error code, 261
ER_IB_MSG_132 error code, 268 ER_IB_MSG_180 error code, 271
ER_IB_MSG_133 error code, 268 ER_IB_MSG_182 error code, 271
ER_IB_MSG_134 error code, 268 ER_IB_MSG_183 error code, 271
ER_IB_MSG_135 error code, 268 ER_IB_MSG_184 error code, 271
ER_IB_MSG_1357 error code, 378 ER_IB_MSG_187 error code, 272
ER_IB_MSG_1358 error code, 378 ER_IB_MSG_188 error code, 272
ER_IB_MSG_1359 error code, 378 ER_IB_MSG_189 error code, 272
ER_IB_MSG_136 error code, 268 ER_IB_MSG_19 error code, 261
ER_IB_MSG_137 error code, 268 ER_IB_MSG_190 error code, 272
ER_IB_MSG_1372 error code, 379 ER_IB_MSG_191 error code, 272
ER_IB_MSG_1373 error code, 379 ER_IB_MSG_192 error code, 272
ER_IB_MSG_1374 error code, 379 ER_IB_MSG_193 error code, 272
ER_IB_MSG_1375 error code, 379 ER_IB_MSG_194 error code, 272
ER_IB_MSG_138 error code, 268 ER_IB_MSG_195 error code, 272
ER_IB_MSG_1381 error code, 380 ER_IB_MSG_196 error code, 272
ER_IB_MSG_139 error code, 268 ER_IB_MSG_197 error code, 272
ER_IB_MSG_14 error code, 261 ER_IB_MSG_198 error code, 272
556
ER_IB_MSG_199 error code, 272 ER_IB_MSG_249 error code, 276
ER_IB_MSG_2 error code, 260 ER_IB_MSG_25 error code, 262
ER_IB_MSG_20 error code, 262 ER_IB_MSG_250 error code, 276
ER_IB_MSG_200 error code, 272 ER_IB_MSG_251 error code, 276
ER_IB_MSG_201 error code, 272 ER_IB_MSG_252 error code, 276
ER_IB_MSG_202 error code, 273 ER_IB_MSG_253 error code, 276
ER_IB_MSG_203 error code, 273 ER_IB_MSG_254 error code, 276
ER_IB_MSG_204 error code, 273 ER_IB_MSG_255 error code, 276
ER_IB_MSG_205 error code, 273 ER_IB_MSG_256 error code, 276
ER_IB_MSG_206 error code, 273 ER_IB_MSG_257 error code, 276
ER_IB_MSG_207 error code, 273 ER_IB_MSG_258 error code, 276
ER_IB_MSG_208 error code, 273 ER_IB_MSG_259 error code, 276
ER_IB_MSG_209 error code, 273 ER_IB_MSG_26 error code, 262
ER_IB_MSG_21 error code, 262 ER_IB_MSG_260 error code, 276
ER_IB_MSG_210 error code, 273 ER_IB_MSG_261 error code, 276
ER_IB_MSG_211 error code, 273 ER_IB_MSG_262 error code, 276
ER_IB_MSG_212 error code, 273 ER_IB_MSG_263 error code, 276
ER_IB_MSG_213 error code, 273 ER_IB_MSG_264 error code, 277
ER_IB_MSG_214 error code, 273 ER_IB_MSG_265 error code, 277
ER_IB_MSG_215 error code, 273 ER_IB_MSG_266 error code, 277
ER_IB_MSG_216 error code, 273 ER_IB_MSG_267 error code, 277
ER_IB_MSG_217 error code, 274 ER_IB_MSG_268 error code, 277
ER_IB_MSG_218 error code, 274 ER_IB_MSG_269 error code, 277
ER_IB_MSG_219 error code, 274 ER_IB_MSG_27 error code, 262
ER_IB_MSG_22 error code, 262 ER_IB_MSG_270 error code, 277
ER_IB_MSG_220 error code, 274 ER_IB_MSG_271 error code, 277
ER_IB_MSG_221 error code, 274 ER_IB_MSG_272 error code, 277
ER_IB_MSG_222 error code, 274 ER_IB_MSG_273 error code, 277
ER_IB_MSG_223 error code, 274 ER_IB_MSG_278 error code, 277
ER_IB_MSG_224 error code, 274 ER_IB_MSG_28 error code, 262
ER_IB_MSG_225 error code, 274 ER_IB_MSG_280 error code, 277
ER_IB_MSG_226 error code, 274 ER_IB_MSG_281 error code, 277
ER_IB_MSG_229 error code, 274 ER_IB_MSG_282 error code, 277
ER_IB_MSG_23 error code, 262 ER_IB_MSG_283 error code, 277
ER_IB_MSG_230 error code, 274 ER_IB_MSG_284 error code, 278
ER_IB_MSG_231 error code, 274 ER_IB_MSG_285 error code, 278
ER_IB_MSG_232 error code, 274 ER_IB_MSG_287 error code, 278
ER_IB_MSG_233 error code, 274 ER_IB_MSG_288 error code, 278
ER_IB_MSG_234 error code, 275 ER_IB_MSG_289 error code, 278
ER_IB_MSG_235 error code, 275 ER_IB_MSG_29 error code, 262
ER_IB_MSG_236 error code, 275 ER_IB_MSG_291 error code, 278
ER_IB_MSG_237 error code, 275 ER_IB_MSG_292 error code, 278
ER_IB_MSG_238 error code, 275 ER_IB_MSG_293 error code, 278
ER_IB_MSG_239 error code, 275 ER_IB_MSG_294 error code, 278
ER_IB_MSG_24 error code, 262 ER_IB_MSG_295 error code, 278
ER_IB_MSG_240 error code, 275 ER_IB_MSG_296 error code, 278
ER_IB_MSG_241 error code, 275 ER_IB_MSG_297 error code, 278
ER_IB_MSG_242 error code, 275 ER_IB_MSG_298 error code, 279
ER_IB_MSG_243 error code, 275 ER_IB_MSG_299 error code, 279
ER_IB_MSG_244 error code, 275 ER_IB_MSG_3 error code, 260
ER_IB_MSG_245 error code, 275 ER_IB_MSG_30 error code, 262
ER_IB_MSG_246 error code, 275 ER_IB_MSG_300 error code, 279
ER_IB_MSG_247 error code, 275 ER_IB_MSG_301 error code, 279
ER_IB_MSG_248 error code, 275 ER_IB_MSG_303 error code, 279
557
ER_IB_MSG_304 error code, 279 ER_IB_MSG_358 error code, 282
ER_IB_MSG_305 error code, 279 ER_IB_MSG_359 error code, 283
ER_IB_MSG_306 error code, 279 ER_IB_MSG_36 error code, 263
ER_IB_MSG_307 error code, 279 ER_IB_MSG_360 error code, 283
ER_IB_MSG_308 error code, 279 ER_IB_MSG_361 error code, 283
ER_IB_MSG_309 error code, 279 ER_IB_MSG_362 error code, 283
ER_IB_MSG_310 error code, 279 ER_IB_MSG_364 error code, 283
ER_IB_MSG_311 error code, 280 ER_IB_MSG_365 error code, 283
ER_IB_MSG_312 error code, 280 ER_IB_MSG_367 error code, 283
ER_IB_MSG_313 error code, 280 ER_IB_MSG_368 error code, 283
ER_IB_MSG_314 error code, 280 ER_IB_MSG_369 error code, 283
ER_IB_MSG_315 error code, 280 ER_IB_MSG_37 error code, 263
ER_IB_MSG_316 error code, 280 ER_IB_MSG_370 error code, 283
ER_IB_MSG_317 error code, 280 ER_IB_MSG_371 error code, 283
ER_IB_MSG_318 error code, 280 ER_IB_MSG_372 error code, 283
ER_IB_MSG_319 error code, 280 ER_IB_MSG_373 error code, 283
ER_IB_MSG_32 error code, 262 ER_IB_MSG_374 error code, 283
ER_IB_MSG_320 error code, 280 ER_IB_MSG_375 error code, 284
ER_IB_MSG_321 error code, 280 ER_IB_MSG_376 error code, 284
ER_IB_MSG_322 error code, 280 ER_IB_MSG_377 error code, 284
ER_IB_MSG_323 error code, 280 ER_IB_MSG_378 error code, 284
ER_IB_MSG_324 error code, 280 ER_IB_MSG_379 error code, 284
ER_IB_MSG_325 error code, 280 ER_IB_MSG_38 error code, 263
ER_IB_MSG_326 error code, 281 ER_IB_MSG_380 error code, 284
ER_IB_MSG_328 error code, 281 ER_IB_MSG_381 error code, 284
ER_IB_MSG_329 error code, 281 ER_IB_MSG_382 error code, 284
ER_IB_MSG_33 error code, 262 ER_IB_MSG_383 error code, 284
ER_IB_MSG_330 error code, 281 ER_IB_MSG_384 error code, 284
ER_IB_MSG_331 error code, 281 ER_IB_MSG_385 error code, 284
ER_IB_MSG_332 error code, 281 ER_IB_MSG_386 error code, 284
ER_IB_MSG_333 error code, 281 ER_IB_MSG_387 error code, 284
ER_IB_MSG_334 error code, 281 ER_IB_MSG_39 error code, 263
ER_IB_MSG_335 error code, 281 ER_IB_MSG_390 error code, 285
ER_IB_MSG_336 error code, 281 ER_IB_MSG_391 error code, 285
ER_IB_MSG_337 error code, 281 ER_IB_MSG_392 error code, 285
ER_IB_MSG_338 error code, 281 ER_IB_MSG_393 error code, 285
ER_IB_MSG_339 error code, 281 ER_IB_MSG_394 error code, 285
ER_IB_MSG_34 error code, 262 ER_IB_MSG_395 error code, 285
ER_IB_MSG_340 error code, 281 ER_IB_MSG_396 error code, 285
ER_IB_MSG_341 error code, 281 ER_IB_MSG_397 error code, 285
ER_IB_MSG_342 error code, 282 ER_IB_MSG_398 error code, 285
ER_IB_MSG_343 error code, 282 ER_IB_MSG_399 error code, 285
ER_IB_MSG_344 error code, 282 ER_IB_MSG_4 error code, 260
ER_IB_MSG_345 error code, 282 ER_IB_MSG_40 error code, 263
ER_IB_MSG_346 error code, 282 ER_IB_MSG_401 error code, 285
ER_IB_MSG_347 error code, 282 ER_IB_MSG_402 error code, 285
ER_IB_MSG_348 error code, 282 ER_IB_MSG_403 error code, 285
ER_IB_MSG_349 error code, 282 ER_IB_MSG_404 error code, 285
ER_IB_MSG_35 error code, 262 ER_IB_MSG_405 error code, 285
ER_IB_MSG_350 error code, 282 ER_IB_MSG_406 error code, 286
ER_IB_MSG_354 error code, 282 ER_IB_MSG_407 error code, 286
ER_IB_MSG_355 error code, 282 ER_IB_MSG_408 error code, 286
ER_IB_MSG_356 error code, 282 ER_IB_MSG_409 error code, 286
ER_IB_MSG_357 error code, 282 ER_IB_MSG_41 error code, 263
558
ER_IB_MSG_410 error code, 286 ER_IB_MSG_460 error code, 289
ER_IB_MSG_411 error code, 286 ER_IB_MSG_461 error code, 289
ER_IB_MSG_412 error code, 286 ER_IB_MSG_462 error code, 289
ER_IB_MSG_413 error code, 286 ER_IB_MSG_463 error code, 289
ER_IB_MSG_414 error code, 286 ER_IB_MSG_464 error code, 289
ER_IB_MSG_415 error code, 286 ER_IB_MSG_465 error code, 289
ER_IB_MSG_416 error code, 286 ER_IB_MSG_466 error code, 289
ER_IB_MSG_417 error code, 286 ER_IB_MSG_467 error code, 290
ER_IB_MSG_418 error code, 286 ER_IB_MSG_468 error code, 290
ER_IB_MSG_419 error code, 286 ER_IB_MSG_469 error code, 290
ER_IB_MSG_42 error code, 263 ER_IB_MSG_47 error code, 263
ER_IB_MSG_420 error code, 286 ER_IB_MSG_470 error code, 290
ER_IB_MSG_421 error code, 287 ER_IB_MSG_471 error code, 290
ER_IB_MSG_422 error code, 287 ER_IB_MSG_472 error code, 290
ER_IB_MSG_423 error code, 287 ER_IB_MSG_473 error code, 290
ER_IB_MSG_424 error code, 287 ER_IB_MSG_474 error code, 290
ER_IB_MSG_425 error code, 287 ER_IB_MSG_475 error code, 290
ER_IB_MSG_426 error code, 287 ER_IB_MSG_476 error code, 290
ER_IB_MSG_427 error code, 287 ER_IB_MSG_477 error code, 290
ER_IB_MSG_428 error code, 287 ER_IB_MSG_478 error code, 290
ER_IB_MSG_429 error code, 287 ER_IB_MSG_479 error code, 290
ER_IB_MSG_43 error code, 263 ER_IB_MSG_48 error code, 263
ER_IB_MSG_430 error code, 287 ER_IB_MSG_480 error code, 290
ER_IB_MSG_431 error code, 287 ER_IB_MSG_481 error code, 290
ER_IB_MSG_432 error code, 287 ER_IB_MSG_482 error code, 291
ER_IB_MSG_433 error code, 287 ER_IB_MSG_483 error code, 291
ER_IB_MSG_434 error code, 287 ER_IB_MSG_484 error code, 291
ER_IB_MSG_435 error code, 287 ER_IB_MSG_485 error code, 291
ER_IB_MSG_436 error code, 288 ER_IB_MSG_486 error code, 291
ER_IB_MSG_437 error code, 288 ER_IB_MSG_487 error code, 291
ER_IB_MSG_438 error code, 288 ER_IB_MSG_488 error code, 291
ER_IB_MSG_439 error code, 288 ER_IB_MSG_489 error code, 291
ER_IB_MSG_44 error code, 263 ER_IB_MSG_49 error code, 263
ER_IB_MSG_440 error code, 288 ER_IB_MSG_490 error code, 291
ER_IB_MSG_441 error code, 288 ER_IB_MSG_491 error code, 291
ER_IB_MSG_442 error code, 288 ER_IB_MSG_492 error code, 291
ER_IB_MSG_443 error code, 288 ER_IB_MSG_493 error code, 291
ER_IB_MSG_445 error code, 288 ER_IB_MSG_494 error code, 291
ER_IB_MSG_446 error code, 288 ER_IB_MSG_495 error code, 291
ER_IB_MSG_447 error code, 288 ER_IB_MSG_496 error code, 291
ER_IB_MSG_448 error code, 288 ER_IB_MSG_497 error code, 292
ER_IB_MSG_449 error code, 288 ER_IB_MSG_498 error code, 292
ER_IB_MSG_45 error code, 263 ER_IB_MSG_499 error code, 292
ER_IB_MSG_450 error code, 288 ER_IB_MSG_5 error code, 261
ER_IB_MSG_451 error code, 288 ER_IB_MSG_50 error code, 263
ER_IB_MSG_452 error code, 289 ER_IB_MSG_500 error code, 292
ER_IB_MSG_453 error code, 289 ER_IB_MSG_501 error code, 292
ER_IB_MSG_454 error code, 289 ER_IB_MSG_502 error code, 292
ER_IB_MSG_455 error code, 289 ER_IB_MSG_503 error code, 292
ER_IB_MSG_456 error code, 289 ER_IB_MSG_504 error code, 292
ER_IB_MSG_457 error code, 289 ER_IB_MSG_505 error code, 292
ER_IB_MSG_458 error code, 289 ER_IB_MSG_506 error code, 292
ER_IB_MSG_459 error code, 289 ER_IB_MSG_507 error code, 292
ER_IB_MSG_46 error code, 263 ER_IB_MSG_508 error code, 292
559
ER_IB_MSG_509 error code, 292 ER_IB_MSG_562 error code, 296
ER_IB_MSG_51 error code, 264 ER_IB_MSG_563 error code, 296
ER_IB_MSG_510 error code, 292 ER_IB_MSG_564 error code, 296
ER_IB_MSG_511 error code, 292 ER_IB_MSG_566 error code, 296
ER_IB_MSG_512 error code, 293 ER_IB_MSG_567 error code, 296
ER_IB_MSG_513 error code, 293 ER_IB_MSG_568 error code, 296
ER_IB_MSG_514 error code, 293 ER_IB_MSG_569 error code, 296
ER_IB_MSG_515 error code, 293 ER_IB_MSG_57 error code, 264
ER_IB_MSG_516 error code, 293 ER_IB_MSG_570 error code, 296
ER_IB_MSG_517 error code, 293 ER_IB_MSG_571 error code, 296
ER_IB_MSG_518 error code, 293 ER_IB_MSG_573 error code, 296
ER_IB_MSG_519 error code, 293 ER_IB_MSG_574 error code, 296
ER_IB_MSG_52 error code, 264 ER_IB_MSG_578 error code, 296
ER_IB_MSG_520 error code, 293 ER_IB_MSG_579 error code, 296
ER_IB_MSG_521 error code, 293 ER_IB_MSG_57_STAT_SPACE_DELETE_FAIL error
ER_IB_MSG_522 error code, 293 code, 374
ER_IB_MSG_523 error code, 293 ER_IB_MSG_57_UNDO_SPACE_DELETE_FAIL error
ER_IB_MSG_524 error code, 293 code, 372
ER_IB_MSG_525 error code, 293 ER_IB_MSG_58 error code, 264
ER_IB_MSG_526 error code, 293 ER_IB_MSG_580 error code, 296
ER_IB_MSG_527 error code, 294 ER_IB_MSG_581 error code, 297
ER_IB_MSG_53 error code, 264 ER_IB_MSG_582 error code, 297
ER_IB_MSG_530 error code, 294 ER_IB_MSG_583 error code, 297
ER_IB_MSG_531 error code, 294 ER_IB_MSG_584 error code, 297
ER_IB_MSG_532 error code, 294 ER_IB_MSG_585 error code, 297
ER_IB_MSG_533 error code, 294 ER_IB_MSG_586 error code, 297
ER_IB_MSG_534 error code, 294 ER_IB_MSG_587 error code, 297
ER_IB_MSG_537 error code, 294 ER_IB_MSG_588 error code, 297
ER_IB_MSG_538 error code, 294 ER_IB_MSG_589 error code, 297
ER_IB_MSG_539 error code, 294 ER_IB_MSG_59 error code, 264
ER_IB_MSG_54 error code, 264 ER_IB_MSG_590 error code, 297
ER_IB_MSG_540 error code, 294 ER_IB_MSG_591 error code, 297
ER_IB_MSG_541 error code, 294 ER_IB_MSG_592 error code, 297
ER_IB_MSG_543 error code, 294 ER_IB_MSG_593 error code, 297
ER_IB_MSG_544 error code, 294 ER_IB_MSG_594 error code, 297
ER_IB_MSG_545 error code, 294 ER_IB_MSG_595 error code, 297
ER_IB_MSG_546 error code, 294 ER_IB_MSG_596 error code, 298
ER_IB_MSG_547 error code, 295 ER_IB_MSG_597 error code, 298
ER_IB_MSG_548 error code, 295 ER_IB_MSG_598 error code, 298
ER_IB_MSG_549 error code, 295 ER_IB_MSG_599 error code, 298
ER_IB_MSG_55 error code, 264 ER_IB_MSG_6 error code, 261
ER_IB_MSG_550 error code, 295 ER_IB_MSG_60 error code, 264
ER_IB_MSG_551 error code, 295 ER_IB_MSG_600 error code, 298
ER_IB_MSG_552 error code, 295 ER_IB_MSG_601 error code, 298
ER_IB_MSG_553 error code, 295 ER_IB_MSG_602 error code, 298
ER_IB_MSG_554 error code, 295 ER_IB_MSG_603 error code, 298
ER_IB_MSG_555 error code, 295 ER_IB_MSG_604 error code, 298
ER_IB_MSG_556 error code, 295 ER_IB_MSG_605 error code, 298
ER_IB_MSG_557 error code, 295 ER_IB_MSG_606 error code, 298
ER_IB_MSG_558 error code, 295 ER_IB_MSG_607 error code, 298
ER_IB_MSG_559 error code, 295 ER_IB_MSG_608 error code, 298
ER_IB_MSG_56 error code, 264 ER_IB_MSG_609 error code, 298
ER_IB_MSG_560 error code, 295 ER_IB_MSG_61 error code, 264
ER_IB_MSG_561 error code, 295 ER_IB_MSG_611 error code, 298
560
ER_IB_MSG_612 error code, 299 ER_IB_MSG_696 error code, 302
ER_IB_MSG_613 error code, 299 ER_IB_MSG_697 error code, 302
ER_IB_MSG_614 error code, 299 ER_IB_MSG_7 error code, 261
ER_IB_MSG_615 error code, 299 ER_IB_MSG_70 error code, 265
ER_IB_MSG_616 error code, 299 ER_IB_MSG_707 error code, 303
ER_IB_MSG_617 error code, 299 ER_IB_MSG_708 error code, 303
ER_IB_MSG_619 error code, 299 ER_IB_MSG_709 error code, 303
ER_IB_MSG_62 error code, 264 ER_IB_MSG_71 error code, 265
ER_IB_MSG_623 error code, 299 ER_IB_MSG_710 error code, 303
ER_IB_MSG_624 error code, 299 ER_IB_MSG_711 error code, 303
ER_IB_MSG_626 error code, 299 ER_IB_MSG_712 error code, 303
ER_IB_MSG_627 error code, 299 ER_IB_MSG_713 error code, 303
ER_IB_MSG_628 error code, 299 ER_IB_MSG_714 error code, 303
ER_IB_MSG_629 error code, 300 ER_IB_MSG_715 error code, 303
ER_IB_MSG_63 error code, 264 ER_IB_MSG_716 error code, 303
ER_IB_MSG_630 error code, 300 ER_IB_MSG_718 error code, 303
ER_IB_MSG_631 error code, 300 ER_IB_MSG_719 error code, 303
ER_IB_MSG_632 error code, 300 ER_IB_MSG_72 error code, 265
ER_IB_MSG_633 error code, 300 ER_IB_MSG_720 error code, 303
ER_IB_MSG_634 error code, 300 ER_IB_MSG_722 error code, 304
ER_IB_MSG_635 error code, 300 ER_IB_MSG_723 error code, 304
ER_IB_MSG_636 error code, 300 ER_IB_MSG_724 error code, 304
ER_IB_MSG_637 error code, 300 ER_IB_MSG_725 error code, 304
ER_IB_MSG_638 error code, 300 ER_IB_MSG_726 error code, 304
ER_IB_MSG_639 error code, 300 ER_IB_MSG_727 error code, 304
ER_IB_MSG_64 error code, 264 ER_IB_MSG_728 error code, 304
ER_IB_MSG_642 error code, 300 ER_IB_MSG_73 error code, 265
ER_IB_MSG_643 error code, 300 ER_IB_MSG_737 error code, 305
ER_IB_MSG_644 error code, 300 ER_IB_MSG_738 error code, 305
ER_IB_MSG_645 error code, 300 ER_IB_MSG_739 error code, 305
ER_IB_MSG_646 error code, 301 ER_IB_MSG_74 error code, 265
ER_IB_MSG_647 error code, 301 ER_IB_MSG_740 error code, 305
ER_IB_MSG_648 error code, 301 ER_IB_MSG_741 error code, 305
ER_IB_MSG_649 error code, 301 ER_IB_MSG_742 error code, 305
ER_IB_MSG_65 error code, 264 ER_IB_MSG_743 error code, 305
ER_IB_MSG_650 error code, 301 ER_IB_MSG_744 error code, 305
ER_IB_MSG_651 error code, 301 ER_IB_MSG_745 error code, 305
ER_IB_MSG_652 error code, 301 ER_IB_MSG_746 error code, 305
ER_IB_MSG_654 error code, 301 ER_IB_MSG_747 error code, 305
ER_IB_MSG_655 error code, 301 ER_IB_MSG_748 error code, 305
ER_IB_MSG_656 error code, 301 ER_IB_MSG_749 error code, 305
ER_IB_MSG_657 error code, 301 ER_IB_MSG_75 error code, 265
ER_IB_MSG_658 error code, 301 ER_IB_MSG_750 error code, 306
ER_IB_MSG_659 error code, 301 ER_IB_MSG_751 error code, 306
ER_IB_MSG_66 error code, 265 ER_IB_MSG_752 error code, 306
ER_IB_MSG_660 error code, 301 ER_IB_MSG_753 error code, 306
ER_IB_MSG_661 error code, 302 ER_IB_MSG_754 error code, 306
ER_IB_MSG_662 error code, 302 ER_IB_MSG_755 error code, 306
ER_IB_MSG_663 error code, 302 ER_IB_MSG_756 error code, 306
ER_IB_MSG_67 error code, 265 ER_IB_MSG_757 error code, 306
ER_IB_MSG_68 error code, 265 ER_IB_MSG_758 error code, 306
ER_IB_MSG_69 error code, 265 ER_IB_MSG_759 error code, 306
ER_IB_MSG_694 error code, 302 ER_IB_MSG_76 error code, 265
ER_IB_MSG_695 error code, 302 ER_IB_MSG_760 error code, 306
561
ER_IB_MSG_761 error code, 306 ER_IB_MSG_810 error code, 309
ER_IB_MSG_762 error code, 306 ER_IB_MSG_811 error code, 310
ER_IB_MSG_763 error code, 306 ER_IB_MSG_812 error code, 310
ER_IB_MSG_764 error code, 306 ER_IB_MSG_813 error code, 310
ER_IB_MSG_765 error code, 307 ER_IB_MSG_814 error code, 310
ER_IB_MSG_766 error code, 307 ER_IB_MSG_815 error code, 310
ER_IB_MSG_767 error code, 307 ER_IB_MSG_816 error code, 310
ER_IB_MSG_768 error code, 307 ER_IB_MSG_817 error code, 310
ER_IB_MSG_769 error code, 307 ER_IB_MSG_818 error code, 310
ER_IB_MSG_77 error code, 265 ER_IB_MSG_819 error code, 310
ER_IB_MSG_770 error code, 307 ER_IB_MSG_82 error code, 266
ER_IB_MSG_771 error code, 307 ER_IB_MSG_820 error code, 310
ER_IB_MSG_772 error code, 307 ER_IB_MSG_821 error code, 310
ER_IB_MSG_773 error code, 307 ER_IB_MSG_822 error code, 310
ER_IB_MSG_774 error code, 307 ER_IB_MSG_823 error code, 310
ER_IB_MSG_775 error code, 307 ER_IB_MSG_824 error code, 310
ER_IB_MSG_776 error code, 307 ER_IB_MSG_825 error code, 310
ER_IB_MSG_777 error code, 307 ER_IB_MSG_826 error code, 311
ER_IB_MSG_778 error code, 307 ER_IB_MSG_827 error code, 311
ER_IB_MSG_779 error code, 307 ER_IB_MSG_828 error code, 311
ER_IB_MSG_78 error code, 265 ER_IB_MSG_829 error code, 311
ER_IB_MSG_780 error code, 308 ER_IB_MSG_83 error code, 266
ER_IB_MSG_781 error code, 308 ER_IB_MSG_831 error code, 311
ER_IB_MSG_782 error code, 308 ER_IB_MSG_832 error code, 311
ER_IB_MSG_783 error code, 308 ER_IB_MSG_833 error code, 311
ER_IB_MSG_784 error code, 308 ER_IB_MSG_834 error code, 311
ER_IB_MSG_785 error code, 308 ER_IB_MSG_835 error code, 311
ER_IB_MSG_786 error code, 308 ER_IB_MSG_836 error code, 311
ER_IB_MSG_787 error code, 308 ER_IB_MSG_837 error code, 311
ER_IB_MSG_788 error code, 308 ER_IB_MSG_838 error code, 311
ER_IB_MSG_789 error code, 308 ER_IB_MSG_839 error code, 311
ER_IB_MSG_79 error code, 265 ER_IB_MSG_84 error code, 266
ER_IB_MSG_790 error code, 308 ER_IB_MSG_840 error code, 311
ER_IB_MSG_791 error code, 308 ER_IB_MSG_841 error code, 311
ER_IB_MSG_792 error code, 308 ER_IB_MSG_842 error code, 312
ER_IB_MSG_793 error code, 308 ER_IB_MSG_844 error code, 312
ER_IB_MSG_794 error code, 308 ER_IB_MSG_845 error code, 312
ER_IB_MSG_795 error code, 309 ER_IB_MSG_847 error code, 312
ER_IB_MSG_796 error code, 309 ER_IB_MSG_848 error code, 312
ER_IB_MSG_797 error code, 309 ER_IB_MSG_849 error code, 312
ER_IB_MSG_798 error code, 309 ER_IB_MSG_85 error code, 266
ER_IB_MSG_799 error code, 309 ER_IB_MSG_850 error code, 312
ER_IB_MSG_8 error code, 261 ER_IB_MSG_851 error code, 312
ER_IB_MSG_80 error code, 265 ER_IB_MSG_852 error code, 312
ER_IB_MSG_801 error code, 309 ER_IB_MSG_853 error code, 312
ER_IB_MSG_802 error code, 309 ER_IB_MSG_854 error code, 312
ER_IB_MSG_803 error code, 309 ER_IB_MSG_855 error code, 312
ER_IB_MSG_804 error code, 309 ER_IB_MSG_856 error code, 312
ER_IB_MSG_805 error code, 309 ER_IB_MSG_857 error code, 313
ER_IB_MSG_806 error code, 309 ER_IB_MSG_858 error code, 313
ER_IB_MSG_807 error code, 309 ER_IB_MSG_859 error code, 313
ER_IB_MSG_808 error code, 309 ER_IB_MSG_86 error code, 266
ER_IB_MSG_809 error code, 309 ER_IB_MSG_860 error code, 313
ER_IB_MSG_81 error code, 266 ER_IB_MSG_861 error code, 313
562
ER_IB_MSG_862 error code, 313 ER_IB_MSG_915 error code, 316
ER_IB_MSG_863 error code, 313 ER_IB_MSG_916 error code, 316
ER_IB_MSG_864 error code, 313 ER_IB_MSG_917 error code, 317
ER_IB_MSG_865 error code, 313 ER_IB_MSG_918 error code, 317
ER_IB_MSG_866 error code, 313 ER_IB_MSG_919 error code, 317
ER_IB_MSG_867 error code, 313 ER_IB_MSG_920 error code, 317
ER_IB_MSG_868 error code, 313 ER_IB_MSG_921 error code, 317
ER_IB_MSG_869 error code, 313 ER_IB_MSG_922 error code, 317
ER_IB_MSG_870 error code, 313 ER_IB_MSG_923 error code, 317
ER_IB_MSG_871 error code, 313 ER_IB_MSG_924 error code, 317
ER_IB_MSG_872 error code, 314 ER_IB_MSG_925 error code, 317
ER_IB_MSG_873 error code, 314 ER_IB_MSG_926 error code, 317
ER_IB_MSG_874 error code, 314 ER_IB_MSG_927 error code, 317
ER_IB_MSG_875 error code, 314 ER_IB_MSG_928 error code, 317
ER_IB_MSG_876 error code, 314 ER_IB_MSG_929 error code, 317
ER_IB_MSG_877 error code, 314 ER_IB_MSG_930 error code, 317
ER_IB_MSG_878 error code, 314 ER_IB_MSG_931 error code, 317
ER_IB_MSG_879 error code, 314 ER_IB_MSG_932 error code, 318
ER_IB_MSG_880 error code, 314 ER_IB_MSG_933 error code, 318
ER_IB_MSG_881 error code, 314 ER_IB_MSG_934 error code, 318
ER_IB_MSG_882 error code, 314 ER_IB_MSG_935 error code, 318
ER_IB_MSG_883 error code, 314 ER_IB_MSG_936 error code, 318
ER_IB_MSG_884 error code, 314 ER_IB_MSG_937 error code, 318
ER_IB_MSG_885 error code, 314 ER_IB_MSG_938 error code, 318
ER_IB_MSG_886 error code, 314 ER_IB_MSG_939 error code, 318
ER_IB_MSG_887 error code, 315 ER_IB_MSG_940 error code, 318
ER_IB_MSG_888 error code, 315 ER_IB_MSG_941 error code, 318
ER_IB_MSG_889 error code, 315 ER_IB_MSG_942 error code, 318
ER_IB_MSG_890 error code, 315 ER_IB_MSG_943 error code, 318
ER_IB_MSG_891 error code, 315 ER_IB_MSG_944 error code, 318
ER_IB_MSG_892 error code, 315 ER_IB_MSG_945 error code, 318
ER_IB_MSG_893 error code, 315 ER_IB_MSG_946 error code, 318
ER_IB_MSG_894 error code, 315 ER_IB_MSG_948 error code, 319
ER_IB_MSG_895 error code, 315 ER_IB_MSG_949 error code, 319
ER_IB_MSG_896 error code, 315 ER_IB_MSG_95 error code, 266
ER_IB_MSG_897 error code, 315 ER_IB_MSG_950 error code, 319
ER_IB_MSG_898 error code, 315 ER_IB_MSG_951 error code, 319
ER_IB_MSG_899 error code, 315 ER_IB_MSG_952 error code, 319
ER_IB_MSG_9 error code, 261 ER_IB_MSG_953 error code, 319
ER_IB_MSG_900 error code, 315 ER_IB_MSG_954 error code, 319
ER_IB_MSG_901 error code, 315 ER_IB_MSG_955 error code, 319
ER_IB_MSG_902 error code, 316 ER_IB_MSG_956 error code, 319
ER_IB_MSG_903 error code, 316 ER_IB_MSG_957 error code, 319
ER_IB_MSG_904 error code, 316 ER_IB_MSG_958 error code, 319
ER_IB_MSG_905 error code, 316 ER_IB_MSG_959 error code, 319
ER_IB_MSG_906 error code, 316 ER_IB_MSG_96 error code, 266
ER_IB_MSG_907 error code, 316 ER_IB_MSG_960 error code, 319
ER_IB_MSG_908 error code, 316 ER_IB_MSG_961 error code, 319
ER_IB_MSG_909 error code, 316 ER_IB_MSG_962 error code, 320
ER_IB_MSG_910 error code, 316 ER_IB_MSG_963 error code, 320
ER_IB_MSG_911 error code, 316 ER_IB_MSG_964 error code, 320
ER_IB_MSG_912 error code, 316 ER_IB_MSG_965 error code, 320
ER_IB_MSG_913 error code, 316 ER_IB_MSG_966 error code, 320
ER_IB_MSG_914 error code, 316 ER_IB_MSG_967 error code, 320
563
ER_IB_MSG_968 error code, 320 ER_IB_MSG_CANT_ENCRYPT_REDO_LOG_DATA
ER_IB_MSG_969 error code, 320 error code, 312
ER_IB_MSG_97 error code, 266 ER_IB_MSG_CLEAR_INSTANT_DROP_COLUMN_METADATA
ER_IB_MSG_970 error code, 320 error code, 406
ER_IB_MSG_971 error code, 320 ER_IB_MSG_CLOCK_GETTIME_FAILED error code,
ER_IB_MSG_972 error code, 320 363
ER_IB_MSG_973 error code, 320 ER_IB_MSG_CLOCK_MONOTONIC_UNSUPPORTED
ER_IB_MSG_974 error code, 320 error code, 363
ER_IB_MSG_975 error code, 320 ER_IB_MSG_CLONE_DDL_APPLY error code, 393
ER_IB_MSG_976 error code, 320 ER_IB_MSG_CLONE_DDL_INVALIDATE error code,
ER_IB_MSG_977 error code, 321 393
ER_IB_MSG_978 error code, 321 ER_IB_MSG_CLONE_DDL_NTFN error code, 393
ER_IB_MSG_979 error code, 321 ER_IB_MSG_CREATED_UNDO_SPACE error code,
ER_IB_MSG_98 error code, 266 382
ER_IB_MSG_980 error code, 321 ER_IB_MSG_DATA_DIRECTORY_NOT_INITIALIZED_OR_CORRUP
ER_IB_MSG_981 error code, 321 error code, 331
ER_IB_MSG_982 error code, 321 ER_IB_MSG_DBLWR_1285 error code, 372
ER_IB_MSG_983 error code, 321 ER_IB_MSG_DBLWR_1286 error code, 372
ER_IB_MSG_984 error code, 321 ER_IB_MSG_DBLWR_1287 error code, 372
ER_IB_MSG_985 error code, 321 ER_IB_MSG_DBLWR_1288 error code, 372
ER_IB_MSG_986 error code, 321 ER_IB_MSG_DBLWR_1290 error code, 372
ER_IB_MSG_987 error code, 321 ER_IB_MSG_DBLWR_1293 error code, 372
ER_IB_MSG_988 error code, 321 ER_IB_MSG_DBLWR_1294 error code, 372
ER_IB_MSG_989 error code, 321 ER_IB_MSG_DBLWR_1295 error code, 372
ER_IB_MSG_99 error code, 266 ER_IB_MSG_DBLWR_1296 error code, 372
ER_IB_MSG_990 error code, 321 ER_IB_MSG_DBLWR_1297 error code, 372
ER_IB_MSG_991 error code, 321 ER_IB_MSG_DBLWR_1298 error code, 373
ER_IB_MSG_992 error code, 322 ER_IB_MSG_DBLWR_1300 error code, 373
ER_IB_MSG_993 error code, 322 ER_IB_MSG_DBLWR_1301 error code, 373
ER_IB_MSG_994 error code, 322 ER_IB_MSG_DBLWR_1304 error code, 373
ER_IB_MSG_995 error code, 322 ER_IB_MSG_DBLWR_1305 error code, 373
ER_IB_MSG_996 error code, 322 ER_IB_MSG_DBLWR_1306 error code, 373
ER_IB_MSG_997 error code, 322 ER_IB_MSG_DBLWR_1307 error code, 373
ER_IB_MSG_998 error code, 322 ER_IB_MSG_DBLWR_1308 error code, 373
ER_IB_MSG_999 error code, 322 ER_IB_MSG_DBLWR_1309 error code, 373
ER_IB_MSG_BAD_DBLWR_FILE_NAME error code, ER_IB_MSG_DBLWR_1310 error code, 373
372 ER_IB_MSG_DBLWR_1311 error code, 373
ER_IB_MSG_BTREE_LEVEL_LIMIT_EXCEEDED error ER_IB_MSG_DBLWR_1312 error code, 373
code, 365 ER_IB_MSG_DBLWR_1313 error code, 373
ER_IB_MSG_BUF_PENDING_IO error code, 329 ER_IB_MSG_DBLWR_1314 error code, 373
ER_IB_MSG_BUF_PENDING_IO_ON_SHUTDOWN ER_IB_MSG_DBLWR_1315 error code, 373
error code, 339 ER_IB_MSG_DBLWR_1316 error code, 374
ER_IB_MSG_BUF_POOL_RESIZE_CODE_STATUS ER_IB_MSG_DBLWR_1317 error code, 374
error code, 407 ER_IB_MSG_DBLWR_1318 error code, 374
ER_IB_MSG_BUF_POOL_RESIZE_COMPLETE_CUR_CODEER_IB_MSG_DBLWR_1320 error code, 374
error code, 406 ER_IB_MSG_DBLWR_1321 error code, 374
ER_IB_MSG_BUF_POOL_RESIZE_PROGRESS_UPDATE ER_IB_MSG_DBLWR_1323 error code, 374
error code, 407 ER_IB_MSG_DBLWR_1324 error code, 374
ER_IB_MSG_CANNOT_FIND_DD_UNDO_SPACE error ER_IB_MSG_DBLWR_1325 error code, 374
code, 376 ER_IB_MSG_DBLWR_1326 error code, 374
ER_IB_MSG_CANNOT_OPEN_57_UNDO error code, ER_IB_MSG_DBLWR_1327 error code, 374
328 ER_IB_MSG_DBLWR_LOAD_WRONG_SIZE error
ER_IB_MSG_CANT_DECRYPT_REDO_LOG error code, 374
code, 312
564
ER_IB_MSG_DBLWR_OPEN_OR_CREATE_WRONG_SIZE ER_IB_MSG_INJECT_CRASH error code, 381
error code, 374 ER_IB_MSG_INJECT_FAILURE error code, 381
ER_IB_MSG_DDL_FAIL_NO_BUILDER error code, 416 ER_IB_MSG_INNODB_END_INITIALIZE error code, 375
ER_IB_MSG_DDL_LOG_DELETE_BY_ID_OK error ER_IB_MSG_INNODB_FLUSH_METHOD error code,
code, 301 428
ER_IB_MSG_DDL_LOG_DELETE_BY_ID_TMCT error ER_IB_MSG_INNODB_START_INITIALIZE error code,
code, 362 375
ER_IB_MSG_DDL_LOG_FAIL_POST_DDL error code, ER_IB_MSG_INVALID_LOCATION_FOR_TABLE error
362 code, 296
ER_IB_MSG_DEPRECATED_INNODB_UNDO_TABLESPACES ER_IB_MSG_INVALID_LOCATION_FOR_TABLESPACE
error code, 352 error code, 376
ER_IB_MSG_DICT_PARTITION_NOT_FOUND error ER_IB_MSG_INVALID_LOCATION_WRONG_DB error
code, 371 code, 376
ER_IB_MSG_DOWNGRADE_PARTITION_FILE error ER_IB_MSG_INVALID_PAGE_TYPE error code, 407
code, 370 ER_IB_MSG_LOCK_FREE_HASH_USAGE_STATS
ER_IB_MSG_DROPPED_UNDO_SPACE error code, error code, 352
382 ER_IB_MSG_LOG_CHECKPOINT_FOUND error code,
ER_IB_MSG_ERROR_OPENING_NEW_UNDO_SPACE 401
error code, 351 ER_IB_MSG_LOG_CORRUPT error code, 302
ER_IB_MSG_FAILED_SDI_Z_BUF_ERROR error code, ER_IB_MSG_LOG_FILES_CANNOT_ENCRYPT_IN_READ_ONL
352 error code, 338
ER_IB_MSG_FAILED_SDI_Z_MEM_ERROR error code, ER_IB_MSG_LOG_FILES_CAPACITY_CHANGED error
352 code, 401
ER_IB_MSG_FAILED_TO_ALLOCATE_WAIT error ER_IB_MSG_LOG_FILES_CREATED_BY_CLONE error
code, 351 code, 304
ER_IB_MSG_FAILED_TO_FINISH_TRUNCATE error ER_IB_MSG_LOG_FILES_CREATED_BY_CLONE_AND_READ_
code, 352 error code, 399
ER_IB_MSG_FAIL_TO_SAVE_SPACE_STATE error ER_IB_MSG_LOG_FILES_CREATED_BY_MEB error
code, 351 code, 304
ER_IB_MSG_FILE_RESIZE error code, 326 ER_IB_MSG_LOG_FILES_CREATED_BY_MEB_AND_READ_ON
ER_IB_MSG_FIL_STATE_MOVED_CHANGED_NAME error code, 304
error code, 371 ER_IB_MSG_LOG_FILES_CREATED_BY_UNKNOWN_CREATO
ER_IB_MSG_FIL_STATE_MOVED_CHANGED_PATH error code, 401
error code, 371 ER_IB_MSG_LOG_FILES_CREATE_AND_READ_ONLY_MODE
ER_IB_MSG_FIL_STATE_MOVED_CORRECTED error error code, 326
code, 370 ER_IB_MSG_LOG_FILES_DIFFERENT_SIZES error
ER_IB_MSG_FIL_STATE_MOVED_PREV error code, code, 331
429 ER_IB_MSG_LOG_FILES_ENCRYPTION_INIT_FAILED
ER_IB_MSG_FIL_STATE_MOVED_TOO_MANY error error code, 338
code, 371 ER_IB_MSG_LOG_FILES_FOUND_MISSING error
ER_IB_MSG_FOUND_WRONG_UNDO_SPACE error code, 401
code, 352 ER_IB_MSG_LOG_FILES_INITIALIZED error code, 327
ER_IB_MSG_GENERAL_TABLESPACE_UNDER_DATADIR ER_IB_MSG_LOG_FILES_INVALID_SET error code,
error code, 284 331
ER_IB_MSG_GTID_FLUSH_AT_SHUTDOWN error ER_IB_MSG_LOG_FILES_RESIZE_CANCELLED error
code, 374 code, 401
ER_IB_MSG_IBUF_CURSOR_RESTORATION_FAILED ER_IB_MSG_LOG_FILES_RESIZE_FINISHED error
error code, 299 code, 401
ER_IB_MSG_IBUF_FAILED_TO_RESTORE_POSITION ER_IB_MSG_LOG_FILES_RESIZE_ON_START error
error code, 299 code, 337
ER_IB_MSG_IGNORE_SCAN_PATH error code, 283 ER_IB_MSG_LOG_FILES_RESIZE_REQUESTED error
ER_IB_MSG_IMPLICIT_TABLESPACE_IN_DATADIR code, 401
error code, 284 ER_IB_MSG_LOG_FILES_REWRITING error code, 332
ER_IB_MSG_INCORRECT_SIZE error code, 381 ER_IB_MSG_LOG_FILES_UPGRADE error code, 401
565
ER_IB_MSG_LOG_FILE_DIFFERENT_FORMATS error ER_IB_MSG_LOG_FORMAT_OLD_AND_LOG_CORRUPTED
code, 402 error code, 302
ER_IB_MSG_LOG_FILE_FOREIGN_UUID error code, ER_IB_MSG_LOG_FORMAT_OLD_AND_NO_CLEAN_SHUTDOWN
400 error code, 302
ER_IB_MSG_LOG_FILE_FORMAT_TOO_NEW error ER_IB_MSG_LOG_INIT_DIR_LIST_FAILED error code,
code, 401 399
ER_IB_MSG_LOG_FILE_FORMAT_TOO_OLD error ER_IB_MSG_LOG_INIT_DIR_MISSING_SUBDIR error
code, 401 code, 399
ER_IB_MSG_LOG_FILE_FORMAT_UNKNOWN error ER_IB_MSG_LOG_INIT_DIR_NOT_EMPTY_WONT_INITIALIZE
code, 302 error code, 399
ER_IB_MSG_LOG_FILE_HEADER_INVALID_CHECKSUM ER_IB_MSG_LOG_PARAMS_CONCURRENCY_MARGIN_UNSAFE
error code, 340 error code, 340
ER_IB_MSG_LOG_FILE_HEADER_READ_FAILED ER_IB_MSG_LOG_PARAMS_DEDICATED_SERVER_IGNORED
error code, 399 error code, 402
ER_IB_MSG_LOG_FILE_INVALID_LSN_RANGES error ER_IB_MSG_LOG_PARAMS_FILE_SIZE_UNUSED
code, 400 error code, 400
ER_IB_MSG_LOG_FILE_INVALID_START_LSN error ER_IB_MSG_LOG_PARAMS_LEGACY_USAGE error
code, 400 code, 403
ER_IB_MSG_LOG_FILE_IS_EMPTY error code, 398 ER_IB_MSG_LOG_PARAMS_N_FILES_UNUSED error
ER_IB_MSG_LOG_FILE_MARK_AS_UNUSED_FAILED code, 400
error code, 402 ER_IB_MSG_LOG_PFS_ACQUIRE_SERVICES_FAILED
ER_IB_MSG_LOG_FILE_MARK_CURRENT_AS_INCOMPLETE error code, 402
error code, 401 ER_IB_MSG_LOG_PFS_CREATE_TABLES_FAILED
ER_IB_MSG_LOG_FILE_MISSING_FOR_ID error code, error code, 402
400 ER_IB_MSG_LOG_PRE_8_0_30_MISSING_FILE0 error
ER_IB_MSG_LOG_FILE_OPEN_FAILED error code, code, 402
327 ER_IB_MSG_LOG_UPGRADE_CLONED_DB error
ER_IB_MSG_LOG_FILE_OS_CREATE_FAILED error code, 400
code, 326 ER_IB_MSG_LOG_UPGRADE_CORRUPTION__UNEXPECTED
ER_IB_MSG_LOG_FILE_PREPARE_ON_CREATE_FAILEDerror code, 400
error code, 327 ER_IB_MSG_LOG_UPGRADE_FORCED_RECV error
ER_IB_MSG_LOG_FILE_REMOVE_FAILED error code, code, 400
401 ER_IB_MSG_LOG_UPGRADE_IN_READ_ONLY_MODE
ER_IB_MSG_LOG_FILE_RENAME_ON_CREATE_FAILED error code, 400
error code, 401 ER_IB_MSG_LOG_UPGRADE_UNINITIALIZED_FILES
ER_IB_MSG_LOG_FILE_RESIZE_FAILED error code, error code, 400
326 ER_IB_MSG_LOG_WRITER_ABORTS_LOG_ARCHIVER
ER_IB_MSG_LOG_FILE_SIZE_INVALID error code, 331 error code, 338
ER_IB_MSG_LOG_FILE_TOO_BIG error code, 399 ER_IB_MSG_LOG_WRITER_ENTERED_EXTRA_MARGIN
ER_IB_MSG_LOG_FILE_TOO_SMALL error code, 399 error code, 399
ER_IB_MSG_LOG_FILE_TRUNCATE error code, 402 ER_IB_MSG_LOG_WRITER_EXITED_EXTRA_MARGIN
ER_IB_MSG_LOG_FILE_UNUSED_MARK_AS_IN_USE_FAILED error code, 399
error code, 402 ER_IB_MSG_LOG_WRITER_OUT_OF_SPACE error
ER_IB_MSG_LOG_FILE_UNUSED_REMOVE_FAILED code, 338
error code, 402 ER_IB_MSG_LOG_WRITER_WAITING_FOR_ARCHIVER
ER_IB_MSG_LOG_FILE_UNUSED_RENAME_FAILED error code, 338
error code, 402 ER_IB_MSG_LOG_WRITER_WAIT_ON_CONSUMER
ER_IB_MSG_LOG_FILE_UNUSED_RESIZE_FAILED error code, 405
error code, 402 ER_IB_MSG_LOG_WRITER_WAIT_ON_NEW_LOG_FILE
ER_IB_MSG_LOG_FORMAT_BEFORE_5_7_9 error error code, 399
code, 340 ER_IB_MSG_LOG_WRITER_WRITE_FAILED error
ER_IB_MSG_LOG_FORMAT_BEFORE_8_0_30 error code, 399
code, 302 ER_IB_MSG_MADVISE_FAILED error code, 351
ER_IB_MSG_LOG_FORMAT_OLD error code, 304
566
ER_IB_MSG_MADV_DONTDUMP_UNSUPPORTED ER_IB_MSG_TOO_LONG_PATH error code, 363
error code, 351 ER_IB_MSG_TRX_RECOVERY_ROLLBACK_COMPLETED
ER_IB_MSG_MASTER_KEY_ROTATED error code, 382 error code, 335
ER_IB_MSG_MAX_UNDO_SPACES_REACHED error ER_IB_MSG_TRX_RECOVERY_ROLLBACK_NOT_COMPLETED
code, 351 error code, 377
ER_IB_MSG_NOT_END_WITH_IBU error code, 352 ER_IB_MSG_TRYING_TO_OPEN_FILE_FOR_LONG_TIME
ER_IB_MSG_NO_ENCRYPT_PROGRESS_FOUND error code, 396
error code, 347 ER_IB_MSG_UNDO_ALTERED_ACTIVE error code,
ER_IB_MSG_PAGE_ARCH_NO_RESET_POINTS error 380
code, 375 ER_IB_MSG_UNDO_ALTERED_INACTIVE error code,
ER_IB_MSG_PARSE_OLD_REDO_INDEX_VERSION 380
error code, 406 ER_IB_MSG_UNDO_ENCRYPTION_INFO_LOADED
ER_IB_MSG_PAR_RSEG_INIT_COMPLETE_MSG error error code, 393
code, 391 ER_IB_MSG_UNDO_MARKED_ACTIVE error code, 380
ER_IB_MSG_PAR_RSEG_INIT_TIME_MSG error code, ER_IB_MSG_UNDO_MARKED_EMPTY error code, 380
391 ER_IB_MSG_UNDO_MARKED_FOR_TRUNCATE error
ER_IB_MSG_POST_RECOVER_DDL_LOG_RECOVER code, 333
error code, 362 ER_IB_MSG_UNDO_TRUNCATE_COMPLETE error
ER_IB_MSG_POST_RECOVER_POST_TS_ENCRYPT code, 334
error code, 362 ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_CLONE
ER_IB_MSG_RECOVERY_CHECKPOINT_FROM_BEFORE_CLEAN_SHUTDOWN
error code, 380
error code, 304 ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_FAILURE
ER_IB_MSG_RECOVERY_CHECKPOINT_NOT_FOUND error code, 334
error code, 303 ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_LOG_CREATE
ER_IB_MSG_RECOVERY_CHECKPOINT_OUTSIDE_LOG_FILE
error code, 334
error code, 399 ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_MDL
ER_IB_MSG_RECOVERY_CORRUPT error code, 332 error code, 381
ER_IB_MSG_RECOVERY_IN_READ_ONLY error code, ER_IB_MSG_UNDO_TRUNCATE_FAIL_TO_READ_LOG_FILE
305 error code, 333
ER_IB_MSG_RECOVERY_IS_NEEDED error code, 305 ER_IB_MSG_UNDO_TRUNCATE_START error code,
ER_IB_MSG_RECOVERY_NO_SPACE_IN_REDO_LOG__SKIP_IBUF_MERGES
334
error code, 391 ER_IB_MSG_UNDO_TRUNCATE_TOO_OFTEN error
ER_IB_MSG_RECOVERY_NO_SPACE_IN_REDO_LOG__UNEXPECTED
code, 375
error code, 391 ER_IB_MSG_UNEXPECTED_FILE_EXISTS error code,
ER_IB_MSG_RECOVERY_SKIPPED_IN_READ_ONLY_MODE 279
error code, 304 ER_IB_MSG_UNPROCESSED_REDO_LOG_RECORDS
ER_IB_MSG_REENCRYPTED_GENERAL_TABLESPACE_KEY error code, 302
error code, 391 ER_IB_MSG_UNPROTECTED_LOCATION_ALLOWED
ER_IB_MSG_REENCRYPTED_TABLESPACE_KEY error code, 282
error code, 391 ER_IB_MSG_UPGRADE_PARTITION_FILE error code,
ER_IB_MSG_RESUME_OP_FOR_SPACE error code, 370
347 ER_IB_MSG_UPGRADE_PARTITION_FILE_IMPORT
ER_IB_MSG_SCANNING_TEMP_TABLESPACE_DIR error code, 370
error code, 378 ER_IB_MSG_USING_UNDO_SPACE error code, 351
ER_IB_MSG_SDI_Z_STREAM_ERROR error code, 352 ER_IB_MSG_WAIT_FOR_ENCRYPT_THREAD error
ER_IB_MSG_SDI_Z_UNKNOWN_ERROR error code, code, 347
352 ER_IB_MSG_WRONG_TABLESPACE_DIR error code,
ER_IB_MSG_SKIP_HIDDEN_DIR error code, 369 352
ER_IB_MSG_STATS_SAMPLING_TOO_LARGE error ER_IB_PARALLEL_READER_WORKER_INFO error
code, 385 code, 407
ER_IB_MSG_SUBMIT_DETAILED_BUG_REPORT error ER_IB_PRIMARY_KEY_IS_INSTANT error code, 410
code, 427 ER_IB_RDBLWR_BYTES_INFO error code, 398
ER_IB_MSG_THREAD_CONCURRENCY_CHANGED ER_IB_RECV_FIRST_REC_GROUP_INVALID error
error code, 340 code, 363
567
ER_IB_RELOCK_LATCH_ORDER_VIOLATION error ER_ILLEGAL_GRANT_FOR_TABLE error code, 13
code, 378 ER_ILLEGAL_HA error code, 5
ER_IB_RESURRECT_ACQUIRE_TABLE_LOCK error ER_ILLEGAL_HA_CREATE_OPTION error code, 34
code, 412 ER_ILLEGAL_PRIVILEGE_LEVEL error code, 84
ER_IB_RESURRECT_IDENTIFY_TABLE_TO_LOCK ER_ILLEGAL_REFERENCE error code, 19
error code, 412 ER_ILLEGAL_USER_VAR error code, 65
ER_IB_RESURRECT_RECORD_COMPLETE error ER_ILLEGAL_VALUE_FOR_TYPE error code, 27
code, 413 ER_IMDS_OCI_ERROR error code, 431
ER_IB_RESURRECT_RECORD_PROGRESS error ER_IMDS_OCI_INFO error code, 431
code, 412 ER_IMDS_OCI_WARNING error code, 431
ER_IB_RESURRECT_TRX_INSERT error code, 412 ER_IMPLICIT_COMPARISON_FOR_JSON error code,
ER_IB_RESURRECT_TRX_INSERT_COMPLETE error 112
code, 413 ER_IMPOSSIBLE_STRING_CONVERSION error code,
ER_IB_RESURRECT_TRX_UPDATE error code, 412 112
ER_IB_RESURRECT_TRX_UPDATE_COMPLETE error ER_IMP_INCOMPATIBLE_CFG_VERSION error code,
code, 413 109
ER_IB_SELECT_COUNT_STAR error code, 411 ER_IMP_INCOMPATIBLE_DD_VERSION error code, 84
ER_IB_SYNC_READ_FAILED error code, 419 ER_IMP_INCOMPATIBLE_MYSQLD_VERSION error
ER_IB_TABLESPACE_PATH_VALIDATION_SKIPPED code, 84
error code, 377 ER_IMP_INCOMPATIBLE_SDI_VERSION error code,
ER_IB_TMP_TABLESPACE_CANNOT_CREATE_DIRECTORY 84
error code, 378 ER_IMP_NO_FILES_MATCHED error code, 83
ER_IB_UNABLE_TO_EXPAND_TEMPORARY_TABLESPACE_POOL
ER_IMP_SCHEMA_DOES_NOT_EXIST error code, 84
error code, 378 ER_IMP_TABLE_ALREADY_EXISTS error code, 84
ER_IB_WARN_ACCESSING_NONEXISTINC_SPACE ER_INCOMPATIBLE_TYPE_AGG error code, 136
error code, 278 ER_INCONSISTENT_ERROR error code, 341
ER_IB_WARN_MANY_NON_LRU_FILES_OPENED ER_INCONSISTENT_PARTITION_INFO_ERROR error
error code, 396 code, 34
ER_IB_WARN_OPEN_PARTITION_FILE error code, ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR
370 error code, 35
ER_IB_WRN_ENCRYPTION_INFO_SIZE_MISMATCH ER_INCORRECT_CURRENT_PASSWORD error code,
error code, 393 104
ER_IB_WRN_FAILED_TO_ACQUIRE_SERVICE error ER_INCORRECT_GLOBAL_LOCAL_VAR error code, 19
code, 387 ER_INCORRECT_TYPE error code, 65
ER_IB_WRN_FAST_SHUTDOWN_REDO_DISABLED ER_INDEX_COLUMN_TOO_LONG error code, 47
error code, 377 ER_INDEX_CORRUPT error code, 47
ER_IB_WRN_IGNORE_REDO_LOG_CAPACITY error ER_INDEX_OTHER_THAN_PK error code, 124
code, 410 ER_INDEX_TYPE_NOT_SUPPORTED_FOR_SPATIAL_INDEX
ER_IB_WRN_OLD_GEOMETRY_TYPE error code, 387 error code, 92
ER_IB_WRN_PAGE_ARCH_FLUSH_DATA error code, ER_INFORMATION_SCHEMA_VERSION_CHANGE
375 error code, 416
ER_IB_WRN_REDO_DISABLED error code, 377 ER_INIT_BOOTSTRAP_COMPLETE error code, 170
ER_IB_WRN_REDO_ENABLED error code, 377 ER_INIT_CANT_OPEN_BOOTSTRAP_FILE error code,
ER_IB_WRONG_PAGEID_AFTER_SYNC_READ error 170
code, 419 ER_INIT_CREATING_DD error code, 170
ER_IB_WRONG_PAGE_ID error code, 419 ER_INIT_DATADIR_EXISTS_AND_NOT_WRITABLE_WONT_INITIAL
ER_IDENTIFIED_BY_UNSUPPORTED error code, 118 error code, 170
ER_IDENT_CAUSES_TOO_LONG_PATH error code, 58 ER_INIT_DATADIR_EXISTS_AND_PATH_TOO_LONG_WONT_INIT
ER_IDENT_CAUSES_TOO_LONG_PATH_IN_UPGRADE error code, 170
error code, 367 ER_INIT_DATADIR_EXISTS_WONT_INITIALIZE error
ER_IF_NOT_EXISTS_UNSUPPORTED_TRG_EXISTS_ON_DIFFERENT_TABLE
code, 170
error code, 121 ER_INIT_DATADIR_NOT_EMPTY_WONT_INITIALIZE
ER_IF_NOT_EXISTS_UNSUPPORTED_UDF_NATIVE_FCT_NAME_COLLISION
error code, 170
error code, 122
568
ER_INIT_FAILED_TO_GENERATE_ROOT_PASSWORD ER_INNODB_IMPORT_WRONG_DROPPED_ENUM_LENGTH
error code, 369 error code, 127
ER_INIT_GENERATING_TEMP_PASSWORD_FOR_ROOTER_INNODB_IMPORT_WRONG_NUMBER_OF_INDEXES_TOO
error code, 170 error code, 128
ER_INIT_ROOT_WITHOUT_PASSWORD error code, ER_INNODB_IMPORT_WRONG_NUMBER_OF_INDEXES_ZER
170 error code, 127
ER_INNODB_ACTIVE_INDEX_CHANGE_FAILED error ER_INNODB_INCOMPATIBLE_WITH_TABLESPACE
code, 203 error code, 115
ER_INNODB_AUTOEXTEND_SIZE_OUT_OF_RANGE ER_INNODB_INDEX_COLUMN_INFO_UNLIKE_MYSQLS
error code, 115 error code, 191
ER_INNODB_CANNOT_CREATE_TABLE error code, ER_INNODB_INDEX_CORRUPT error code, 55
203 ER_INNODB_INSTANT_ADD_DROP_NOT_SUPPORTED_MAX_
ER_INNODB_CANT_BUILD_INDEX_XLATION_TABLE_FOR error code, 126
error code, 191 ER_INNODB_INSTANT_ADD_NOT_SUPPORTED_MAX_FIELDS
ER_INNODB_CANT_FIND_INDEX_IN_INNODB_DD error code, 126
error code, 191 ER_INNODB_INTERNAL_INDEX error code, 203
ER_INNODB_CLOSING_CONNECTION_ROLLS_BACK ER_INNODB_INVALID_AUTOEXTEND_SIZE_VALUE
error code, 191 error code, 115
ER_INNODB_CLUSTERED_INDEX_PRIVATE error ER_INNODB_INVALID_INNODB_UNDO_DIRECTORY
code, 191 error code, 190
ER_INNODB_COMPRESSION_FAILURE error code, ER_INNODB_INVALID_INNODB_UNDO_DIRECTORY_LOCATIO
115 error code, 353
ER_INNODB_DIFF_IN_REF_LEN error code, 203 ER_INNODB_INVALID_LOG_GROUP_HOME_DIR error
ER_INNODB_DIRTY_WATER_MARK_NOT_LOW error code, 190
code, 190 ER_INNODB_INVALID_MONITOR_COUNTER_NAME
ER_INNODB_ERROR_LOGGER_FATAL_MSG error error code, 204
code, 204 ER_INNODB_INVALID_PAGE_SIZE error code, 190
ER_INNODB_ERROR_LOGGER_MSG error code, 204 ER_INNODB_IO_CAPACITY_EXCEEDS_MAX error
ER_INNODB_FAILED_TO_FIND_IDX error code, 203 code, 190
ER_INNODB_FAILED_TO_FIND_IDX_FROM_DICT_CACHE ER_INNODB_IO_WRITE_ERROR_RETRYING error
error code, 203 code, 382
ER_INNODB_FAILED_TO_FIND_IDX_WITH_KEY_NO ER_INNODB_IO_WRITE_FAILED error code, 382
error code, 203 ER_INNODB_MANDATORY error code, 144
ER_INNODB_FILES_SAME error code, 190 ER_INNODB_MAX_ROW_VERSION error code, 121
ER_INNODB_FORCED_RECOVERY error code, 59 ER_INNODB_MONITOR_DEFAULT_VALUE_NOT_DEFINED
ER_INNODB_FT_AUX_NOT_HEX_ID error code, 59 error code, 204
ER_INNODB_FT_LIMIT error code, 53 ER_INNODB_MONITOR_IS_ENABLED error code, 204
ER_INNODB_FT_WRONG_DOCID_COLUMN error ER_INNODB_NO_FT_TEMP_TABLE error code, 53
code, 54 ER_INNODB_ONLINE_LOG_TOO_BIG error code, 54
ER_INNODB_FT_WRONG_DOCID_INDEX error code, ER_INNODB_OUT_OF_RESOURCES error code, 371
54 ER_INNODB_PK_NOT_IN_MYSQL error code, 191
ER_INNODB_IDX_CNT_FEWER_THAN_DEFINED_IN_MYSQL ER_INNODB_PK_ONLY_IN_MYSQL error code, 191
error code, 203 ER_INNODB_READ_ONLY error code, 59
ER_INNODB_IDX_CNT_MORE_THAN_DEFINED_IN_MYSQL ER_INNODB_REDO_ARCHIVING_ENABLED error
error code, 203 code, 112
ER_INNODB_IDX_COLUMN_CNT_DIFF error code, 203 ER_INNODB_REDO_DISABLED error code, 112
ER_INNODB_ILLEGAL_COLON_IN_POOL error code, ER_INNODB_REDO_LOG_ARCHIVE_ACTIVE error
190 code, 101
ER_INNODB_IMPORT_DROP_COL_METADATA_MISMATCH ER_INNODB_REDO_LOG_ARCHIVE_DIRS_INVALID
error code, 128 error code, 101
ER_INNODB_IMPORT_ENUM_NULL_TERMINATOR_MISSING ER_INNODB_REDO_LOG_ARCHIVE_DIR_CLASH
error code, 128 error code, 101
ER_INNODB_IMPORT_ERROR error code, 55 ER_INNODB_REDO_LOG_ARCHIVE_DIR_EMPTY
error code, 101
569
ER_INNODB_REDO_LOG_ARCHIVE_DIR_PERMISSIONSER_INVALID_BITWISE_AGGREGATE_OPERANDS_SIZE
error code, 101 error code, 77
ER_INNODB_REDO_LOG_ARCHIVE_FAILED error ER_INVALID_BITWISE_OPERANDS_SIZE error code,
code, 101 77
ER_INNODB_REDO_LOG_ARCHIVE_FILE_CREATE ER_INVALID_CAST error code, 113
error code, 101 ER_INVALID_CAST_POLYGON_RING_DIRECTION
ER_INNODB_REDO_LOG_ARCHIVE_INACTIVE error error code, 116
code, 101 ER_INVALID_CAST_TO_GEOMETRY error code, 116
ER_INNODB_REDO_LOG_ARCHIVE_LABEL_NOT_FOUND ER_INVALID_CAST_TO_JSON error code, 71
error code, 101 ER_INVALID_CHARACTER_STRING error code, 23
ER_INNODB_REDO_LOG_ARCHIVE_NO_SUCH_DIR ER_INVALID_CHARSET_AND_DEFAULT_IS_MB error
error code, 101 code, 162
ER_INNODB_REDO_LOG_ARCHIVE_SESSION error ER_INVALID_CLAUSE_COMBINATION error code, 138
code, 101 ER_INVALID_CLAUSE_IN_CONTEXT error code, 138
ER_INNODB_REDO_LOG_ARCHIVE_START_SUBDIR_PATH ER_INVALID_COLLATION_FOR_CHARSET error code,
error code, 101 194
ER_INNODB_REDO_LOG_ARCHIVE_START_TIMEOUT ER_INVALID_DD_OBJECT error code, 76
error code, 101 ER_INVALID_DD_OBJECT_ID error code, 76
ER_INNODB_TRX_XLATION_TABLE_OOM error code, ER_INVALID_DD_OBJECT_NAME error code, 76
191 ER_INVALID_DEFAULT error code, 8
ER_INNODB_UNABLE_TO_ACQUIRE_DD_OBJECT ER_INVALID_DEFAULT_UTF8MB4_COLLATION error
error code, 375 code, 91
ER_INNODB_UNDO_LOG_FULL error code, 61 ER_INVALID_ENCRYPTION_OPTION error code, 74
ER_INNODB_UNKNOWN_COLLATION error code, 190 ER_INVALID_ENCRYPTION_REQUEST error code, 100
ER_INNODB_UNREGISTERED_TRX_ACTIVE error ER_INVALID_ERROR_LOG_NAME error code, 151
code, 191 ER_INVALID_FIELD_SIZE error code, 61
ER_INNODB_USE_MONITOR_GROUP_NAME error ER_INVALID_FILE_FORMAT error code, 427
code, 203 ER_INVALID_GEOJSON_CRS_NOT_TOP_LEVEL error
ER_INSECURE_CHANGE_SOURCE error code, 51 code, 88
ER_INSECURE_PLAIN_TEXT error code, 51 ER_INVALID_GEOJSON_MISSING_MEMBER error
ER_INSERT_INFO error code, 9 code, 65
ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_DIRECT
ER_INVALID_GEOJSON_UNSPECIFIED error code, 65
error code, 46 ER_INVALID_GEOJSON_WRONG_TYPE error code, 65
ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_FORMAT
ER_INVALID_GROUP_FUNC_USE error code, 11
error code, 45 ER_INVALID_INFO_IN_FRM error code, 163
ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_SQL_LOG_BIN
ER_INVALID_INSTRUMENT error code, 144
error code, 46 ER_INVALID_JSON_ATTRIBUTE error code, 111
ER_INSTALL_COMPONENT_SET_NULL_VALUE error ER_INVALID_JSON_BINARY_DATA error code, 71
code, 126 ER_INVALID_JSON_CHARSET error code, 71
ER_INSTALL_COMPONENT_SET_UNUSED_VALUE ER_INVALID_JSON_CHARSET_IN_FUNCTION error
error code, 126 code, 71
ER_INSTALL_PLUGIN_CONFLICT_CLIENT error code, ER_INVALID_JSON_DATA error code, 65
117 ER_INVALID_JSON_PATH error code, 71
ER_INSTALL_PLUGIN_CONFLICT_LOG error code, ER_INVALID_JSON_PATH_ARRAY_CELL error code,
390 73
ER_INTERNAL_ERROR error code, 55 ER_INVALID_JSON_PATH_CHARSET error code, 71
ER_INTERSECT_ALL_MAX_DUPLICATES_EXCEEDED ER_INVALID_JSON_PATH_WILDCARD error code, 71
error code, 123 ER_INVALID_JSON_TEXT error code, 71
ER_INVALID_ADMIN_ADDRESS error code, 354 ER_INVALID_JSON_TEXT_IN_PARAM error code, 71
ER_INVALID_ARGUMENT_FOR_LOGARITHM error ER_INVALID_JSON_TYPE error code, 102
code, 61 ER_INVALID_JSON_VALUE_FOR_CAST error code, 72
ER_INVALID_ASSIGNMENT_TARGET error code, 117 ER_INVALID_JSON_VALUE_FOR_FUNC_INDEX error
ER_INVALID_AUTHENTICATION_POLICY error code, code, 105
393 ER_INVALID_LOGGER error code, 430
570
ER_INVALID_METER error code, 430 ER_IO_WRITE_ERROR error code, 55
ER_INVALID_MFA_OPERATIONS_FOR_PASSWORDLESS_USER
ER_IPSOCK_ERROR error code, 8
error code, 118 ER_IS_QUERY_INVALID_CLAUSE error code, 79
ER_INVALID_MFA_PLUGIN_SPECIFIED error code, ER_I_S_SKIPPED_TABLESPACE error code, 86
117 ER_JSON_BAD_ONE_OR_ALL_ARG error code, 72
ER_INVALID_MULTIPLE_CLAUSES error code, 100 ER_JSON_DOCUMENT_NULL_KEY error code, 72
ER_INVALID_NAMED_PIPE_FULL_ACCESS_GROUP ER_JSON_DOCUMENT_TOO_DEEP error code, 72
error code, 359 ER_JSON_KEY_TOO_BIG error code, 72
ER_INVALID_NO_OF_ARGS error code, 83 ER_JSON_PARSE_ERROR error code, 153
ER_INVALID_ON_UPDATE error code, 22 ER_JSON_SCHEMA_VALIDATION_ERROR_WITH_DETAILED_
ER_INVALID_OPTION_CHARACTERS error code, 80 error code, 108
ER_INVALID_OPTION_END_CHARACTER error code, ER_JSON_USED_AS_KEY error code, 72
80 ER_JSON_VACUOUS_PATH error code, 72
ER_INVALID_OPTION_KEY error code, 80 ER_JSON_VALUE_OUT_OF_RANGE_FOR_FUNC_INDEX
ER_INVALID_OPTION_KEY_VALUE_PAIR error code, error code, 105
80 ER_JSON_VALUE_TOO_BIG error code, 72
ER_INVALID_OPTION_START_CHARACTER error ER_JT_MAX_NESTED_PATH error code, 88
code, 80 ER_JT_VALUE_OUT_OF_RANGE error code, 88
ER_INVALID_OPTION_VALUE error code, 80 ER_KERBEROS_CREATE_USER error code, 117
ER_INVALID_OR_OLD_TABLE_OR_DB_NAME error ER_KEYCACHE_OOM error code, 146
code, 172 ER_KEYRING_ACCESS_DENIED_ERROR error code,
ER_INVALID_OUTER_REFERENCE error code, 138 75
ER_INVALID_PARAMETER_USE error code, 113 ER_KEYRING_AWS_CMK_ID_NOT_SET error code,
ER_INVALID_PLUGIN_FOR_REGISTRATION error 229
code, 118 ER_KEYRING_AWS_FAILED_TO_ACCESS_DATA_FILE
ER_INVALID_PROPERTY_KEY error code, 356 error code, 229
ER_INVALID_RPL_WILD_TABLE_FILTER_PATTERN ER_KEYRING_AWS_FAILED_TO_ACCESS_KEY_FROM_CONF
error code, 65 error code, 228
ER_INVALID_SERVER_DOWNGRADE_NOT_PATCH ER_KEYRING_AWS_FAILED_TO_ACCESS_KEY_ID_FROM_CO
error code, 416 error code, 228
ER_INVALID_SERVER_UPGRADE_NOT_LTS error ER_KEYRING_AWS_FAILED_TO_ACCESS_OR_CREATE_KEY
code, 415 error code, 228
ER_INVALID_THREAD_ID error code, 87 ER_KEYRING_AWS_FAILED_TO_ACCESS_OR_CREATE_KEY
ER_INVALID_THREAD_PRIORITY error code, 87 error code, 228
ER_INVALID_TIME_ZONE_INTERVAL error code, 113 ER_KEYRING_AWS_FAILED_TO_CONNECT_KMS
ER_INVALID_TLS_VERSION error code, 397 error code, 230
ER_INVALID_TYPE_FOR_JSON error code, 71 ER_KEYRING_AWS_FAILED_TO_DECRYPT_KEY
ER_INVALID_USER_ATTRIBUTE_JSON error code, error code, 230
111 ER_KEYRING_AWS_FAILED_TO_ENCRYPT_KEY
ER_INVALID_USER_FOR_REGISTRATION error code, error code, 230
118 ER_KEYRING_AWS_FAILED_TO_FLUSH_KEYRING_TO_FILE
ER_INVALID_USE_OF_FORCE_OPTION error code, 87 error code, 229
ER_INVALID_USE_OF_NULL error code, 13 ER_KEYRING_AWS_FAILED_TO_GENERATE_KEY_DUE_TO_I
ER_INVALID_VALUE_FOR_ENFORCE_GTID_CONSISTENCY error code, 229
error code, 141 ER_KEYRING_AWS_FAILED_TO_GENERATE_NEW_KEY
ER_INVALID_VALUE_OF_BIND_ADDRESSES error error code, 230
code, 348 ER_KEYRING_AWS_FAILED_TO_GET_KMS_CREDENTIAL_FR
ER_INVALID_VCPU_ID error code, 86 error code, 229
ER_INVALID_VCPU_RANGE error code, 87 ER_KEYRING_AWS_FAILED_TO_INIT_DUE_TO_INTERNAL_ER
ER_INVALID_XPLUGIN_SOCKET_SAME_AS_SERVER error code, 229
error code, 375 ER_KEYRING_AWS_FAILED_TO_INIT_DUE_TO_PLUGIN_INTE
ER_INVALID_YEAR_COLUMN_LENGTH error code, 55 error code, 229
ER_IO_ERR_LOG_INDEX_READ error code, 27 ER_KEYRING_AWS_FAILED_TO_OPEN_CONF_FILE
ER_IO_READ_ERROR error code, 54 error code, 228
571
ER_KEYRING_AWS_FAILED_TO_RESTORE_FROM_BACKUP_FILE
ER_KEYRING_COMPONENT_AWS_GENERATE_KEY_INVALID_PA
error code, 229 error code, 432
ER_KEYRING_AWS_FAILED_TO_RE_ENCRYPT_KEY ER_KEYRING_COMPONENT_AWS_KEY_EXTRACT_FAILED
error code, 230 error code, 432
ER_KEYRING_AWS_FAILED_TO_ROTATE_CMK error ER_KEYRING_COMPONENT_AWS_READ_ONLY_LIMIT
code, 230 error code, 433
ER_KEYRING_AWS_FAILED_TO_SET_CMK_ID error ER_KEYRING_COMPONENT_AWS_WRITE_AFTER_REENCRYPTI
code, 228 error code, 433
ER_KEYRING_AWS_FAILED_TO_SET_REGION error ER_KEYRING_COMPONENT_EXCEPTION error code,
code, 228 386
ER_KEYRING_AWS_FOUND_MALFORMED_BACKUP_FILE ER_KEYRING_COMPONENT_KEYRING_FILE_DECRYPT_FAILED
error code, 229 error code, 426
ER_KEYRING_AWS_INCORRECT_FILE error code, ER_KEYRING_COMPONENT_KEYRING_FILE_INVALID_FORMAT
229 error code, 426
ER_KEYRING_AWS_INCORRECT_PROXY error code, ER_KEYRING_COMPONENT_KEYRING_FILE_JSON_EXTRACT_FA
368 error code, 426
ER_KEYRING_AWS_INCORRECT_REGION error code, ER_KEYRING_COMPONENT_KEYRING_FILE_KEY_EXTRACT_FAI
230 error code, 426
ER_KEYRING_AWS_INIT_FAILURE error code, 229 ER_KEYRING_COMPONENT_KEYRING_FILE_NAME_EMPTY
ER_KEYRING_AWS_INVALID_CONF_FILE_PATH error error code, 426
code, 228 ER_KEYRING_COMPONENT_KEYRING_FILE_READ_FAILED
ER_KEYRING_AWS_INVALID_DATA_FILE_PATH error error code, 426
code, 228 ER_KEYRING_COMPONENT_MEMORY_ALLOCATION_ERROR
ER_KEYRING_AWS_INVALID_KEY_LENGTH_FOR_CIPHERerror code, 386
error code, 229 ER_KEYRING_COMPONENT_NOT_INITIALIZED error
ER_KEYRING_AWS_UDF_AWS_KMS_ERROR error code, 386
code, 75 ER_KEYRING_FAILED_TO_FLUSH_KEYRING_TO_FILE
ER_KEYRING_CHECK_KEY_FAILED_DUE_TO_EMPTY_KEY_ID
error code, 225
error code, 224 ER_KEYRING_FAILED_TO_FLUSH_KEYS_TO_KEYRING
ER_KEYRING_CHECK_KEY_FAILED_DUE_TO_INVALID_KEY
error code, 225
error code, 224 ER_KEYRING_FAILED_TO_FLUSH_KEYS_TO_KEYRING_BACKUP
ER_KEYRING_COMPONENT_AWS_ADD_TO_DOC_FAILED error code, 225
error code, 433 ER_KEYRING_FAILED_TO_GET_FILE_STAT error
ER_KEYRING_COMPONENT_AWS_BACKEND_OPERATION_FAILED
code, 225
error code, 432 ER_KEYRING_FAILED_TO_LOAD_KEYRING_CONTENT
ER_KEYRING_COMPONENT_AWS_CACHE_OPERATION_FAILED
error code, 225
error code, 433 ER_KEYRING_FAILED_TO_REMOVE_FILE error code,
ER_KEYRING_COMPONENT_AWS_CANNOT_ENCRYPT_READ_ONLY
225
error code, 433 ER_KEYRING_FAILED_TO_REMOVE_KEY_DUE_TO_EMPTY_ID
ER_KEYRING_COMPONENT_AWS_CLIENT_CREATE_FAILED
error code, 225
error code, 432 ER_KEYRING_FAILED_TO_RESTORE_FROM_BACKUP_FILE
ER_KEYRING_COMPONENT_AWS_CLIENT_OPERATION_FAILED
error code, 225
error code, 432 ER_KEYRING_FAILED_TO_TRUNCATE_FILE error
ER_KEYRING_COMPONENT_AWS_FILE_OPEN_FAILED code, 225
error code, 432 ER_KEYRING_FILE_IO_ERROR error code, 225
ER_KEYRING_COMPONENT_AWS_FILE_PARSE_FAILEDER_KEYRING_FOUND_MALFORMED_BACKUP_FILE
error code, 432 error code, 225
ER_KEYRING_COMPONENT_AWS_FILE_PATH_EMPTY ER_KEYRING_INCORRECT_FILE error code, 224
error code, 432 ER_KEYRING_INVALID_KEY_LENGTH error code, 224
ER_KEYRING_COMPONENT_AWS_FILE_READ_FAILED ER_KEYRING_INVALID_KEY_TYPE error code, 224
error code, 432 ER_KEYRING_KEY_FETCH_FAILED_DUE_TO_EMPTY_KEY_ID
ER_KEYRING_COMPONENT_AWS_FILE_WRITE_FAILEDerror code, 225
error code, 432 ER_KEYRING_LOGGER_ERROR_MSG error code, 214
ER_KEYRING_MIGRATE_FAILED error code, 341
572
ER_KEYRING_MIGRATE_MEMORY_DEALLOCATION_FAILED
ER_KEYRING_OKV_INCORRECT_KEY_VAULT_CONFIGURED
error code, 427 error code, 226
ER_KEYRING_MIGRATE_SKIPPED_KEY error code, ER_KEYRING_OKV_INIT_FAILED_DUE_TO_INCORRECT_CON
427 error code, 226
ER_KEYRING_MIGRATION_EXTRA_OPTIONS error ER_KEYRING_OKV_INIT_FAILED_DUE_TO_INTERNAL_ERRO
code, 260 error code, 226
ER_KEYRING_MIGRATION_FAILED error code, 206 ER_KEYRING_OKV_INVALID_KEY_LENGTH_FOR_CIPHER
ER_KEYRING_MIGRATION_FAILURE error code, 75 error code, 226
ER_KEYRING_MIGRATION_STATUS error code, 75 ER_KEYRING_OKV_INVALID_KEY_TYPE error code,
ER_KEYRING_MIGRATION_SUCCESSFUL error code, 226
206 ER_KEYRING_OKV_KEY_MISMATCH error code, 228
ER_KEYRING_OCI_HTTP_REQUEST error code, 406 ER_KEYRING_OKV_STANDBY_SERVER_COUNT_EXCEEDED
ER_KEYRING_OCI_INVALID_JSON error code, 406 error code, 397
ER_KEYRING_OCI_PARSE_JSON error code, 406 ER_KEYRING_OPERATION_FAILED_DUE_TO_INTERNAL_ERR
ER_KEYRING_OKV_CONNECTION_TO_SERVER_FAILEDerror code, 224
error code, 227 ER_KEYRING_UDF_KEYRING_SERVICE_ERROR
ER_KEYRING_OKV_FAILED_TO_ACTIVATE_KEYS error code, 74
error code, 227 ER_KEYRING_UNKNOWN_ERROR error code, 225
ER_KEYRING_OKV_FAILED_TO_ADD_ATTRIBUTE ER_KEY_COLUMN_DOES_NOT_EXITS error code, 8
error code, 227 ER_KEY_DOES_NOT_EXITS error code, 15
ER_KEYRING_OKV_FAILED_TO_FETCH_KEY error ER_KEY_NOT_FOUND error code, 5
code, 227 ER_KEY_PART_0 error code, 28
ER_KEYRING_OKV_FAILED_TO_FIND_SERVER_ENTRY ER_KEY_REF_DO_NOT_MATCH_TABLE_REF error
error code, 226 code, 19
ER_KEYRING_OKV_FAILED_TO_FIND_STANDBY_SERVER_ENTRY
ER_KILLED_THREADS_OF_PLUGIN error code, 171
error code, 226 ER_KILLING_THREAD error code, 171
ER_KEYRING_OKV_FAILED_TO_GENERATE_KEY ER_KILL_DENIED_ERROR error code, 9
error code, 227 ER_LANGUAGE_COMPONENT error code, 127
ER_KEYRING_OKV_FAILED_TO_GENERATE_KEY_DUE_TO_INTERNAL_ERROR
ER_LANGUAGE_COMPONENT_CANNOT_UNINSTALL
error code, 226 error code, 127
ER_KEYRING_OKV_FAILED_TO_INIT_CLIENT error ER_LANGUAGE_COMPONENT_CONCURRENCY_LIMIT
code, 227 error code, 134
ER_KEYRING_OKV_FAILED_TO_INIT_SSL_LAYER ER_LANGUAGE_COMPONENT_CONVERSION error
error code, 226 code, 135
ER_KEYRING_OKV_FAILED_TO_LOAD_KEY_UID ER_LANGUAGE_COMPONENT_ERROR error code,
error code, 226 417
ER_KEYRING_OKV_FAILED_TO_LOAD_SSL_TRUST_STORE
ER_LANGUAGE_COMPONENT_INFO error code, 417
error code, 227 ER_LANGUAGE_COMPONENT_INSTALL_ERROR
ER_KEYRING_OKV_FAILED_TO_PARSE_CONF_FILE error code, 425
error code, 226 ER_LANGUAGE_COMPONENT_INTERNAL error code,
ER_KEYRING_OKV_FAILED_TO_REMOVE_KEY error 134
code, 227 ER_LANGUAGE_COMPONENT_INTERNAL_ERROR
ER_KEYRING_OKV_FAILED_TO_RETRIEVE_KEY error code, 425
error code, 227 ER_LANGUAGE_COMPONENT_KEYWORD error code,
ER_KEYRING_OKV_FAILED_TO_RETRIEVE_KEY_SIGNATURE
135
error code, 227 ER_LANGUAGE_COMPONENT_NOT_AVAILABLE
ER_KEYRING_OKV_FAILED_TO_SET_CERTIFICATE_FILE
error code, 127
error code, 227 ER_LANGUAGE_COMPONENT_RUNTIME error code,
ER_KEYRING_OKV_FAILED_TO_SET_KEY_FILE error 134
code, 228 ER_LANGUAGE_COMPONENT_SERVER_ERROR
ER_KEYRING_OKV_FAILED_TO_STORE_KEY error error code, 425
code, 227 ER_LANGUAGE_COMPONENT_SET_SYSTEM_VARIABLE
ER_KEYRING_OKV_FAILED_TO_STORE_OR_GENERATE_KEY
error code, 135
error code, 227
573
ER_LANGUAGE_COMPONENT_TIMEZONE error code, ER_LDAP_AUTH_FAILED_TO_DEINITIALIZE_POOL_IN_RECONST
134 error code, 256
ER_LANGUAGE_COMPONENT_UNSUPPORTED_LANGUAGE ER_LDAP_AUTH_FAILED_TO_ESTABLISH_TLS_CONNECTION
error code, 127 error code, 258
ER_LANGUAGE_COMPONENT_UNSUPPORTED_TYPE ER_LDAP_AUTH_FAILED_TO_GET_CONNECTION_AS_PLUGIN_N
error code, 135 error code, 256
ER_LANGUAGE_COMPONENT_VM_API_FUNCTION_ERROR ER_LDAP_AUTH_FAILED_TO_INITIALIZE_POOL_IN_DEINIT_STAT
error code, 425 error code, 256
ER_LANGUAGE_COMPONENT_VM_INTERNAL_ERROR ER_LDAP_AUTH_FAILED_TO_INITIALIZE_POOL_IN_INIT_STATE
error code, 425 error code, 256
ER_LANGUAGE_COMPONENT_WARNING error code, ER_LDAP_AUTH_FAILED_TO_INITIALIZE_POOL_IN_RECONSTRU
417 error code, 256
ER_LATITUDE_OUT_OF_RANGE error code, 84 ER_LDAP_AUTH_FAILED_TO_POOL_DEINIT error
ER_LCTN_CHANGED error code, 206 code, 256
ER_LCTN_NOT_FOUND error code, 341 ER_LDAP_AUTH_FAILED_TO_SEARCH_DN error
ER_LDAP_AUTH_CERTIFICATE_NAME error code, 255 code, 259
ER_LDAP_AUTH_COMMUNICATION_HOST_INFO ER_LDAP_AUTH_FAILED_TO_WRITE_PACKET error
error code, 257 code, 255
ER_LDAP_AUTH_CONNECTION_CREATOR_ENTER ER_LDAP_AUTH_FREEING_CONNECTION error code,
error code, 257 257
ER_LDAP_AUTH_CONNECTION_GET_LDAP_INFO_NULLER_LDAP_AUTH_GETTING_CONNECTION_FROM_POOL
error code, 257 error code, 257
ER_LDAP_AUTH_CONNECTION_POOL_INIT_FAILED ER_LDAP_AUTH_GRP_DN_PARSING_FAILED error
error code, 256 code, 358
ER_LDAP_AUTH_CONNECTION_POOL_REINIT_ENTER ER_LDAP_AUTH_GRP_INCORRECT_ATTRIBUTE
error code, 259 error code, 357
ER_LDAP_AUTH_CONNECTION_PUSHED_TO_POOL ER_LDAP_AUTH_GRP_INFO_FOUND_IN_MANY_OBJECTS
error code, 257 error code, 357
ER_LDAP_AUTH_CONN_POOL_DEINITIALIZING error ER_LDAP_AUTH_GRP_IS_FULL_DN error code, 255
code, 254 ER_LDAP_AUTH_GRP_NULL_ATTRIBUTE_VALUE
ER_LDAP_AUTH_CONN_POOL_INITIALIZING error error code, 358
code, 254 ER_LDAP_AUTH_GRP_OBJECT_HAS_USER_INFO
ER_LDAP_AUTH_CONN_POOL_NOT_CREATED error error code, 358
code, 254 ER_LDAP_AUTH_GRP_SEARCH_NOT_SPECIAL_HDL
ER_LDAP_AUTH_CREATE_CONNECTION_KEY error error code, 357
code, 257 ER_LDAP_AUTH_GRP_SEARCH_SPECIAL_HDL error
ER_LDAP_AUTH_CREATING_LDAP_CONNECTION code, 255
error code, 256 ER_LDAP_AUTH_GRP_USER_OBJECT_HAS_GROUP_INFO
ER_LDAP_AUTH_DEINIT_FAILED error code, 254 error code, 357
ER_LDAP_AUTH_DELETING_CONNECTION_KEY ER_LDAP_AUTH_INFO_USER_MAP error code, 428
error code, 257 ER_LDAP_AUTH_INIT_FAILED error code, 258
ER_LDAP_AUTH_DISTINGUISHED_NAME error code, ER_LDAP_AUTH_LDAPS error code, 358
258 ER_LDAP_AUTH_LDAP_INFO_NULL error code, 257
ER_LDAP_AUTH_FAILED_TO_CREATE_LDAP_CONNECTION ER_LDAP_AUTH_MAX_ALLOWED_CONNECTION_LIMIT_HIT
error code, 258 error code, 256
ER_LDAP_AUTH_FAILED_TO_CREATE_LDAP_OBJECT ER_LDAP_AUTH_MAX_POOL_SIZE_SET_FAILED
error code, 254 error code, 256
ER_LDAP_AUTH_FAILED_TO_CREATE_LDAP_OBJECT_CREATOR
ER_LDAP_AUTH_METHOD_TO_CLIENT error code,
error code, 254 258
ER_LDAP_AUTH_FAILED_TO_CREATE_OR_GET_CONNECTION
ER_LDAP_AUTH_OBJECT_CREATE_TIMESTAMP
error code, 254 error code, 255
ER_LDAP_AUTH_FAILED_TO_DEINITIALIZE_NOT_READY_POOL
ER_LDAP_AUTH_OR_GROUP_RETRIEVAL_FAILED
error code, 256 error code, 258
574
ER_LDAP_AUTH_PLUGIN_FAILED_TO_READ_PACKET ER_LDAP_MAPPING_GETTING_NEXT_MAPPING
error code, 256 error code, 359
ER_LDAP_AUTH_POOLED_CONNECTION_KEY error ER_LDAP_MAPPING_GET_USER_PROXY error code,
code, 257 358
ER_LDAP_AUTH_POOL_DISABLE_MAX_SIZE_ZERO ER_LDAP_MAPPING_INFO error code, 358
error code, 254 ER_LDAP_MAPPING_IS_QUOTE error code, 359
ER_LDAP_AUTH_POOL_GET_FAILED_TO_CREATE_CONNECTION
ER_LDAP_MAPPING_NON_DESIRED_STATE error
error code, 258 code, 359
ER_LDAP_AUTH_POOL_REINITIALIZING error code, ER_LDAP_MAPPING_NO_SEPEARATOR_END_OF_GROUP
255 error code, 359
ER_LDAP_AUTH_RETURNING_CONNECTION_TO_POOLER_LDAP_MAPPING_PARSING_CURRENT_STATE
error code, 257 error code, 359
ER_LDAP_AUTH_SASL_BIND_SUCCESS_INFO error ER_LDAP_MAPPING_PARSING_ERROR error code,
code, 258 359
ER_LDAP_AUTH_SASL_PROCESS_SASL error code, ER_LDAP_MAPPING_PARSING_MAPPING_INFO error
258 code, 359
ER_LDAP_AUTH_SASL_REQUEST_FROM_CLIENT ER_LDAP_MAPPING_PROCESS_DELIMITER error
error code, 258 code, 358
ER_LDAP_AUTH_SEARCHED_USER_GRP_NAME ER_LDAP_MAPPING_PROCESS_DELIMITER_COMMA_NOT_F
error code, 255 error code, 359
ER_LDAP_AUTH_SEARCH_USER_GROUP_ATTR_NOT_FOUND ER_LDAP_MAPPING_PROCESS_DELIMITER_EQUAL_NOT_FO
error code, 257 error code, 358
ER_LDAP_AUTH_SETTING_USERNAME error code, ER_LDAP_MAPPING_PROCESS_DELIMITER_TRY_COMMA
255 error code, 358
ER_LDAP_AUTH_SKIPPING_USER_GROUP_SEARCH ER_LDAP_MAPPING_PROCESS_MAPPING error code,
error code, 254 358
ER_LDAP_AUTH_STARTED_FOR_USER error code, ER_LDAP_MAPPING_TRIMMING_SPACES error code,
258 359
ER_LDAP_AUTH_STARTING_TLS error code, 257 ER_LDAP_MAPPING_USER_DONT_BELONG_GROUP
ER_LDAP_AUTH_TLS_CONF error code, 254 error code, 358
ER_LDAP_AUTH_TLS_CONNECTION error code, 254 ER_LH_AVRO_CANNOT_PARSE_HEADER error code,
ER_LDAP_AUTH_USER_AUTH_DATA error code, 255 134
ER_LDAP_AUTH_USER_BIND_FAILED error code, 258 ER_LH_AVRO_DECODING_ERR error code, 133
ER_LDAP_AUTH_USER_FOUND_IN_MANY_GRPS ER_LH_AVRO_ENUM_CANNOT_CONVERT_CHARSET
error code, 255 error code, 132
ER_LDAP_AUTH_USER_GROUP_SEARCH_FAILED ER_LH_AVRO_ENUM_MISMATCH error code, 132
error code, 258 ER_LH_AVRO_FILE_DATA_CORRUPT error code, 132
ER_LDAP_AUTH_USER_GROUP_SEARCH_INFO error ER_LH_AVRO_FILE_ENDS_UNEXPECTEDLY error
code, 255 code, 132
ER_LDAP_AUTH_USER_GROUP_SEARCH_ROOT_BIND ER_LH_AVRO_HEADER_METADATA_ERR error code,
error code, 350 132
ER_LDAP_AUTH_USER_HAS_MULTIPLE_GRP_NAMES ER_LH_AVRO_HEADER_MISMATCH error code, 132
error code, 255 ER_LH_AVRO_HEADER_NO_SCHEMA error code, 132
ER_LDAP_AUTH_USER_NOT_FOUND_IN_ANY_GRP ER_LH_AVRO_INVALID_BLOCK_RECORD_COUNT
error code, 255 error code, 132
ER_LDAP_AUTH_ZERO_MAX_POOL_SIZE_UNCHANGEDER_LH_AVRO_INVALID_BLOCK_SIZE error code, 132
error code, 254 ER_LH_AVRO_INVALID_NAME_IN_SCHEMA error
ER_LDAP_EMPTY_USERDN_PASSWORD error code, code, 133
365 ER_LH_AVRO_INVALID_UNION error code, 132
ER_LDAP_MAPPING_CHECK_DELIMI_QUOTE error ER_LH_AVRO_NO_CODEC_IN_HEADER error code,
code, 358 133
ER_LDAP_MAPPING_EMPTY_MAPPING error code, ER_LH_AVRO_SCHEMA_DEPTH_EXCEEDS_MAX
358 error code, 132
575
ER_LH_AVRO_TYPE_CANNOT_CONVERT error code, ER_LH_PARQUET_DECIMAL_CONVERSION_ERR
132 error code, 131
ER_LH_AWS_AUTH_ERR error code, 131 ER_LH_PARQUET_NON_UTF8_FILE_ENC error code,
ER_LH_BAD_VALUE error code, 130 133
ER_LH_CANNOT_CONVERT_STRING error code, 131 ER_LH_PARQUET_ROW_GROUP_SIZE_EXCEEDS_MAX
ER_LH_CHARSET_UNSUPPORTED error code, 131 error code, 133
ER_LH_COLUMN_ENGINE_ATTR_ERR error code, 137 ER_LH_PARQUET_SCHEMA_MISMATCH error code,
ER_LH_COLUMN_MAX_ERR error code, 131 133
ER_LH_COLUMN_MISMATCH_ERR error code, 131 ER_LH_PARQUET_TYPE_CANNOT_CONVERT error
ER_LH_COL_IS_EMPTY error code, 130 code, 133
ER_LH_COL_IS_EMPTY_WARN error code, 130 ER_LH_REAL_IS_NAN error code, 131
ER_LH_COL_NOT_NULLABLE error code, 130 ER_LH_RESOURCE_PRINCIPAL_BUCKET_ERR error
ER_LH_CP_COMMIT_FAILED error code, 138 code, 131
ER_LH_CP_NOT_ENABLED error code, 138 ER_LH_RESOURCE_PRINCIPAL_ERR error code, 131
ER_LH_CP_NO_VALIDATION_MODE error code, 138 ER_LH_STRING_TOO_LONG error code, 131
ER_LH_CP_NO_VECTOR_STORE error code, 138 ER_LH_TOO_LARGE_ROW_ERR error code, 134
ER_LH_CP_TOO_MANY_CHANGES error code, 138 ER_LH_TOO_LARGE_VALUE_ERR error code, 134
ER_LH_CSV_PARSING_ERR error code, 131 ER_LH_UNSTRUCTURED_ENCODING_ERR error
ER_LH_DATETIME_FORMAT error code, 131 code, 137
ER_LH_DECIMAL_OOM_ERR error code, 130 ER_LH_UNSTRUCTURED_FILE_PARSE_ERR error
ER_LH_DECIMAL_PRECISION_EXCEEDS_SCHEMA code, 136
error code, 130 ER_LH_UNSTRUCTURED_FILE_TOO_LARGE error
ER_LH_DECIMAL_UNKNOWN_ERR error code, 130 code, 137
ER_LH_DUPLICATE_FILE error code, 132 ER_LH_UNSTRUCTURED_FILE_TYPE_MISMATCH_ERR
ER_LH_EMPTY_FILE error code, 132 error code, 137
ER_LH_EXCEEDS_MAX error code, 130 ER_LH_UNSTRUCTURED_INVALID_LANGUAGE error
ER_LH_EXCEEDS_MIN error code, 130 code, 138
ER_LH_FORMAT_HEADER_NO_MAGIC_BYTES error ER_LH_UNSTRUCTURED_NO_DATA_FOUND error
code, 132 code, 136
ER_LH_INFER_FILE_HAS_NO_DATA error code, 133 ER_LH_UNSTRUCTURED_OBJ_READ_ERR error
ER_LH_INFER_JSON_INVALID_SCHEMA error code, code, 137
136 ER_LH_UNSTRUCTURED_SCHEMA_ERR error code,
ER_LH_INFER_NO_DATA error code, 133 137
ER_LH_INFER_NO_FILES error code, 134 ER_LH_USER_DATA_ACCESS_FAILED error code,
ER_LH_INFER_SCHEMA_MISMATCH error code, 133 135
ER_LH_INFER_WARN_GOT_EXCEPTION error code, ER_LH_VECTOR_TOO_MANY_ENTRIES error code,
134 138
ER_LH_INVALID_JSON_FILE_FORMAT_SCHEMA ER_LH_WARN_COL_MISSING_NOT_NULLABLE error
error code, 136 code, 130
ER_LH_JSON_FILE_FORMAT_WARN_INFER_SCHEMA ER_LH_WARN_DECIMAL_ROUNDING error code, 130
error code, 136 ER_LH_WARN_EXCEEDS_MAX_TRUNCATING error
ER_LH_JSON_PARSING error code, 135 code, 130
ER_LH_NO_FILES_FOUND error code, 131 ER_LH_WARN_EXCEEDS_MIN_TRUNCATING error
ER_LH_NO_SEGMENTS_GENERATED error code, 137 code, 130
ER_LH_OOM error code, 133 ER_LH_WARN_INFER_SKIPPED_FILES error code,
ER_LH_OUT_OF_RANGE error code, 131 133
ER_LH_PARQUET_CANNOT_LOCATE_OFFSET error ER_LH_WARN_INFER_SKIPPED_LINES error code,
code, 133 133
ER_LH_PARQUET_CANNOT_LOCATE_SCHEMA error ER_LH_WARN_INFER_USE_DEFAULT_COL_NAMES
code, 133 error code, 134
ER_LH_PARQUET_CANNOT_READ_HEADER error ER_LH_WARN_TRUNCATED error code, 131
code, 134 ER_LIBRARIES_NOT_SUPPORTED error code, 139
ER_LH_PARQUET_CANT_OPEN_FILE error code, 134 ER_LIMITED_PART_RANGE error code, 36
ER_LOAD_BULK_DATA_FAILED error code, 125
576
ER_LOAD_BULK_DATA_UNSORTED error code, 124 ER_LOG_GENERAL_CANNOT_OPEN error code, 139
ER_LOAD_BULK_DATA_WARN_NULL_TO_NOTNULL ER_LOG_IN_USE error code, 28
error code, 126 ER_LOG_OUTPUT_CONTRADICTORY error code, 149
ER_LOAD_BULK_DATA_WARN_NULL_TO_NOTNULL_LOG ER_LOG_PARTITION_PREFIX_KEY_NOT_SUPPORTED
error code, 409 error code, 428
ER_LOAD_BULK_DATA_WRONG_VALUE_FOR_FIELD ER_LOG_PRINTF_MSG error code, 205
error code, 125 ER_LOG_PRIV_CHECKS_REQUIRE_ROW_FORMAT_NOT_SE
ER_LOAD_BULK_DATA_WRONG_VALUE_FOR_FIELD_LOG error code, 370
error code, 409 ER_LOG_PURGE_NO_FILE error code, 41
ER_LOAD_BULK_JSON_ERROR error code, 429 ER_LOG_PURGE_UNKNOWN_ERR error code, 28
ER_LOAD_DATA_INFILE_FAILED_IN_UNEXPECTED_WAY ER_LOG_SANITIZATION error code, 427
error code, 153 ER_LOG_SLOW_CANNOT_OPEN error code, 139
ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR error ER_LOG_SYSLOG_CANNOT_OPEN error code, 139
code, 29 ER_LONGITUDE_OUT_OF_RANGE error code, 84
ER_LOAD_INFO error code, 9 ER_LOWER_CASE_TABLE_NAMES_CS_DD_ON_CI_FS_UNSU
ER_LOCAL_VARIABLE error code, 18 error code, 149
ER_LOCKING_SERVICE_DEADLOCK error code, 70 ER_LOWER_CASE_TABLE_NAMES_USING_0 error
ER_LOCKING_SERVICE_TIMEOUT error code, 70 code, 150
ER_LOCKING_SERVICE_WRONG_NAME error code, ER_LOWER_CASE_TABLE_NAMES_USING_2 error
70 code, 149
ER_LOCK_ABORTED error code, 46 ER_MALFORMED_GTID_SET_ENCODING error code,
ER_LOCK_DEADLOCK error code, 17 52
ER_LOCK_NOWAIT error code, 81 ER_MALFORMED_GTID_SET_SPECIFICATION error
ER_LOCK_ORDER_DEPENDENCIES_SYNTAX error code, 52
code, 365 ER_MALFORMED_GTID_SPECIFICATION error code,
ER_LOCK_ORDER_FAILED_READ_FILE error code, 52
365 ER_MALFORMED_PACKET error code, 56
ER_LOCK_ORDER_FAILED_WRITE_FILE error code, ER_MANDATORY_ROLE error code, 85
365 ER_MASTER_KEY_ROTATION_BINLOG_FAILED error
ER_LOCK_ORDER_INIT_FAILED error code, 364 code, 74
ER_LOCK_ORDER_MESSAGE error code, 365 ER_MASTER_KEY_ROTATION_NOT_SUPPORTED_BY_SE
ER_LOCK_ORDER_SCANNER_SYNTAX error code, error code, 74
365 ER_MASTER_KEY_ROTATION_SE_UNAVAILABLE
ER_LOCK_OR_ACTIVE_TRANSACTION error code, 16 error code, 74
ER_LOCK_REFUSED_BY_ENGINE error code, 74 ER_MAXVALUE_IN_VALUES_IN error code, 44
ER_LOCK_TABLE_FULL error code, 17 ER_MAX_PREPARED_STMT_COUNT_REACHED error
ER_LOCK_WAIT_TIMEOUT error code, 17 code, 33
ER_LOG_BIN_BETTER_WITH_NAME error code, 150 ER_MDL_OUT_OF_RESOURCES error code, 112
ER_LOG_CANNOT_PURGE_BINLOG_WITH_BACKUP_LOCK ER_MECAB_CHARSET_LOADED error code, 208
error code, 415 ER_MECAB_CREATE_LATTICE_FAILED error code,
ER_LOG_CANNOT_WRITE error code, 139 209
ER_LOG_CANNOT_WRITE_EXTENDED error code, ER_MECAB_CREATING_MODEL error code, 208
368 ER_MECAB_FAILED_TO_CREATE_MODEL error code,
ER_LOG_CLIENT_INTERACTION_TIMEOUT error 208
code, 427 ER_MECAB_FAILED_TO_CREATE_TRIGGER error
ER_LOG_COMPONENT_CANNOT_INIT error code, 382 code, 208
ER_LOG_COMPONENT_FLUSH_FAILED error code, ER_MECAB_NOT_SUPPORTED error code, 208
391 ER_MECAB_NOT_VERIFIED error code, 208
ER_LOG_DEPRECATE_NON_COMPOSABLE_MULTIPLE_ENGINE
ER_MECAB_OOM_WHILE_PARSING_TEXT error code,
error code, 429 209
ER_LOG_FILES_GIVEN_LOG_OUTPUT_IS_TABLE ER_MECAB_PARSE_FAILED error code, 208
error code, 149 ER_MECAB_UNSUPPORTED_CHARSET error code,
ER_LOG_FILE_CANNOT_OPEN error code, 219 208
ER_LOG_FILE_INVALID error code, 149 ER_MESSAGE_AND_STATEMENT error code, 45
577
ER_MFA_METHODS_IDENTICAL error code, 118 ER_MYISAM_CRASHED_ERROR error code, 204
ER_MFA_METHODS_INVALID_ORDER error code, 118 ER_MYISAM_CRASHED_ERROR_IN error code, 155
ER_MFA_METHOD_EXISTS error code, 118 ER_MYISAM_CRASHED_ERROR_IN_THREAD error
ER_MFA_METHOD_NOT_EXISTS error code, 118 code, 155
ER_MFA_PLUGIN_NOT_LOADED error code, 396 ER_MYSQLBACKUP_CLIENT_MSG error code, 120
ER_MFA_USER_ATTRIBUTES_CORRUPT error code, ER_MYSQLBACKUP_MSG error code, 368
396 ER_MYSQL_NATIVE_PASSWORD_SECOND_PASSWORD_USED_
ER_MICROSECOND_TIMER_IS_NOT_AVAILABLE error code, 355
error code, 202 ER_MY_MALLOC_GETPROCADDRESS_FAILED error
ER_MIGRATE_TABLE_TO_DD_OOM error code, 371 code, 398
ER_MISPLACED_INTO error code, 109 ER_MY_MALLOC_LOADLIBRARY_FAILED error code,
ER_MISSING_ACL_SYSTEM_TABLE error code, 196 398
ER_MISSING_CURRENT_PASSWORD error code, 104 ER_MY_MALLOC_USING_JEMALLOC error code, 398
ER_MISSING_GRANT_SYSTEM_TABLE error code, ER_MY_MALLOC_USING_STD_MALLOC error code,
196 398
ER_MISSING_HA_CREATE_OPTION error code, 61 ER_MY_NET_WRITE_FAILED_FALLING_BACK_ON_STDERR
ER_MISSING_JSON_TABLE_VALUE error code, 87 error code, 182
ER_MISSING_JSON_VALUE error code, 110 ER_M_BIGGER_THAN_D error code, 30
ER_MISSING_KEY error code, 60 ER_NAME_BECOMES_EMPTY error code, 33
ER_MISSING_SKIP_REPLICA error code, 21 ER_NANOSECOND_TIMER_IS_NOT_AVAILABLE error
ER_MISSING_TABLESPACE_FILE error code, 85 code, 202
ER_MIXING_NOT_ALLOWED error code, 18 ER_NATIVE_FCT_NAME_COLLISION error code, 40
ER_MIX_HANDLER_ERROR error code, 35 ER_NDBINFO_NOT_UPGRADING_SCHEMA error
ER_MIX_OF_GROUP_FUNC_AND_FIELDS error code, code, 375
13 ER_NDBINFO_UPGRADING_SCHEMA error code, 374
ER_MIX_OF_GROUP_FUNC_AND_FIELDS_V2 error ER_NDBINFO_UPGRADING_SCHEMA_FAIL error
code, 66 code, 375
ER_MTA_CANT_PARALLEL error code, 51 ER_NDB_LOG_ENTRY error code, 190
ER_MTA_CHANGE_SOURCE_CANT_RUN_WITH_GAPS ER_NDB_LOG_ENTRY_WITH_PREFIX error code, 190
error code, 54 ER_NDB_REPLICATION_SCHEMA_ERROR error code,
ER_MTA_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX 42
error code, 58 ER_NEED_FILE_INSTEAD_OF_DIR error code, 150
ER_MTA_FEATURE_IS_NOT_SUPPORTED error code, ER_NEED_LOG_BIN error code, 150
50 ER_NEED_REPREPARE error code, 41
ER_MTA_INCONSISTENT_DATA error code, 51 ER_NETWORK_NAMESPACES_NOT_SUPPORTED
ER_MTA_RECOVERY_FAILURE error code, 54 error code, 362
ER_MTA_RESET_WORKERS error code, 54 ER_NETWORK_NAMESPACE_FILE_PATH_TOO_LONG
ER_MTA_UPDATED_DBS_GREATER_MAX error code, error code, 363
50 ER_NETWORK_NAMESPACE_NOT_ALLOWED_FOR_WILDCARD_
ER_MTR_MSG_1 error code, 391 error code, 363
ER_MULTIPLE_CONSTRAINTS_WITH_SAME_NAME ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE
error code, 108 error code, 342
ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR ER_NET_ERROR_ON_WRITE error code, 14
error code, 35 ER_NET_FCNTL_ERROR error code, 14
ER_MULTIPLE_INTO_CLAUSES error code, 109 ER_NET_OK_PACKET_TOO_LARGE error code, 65
ER_MULTIPLE_JSON_VALUES error code, 110 ER_NET_PACKETS_OUT_OF_ORDER error code, 14
ER_MULTIPLE_PRI_KEY error code, 8 ER_NET_PACKET_TOO_LARGE error code, 13
ER_MULTI_UPDATE_KEY_CONFLICT error code, 47 ER_NET_READ_ERROR error code, 14
ER_MUST_CHANGE_PASSWORD error code, 55 ER_NET_READ_ERROR_FROM_PIPE error code, 13
ER_MUST_CHANGE_PASSWORD_LOGIN error code, ER_NET_READ_INTERRUPTED error code, 14
58 ER_NET_UNCOMPRESS_ERROR error code, 14
ER_MYINIT_FAILED error code, 148 ER_NET_WAIT_ERROR error code, 363
ER_MYISAM_CHECK_METHOD_ERROR error code, ER_NET_WAIT_ERROR2 error code, 387
204 ER_NET_WRITE_INTERRUPTED error code, 14
578
ER_NEW_ABORTING_CONNECTION error code, 15 ER_NOTE_KEYRING_COMPONENT_READ_DATA_NOT_FOUN
ER_NO error code, 3 error code, 386
ER_NONEXISTING_GRANT error code, 13 ER_NOTE_KEYRING_COMPONENT_REMOVE_FAILED
ER_NONEXISTING_PROC_GRANT error code, 29 error code, 386
ER_NONEXISTING_TABLE_GRANT error code, 13 ER_NOTE_KEYRING_COMPONENT_STORE_FAILED
ER_NONPOSITIVE_RADIUS error code, 90 error code, 386
ER_NONUNIQ_TABLE error code, 8 ER_NOTE_KEYRING_COMPONENT_WRITE_MAXIMUM_DATA
ER_NONUPDATEABLE_COLUMN error code, 26 error code, 386
ER_NON_BOOLEAN_EXPR_FOR_CHECK_CONSTRAINT ER_NOT_ALLOWED_COMMAND error code, 13
error code, 99 ER_NOT_ALLOWED_WITH_START_TRANSACTION
ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN error code, 111
error code, 68 ER_NOT_FORM_FILE error code, 5
ER_NON_DML_DYNAMIC_PARAMETERS error code, ER_NOT_HINT_UPDATABLE_VARIABLE error code, 85
137 ER_NOT_IMPLEMENTED_FOR_CARTESIAN_SRS
ER_NON_GROUPING_FIELD_USED error code, 33 error code, 90
ER_NON_INSERTABLE_TABLE error code, 33 ER_NOT_IMPLEMENTED_FOR_GEOGRAPHIC_SRS
ER_NON_RO_SELECT_DISABLE_TIMER error code, error code, 84
62 ER_NOT_IMPLEMENTED_FOR_PROJECTED_SRS
ER_NON_SCALAR_USED_AS_KEY error code, 136 error code, 90
ER_NON_UNIQ_ERROR error code, 6 ER_NOT_IMPLEMENTED_GET_TABLESPACE_STATISTICS
ER_NON_UPDATABLE_TABLE error code, 22 error code, 219
ER_NORMAL_SERVER_SHUTDOWN error code, 341 ER_NOT_KEYFILE error code, 5
ER_NOTE_COMPONENT_KEYRING_OCI_MISSING_NAME_OR_TYPE
ER_NOT_RIGHT_NOW error code, 148
error code, 406 ER_NOT_SUPPORTED_AUTH_MODE error code, 20
ER_NOTE_COMPONENT_SLOT_DEREGISTRATION_SUCCESS
ER_NOT_SUPPORTED_YET error code, 19
error code, 412 ER_NOT_VALID_PASSWORD error code, 55
ER_NOTE_COMPONENT_SLOT_REGISTRATION_SUCCESS ER_NO_ACCESS_TO_NATIVE_FCT error code, 80
error code, 412 ER_NO_BINARY_LOGGING error code, 28
ER_NOTE_KEYRING_COMPONENT_AES_DATA_IDENTIFIER_EMPTY
ER_NO_BINLOG_ERROR error code, 36
error code, 386 ER_NO_CSV_NO_LOG_TABLES error code, 149
ER_NOTE_KEYRING_COMPONENT_AES_INVALID_KEY ER_NO_DB_ERROR error code, 6
error code, 386 ER_NO_DEFAULT error code, 18
ER_NOTE_KEYRING_COMPONENT_AES_INVALID_MODE_BLOCK_SIZE
ER_NO_DEFAULT_FOR_FIELD error code, 27
error code, 386 ER_NO_DEFAULT_FOR_VIEW_FIELD error code, 30
ER_NOTE_KEYRING_COMPONENT_AES_OPERATION_ERROR
ER_NO_ERROR_LOG_PARSER_CONFIGURED error
error code, 386 code, 381
ER_NOTE_KEYRING_COMPONENT_EMPTY_DATA_ID ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_S
error code, 426 error code, 41
ER_NOTE_KEYRING_COMPONENT_GENERATE_FAILEDER_NO_FT_MATERIALIZED_SUBQUERY error code,
error code, 387 61
ER_NOTE_KEYRING_COMPONENT_INITIALIZED error ER_NO_PARTITION_FOR_GIVEN_VALUE error code,
code, 385 37
ER_NOTE_KEYRING_COMPONENT_KEYS_METADATA_ITERATOR_FETCH_FAILED
ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT
error code, 387 error code, 40
ER_NOTE_KEYRING_COMPONENT_KEYS_METADATA_ITERATOR_INIT_FAILED
ER_NO_PARTS_ERROR error code, 35
error code, 426 ER_NO_PATH_FOR_SHARED_LIBRARY error code,
ER_NOTE_KEYRING_COMPONENT_KEY_READ_ITERATOR_FETCH_FAILED
346
error code, 426 ER_NO_PERMISSION_TO_CREATE_USER error code,
ER_NOTE_KEYRING_COMPONENT_KEY_READ_ITERATOR_INIT_FAILED
17
error code, 426 ER_NO_QUERY_PLAN_FOUND error code, 137
ER_NOTE_KEYRING_COMPONENT_METADATA_ITERATOR_INVALID_OUT_PARAM
ER_NO_REFERENCED_ROW error code, 17
error code, 387 ER_NO_REFERENCED_ROW_2 error code, 32
ER_NOTE_KEYRING_COMPONENT_NOT_INITIALIZED ER_NO_SECURE_TRANSPORTS_CONFIGURED error
error code, 426 code, 72
579
ER_NO_SESSION_TEMP error code, 104 ER_OPEN_ROLE_TABLES error code, 78
ER_NO_SUCH_DB error code, 76 ER_OPERAND_COLUMNS error code, 19
ER_NO_SUCH_INDEX error code, 8 ER_OPERATION_NOT_ALLOWED_ON_GR_SECONDARY
ER_NO_SUCH_TABLE error code, 13 error code, 117
ER_NO_SUCH_THREAD error code, 9 ER_OPERATION_NOT_ALLOWED_WHILE_PRIMARY_CHANGE_IS
ER_NO_SUCH_USER error code, 32 error code, 121
ER_NO_SUPER_WITHOUT_USER_PLUGIN error code, ER_OPTION_PREVENTS_STATEMENT error code, 22
161 ER_OPT_WRONG_TREE error code, 139
ER_NO_SYSTEM_SCHEMA_ACCESS error code, 79 ER_OUTOFMEMORY error code, 5
ER_NO_SYSTEM_TABLESPACE_ACCESS error code, ER_OUT_OF_RESOURCES error code, 5
80 ER_OUT_OF_SORTMEMORY error code, 5
ER_NO_SYSTEM_TABLE_ACCESS error code, 80 ER_PAGE_TRACKING_CANNOT_PURGE error code,
ER_NO_SYSTEM_TABLE_ACCESS_FOR_DICTIONARY_TABLE
98
error code, 80 ER_PAGE_TRACKING_NOT_STARTED error code, 98
ER_NO_SYSTEM_TABLE_ACCESS_FOR_SYSTEM_TABLE ER_PAGE_TRACKING_RANGE_NOT_TRACKED error
error code, 80 code, 98
ER_NO_SYSTEM_TABLE_ACCESS_FOR_TABLE error ER_PARSER_TRACE error code, 139
code, 80 ER_PARSE_ERROR error code, 7
ER_NO_SYSTEM_VIEW_ACCESS error code, 84 ER_PARSE_ERROR_IN_DIGEST_FN error code, 88
ER_NO_TABLES_USED error code, 10 ER_PARSING_VIEW error code, 143
ER_NO_THD_NO_UUID error code, 143 ER_PARTIAL_REVOKES_EXIST error code, 105
ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA error ER_PARTIAL_REVOKE_AND_DB_GRANT_BOTH_EXISTS
code, 33 error code, 105
ER_NO_UNIQUE_LOGFILE error code, 10 ER_PARTITIONS_MUST_BE_DEFINED_ERROR error
ER_NPIPE_CANT_CREATE error code, 191 code, 34
ER_NPIPE_FAILED_TO_INIT_SECURITY_DESCRIPTOR ER_PARTITION_CLAUSE_ON_NONPARTITIONED
error code, 166 error code, 50
ER_NPIPE_FAILED_TO_SET_SECURITY_DESCRIPTOR ER_PARTITION_COLUMN_LIST_ERROR error code,
error code, 166 43
ER_NPIPE_PIPE_ALREADY_IN_USE error code, 166 ER_PARTITION_CONST_DOMAIN_ERROR error code,
ER_NULL_CANT_BE_PERSISTED_FOR_READONLY 38
error code, 127 ER_PARTITION_ENTRY_ERROR error code, 35
ER_NULL_COLUMN_IN_INDEX error code, 11 ER_PARTITION_EXCHANGE_DIFFERENT_OPTION
ER_NULL_IN_VALUES_LESS_THAN error code, 39 error code, 49
ER_NUMERIC_JSON_VALUE_OUT_OF_RANGE error ER_PARTITION_EXCHANGE_FOREIGN_KEY error
code, 72 code, 50
ER_NUM_THREADS_STILL_ALIVE error code, 418 ER_PARTITION_EXCHANGE_PART_TABLE error
ER_OBSOLETE_FILE_PRIVILEGE_FOR_REPLICATION_CHECKS
code, 49
error code, 369 ER_PARTITION_EXCHANGE_TEMP_TABLE error
ER_OBSOLETE_REQUIRE_ROW_FORMAT_VIOLATION code, 49
error code, 370 ER_PARTITION_FIELDS_TOO_LONG error code, 44
ER_OLD_FILE_FORMAT error code, 32 ER_PARTITION_FUNCTION_FAILURE error code, 36
ER_OLD_KEYFILE error code, 5 ER_PARTITION_FUNCTION_IS_NOT_ALLOWED error
ER_OLD_TEMPORALS_UPGRADED error code, 59 code, 38
ER_ONLY_FD_AND_RBR_EVENTS_ALLOWED_IN_BINLOG_STATEMENT
ER_PARTITION_FUNC_NOT_ALLOWED_ERROR error
error code, 49 code, 34
ER_ONLY_IMPLEMENTED_FOR_SRID_0_AND_4326 ER_PARTITION_HANDLER_ADMIN_MSG error code,
error code, 89 204
ER_ONLY_INTEGERS_ALLOWED error code, 39 ER_PARTITION_INSTEAD_OF_SUBPARTITION error
ER_ONLY_ON_RANGE_LIST_PARTITION error code, code, 49
36 ER_PARTITION_MAXVALUE_ERROR error code, 34
ER_OOM error code, 148 ER_PARTITION_MERGE_ERROR error code, 39
ER_OOM_SAVE_GTIDS error code, 341 ER_PARTITION_MGMT_ON_NONPARTITIONED error
ER_OPEN_AS_READONLY error code, 5 code, 35
580
ER_PARTITION_MOVE_CREATED_DUPLICATE_ROW_PLEASE_FIX
ER_PERSIST_OPTION_HOST_TRUNCATED error
error code, 192 code, 363
ER_PARTITION_NAME error code, 42 ER_PERSIST_OPTION_STATUS error code, 219
ER_PARTITION_NOT_DEFINED_ERROR error code, ER_PERSIST_OPTION_USER_TRUNCATED error
35 code, 363
ER_PARTITION_NO_TEMPORARY error code, 38 ER_PER_CHANNEL_RPL_FILTER_CONF_FOR_GRP_RPL
ER_PARTITION_PREFIX_KEY_NOT_SUPPORTED error code, 202
error code, 135 ER_PFS_MALLOC_ARRAY_OOM error code, 202
ER_PARTITION_REQUIRES_VALUES_ERROR error ER_PFS_MALLOC_ARRAY_OVERFLOW error code,
code, 34 202
ER_PARTITION_WRONG_NO_PART_ERROR error ER_PFS_NOTIFICATION_FUNCTION_REGISTER_FAILED
code, 34 error code, 198
ER_PARTITION_WRONG_NO_SUBPART_ERROR ER_PID_FILEPATH_LOCATIONS_INACCESSIBLE
error code, 34 error code, 346
ER_PARTITION_WRONG_VALUES_ERROR error ER_PID_FILE_PRIV_DIRECTORY_INSECURE error
code, 34 code, 259
ER_PART_EXPR_TOO_LONG error code, 84 ER_PK_INDEX_CANT_BE_INVISIBLE error code, 77
ER_PASSWORD_ANONYMOUS_USER error code, 12 ER_PLUGGABLE_PROTOCOL_COMMAND_NOT_SUPPORTED
ER_PASSWORD_CANNOT_BE_RETAINED_ON_PLUGIN_CHANGE
error code, 70
error code, 105 ER_PLUGINS_SHUTDOWN_END error code, 418
ER_PASSWORD_EXPIRATION_NOT_SUPPORTED_BY_AUTH_METHOD
ER_PLUGINS_SHUTDOWN_START error code, 418
error code, 88 ER_PLUGIN_BAD_OPTIONS error code, 182
ER_PASSWORD_EXPIRE_ANONYMOUS_USER error ER_PLUGIN_CANNOT_BE_UNINSTALLED error code,
code, 61 60
ER_PASSWORD_FORMAT error code, 56 ER_PLUGIN_CANT_LOAD error code, 181
ER_PASSWORD_NOT_ALLOWED error code, 12 ER_PLUGIN_CANT_OPEN_PLUGIN_TABLE error code,
ER_PASSWORD_NO_MATCH error code, 12 181
ER_PATH_IN_DATADIR error code, 85 ER_PLUGIN_CANT_SET_PERSISTENT_OPTIONS
ER_PATH_LENGTH error code, 45 error code, 182
ER_PERFORMANCE_SCHEMA_VERSION_CHANGE ER_PLUGIN_COMMON_FAILED_TO_OPEN_FILTER_TABLES
error code, 416 error code, 218
ER_PERFSCHEMA_COMPONENTS_INFRASTRUCTURE_BOOTSTRAP
ER_PLUGIN_COMMON_FAILED_TO_OPEN_TABLE
error code, 195 error code, 218
ER_PERFSCHEMA_COMPONENTS_INFRASTRUCTURE_SHUTDOWN
ER_PLUGIN_DELETE_BUILTIN error code, 41
error code, 195 ER_PLUGIN_DID_NOT_DEINITIALIZE_THREADS error
ER_PERFSCHEMA_INIT_FAILED error code, 150 code, 171
ER_PERFSCHEMA_TABLES_INIT_FAILED error code, ER_PLUGIN_DISABLED error code, 182
196 ER_PLUGIN_EXCEPTION_OPERATION_FAILED error
ER_PERSISTED_VARIABLES_DECRYPTION_FAILED code, 410
error code, 398 ER_PLUGIN_FAILED_DEINITIALIZATION error code,
ER_PERSISTED_VARIABLES_ENCRYPTION_FAILED 181
error code, 398 ER_PLUGIN_FAILED_TO_OPEN_TABLE error code,
ER_PERSISTED_VARIABLES_KEYRING_SUPPORT_REQUIRED
344
error code, 397 ER_PLUGIN_FAILED_TO_OPEN_TABLES error code,
ER_PERSISTED_VARIABLES_LACK_KEYRING_SUPPORT 344
error code, 398 ER_PLUGIN_FORCING_SHUTDOWN error code, 181
ER_PERSISTED_VARIABLES_MASTER_KEY_CANNOT_BE_GENERATED
ER_PLUGIN_HAS_CONFLICTING_SYSTEM_VARIABLES
error code, 397 error code, 182
ER_PERSISTED_VARIABLES_MASTER_KEY_NOT_FOUND ER_PLUGIN_HAS_NONZERO_REFCOUNT_AFTER_DEINITIAL
error code, 397 error code, 181
ER_PERSISTENT_PRIVILEGES_BOOTSTRAP error ER_PLUGIN_HAS_NONZERO_REFCOUNT_AFTER_SHUTDOW
code, 195 error code, 181
ER_PERSIST_ONLY_ACCESS_DENIED_ERROR error ER_PLUGIN_INIT_FAILED error code, 152
code, 85 ER_PLUGIN_INSTALL_ERROR error code, 350
581
ER_PLUGIN_INVALID_TABLE_DEFINITION error code, ER_QUERY_ON_FOREIGN_DATA_SOURCE error
390 code, 31
ER_PLUGIN_IS_NOT_LOADED error code, 37 ER_QUERY_TIMEOUT error code, 62
ER_PLUGIN_IS_PERMANENT error code, 47 ER_RANGE_NOT_INCREASING_ERROR error code,
ER_PLUGIN_LOAD_OPTIONS_IGNORED error code, 34
369 ER_READING_TABLE_FAILED error code, 153
ER_PLUGIN_LOAD_PARAMETER_TOO_LONG error ER_READY error code, 8
code, 181 ER_READ_LOG_EVENT_FAILED error code, 201
ER_PLUGIN_NOT_EARLY error code, 101 ER_READ_ONLY_MODE error code, 56
ER_PLUGIN_NOT_EARLY_DUP error code, 364 ER_READ_ONLY_TRANSACTION error code, 17
ER_PLUGIN_NO_INSTALL error code, 48 ER_REALLY_RUN_AS_ROOT error code, 147
ER_PLUGIN_NO_INSTALL_DUP error code, 364 ER_RECORD_FILE_FULL error code, 11
ER_PLUGIN_NO_UNINSTALL error code, 48 ER_RECOVERING_TABLE error code, 183
ER_PLUGIN_OOM error code, 182 ER_REDUCED_DBLWR_FILE_CORRUPTED error
ER_PLUGIN_PARSING_OPTIONS_FAILED error code, code, 414
182 ER_REDUCED_DBLWR_PAGE_FOUND error code,
ER_PLUGIN_REGISTRATION_DONE error code, 118 415
ER_PLUGIN_REGISTRATION_FAILED error code, 181 ER_REFERENCED_TRG_DOES_NOT_EXIST error
ER_PLUGIN_REQUIRES_REGISTRATION error code, code, 61
118 ER_REGEXP_BAD_ESCAPE_SEQUENCE error code,
ER_PLUGIN_SHUTTING_DOWN_PLUGIN error code, 89
181 ER_REGEXP_BAD_INTERVAL error code, 89
ER_PLUGIN_UNINSTALL_ERROR error code, 350 ER_REGEXP_BUFFER_OVERFLOW error code, 89
ER_PLUGIN_UNKNOWN_VARIABLE_TYPE error code, ER_REGEXP_ERROR error code, 13
181 ER_REGEXP_ILLEGAL_ARGUMENT error code, 89
ER_PLUGIN_VARIABLE_MISSING_NAME error code, ER_REGEXP_INDEX_OUTOFBOUNDS_ERROR error
181 code, 89
ER_PLUGIN_VARIABLE_NOT_ALLOCATED_THREAD_LOCAL ER_REGEXP_INTERNAL_ERROR error code, 89
error code, 182 ER_REGEXP_INVALID_BACK_REF error code, 89
ER_PLUGIN_VARIABLE_SET_READ_ONLY error code, ER_REGEXP_INVALID_CAPTURE_GROUP_NAME
181 error code, 104
ER_POINTLESS_WITHOUT_SLOWLOG error code, 144 ER_REGEXP_INVALID_FLAG error code, 105
ER_POLYGON_TOO_LARGE error code, 92 ER_REGEXP_INVALID_RANGE error code, 89
ER_PREPARE_FOR_PRIMARY_ENGINE error code, ER_REGEXP_LOOK_BEHIND_LIMIT error code, 89
391 ER_REGEXP_MAX_LT_MIN error code, 89
ER_PREPARE_FOR_SECONDARY_ENGINE error ER_REGEXP_MISMATCHED_PAREN error code, 89
code, 359 ER_REGEXP_MISSING_CLOSE_BRACKET error code,
ER_PREVENTS_VARIABLE_WITHOUT_RBR error 89
code, 67 ER_REGEXP_MISSING_FILE error code, 120
ER_PRIMARY_CANT_HAVE_NULL error code, 15 ER_REGEXP_MISSING_ICU_DATADIR error code, 396
ER_PRIVILEGE_DEREGISTRATION error code, 414 ER_REGEXP_MISSING_RESOURCE error code, 120
ER_PRIVILEGE_REGISTRATION error code, 413 ER_REGEXP_PATTERN_TOO_BIG error code, 90
ER_PRIVILEGE_SYSTEM_INIT_FAILED error code, 196 ER_REGEXP_RULE_SYNTAX error code, 89
ER_PROCACCESS_DENIED_ERROR error code, 27 ER_REGEXP_STACK_OVERFLOW error code, 90
ER_PROC_AUTO_GRANT_FAIL error code, 29 ER_REGEXP_TIME_OUT error code, 90
ER_PROC_AUTO_REVOKE_FAIL error code, 29 ER_REGEXP_UNIMPLEMENTED error code, 89
ER_PROTOCOL_COMPRESSION_RESET_LOG error ER_REGEX_NUMBER_TOO_BIG error code, 113
code, 368 ER_RELAY_LOG_FAIL error code, 27
ER_PS_MANY_PARAM error code, 28 ER_RELAY_LOG_INIT error code, 28
ER_PS_NO_RECURSION error code, 31 ER_RELAY_LOG_SPACE_LIMIT_DISABLED error
ER_QUALIFY_WITHOUT_WINDOW_FUNCTION error code, 348
code, 129 ER_RELOAD_KEYRING_FAILURE error code, 116
ER_QUERY_INTERRUPTED error code, 24 ER_REMOVED_SPACES error code, 33
ER_RENAMED_NAME error code, 42
582
ER_RENAME_ROLE error code, 78 ER_REPLICA_IGNORED_TABLE error code, 19
ER_REORG_HASH_ONLY_ON_SAME_NO error code, ER_REPLICA_IGNORE_SERVER_IDS error code, 43
36 ER_REPLICA_INCIDENT error code, 342
ER_REORG_NO_PARAM_ERROR error code, 36 ER_REPLICA_KILLED_AFTER_RECONNECT error
ER_REORG_OUTSIDE_RANGE error code, 36 code, 201
ER_REORG_PARTITION_NOT_EXIST error code, 36 ER_REPLICA_MAX_CHANNELS_EXCEEDED error
ER_REPLACE_INACCESSIBLE_ROWS error code, 64 code, 66
ER_REPLICATION_INCOMPATIBLE_TABLE_WITH_GIPK ER_REPLICA_MULTIPLE_CHANNELS_CMD error
error code, 408 code, 66
ER_REPLICA_AM_INIT_REPOSITORY error code, 59 ER_REPLICA_NEW_CHANNEL_WRONG_REPOSITORY
ER_REPLICA_ANONYMOUS_TO_GTID_UUID_SAME_AS_GROUP_NAME
error code, 66
error code, 384 ER_REPLICA_NOT_RUNNING error code, 16
ER_REPLICA_ANON_TO_GTID_IS_LOCAL_OR_UUID_AND_GTID_MODE_NOT_ON
ER_REPLICA_NOT_STARTED_ON_SOME_CHANNELS
error code, 383 error code, 201
ER_REPLICA_CANT_CREATE_CONVERSION error ER_REPLICA_POSSIBLY_DIVERGED_AFTER_DDL
code, 45 error code, 91
ER_REPLICA_CANT_USE_TEMPDIR error code, 178 ER_REPLICA_RECONNECT_FAILED error code, 201
ER_REPLICA_CHANGE_SOURCE_TO_EXECUTED ER_REPLICA_RELAY_LOG_PURGE_FAILED error
error code, 178 code, 196
ER_REPLICA_CHANNEL_DOES_NOT_EXIST error ER_REPLICA_RELAY_LOG_READ_FAILURE error
code, 65 code, 342
ER_REPLICA_CHANNEL_IO_THREAD_MUST_STOP ER_REPLICA_RELAY_LOG_TRUNCATE_INFO error
error code, 62 code, 196
ER_REPLICA_CHANNEL_MUST_STOP error code, 66 ER_REPLICA_RELAY_LOG_WRITE_FAILURE error
ER_REPLICA_CHANNEL_NAME_INVALID_OR_TOO_LONG code, 342
error code, 66 ER_REPLICA_SILENT_RETRY_TRANSACTION error
ER_REPLICA_CHANNEL_NOT_RUNNING error code, code, 54
66 ER_REPLICA_SOURCE_COM_FAILURE error code,
ER_REPLICA_CHANNEL_OPERATION_NOT_ALLOWED 342
error code, 71 ER_REPLICA_SQL_THREAD_MUST_STOP error code,
ER_REPLICA_CHANNEL_SQL_SKIP_COUNTER error 61
code, 66 ER_REPLICA_SQL_THREAD_STOPPED_AFTER_GTIDS_REAC
ER_REPLICA_CHANNEL_SQL_THREAD_MUST_STOP error code, 165
error code, 66 ER_REPLICA_SQL_THREAD_STOPPED_BEFORE_GTIDS_ALR
ER_REPLICA_CHANNEL_WAS_NOT_RUNNING error error code, 165
code, 66 ER_REPLICA_SQL_THREAD_STOPPED_BEFORE_GTIDS_REA
ER_REPLICA_CHANNEL_WAS_RUNNING error code, error code, 165
66 ER_REPLICA_SQL_THREAD_STOPPED_GAP_TRX_PROCESS
ER_REPLICA_CM_INIT_REPOSITORY error code, 59 error code, 165
ER_REPLICA_CONFIGURATION error code, 53 ER_REPLICA_SQL_THREAD_STOPPED_UNTIL_CONDITION_B
ER_REPLICA_CORRUPT_EVENT error code, 41 error code, 165
ER_REPLICA_CREATE_EVENT_FAILURE error code, ER_REPLICA_SQL_THREAD_STOPPED_UNTIL_POSITION_RE
342 error code, 165
ER_REPLICA_FATAL_ERROR error code, 342 ER_REPLICA_THREAD error code, 16
ER_REPLICA_HAS_MORE_GTIDS_THAN_SOURCE ER_REPLICA_WORKER_STOPPED_PREVIOUS_THD_ERROR
error code, 60 error code, 62
ER_REPLICA_HEARTBEAT_FAILURE error code, 342 ER_REQUIRES_PRIMARY_KEY error code, 15
ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE ER_REQUIRE_ROW_FORMAT_INVALID_VALUE error
error code, 42 code, 108
ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX ER_REQUIRE_TABLE_PRIMARY_KEY_CHECK_GENERATE_W
error code, 47 error code, 126
ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN ER_REQUIRE_TABLE_PRIMARY_KEY_CHECK_GENERATE_W
error code, 47 error code, 410
ER_REPLICA_IGNORED_SSL_PARAMS error code, 21 ER_RESERVED_SYNTAX error code, 28
583
ER_RESERVED_TABLESPACE_NAME error code, 91 ER_RETRYING_REPAIR_WITH_KEYCACHE error
ER_RESET_SOURCE_TO_VALUE_OUT_OF_RANGE code, 182
error code, 80 ER_REVOKE_GRANTS error code, 21
ER_RESIGNAL_WITHOUT_ACTIVE_HANDLER error ER_REWRITER_LOAD_FAILED error code, 220
code, 43 ER_REWRITER_OOM error code, 220
ER_RESOURCE_GROUP_BIND_FAILED error code, 87 ER_REWRITER_QUERY_ERROR_MSG error code, 217
ER_RESOURCE_GROUP_BUSY error code, 87 ER_REWRITER_QUERY_FAILED error code, 217
ER_RESOURCE_GROUP_DISABLED error code, 87 ER_REWRITER_READ_FAILED error code, 220
ER_RESOURCE_GROUP_EXISTS error code, 86 ER_REWRITER_TABLE_MALFORMED_ERROR error
ER_RESOURCE_GROUP_IS_DISABLED error code, code, 220
197 ER_ROLE_GRANTED_TO_ITSELF error code, 115
ER_RESOURCE_GROUP_METADATA_UPDATE_SKIPPED ER_ROLE_NOT_GRANTED error code, 78
error code, 197 ER_ROW_DATA_TOO_BIG_TO_WRITE_IN_BINLOG
ER_RESOURCE_GROUP_NOT_EXISTS error code, 86 error code, 201
ER_RESOURCE_GROUP_POST_INIT_FAILED error ER_ROW_DOES_NOT_MATCH_GIVEN_PARTITION_SET
code, 195 error code, 50
ER_RESOURCE_GROUP_SUBSYSTEM_INIT_FAILED ER_ROW_DOES_NOT_MATCH_PARTITION error
error code, 195 code, 49
ER_RESOURCE_GROUP_VALIDATION_FAILED error ER_ROW_IN_WRONG_PARTITION error code, 58
code, 197 ER_ROW_IN_WRONG_PARTITION_PLEASE_REPAIR
ER_RESTART_RECEIVED_INFO error code, 206 error code, 155
ER_RESTART_SERVER_FAILED error code, 90 ER_ROW_IS_REFERENCED error code, 18
ER_RESULT_SIZE_LIMIT_EXCEEDED error code, 134 ER_ROW_IS_REFERENCED_2 error code, 32
ER_RES_GRP_FAILED_DETERMINE_CPU_COUNT ER_ROW_SINGLE_PARTITION_FIELD_ERROR error
error code, 198 code, 44
ER_RES_GRP_FAILED_TO_DETERMINE_NICE_CAPABILITYER_RPL_AM_INIT_INFO_MSG error code, 204
error code, 198 ER_RPL_ASYNC_CHANNEL_CANT_CONNECT error
ER_RES_GRP_FAILED_TO_GET_THREAD_HANDLE code, 382
error code, 198 ER_RPL_ASYNC_CHANNEL_CANT_CONNECT_NO_QUORUM
ER_RES_GRP_FEATURE_NOT_AVAILABLE error error code, 383
code, 198 ER_RPL_ASYNC_CHANNEL_STOPPED_QUORUM_LOST
ER_RES_GRP_GET_THREAD_PRIO_NOT_SUPPORTED error code, 383
error code, 198 ER_RPL_ASYNC_CHECK_CONNECTION_ERROR
ER_RES_GRP_INVALID_THREAD_PRIORITY error error code, 424
code, 198 ER_RPL_ASYNC_GET_GROUP_MEMBERSHIP_DETAILS_ERROR
ER_RES_GRP_INVALID_VCPU_ID error code, 205 error code, 424
ER_RES_GRP_INVALID_VCPU_RANGE error code, ER_RPL_ASYNC_MANAGED_NAME_ADDED error
205 code, 383
ER_RES_GRP_SET_THREAD_PRIORITY_FAILED ER_RPL_ASYNC_MANAGED_NAME_REMOVED error
error code, 198 code, 383
ER_RES_GRP_SET_THR_AFFINITY_FAILED error ER_RPL_ASYNC_MONITOR_IO_THD_FETCH_GROUP_MAJORITY
code, 198 error code, 424
ER_RES_GRP_SET_THR_AFFINITY_TO_CPUS_FAILED ER_RPL_ASYNC_NEXT_FAILOVER_CHANNEL_SELECTED
error code, 198 error code, 410
ER_RES_GRP_SOLARIS_PROCESSOR_AFFINITY_FAILED ER_RPL_ASYNC_READ_FAILOVER_TABLE error
error code, 199 code, 383
ER_RES_GRP_SOLARIS_PROCESSOR_BIND_TO_CPUID_FAILED
ER_RPL_ASYNC_RECONNECT_AUTO_POSITION_OFF
error code, 199 error code, 112
ER_RES_GRP_SOLARIS_PROCESSOR_BIND_TO_THREAD_FAILED
ER_RPL_ASYNC_RECONNECT_FAIL_NO_SOURCE
error code, 199 error code, 381
ER_RES_GRP_THD_UNBIND_FROM_CPU_FAILED ER_RPL_ASYNC_RECONNECT_GTID_MODE_OFF
error code, 198 error code, 112
ER_RETRYING_REPAIR_WITHOUT_QUICK error code, ER_RPL_ASYNC_RECONNECT_GTID_MODE_OFF_CHANNEL
182 error code, 385
584
ER_RPL_ASYNC_REPLICA_IO_THD_FETCH_GROUP_MAJORITY_ERROR
ER_RPL_ENCRYPTION_FAILED_TO_STORE_KEY
error code, 424 error code, 97
ER_RPL_ASYNC_SENDER_ADDED error code, 382 ER_RPL_ENCRYPTION_HEADER_ERROR error code,
ER_RPL_ASYNC_SENDER_REMOVED error code, 382 96
ER_RPL_BINLOG_FILTERS_OOM error code, 146 ER_RPL_ENCRYPTION_KEYRING_INVALID_KEY error
ER_RPL_BINLOG_RELAY_DELEGATES_INIT_FAILED code, 96
error code, 153 ER_RPL_ENCRYPTION_KEY_EXISTS_UNEXPECTED
ER_RPL_BINLOG_SKIPPING_REMAINING_HEARTBEAT_INFO
error code, 97
error code, 171 ER_RPL_ENCRYPTION_KEY_NOT_FOUND error code,
ER_RPL_BINLOG_SOURCE_SENDS_HEARTBEAT 96
error code, 171 ER_RPL_ENCRYPTION_MASTER_KEY_RECOVERY_FAILED
ER_RPL_BINLOG_SOURCE_USES_CHECKSUM_AND_REPLICA_CANT
error code, 97
error code, 171 ER_RPL_ENCRYPTION_UNABLE_TO_CHANGE_OPTION
ER_RPL_BINLOG_STARTING_DUMP error code, 171 error code, 97
ER_RPL_BINLOG_STORAGE_DELEGATES_INIT_FAILEDER_RPL_ERROR_CREATING_APPLIER_METADATA
error code, 152 error code, 167
ER_RPL_BINLOG_TRANSMIT_DELEGATES_INIT_FAILEDER_RPL_ERROR_CREATING_CONNECTION_METADATA
error code, 153 error code, 167
ER_RPL_CANNOT_OPEN_RELAY_LOG error code, ER_RPL_ERROR_LOOKING_FOR_LOG error code,
394 176
ER_RPL_CANT_ADD_DO_TABLE error code, 148 ER_RPL_ERROR_READING_REPLICA_WORKER_CONFIGURA
ER_RPL_CANT_ADD_IGNORE_TABLE error code, 148 error code, 180
ER_RPL_CANT_CREATE_REPLICA_THREAD error ER_RPL_ERROR_READING_SOURCE_CONFIGURATION
code, 174 error code, 181
ER_RPL_CANT_FIND_FOLLOWUP_FILE error code, ER_RPL_ERROR_WRITING_RELAY_LOG_CONFIGURATION
176 error code, 179
ER_RPL_CANT_HAVE_SAME_BASENAME error code, ER_RPL_ERROR_WRITING_SOURCE_CONFIGURATION
193 error code, 180
ER_RPL_CANT_INITIALIZE_GTID_SETS_IN_AM_INIT_INFO
ER_RPL_FAILED_TO_CREATE_CACHE_FOR_INFO_FILE
error code, 179 error code, 168
ER_RPL_CANT_MAKE_PATHS error code, 150 ER_RPL_FAILED_TO_CREATE_NEW_INFO_FILE error
ER_RPL_CANT_OPEN_INFO_TABLE error code, 166 code, 168
ER_RPL_CANT_OPEN_LOG_IN_AM_INIT_INFO error ER_RPL_FAILED_TO_DELETE_FROM_REPLICA_WORKERS_I
code, 179 error code, 167
ER_RPL_CANT_SCAN_INFO_TABLE error code, 166 ER_RPL_FAILED_TO_OPEN_INFO_FILE error code,
ER_RPL_CANT_STOP_REPLICA_WHILE_LOCKED_BACKUP 168
error code, 102 ER_RPL_FAILED_TO_OPEN_RELAY_LOG error code,
ER_RPL_CHANNELS_REQUIRE_NON_ZERO_SERVER_ID 180
error code, 167 ER_RPL_FAILED_TO_RESET_STATE_IN_REPLICA_INFO_REP
ER_RPL_CORRUPTED_INFO_TABLE error code, 166 error code, 167
ER_RPL_CORRUPTED_KEYS_IN_INFO_TABLE error ER_RPL_FAILED_TO_STAT_LOG_IN_INDEX error
code, 167 code, 178
ER_RPL_ENCRYPTION_CANNOT_ROTATE_BINLOG_MASTER_KEY
ER_RPL_FILTERS_NOT_ATTACHED_TO_CHANNEL
error code, 98 error code, 202
ER_RPL_ENCRYPTION_FAILED_TO_ENCRYPT error ER_RPL_FILTER_ADD_WILD_DO_TABLE_FAILED
code, 97 error code, 195
ER_RPL_ENCRYPTION_FAILED_TO_FETCH_KEY ER_RPL_FILTER_ADD_WILD_IGNORE_TABLE_FAILED
error code, 96 error code, 196
ER_RPL_ENCRYPTION_FAILED_TO_GENERATE_KEY ER_RPL_GTID_LOG_EVENT_IN_STREAM error code,
error code, 97 169
ER_RPL_ENCRYPTION_FAILED_TO_REMOVE_KEY ER_RPL_GTID_MEMORY_FINALLY_AVAILABLE error
error code, 97 code, 168
ER_RPL_ENCRYPTION_FAILED_TO_ROTATE_LOGS ER_RPL_GTID_MODE_REQUIRES_ENFORCE_GTID_CONSIST
error code, 96 error code, 193
585
ER_RPL_GTID_TABLE_CANNOT_OPEN error code, ER_RPL_PLUGIN_FUNCTION_FAILED error code, 153
139 ER_RPL_RECOVERY_ERROR error code, 173
ER_RPL_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAULT_EXPRESSION
ER_RPL_RECOVERY_ERROR_READ_RELAY_LOG
error code, 350 error code, 173
ER_RPL_GTID_UNSAFE_STMT_CREATE_SELECT ER_RPL_RECOVERY_FILE_SOURCE_POS_INFO
error code, 340 error code, 173
ER_RPL_GTID_UNSAFE_STMT_ON_NON_TRANS_TABLE ER_RPL_RECOVERY_IO_ERROR_READING_RELAY_LOG_INDEX
error code, 340 error code, 173
ER_RPL_INCOMPATIBLE_DECIMAL_IN_RBR error ER_RPL_RECOVERY_NO_ROTATE_EVENT_FROM_SOURCE
code, 170 error code, 173
ER_RPL_INCONSISTENT_SEQUENCE_NO_IN_TRX ER_RPL_RECOVERY_REPLICATE_SAME_SERVER_ID_REQUIRES
error code, 167 error code, 173
ER_RPL_INCONSISTENT_TIMESTAMPS_IN_TRX error ER_RPL_RECOVERY_SKIPPED_GROUP_REPLICATION_CHANNE
code, 167 error code, 173
ER_RPL_INCREMENTING_MEMBER_ACTION_VERSION ER_RPL_RELAY_LOG_INDEX_NEEDS_FILE_NOT_DIRECTORY
error code, 393 error code, 179
ER_RPL_INFINITY_DENIED error code, 151 ER_RPL_RELAY_LOG_NEEDS_FILE_NOT_DIRECTORY
ER_RPL_INFINITY_IGNORED error code, 152 error code, 178
ER_RPL_INFO_DATA_TOO_LONG error code, 50 ER_RPL_RELAY_LOG_RECOVERY_GTID_ONLY error
ER_RPL_IO_THREAD_KILLED error code, 201 code, 397
ER_RPL_KILL_OLD_DUMP_THREAD_ENCOUNTERED ER_RPL_RELAY_LOG_RECOVERY_INFO_AFTER_CLONE
error code, 430 error code, 372
ER_RPL_LOG_ENTRY_EXCEEDS_REPLICA_MAX_ALLOWED_PACKET
ER_RPL_REPLICA_ADDITIONAL_ERROR_INFO_FROM_DA
error code, 176 error code, 177
ER_RPL_LOG_NOT_FOUND_WHILE_COUNTING_RELAY_LOG_SPACE
ER_RPL_REPLICA_AUTO_POSITION_IS_1_AND_GTID_MODE_IS_
error code, 178 error code, 172
ER_RPL_MTA_ALLOW_COMMIT_OUT_OF_ORDER ER_RPL_REPLICA_CANT_FLUSH_CONNECTION_METADATA_RE
error code, 430 error code, 174
ER_RPL_MTA_AUTOMATIC_RECOVERY_FAILED ER_RPL_REPLICA_CANT_INITIALIZE_REPLICA_WORKER
error code, 174 error code, 176
ER_RPL_MTA_CHECKPOINT_PERIOD_DIFFERS_FROM_CNT ER_RPL_REPLICA_CANT_INIT_RELAY_LOG_POSITION
error code, 176 error code, 175
ER_RPL_MTA_GROUP_RECOVERY_APPLIER_METADATA ER_RPL_REPLICA_CANT_START_REPLICA_FOR_CHANNEL
error code, 176 error code, 173
ER_RPL_MTA_GROUP_RECOVERY_APPLIER_METADATA_FOR_WORKER
ER_RPL_REPLICA_CANT_STOP_REPLICA_FOR_CHANNEL
error code, 176 error code, 173
ER_RPL_MTA_RECOVERY_CANT_OPEN_RELAY_LOG ER_RPL_REPLICA_CANT_USE_CHARSET error code,
error code, 174 178
ER_RPL_MTA_RECOVERY_COMPLETE error code, ER_RPL_REPLICA_CONNECTED_TO_SOURCE_REPLICATION_RE
175 error code, 178
ER_RPL_MTA_RECOVERY_FAILED_TO_START_COORDINATOR
ER_RPL_REPLICA_CONNECTED_TO_SOURCE_RPL_STARTED_F
error code, 173 error code, 411
ER_RPL_MTA_RECOVERY_STARTING_COORDINATOR ER_RPL_REPLICA_CONNECTED_TO_SOURCE_RPL_STARTED_G
error code, 173 error code, 411
ER_RPL_MTA_RECOVERY_SUCCESSFUL error code, ER_RPL_REPLICA_COULD_NOT_CREATE_CHANNEL_LIST
174 error code, 167
ER_RPL_MTA_REPLICA_COORDINATOR_HAS_WAITED ER_RPL_REPLICA_DUMP_THREAD_KILLED_BY_SOURCE
error code, 180 error code, 175
ER_RPL_MTA_STATISTICS error code, 175 ER_RPL_REPLICA_ERROR_INFO_FROM_DA error
ER_RPL_MULTISOURCE_REQUIRES_TABLE_TYPE_REPOSITORIES
code, 177
error code, 168 ER_RPL_REPLICA_ERROR_LOADING_USER_DEFINED_LIBRARY
ER_RPL_OPEN_INDEX_FILE_FAILED error code, 179 error code, 177
ER_RPL_PLEASE_USE_OPTION_RELAY_LOG error ER_RPL_REPLICA_ERROR_READING_FROM_SERVER
code, 179 error code, 175
586
ER_RPL_REPLICA_ERROR_READING_RELAY_LOG_EVENTS ER_RPL_REPLICA_QUEUE_EVENT_FAILED_INVALID_CONFIG
error code, 178 error code, 177
ER_RPL_REPLICA_ERROR_REQUESTING_BINLOG_DUMP ER_RPL_REPLICA_QUEUE_EVENT_FAILED_INVALID_NON_R
error code, 175 error code, 370
ER_RPL_REPLICA_ERROR_RETRYING error code, ER_RPL_REPLICA_READ_INVALID_EVENT_FROM_SOURCE
175 error code, 177
ER_RPL_REPLICA_ERROR_RUNNING_QUERY error ER_RPL_REPLICA_REPORT_HOST_TOO_LONG error
code, 177 code, 174
ER_RPL_REPLICA_FAILED_TO_CREATE_CHANNEL_FROM_CONNECTION_METADATA
ER_RPL_REPLICA_REPORT_PASSWORD_TOO_LONG
error code, 168 error code, 175
ER_RPL_REPLICA_FAILED_TO_CREATE_OR_RECOVER_INFO_REPOSITORIES
ER_RPL_REPLICA_REPORT_USER_TOO_LONG error
error code, 172 code, 174
ER_RPL_REPLICA_FAILED_TO_INIT_A_CONNECTION_METADATA_STRUCTURE
ER_RPL_REPLICA_RESET_FILTER_OPTIONS error
error code, 168 code, 196
ER_RPL_REPLICA_FAILED_TO_INIT_CONNECTION_METADATA_STRUCTURE
ER_RPL_REPLICA_SECONDS_BEHIND_SOURCE_DUBIOUS
error code, 168 error code, 174
ER_RPL_REPLICA_FAILED_TO_INIT_PARTITIONS_HASHER_RPL_REPLICA_SKIP_COUNTER_EXECUTED error
error code, 177 code, 177
ER_RPL_REPLICA_FILTER_CREATE_FAILED error ER_RPL_REPLICA_SOURCE_UUID_HAS_CHANGED_HOST_P
code, 196 error code, 411
ER_RPL_REPLICA_FORCING_TO_RECONNECT_IO_THREAD ER_RPL_REPLICA_SOURCE_UUID_HAS_NOT_CHANGED
error code, 175 error code, 411
ER_RPL_REPLICA_GENERIC_MESSAGE error code, ER_RPL_REPLICA_SOURCE_UUID_HOST_PORT_HAS_CHAN
167 error code, 411
ER_RPL_REPLICA_GLOBAL_FILTERS_COPY_FAILED ER_RPL_REPLICA_SQL_THREAD_DETECTED_UNEXPECTED
error code, 196 error code, 370
ER_RPL_REPLICA_INCORRECT_CHANNEL error ER_RPL_REPLICA_SQL_THREAD_EXITING error
code, 192 code, 177
ER_RPL_REPLICA_INSECURE_CHANGE_SOURCE ER_RPL_REPLICA_SQL_THREAD_IO_ERROR_READING_EVE
error code, 192 error code, 178
ER_RPL_REPLICA_IO_THREAD_ABORTED_WAITING_FOR_RELAY_LOG_SPACE
ER_RPL_REPLICA_SQL_THREAD_STARTING error
error code, 176 code, 177
ER_RPL_REPLICA_IO_THREAD_CANT_REGISTER_ON_SOURCE
ER_RPL_REPLICA_SQL_THREAD_STARTING_WITH_PRIVILEG
error code, 175 error code, 369
ER_RPL_REPLICA_IO_THREAD_DETECTED_UNEXPECTED_EVENT_SEQUENCE
ER_RPL_REPLICA_SQL_THREAD_STOP_CMD_EXEC_TIMEOU
error code, 177 error code, 340
ER_RPL_REPLICA_IO_THREAD_EXITING error code, ER_RPL_REPLICA_STOPPING_AS_SOURCE_OOM
176 error code, 176
ER_RPL_REPLICA_IO_THREAD_KILLED error code, ER_RPL_REPLICA_USES_CHECKSUM_AND_SOURCE_PRE_5
175 error code, 174
ER_RPL_REPLICA_IO_THREAD_STOP_CMD_EXEC_TIMEOUTER_RPL_REPLICA_WORKER_THREAD_CREATION_FAILED
error code, 340 error code, 176
ER_RPL_REPLICA_IO_THREAD_WAS_KILLED error ER_RPL_REPLICA_WORKER_THREAD_CREATION_FAILED_W
code, 174 error code, 176
ER_RPL_REPLICA_MONITOR_IO_THREAD_EXITING ER_RPL_REPO_HAS_GAPS error code, 141
error code, 383 ER_RPL_REWRITEDB_EMPTY_FROM error code, 149
ER_RPL_REPLICA_MONITOR_IO_THREAD_RECONNECT_CHANNEL
ER_RPL_REWRITEDB_EMPTY_TO error code, 149
error code, 383 ER_RPL_REWRITEDB_MISSING_ARROW error code,
ER_RPL_REPLICA_NEW_C_M_NEEDS_REPOS_TYPE_OTHER_THAN_FILE
149
error code, 178 ER_RPL_SERVER_ID_MISSING error code, 174
ER_RPL_REPLICA_NEXT_LOG_IS_ACTIVE error code, ER_RPL_SSL_INFO_IN_CONNECTION_METADATA_IGNORED
178 error code, 181
ER_RPL_REPLICA_NEXT_LOG_IS_INACTIVE error ER_RPL_TRX_DELEGATES_INIT_FAILED error code,
code, 178 152
587
ER_RPL_UNEXPECTED_BEGIN_IN_STREAM error ER_SEC_FILE_PRIV_CANT_ACCESS_DIR error code,
code, 169 145
ER_RPL_UNEXPECTED_COMMIT_ROLLBACK_OR_XID_LOG_EVENT_IN_STREAM
ER_SEC_FILE_PRIV_CANT_STAT error code, 145
error code, 169 ER_SEC_FILE_PRIV_DIRECTORY_INSECURE error
ER_RPL_UNEXPECTED_XA_ROLLBACK_IN_STREAM code, 145
error code, 169 ER_SEC_FILE_PRIV_DIRECTORY_PERMISSIONS
ER_RPL_UNSUPPORTED_UNIGNORABLE_EVENT_IN_STREAM
error code, 145
error code, 169 ER_SEC_FILE_PRIV_EMPTY error code, 145
ER_RPL_WORKER_CANT_FIND_NEXT_RELAY_LOG ER_SEC_FILE_PRIV_IGNORED error code, 145
error code, 180 ER_SEC_FILE_PRIV_NULL error code, 145
ER_RPL_WORKER_CANT_READ_RELAY_LOG error ER_SELECT_REDUCED error code, 20
code, 180 ER_SEMISYNC_ADD_ACK_TO_SLOT error code, 211
ER_RPL_WORKER_ID_IS error code, 167 ER_SEMISYNC_BINLOG_REPLY_IS_AHEAD error
ER_RUNNING_APPLIER_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT
code, 210
error code, 93 ER_SEMISYNC_BINLOG_WRITE_OUT_OF_ORDER
ER_RUN_HOOK_ERROR error code, 67 error code, 209
ER_SAME_NAME_PARTITION error code, 36 ER_SEMISYNC_CLEARED_ACTIVE_TRANSACTION_TILL_POS
ER_SAME_NAME_PARTITION_FIELD error code, 43 error code, 209
ER_SCHEDULER_KILLING error code, 142 ER_SEMISYNC_CLEARED_ALL_ACTIVE_TRANSACTION_NODES
ER_SCHEDULER_STARTED error code, 142 error code, 209
ER_SCHEDULER_STOPPED error code, 142 ER_SEMISYNC_DISABLED_ON_SOURCE error code,
ER_SCHEDULER_STOPPING_FAILED_TO_CREATE_WORKER
210
error code, 142 ER_SEMISYNC_EXECUTION_FAILED_ON_SOURCE
ER_SCHEDULER_STOPPING_FAILED_TO_GET_EVENT error code, 213
error code, 142 ER_SEMISYNC_FAILED_REGISTER_REPLICA_TO_RECEIVER
ER_SCHEDULER_WAITING error code, 142 error code, 212
ER_SCHEMA_DIR_CREATE_FAILED error code, 88 ER_SEMISYNC_FAILED_TO_ALLOCATE_TRX_NODE
ER_SCHEMA_DIR_EXISTS error code, 88 error code, 209
ER_SCHEMA_DIR_MISSING error code, 88 ER_SEMISYNC_FAILED_TO_INSERT_TRX_NODE
ER_SCHEMA_DIR_UNKNOWN error code, 88 error code, 211
ER_SCHEMA_NAME_IN_UPPER_CASE_NOT_ALLOWED ER_SEMISYNC_FAILED_TO_START_ACK_RECEIVER_THD
error code, 371 error code, 212
ER_SCHEMA_NAME_IN_UPPER_CASE_NOT_ALLOWED_FOR_FK
ER_SEMISYNC_FAILED_TO_STOP_ACK_RECEIVER_THD
error code, 371 error code, 213
ER_SCHEMA_READ_ONLY error code, 112 ER_SEMISYNC_FAILED_TO_WAIT_ON_DUMP_SOCKET
ER_SDI_GET_KEYS_INVALID_TABLESPACE error error code, 212
code, 116 ER_SEMISYNC_FORCED_SHUTDOWN error code, 210
ER_SDI_OPERATION_FAILED error code, 87 ER_SEMISYNC_FUNCTION_CALLED_TWICE error
ER_SDI_OPERATION_FAILED_MISSING_RECORD code, 210
error code, 109 ER_SEMISYNC_INIT_WAIT_POS error code, 211
ER_SECONDARY_ENGINE error code, 104 ER_SEMISYNC_INSERT_LOG_INFO_IN_ENTRY error
ER_SECONDARY_ENGINE_DDL error code, 104 code, 209
ER_SECONDARY_ENGINE_DDL_FAILED error code, ER_SEMISYNC_MISSING_MAGIC_NO_FOR_SEMISYNC_PKT
415 error code, 213
ER_SECONDARY_ENGINE_DDL_TRACK_PROGRESS ER_SEMISYNC_MOVE_BACK_WAIT_POS error code,
error code, 428 210
ER_SECONDARY_ENGINE_PLUGIN error code, 103 ER_SEMISYNC_NOT_SUPPORTED_BY_SOURCE
ER_SECOND_PASSWORD_CANNOT_BE_EMPTY error code, 213
error code, 103 ER_SEMISYNC_NO_SPACE_IN_THE_PKT error code,
ER_SECURE_AUTH_VALUE_UNSUPPORTED error 211
code, 144 ER_SEMISYNC_PROBE_LOG_INFO_IN_ENTRY error
ER_SECURE_TRANSPORT_REQUIRED error code, 72 code, 209
ER_SEC_FILE_PRIV_ARGUMENT_TOO_LONG error ER_SEMISYNC_RECEIVED_ACK_IS_SMALLER error
code, 146 code, 211
588
ER_SEMISYNC_REPLICA_NET_FLUSH_REPLY_FAILED ER_SEMISYNC_UNREGISTER_BINLOG_STORAGE_OBSERVE
error code, 213 error code, 212
ER_SEMISYNC_REPLICA_REPLY error code, 213 ER_SEMISYNC_UNREGISTER_BINLOG_TRANSMIT_OBSERVE
ER_SEMISYNC_REPLICA_REPLY_WITH_BINLOG_INFO error code, 212
error code, 213 ER_SEMISYNC_UNREGISTER_TRX_OBSERVER_FAILED
ER_SEMISYNC_REPLICA_SEND_REPLY_FAILED error code, 212
error code, 213 ER_SEMISYNC_UPDATE_EXISTING_REPLICA_ACK
ER_SEMISYNC_REPLICA_SET_FAILED error code, error code, 212
213 ER_SEMISYNC_WAIT_FOR_BINLOG_TIMEDOUT error
ER_SEMISYNC_REPLICA_START error code, 213 code, 211
ER_SEMISYNC_REPLY_BINLOG_FILE_TOO_LARGE ER_SEMISYNC_WAIT_TIME_ASSESSMENT_FOR_COMMIT_TR
error code, 210 error code, 211
ER_SEMISYNC_REPLY_MAGIC_NO_ERROR error ER_SEMISYNC_WAIT_TIME_FOR_BINLOG_SENT
code, 210 error code, 211
ER_SEMISYNC_REPLY_PKT_LENGTH_TOO_SMALL ER_SERVERID_TOO_LARGE error code, 151
error code, 210 ER_SERVER_ACL_TABLE_ERROR error code, 343
ER_SEMISYNC_RPL_ENABLED_ON_SOURCE error ER_SERVER_BINLOG_MASTER_KEY_RECOVERY_OUT_OF_C
code, 210 error code, 360
ER_SEMISYNC_RPL_INIT_FOR_TRX error code, 209 ER_SERVER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_C
ER_SEMISYNC_RPL_SWITCHED_OFF error code, 211 error code, 360
ER_SEMISYNC_RPL_SWITCHED_ON error code, 211 ER_SERVER_BINLOG_UNSAFE_SYSTEM_FUNCTION
ER_SEMISYNC_SERVER_REPLY error code, 210 error code, 362
ER_SEMISYNC_SOCKET_FD_TOO_LARGE error ER_SERVER_CANNOT_LOAD_FROM_TABLE_V2
code, 213 error code, 343
ER_SEMISYNC_SOURCE_FAILED_ON_NET_FLUSH ER_SERVER_CANT_OPEN_FILE error code, 343
error code, 211 ER_SERVER_CERT_VERIFY_FAILED error code, 417
ER_SEMISYNC_SOURCE_GOT_REPLY_AT_POS error ER_SERVER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V
code, 210 error code, 343
ER_SEMISYNC_SOURCE_OOM error code, 210 ER_SERVER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDA
ER_SEMISYNC_SOURCE_SIGNAL_ALL_WAITING_THREADSerror code, 343
error code, 210 ER_SERVER_COST_FAILED_TO_READ error code,
ER_SEMISYNC_SOURCE_TRX_WAIT_POS error code, 169
210 ER_SERVER_COST_INVALID_COST_CONSTANT
ER_SEMISYNC_STARTING_ACK_RECEIVER_THD error code, 168
error code, 212 ER_SERVER_COST_UNKNOWN_COST_CONSTANT
ER_SEMISYNC_START_BINLOG_DUMP_TO_REPLICA error code, 168
error code, 212 ER_SERVER_DISK_FULL_NOWAIT error code, 343
ER_SEMISYNC_STOPPING_ACK_RECEIVER_THREAD ER_SERVER_DOWNGRADE_FROM_VERSION error
error code, 212 code, 415
ER_SEMISYNC_STOP_BINLOG_DUMP_TO_REPLICA ER_SERVER_DOWNGRADE_HELP_TABLE_STATUS
error code, 212 error code, 427
ER_SEMISYNC_SYNC_HEADER_UPDATE_INFO error ER_SERVER_DOWNGRADE_STATUS error code, 416
code, 211 ER_SERVER_DOWNGRADE_SYS_SCHEMA error
ER_SEMISYNC_TRACE_ENTER_FUNC error code, 209 code, 427
ER_SEMISYNC_TRACE_EXIT error code, 209 ER_SERVER_FILE_NOT_FOUND error code, 343
ER_SEMISYNC_TRACE_EXIT_WITH_BOOL_EXIT_CODE ER_SERVER_FILE_USED error code, 343
error code, 209 ER_SERVER_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_
ER_SEMISYNC_TRACE_EXIT_WITH_INT_EXIT_CODE error code, 350
error code, 209 ER_SERVER_HANDLER_ERROR error code, 343
ER_SEMISYNC_TRX_SKIPPED_AT_POS error code, ER_SERVER_INIT_COMPILED_IN_COMMANDS error
211 code, 204
ER_SEMISYNC_UNREGISTERED_REPLICATOR error ER_SERVER_ISNT_AVAILABLE error code, 73
code, 212 ER_SERVER_NET_PACKET_TOO_LARGE error code,
342
589
ER_SERVER_NEW_ABORTING_CONNECTION error ER_SERVER_SHUTDOWN_COMPLETE error code,
code, 342 193
ER_SERVER_NOT_FORM_FILE error code, 343 ER_SERVER_SHUTDOWN_INFO error code, 346
ER_SERVER_NO_SESSION_TO_SEND_TO error code, ER_SERVER_SOURCE_FATAL_ERROR_READING_BINLOG
342 error code, 341
ER_SERVER_NO_SYSTEM_TABLE_ACCESS error ER_SERVER_STARTUP_ADMIN_INTERFACE error
code, 342 code, 354
ER_SERVER_OFFLINE_MODE error code, 62 ER_SERVER_STARTUP_MSG error code, 194
ER_SERVER_OFFLINE_MODE_REASON error code, ER_SERVER_TABLE_CHECK_FAILED error code, 343
136 ER_SERVER_TEST_MESSAGE error code, 344
ER_SERVER_OUTOFMEMORY error code, 194 ER_SERVER_UNKNOWN_SYSTEM_VARIABLE error
ER_SERVER_OUT_OF_RESOURCES error code, 194 code, 342
ER_SERVER_OUT_OF_SORTMEMORY error code, ER_SERVER_UPGRADE_CHECKING_DB error code,
343 362
ER_SERVER_RECORD_FILE_FULL error code, 343 ER_SERVER_UPGRADE_EMPTY_SYS error code, 361
ER_SERVER_REPLICA_AM_INIT_REPOSITORY error ER_SERVER_UPGRADE_FAILED error code, 361
code, 342 ER_SERVER_UPGRADE_FROM_VERSION error code,
ER_SERVER_REPLICA_CM_INIT_REPOSITORY error 357
code, 342 ER_SERVER_UPGRADE_HELP_TABLE_STATUS error
ER_SERVER_REPLICA_CONVERSION_FAILED error code, 362
code, 344 ER_SERVER_UPGRADE_INFO_FILE error code, 361
ER_SERVER_REPLICA_IGNORED_TABLE error code, ER_SERVER_UPGRADE_MYSQL_TABLES error code,
344 361
ER_SERVER_REPLICA_INIT_QUERY_FAILED error ER_SERVER_UPGRADE_NO_SYS_VERSION error
code, 344 code, 361
ER_SERVER_RPL_ENCRYPTION_FAILED_TO_ENCRYPTER_SERVER_UPGRADE_OFF error code, 361
error code, 357 ER_SERVER_UPGRADE_PENDING error code, 361
ER_SERVER_RPL_ENCRYPTION_FAILED_TO_FETCH_KEYER_SERVER_UPGRADE_REPAIR_REQUIRED error
error code, 353 code, 361
ER_SERVER_RPL_ENCRYPTION_FAILED_TO_GENERATE_KEY
ER_SERVER_UPGRADE_REPAIR_STATUS error code,
error code, 353 361
ER_SERVER_RPL_ENCRYPTION_FAILED_TO_REMOVE_KEY
ER_SERVER_UPGRADE_SKIP error code, 361
error code, 354 ER_SERVER_UPGRADE_STATUS error code, 361
ER_SERVER_RPL_ENCRYPTION_FAILED_TO_ROTATE_LOGS
ER_SERVER_UPGRADE_SYSTEM_TABLES error
error code, 353 code, 361
ER_SERVER_RPL_ENCRYPTION_FAILED_TO_STORE_KEYER_SERVER_UPGRADE_SYS_SCHEMA error code,
error code, 354 361
ER_SERVER_RPL_ENCRYPTION_HEADER_ERROR ER_SERVER_UPGRADE_SYS_SCHEMA_OBJECT_COUNT
error code, 353 error code, 362
ER_SERVER_RPL_ENCRYPTION_IGNORE_ROTATE_MASTER_KEY_AT_STARTUP
ER_SERVER_UPGRADE_SYS_SCHEMA_OUTDATED
error code, 354 error code, 362
ER_SERVER_RPL_ENCRYPTION_KEYRING_INVALID_KEYER_SERVER_UPGRADE_SYS_SCHEMA_UP_TO_DATE
error code, 353 error code, 362
ER_SERVER_RPL_ENCRYPTION_KEY_EXISTS_UNEXPECTED
ER_SERVER_UPGRADE_SYS_VERSION_EMPTY
error code, 353 error code, 361
ER_SERVER_RPL_ENCRYPTION_KEY_NOT_FOUND ER_SERVER_UPGRADE_VERSION_NOT_SUPPORTED
error code, 353 error code, 357
ER_SERVER_RPL_ENCRYPTION_MASTER_KEY_RECOVERY_FAILED
ER_SERVER_WARN_DEPRECATED error code, 359
error code, 354 ER_SERVER_WRONG_VALUE_FOR_VAR error code,
ER_SERVER_RPL_ENCRYPTION_UNABLE_TO_INITIALIZE
349
error code, 354 ER_SESSION_WAS_KILLED error code, 73
ER_SERVER_RPL_ENCRYPTION_UNABLE_TO_ROTATE_MASTER_KEY_AT_STARTUP
ER_SETNS_FAILED error code, 363
error code, 354 ER_SET_CONSTANTS_ONLY error code, 16
ER_SERVER_SHUTDOWN error code, 7 ER_SET_EVENT_FAILED error code, 346
590
ER_SET_PASSWORD_AUTH_PLUGIN_ERROR error ER_SP_BADSTATEMENT error code, 24
code, 122 ER_SP_BAD_CURSOR_QUERY error code, 24
ER_SET_STATEMENT_CANNOT_INVOKE_FUNCTION ER_SP_BAD_CURSOR_SELECT error code, 24
error code, 52 ER_SP_BAD_SQLSTATE error code, 29
ER_SE_TYPECODE_CONFLICT error code, 155 ER_SP_BAD_VAR_SHADOW error code, 32
ER_SHA256_PASSWORD_SECOND_PASSWORD_USED_INFORMATION
ER_SP_CANT_ALTER error code, 25
error code, 355 ER_SP_CANT_SET_AUTOCOMMIT error code, 32
ER_SHAPE_PRIDICTION_UDF error code, 123 ER_SP_CASE_NOT_FOUND error code, 25
ER_SHARED_TABLESPACE_USED_BY_PARTITIONED_TABLE
ER_SP_COND_MISMATCH error code, 24
error code, 350 ER_SP_CURSOR_AFTER_HANDLER error code, 25
ER_SHA_PWD_AUTH_REQUIRES_RSA_OR_SSL error ER_SP_CURSOR_ALREADY_OPEN error code, 24
code, 218 ER_SP_CURSOR_MISMATCH error code, 24
ER_SHA_PWD_FAILED_TO_GENERATE_MULTI_ROUND_HASH
ER_SP_CURSOR_NOT_OPEN error code, 24
error code, 218 ER_SP_DOES_NOT_EXIST error code, 23
ER_SHA_PWD_FAILED_TO_PARSE_AUTH_STRING ER_SP_DROP_FAILED error code, 23
error code, 218 ER_SP_DUP_COND error code, 25
ER_SHA_PWD_RSA_KEY_TOO_LONG error code, 218 ER_SP_DUP_CURS error code, 25
ER_SHA_PWD_SALT_FOR_USER_CORRUPT error ER_SP_DUP_HANDLER error code, 29
code, 219 ER_SP_DUP_PARAM error code, 25
ER_SHUTDOWN_COMPLETE error code, 8 ER_SP_DUP_VAR error code, 25
ER_SHUTTING_DOWN_REPLICA_THREADS error ER_SP_FETCH_NO_DATA error code, 25
code, 147 ER_SP_LABEL_MISMATCH error code, 23
ER_SIGNAL_BAD_CONDITION_TYPE error code, 43 ER_SP_LABEL_REDEFINE error code, 23
ER_SIGNAL_EXCEPTION error code, 43 ER_SP_LILABEL_MISMATCH error code, 23
ER_SIGNAL_NOT_FOUND error code, 43 ER_SP_LOAD_FAILED error code, 77
ER_SIGNAL_WARN error code, 43 ER_SP_NORETURN error code, 24
ER_SIMPLE_ERROR_LOG_COMPONENT_STATUS ER_SP_NORETURNEND error code, 24
error code, 430 ER_SP_NOT_VAR_ARG error code, 30
ER_SIMULATED_INJECTION_ERROR error code, 128 ER_SP_NO_AGGREGATE error code, 33
ER_SIZE_OVERFLOW_ERROR error code, 37 ER_SP_NO_ALTER_LANGUAGE error code, 127
ER_SKIP_UPDATING_METADATA_IN_SE_RO_MODE ER_SP_NO_DROP_SP error code, 26
error code, 201 ER_SP_NO_RECURSION error code, 30
ER_SLOW_LOG_MODE_IGNORED_WHEN_NOT_LOGGING_TO_FILE
ER_SP_NO_RECURSIVE_CREATE error code, 23
error code, 97 ER_SP_NO_RETSET error code, 30
ER_SOURCE error code, 15 ER_SP_RECURSION_LIMIT error code, 32
ER_SOURCE_DELAY_VALUE_OUT_OF_RANGE error ER_SP_STORE_FAILED error code, 23
code, 49 ER_SP_SUBSELECT_NYI error code, 25
ER_SOURCE_FATAL_ERROR_READING_BINLOG ER_SP_UNDECLARED_VAR error code, 24
error code, 19 ER_SP_UNINIT_VAR error code, 23
ER_SOURCE_HAS_PURGED_REQUIRED_GTIDS ER_SP_VARCOND_AFTER_CURSHNDLR error code,
error code, 53 25
ER_SOURCE_NET_READ error code, 15 ER_SP_WRONG_NAME error code, 32
ER_SOURCE_NET_WRITE error code, 15 ER_SP_WRONG_NO_OF_ARGS error code, 24
ER_SPATIAL_CANT_HAVE_NULL error code, 20 ER_SP_WRONG_NO_OF_FETCH_ARGS error code,
ER_SPATIAL_FUNCTIONAL_INDEX error code, 94 24
ER_SPATIAL_MUST_HAVE_GEOM_COL error code, 46 ER_SQLTHREAD_WITH_SECURE_REPLICA error
ER_SPATIAL_UNIQUE_INDEX error code, 92 code, 51
ER_SPECIFIC_ACCESS_DENIED error code, 129 ER_SQL_AUTHOR_DEFAULT_ROLES_FAIL error
ER_SPECIFIC_ACCESS_DENIED_ERROR error code, code, 154
18 ER_SQL_HA_READ_FAILED error code, 153
ER_SPVAR_NONINTEGER_TYPE error code, 113 ER_SQL_MODE_MERGED error code, 70
ER_SP_ALREADY_EXISTS error code, 23 ER_SQL_MODE_MERGED_WITH_STRICT_MODE
ER_SP_BADRETURN error code, 23 error code, 193
ER_SP_BADSELECT error code, 23
591
ER_SQL_REPLICA_SKIP_COUNTER_USED_WITH_GTID_MODE_ON
ER_SSL_TRYING_DATADIR_DEFAULTS error code,
error code, 114 151
ER_SQL_USER_TABLE_ALTER_WARNING error code, ER_STACKSIZE_UNEXPECTED error code, 150
155 ER_STACK_BACKTRACE error code, 406
ER_SQL_USER_TABLE_CREATE_WARNING error ER_STACK_OVERRUN error code, 11
code, 154 ER_STACK_OVERRUN_NEED_MORE error code, 31
ER_SRS_ATTRIBUTE_STRING_TOO_LONG error ER_STARTING_AS error code, 146
code, 91 ER_STARTING_INIT error code, 346
ER_SRS_GEOGCS_INVALID_AXES error code, 92 ER_STARTING_REPLICA_MONITOR_IO_THREAD
ER_SRS_ID_ALREADY_EXISTS error code, 90 error code, 114
ER_SRS_INVALID_ANGULAR_UNIT error code, 93 ER_STARTUP error code, 29
ER_SRS_INVALID_CHARACTER_IN_ATTRIBUTE error ER_START_REPLICA_CHANNEL_INVALID_CONFIGURATION
code, 91 error code, 129
ER_SRS_INVALID_HEIGHT error code, 123 ER_START_REPLICA_CHANNEL_INVALID_CONFIGURATION_LOG
ER_SRS_INVALID_INVERSE_FLATTENING error code, error code, 420
92 ER_STATEMENT_NOT_ALLOWED_AFTER_START_TRANSACTION
ER_SRS_INVALID_LATITUDE_OF_ORIGIN error code, error code, 111
122 ER_STD_BAD_ALLOC_ERROR error code, 63
ER_SRS_INVALID_LATITUDE_POLAR_STERE_VAR_A ER_STD_DOMAIN_ERROR error code, 63
error code, 123 ER_STD_INVALID_ARGUMENT error code, 64
ER_SRS_INVALID_LONGITUDE_OF_ORIGIN error ER_STD_LENGTH_ERROR error code, 63
code, 122 ER_STD_LOGIC_ERROR error code, 64
ER_SRS_INVALID_PRIME_MERIDIAN error code, 93 ER_STD_OUT_OF_RANGE_ERROR error code, 64
ER_SRS_INVALID_SCALING error code, 123 ER_STD_OVERFLOW_ERROR error code, 64
ER_SRS_INVALID_SEMI_MAJOR_AXIS error code, 92 ER_STD_RANGE_ERROR error code, 64
ER_SRS_INVALID_ZONE_WIDTH error code, 123 ER_STD_REGEX_ERROR error code, 102
ER_SRS_MISSING_MANDATORY_ATTRIBUTE error ER_STD_RUNTIME_ERROR error code, 64
code, 90 ER_STD_UNDERFLOW_ERROR error code, 64
ER_SRS_MULTIPLE_ATTRIBUTE_DEFINITIONS error ER_STD_UNKNOWN_EXCEPTION error code, 64
code, 90 ER_STMT_CACHE_FULL error code, 47
ER_SRS_NAME_CANT_BE_EMPTY_OR_WHITESPACE ER_STMT_EXECUTION_NOT_ALLOWED_WITHIN_SP_OR_TRG_O
error code, 90 error code, 135
ER_SRS_NOT_CARTESIAN error code, 77 ER_STMT_HAS_NO_OPEN_CURSOR error code, 30
ER_SRS_NOT_CARTESIAN_UNDEFINED error code, ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG error
77 code, 25
ER_SRS_NOT_FOUND error code, 79 ER_STOP_REPLICA_IO_THREAD_DISK_SPACE error
ER_SRS_NOT_GEOGRAPHIC error code, 92 code, 219
ER_SRS_ORGANIZATION_CANT_BE_EMPTY_OR_WHITESPACE
ER_STOP_REPLICA_IO_THREAD_TIMEOUT error
error code, 90 code, 59
ER_SRS_PARSE_ERROR error code, 77 ER_STOP_REPLICA_MONITOR_IO_THREAD_TIMEOUT
ER_SRS_PROJ_PARAMETER_MISSING error code, 77 error code, 114
ER_SRS_UNUSED_PROJ_PARAMETER_PRESENT ER_STOP_REPLICA_SQL_THREAD_TIMEOUT error
error code, 122 code, 59
ER_SRV_END error code, 418 ER_STORAGE_ENGINE_NOT_LOADED error code, 60
ER_SRV_INIT_END error code, 418 ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_DIRECT
ER_SRV_INIT_START error code, 418 error code, 46
ER_SRV_START error code, 418 ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT
ER_SR_BOGUS_VALUE error code, 153 error code, 38
ER_SR_INVALID_CONTEXT error code, 153 ER_STORED_FUNCTION_PREVENTS_SWITCH_SQL_LOG_BIN
ER_SSL_FIPS_MODE_ERROR error code, 220 error code, 46
ER_SSL_LIBRARY_ERROR error code, 143 ER_SUBPARTITION_ERROR error code, 35
ER_SSL_MEMORY_INSTRUMENTATION_INIT_FAILED ER_SUBPARTITION_NAME error code, 42
error code, 351 ER_SUBQUERY_NO_1_ROW error code, 19
592
ER_SUBQUERY_TRANSFORM_REJECTED error code, ER_TABLESPACE_TYPE_UNKNOWN error code, 100
111 ER_TABLES_DIFFERENT_METADATA error code, 49
ER_SUPPORTED_ONLY_WITH_HYPERGRAPH error ER_TABLE_CANT_HANDLE_AUTO_INCREMENT error
code, 129 code, 14
ER_SWITCH_TMP_ENGINE error code, 81 ER_TABLE_CANT_HANDLE_BLOB error code, 14
ER_SYNTAX_ERROR error code, 13 ER_TABLE_CANT_HANDLE_FT error code, 17
ER_SYSTEMD_NOTIFY_CONNECT_FAILED error ER_TABLE_CANT_HANDLE_SPKEYS error code, 33
code, 259 ER_TABLE_CHECK_INTACT error code, 152
ER_SYSTEMD_NOTIFY_DEBUG error code, 405 ER_TABLE_CORRUPT error code, 59
ER_SYSTEMD_NOTIFY_PATH_TOO_LONG error code, ER_TABLE_CREATED_WITH_DIFFERENT_VERSION
259 error code, 163
ER_SYSTEMD_NOTIFY_WRITE_FAILED error code, ER_TABLE_DEF_CHANGED error code, 29
259 ER_TABLE_EXISTS_ERROR error code, 6
ER_SYSTEM_SCHEMA_NOT_FOUND error code, 140 ER_TABLE_HAS_NO_FT error code, 51
ER_SYSTEM_TABLES_NOT_SUPPORTED_BY_STORAGE_ENGINE
ER_TABLE_INCOMPATIBLE_DECIMAL_FIELD error
error code, 194 code, 162
ER_SYSTEM_TABLE_NOT_TRANSACTIONAL error ER_TABLE_INCOMPATIBLE_YEAR_FIELD error code,
code, 180 162
ER_SYSTEM_VIEW_INIT_FAILED error code, 195 ER_TABLE_IN_FK_CHECK error code, 49
ER_SYSVAR_CHANGE_DURING_QUERY error code, ER_TABLE_IN_SHARED_TABLESPACE error code,
106 124
ER_SYS_VAR_COMPONENT_FAILED_TO_MAKE_VARIABLE_PERSISTENT
ER_TABLE_IN_SYSTEM_TABLESPACE error code, 54
error code, 219 ER_TABLE_MUST_HAVE_A_VISIBLE_COLUMN error
ER_SYS_VAR_COMPONENT_FAILED_TO_PARSE_VARIABLE_OPTIONS
code, 115
error code, 219 ER_TABLE_MUST_HAVE_COLUMNS error code, 11
ER_SYS_VAR_COMPONENT_OOM error code, 219 ER_TABLE_NAME error code, 42
ER_SYS_VAR_COMPONENT_UNKNOWN_VARIABLE_TYPE ER_TABLE_NAME_CAUSES_TOO_LONG_PATH error
error code, 219 code, 106
ER_SYS_VAR_COMPONENT_VARIABLE_SET_READ_ONLY ER_TABLE_NAME_IN_UPPER_CASE_NOT_ALLOWED
error code, 219 error code, 371
ER_SYS_VAR_DEREGISTRATION error code, 413 ER_TABLE_NAME_IN_UPPER_CASE_NOT_ALLOWED_FOR_F
ER_SYS_VAR_NOT_FOUND error code, 347 error code, 371
ER_SYS_VAR_REGISTRATION error code, 413 ER_TABLE_NEEDS_DUMP_UPGRADE error code, 206
ER_TABLEACCESS_DENIED_ERROR error code, 13 ER_TABLE_NEEDS_REBUILD error code, 47
ER_TABLENAME_NOT_ALLOWED_HERE error code, ER_TABLE_NEEDS_UPGRADE error code, 32
20 ER_TABLE_NOT_EMPTY error code, 124
ER_TABLESAMPLE_ONLY_ON_BASE_TABLES error ER_TABLE_NOT_LOCKED error code, 10
code, 134 ER_TABLE_NOT_LOCKED_FOR_WRITE error code, 10
ER_TABLESAMPLE_PERCENTAGE error code, 134 ER_TABLE_NO_PRIMARY_KEY error code, 124
ER_TABLESPACE_AUTO_EXTEND_ERROR error ER_TABLE_REFERENCED error code, 75
code, 37 ER_TABLE_SCHEMA_MISMATCH error code, 54
ER_TABLESPACE_CANNOT_BE_DECRYPTED error ER_TABLE_UPGRADE_REQUIRED error code, 194
code, 100 ER_TABLE_VALUE_CONSTRUCTOR_CANNOT_HAVE_DEFAU
ER_TABLESPACE_CANNOT_BE_ENCRYPTED error error code, 108
code, 100 ER_TABLE_VALUE_CONSTRUCTOR_MUST_HAVE_COLUMNS
ER_TABLESPACE_CANNOT_ENCRYPT error code, 74 error code, 108
ER_TABLESPACE_DISCARDED error code, 55 ER_TABLE_WITHOUT_PK error code, 93
ER_TABLESPACE_DUP_FILENAME error code, 83 ER_TABLE_WRONG_KEY_DEFINITION error code, 163
ER_TABLESPACE_ENGINE_MISMATCH error code, 86 ER_TARGET_TABLESPACE_UNENCRYPTED error
ER_TABLESPACE_EXISTS error code, 55 code, 100
ER_TABLESPACE_IS_NOT_EMPTY error code, 69 ER_TC_BAD_MAGIC_IN_TC_LOG error code, 172
ER_TABLESPACE_MISSING error code, 55 ER_TC_CANT_AUTO_RECOVER_WITH_TC_HEURISTIC_RECO
ER_TABLESPACE_MISSING_WITH_NAME error code, error code, 172
76
593
ER_TC_HEURISTIC_RECOVERY_FAILED error code, ER_THREAD_POOL_FAILED_TO_CREATE_THD_AND_AUTH_CON
172 error code, 208
ER_TC_HEURISTIC_RECOVERY_MODE error code, ER_THREAD_POOL_IDLE_CONNECTION_CLOSED
172 error code, 410
ER_TC_NEED_N_SE_SUPPORTING_2PC_FOR_RECOVERY ER_THREAD_POOL_INIT_FAILED error code, 207
error code, 172 ER_THREAD_POOL_INVALID_PRIO_KICKUP_TIMER
ER_TC_RECOVERING_AFTER_CRASH_USING error error code, 207
code, 172 ER_THREAD_POOL_INVALID_STALL_LIMIT error
ER_TC_RECOVERY_FAILED_THESE_ARE_YOUR_OPTIONS code, 207
error code, 172 ER_THREAD_POOL_LOW_LEVEL_ARM_FAILED error
ER_TC_RESTART_WITHOUT_TC_HEURISTIC_RECOVERcode, 431
error code, 172 ER_THREAD_POOL_LOW_LEVEL_ARM_FAILED_WITH_ERRNO
ER_TELEMETRY_ERROR error code, 417 error code, 431
ER_TELEMETRY_INFO error code, 417 ER_THREAD_POOL_LOW_LEVEL_INIT_ALLOC_FAILED
ER_TELEMETRY_WARNING error code, 417 error code, 431
ER_TEMPORARY_NAME error code, 42 ER_THREAD_POOL_LOW_LEVEL_INIT_FAILED error
ER_TEMP_FILE_WRITE_FAILURE error code, 59 code, 431
ER_TEMP_TABLE_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT
ER_THREAD_POOL_LOW_LEVEL_REARM_FAILED
error code, 93 error code, 208
ER_TEMP_TABLE_PREVENTS_SWITCH_SESSION_BINLOG_FORMAT
ER_THREAD_POOL_MAX_UNUSED_THREADS_INVALID
error code, 93 error code, 207
ER_TEXTFILE_NOT_READABLE error code, 9 ER_THREAD_POOL_MTL_DISABLE error code, 428
ER_TF_FORBIDDEN_JOIN_TYPE error code, 88 ER_THREAD_POOL_MTL_REENABLE error code, 428
ER_TF_MUST_HAVE_ALIAS error code, 87 ER_THREAD_POOL_NOT_SUPPORTED_ON_PLATFORM
ER_THE_USER_ABIDES error code, 148 error code, 207
ER_THREAD_HANDLING_OOM error code, 145 ER_THREAD_POOL_PFS_TABLES_ADD_FAILED error
ER_THREAD_POOL_ALGORITHM_INVALID error code, code, 353
207 ER_THREAD_POOL_PFS_TABLES_INIT_FAILED error
ER_THREAD_POOL_ALLOC_FAILED error code, 431 code, 353
ER_THREAD_POOL_BUFFER_TOO_SMALL error ER_THREAD_POOL_PLUGIN_STARTED error code,
code, 208 398
ER_THREAD_POOL_CANNOT_REGISTER_DYNAMIC_PRIVILEGE
ER_THREAD_POOL_POLL_WAIT_ERROR error code,
error code, 405 432
ER_THREAD_POOL_CANNOT_SET_THREAD_SPECIFIC_DATA
ER_THREAD_POOL_QUERY_THREADS_PER_GROUP_INVALID
error code, 207 error code, 407
ER_THREAD_POOL_CONNECTION_INIT_REPORT ER_THREAD_POOL_QUERY_THRS_PER_GRP_EXCEEDS_TXN_T
error code, 431 error code, 407
ER_THREAD_POOL_CON_HANDLER_INIT_FAILED ER_THREAD_POOL_SIZE_TOO_HIGH error code, 207
error code, 207 ER_THREAD_POOL_SIZE_TOO_LOW error code, 207
ER_THREAD_POOL_CREATE_EPOLL_FAILED error ER_THREAD_POOL_SOCKETPAIR_FAILED error
code, 431 code, 431
ER_THREAD_POOL_CREATE_THREAD_FAILED error ER_THREAD_POOL_SYSVAR_CHANGE error code,
code, 431 406
ER_THREAD_POOL_DEDICATED_LISTENERS_INVALID ER_THREAD_PRIORITY_IGNORED error code, 192
error code, 398 ER_THREAD_STILL_ALIVE error code, 418
ER_THREAD_POOL_EPOLL_WAIT_ERROR error ER_TLS_CONFIGURATION_REUSED error code, 377
code, 432 ER_TLS_CONFIGURED_FOR_CHANNEL error code,
ER_THREAD_POOL_FAILED_PROCESS_CONNECT_EVENT 377
error code, 208 ER_TLS_LIBRARY_ERROR_INTERNAL error code, 417
ER_THREAD_POOL_FAILED_TO_CREATE_CONNECT_HANDLER_THD
ER_TMPDIR_PATH_TOO_LONG error code, 381
error code, 207 ER_TMP_SESSION_FOR_VAR error code, 405
ER_THREAD_POOL_FAILED_TO_CREATE_POOL ER_TOO_BIG_DISPLAYWIDTH error code, 31
error code, 208 ER_TOO_BIG_ENUM error code, 76
ER_TOO_BIG_FIELDLENGTH error code, 8
594
ER_TOO_BIG_FOR_UNCOMPRESS error code, 20 ER_TRANS_CACHE_FULL error code, 16
ER_TOO_BIG_PRECISION error code, 30 ER_TREE_CORRUPT_2_CONSECUTIVE_REDS error
ER_TOO_BIG_ROWSIZE error code, 11 code, 179
ER_TOO_BIG_SCALE error code, 30 ER_TREE_CORRUPT_INCORRECT_BLACK_COUNT
ER_TOO_BIG_SELECT error code, 10 error code, 179
ER_TOO_BIG_SET error code, 10 ER_TREE_CORRUPT_PARENT_SHOULD_POINT_AT_PARENT
ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT error code, 179
error code, 33 ER_TREE_CORRUPT_RIGHT_IS_LEFT error code, 179
ER_TOO_LONG_BODY error code, 31 ER_TREE_CORRUPT_ROOT_SHOULD_BE_BLACK
ER_TOO_LONG_FIELD_COMMENT error code, 42 error code, 179
ER_TOO_LONG_IDENT error code, 7 ER_TRG_ALREADY_EXISTS error code, 26
ER_TOO_LONG_INDEX_COMMENT error code, 46 ER_TRG_CANT_CHANGE_ROW error code, 27
ER_TOO_LONG_KEY error code, 8 ER_TRG_CANT_OPEN_TABLE error code, 41
ER_TOO_LONG_ROUTINE_COMMENT error code, 77 ER_TRG_CANT_PARSE error code, 152
ER_TOO_LONG_SET_ENUM_VALUE error code, 76 ER_TRG_CORRUPTED_FILE error code, 40
ER_TOO_LONG_STRING error code, 14 ER_TRG_CREATION_CTX_NOT_SET error code, 193
ER_TOO_LONG_TABLESPACE_COMMENT error code, ER_TRG_DOES_NOT_EXIST error code, 26
83 ER_TRG_INVALID_CREATION_CTX error code, 40
ER_TOO_LONG_TABLE_COMMENT error code, 42 ER_TRG_IN_WRONG_SCHEMA error code, 31
ER_TOO_LONG_TABLE_PARTITION_COMMENT error ER_TRG_NO_CLIENT_CHARSET error code, 143
code, 53 ER_TRG_NO_CREATION_CTX error code, 40
ER_TOO_MANY_CONCURRENT_TRXS error code, 42 ER_TRG_NO_DEFINER error code, 32
ER_TOO_MANY_FIELDS error code, 11 ER_TRG_NO_SUCH_ROW_IN_TRG error code, 27
ER_TOO_MANY_GROUP_BY_MODIFIER_BRANCHES ER_TRG_ON_VIEW_OR_TEMP_TABLE error code, 27
error code, 129 ER_TRG_WITHOUT_DEFINER error code, 143
ER_TOO_MANY_KEYS error code, 8 ER_TRG_WRONG_ORDER error code, 357
ER_TOO_MANY_KEY_PARTS error code, 8 ER_TRHEAD_POOL_LOW_LEVEL_INIT_FAILED error
ER_TOO_MANY_PARTITIONS_ERROR error code, 35 code, 208
ER_TOO_MANY_PARTITION_FUNC_FIELDS_ERROR ER_TRIGGER_INVALID_VALUE error code, 139
error code, 44 ER_TRUNCATED_WRONG_VALUE error code, 22
ER_TOO_MANY_ROWS error code, 15 ER_TRUNCATED_WRONG_VALUE_FOR_FIELD error
ER_TOO_MANY_STORAGE_ENGINES error code, 155 code, 27
ER_TOO_MANY_TABLES error code, 11 ER_TRUNCATE_ILLEGAL_FK error code, 47
ER_TOO_MANY_USER_CONNECTIONS error code, 16 ER_TRX_GTID_COLLECT_REJECT error code, 154
ER_TOO_MANY_VALUES_ERROR error code, 44 ER_TRX_WRITE_SET_OOM error code, 155
ER_TOO_MANY_WINDOWS error code, 120 ER_TURNING_LOGGING_OFF_FOR_THE_DURATION
ER_TO_VECTOR_CONVERSION error code, 136 error code, 190
ER_TP_CANNOT_DISABLE_MTL_WITH_DL error code, ER_TURNING_ON_PARTIAL_REVOKES error code,
136 360
ER_TP_QUERY_THRS_PER_GRP_EXCEEDS_TXN_THR_LIMIT
ER_TZ_CANT_BUILD_MKTIME_MAP error code, 165
error code, 123 ER_TZ_CANT_FIND_DESCRIPTION_FOR_TIME_ZONE
ER_TRACK_VARIABLES_BOGUS error code, 148 error code, 164
ER_TRANSACTION_ROLLBACK_DURING_COMMIT ER_TZ_CANT_FIND_DESCRIPTION_FOR_TIME_ZONE_ID
error code, 68 error code, 164
ER_TRANSFORM_SOURCE_SRS_MISSING_TOWGS84 ER_TZ_CANT_OPEN_AND_LOCK_TIME_ZONE_TABLE
error code, 93 error code, 163
ER_TRANSFORM_SOURCE_SRS_NOT_SUPPORTED ER_TZ_ERROR_LOADING_LEAP_SECOND_TABLE
error code, 93 error code, 164
ER_TRANSFORM_TARGET_SRS_MISSING_TOWGS84 ER_TZ_NO_TRANSITION_TYPES_IN_TIME_ZONE
error code, 93 error code, 165
ER_TRANSFORM_TARGET_SRS_NOT_SUPPORTED ER_TZ_OOM_INITIALIZING_TIME_ZONES error code,
error code, 93 163
ER_TRANSPORTS_WHAT_TRANSPORTS error code, ER_TZ_OOM_LOADING_LEAP_SECOND_TABLE error
147 code, 163
595
ER_TZ_OOM_LOADING_TIME_ZONE_DESCRIPTION ER_UNABLE_TO_SET_OPTION error code, 91
error code, 165 ER_UNABLE_TO_STORE_COLUMN_STATISTICS
ER_TZ_OOM_WHILE_LOADING_TIME_ZONE error error code, 85
code, 165 ER_UNABLE_TO_STORE_STATISTICS error code, 79
ER_TZ_OOM_WHILE_SETTING_TIME_ZONE error ER_UNABLE_TO_UPDATE_COLUMN_STATISTICS
code, 165 error code, 85
ER_TZ_TOO_MANY_LEAPS_IN_LEAP_SECOND_TABLE ER_UNDISCLOSED_PARSE_ERROR_IN_DIGEST_FN
error code, 164 error code, 88
ER_TZ_TRANSITION_TABLE_BAD_TRANSITION_TYPE ER_UNDO_RECORD_TOO_BIG error code, 48
error code, 164 ER_UNEXPECTED_GEOMETRY_TYPE error code, 77
ER_TZ_TRANSITION_TABLE_LOAD_ERROR error ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF error
code, 164 code, 35
ER_TZ_TRANSITION_TABLE_TOO_MANY_TRANSITIONSER_UNIT_NOT_FOUND error code, 105
error code, 164 ER_UNKNOWN_ALTER_ALGORITHM error code, 54
ER_TZ_TRANSITION_TYPE_TABLE_ABBREVIATIONS_EXCEED_SPACE
ER_UNKNOWN_ALTER_LOCK error code, 54
error code, 164 ER_UNKNOWN_AUTHID error code, 77
ER_TZ_TRANSITION_TYPE_TABLE_LOAD_ERROR ER_UNKNOWN_AUTH_ID_IN_MANDATORY_ROLE
error code, 164 error code, 197
ER_TZ_TRANSITION_TYPE_TABLE_TYPE_TOO_LARGE ER_UNKNOWN_CHARACTER_SET error code, 11
error code, 164 ER_UNKNOWN_COLLATION error code, 21
ER_TZ_UNKNOWN_OR_ILLEGAL_DEFAULT_TIME_ZONEER_UNKNOWN_COM_ERROR error code, 6
error code, 164 ER_UNKNOWN_ERROR error code, 10
ER_UDF_ALREADY_EXISTS error code, 346 ER_UNKNOWN_ERROR_DETECTED_IN_SE error
ER_UDF_CANT_ALLOC_FOR_FUNCTION error code, code, 201
154 ER_UNKNOWN_ERROR_NUMBER error code, 153
ER_UDF_CANT_ALLOC_FOR_STRUCTURES error ER_UNKNOWN_EXPLAIN_FORMAT error code, 53
code, 154 ER_UNKNOWN_KEY_CACHE error code, 22
ER_UDF_CANT_OPEN_FUNCTION_TABLE error code, ER_UNKNOWN_LOCALE error code, 43
154 ER_UNKNOWN_NETWORK_NAMESPACE error code,
ER_UDF_DEREGISTRATION error code, 413 363
ER_UDF_DROP_DYNAMICALLY_REGISTERED error ER_UNKNOWN_PARTITION error code, 49
code, 84 ER_UNKNOWN_PROCEDURE error code, 10
ER_UDF_ERROR error code, 75 ER_UNKNOWN_STMT_HANDLER error code, 19
ER_UDF_EXEC_FAILURE error code, 414 ER_UNKNOWN_STORAGE_ENGINE error code, 22
ER_UDF_EXEC_FAILURE_REASON error code, 414 ER_UNKNOWN_SYSTEM_VARIABLE error code, 16
ER_UDF_EXISTS error code, 12 ER_UNKNOWN_TABLE error code, 10
ER_UDF_INVALID_ROW_IN_FUNCTION_TABLE error ER_UNKNOWN_TABLESPACE_TYPE error code, 350
code, 154 ER_UNKNOWN_TABLE_IN_UPGRADE error code, 367
ER_UDF_NO_PATHS error code, 12 ER_UNKNOWN_TARGET_BINLOG error code, 27
ER_UDF_REGISTER_ERROR error code, 381 ER_UNKNOWN_TIME_ZONE error code, 22
ER_UDF_REGISTER_SERVICE_ERROR error code, ER_UNKNOWN_UNSUPPORTED_STORAGE_ENGINE
381 error code, 144
ER_UDF_REGISTRATION error code, 413 ER_UNKNOWN_VARIABLE_IN_PERSISTED_CONFIG_FILE
ER_UDF_UNREGISTER_ERROR error code, 381 error code, 346
ER_UKNOWN_AUTH_ID_OR_ACCESS_DENIED_FOR_GRANT_AS
ER_UNRESOLVED_HINT_NAME error code, 70
error code, 100 ER_UNRESOLVED_TABLE_LOCK error code, 81
ER_UNABLE_TO_BUILD_HISTOGRAM error code, 85 ER_UNSUPORTED_LOG_ENGINE error code, 39
ER_UNABLE_TO_COLLECT_LOG_STATUS error code, ER_UNSUPPORTED_ACTION_ON_DEFAULT_VAL_GENERATED
91 error code, 95
ER_UNABLE_TO_DROP_COLUMN_STATISTICS error ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN
code, 85 error code, 68
ER_UNABLE_TO_RESOLVE_HOSTNAME error code, ER_UNSUPPORTED_ALTER_ENCRYPTION_INPLACE
142 error code, 74
ER_UNABLE_TO_RESOLVE_IP error code, 142
596
ER_UNSUPPORTED_ALTER_INPLACE_ON_VIRTUAL_COLUMN
ER_UUID_SALT error code, 143
error code, 68 ER_UUID_SCRUB error code, 144
ER_UNSUPPORTED_ALTER_ONLINE_ON_VIRTUAL_COLUMN
ER_VALGRIND_COUNT_LEAKS error code, 153
error code, 74 ER_VALGRIND_DO_QUICK_LEAK_CHECK error code,
ER_UNSUPPORTED_DATE error code, 146 153
ER_UNSUPPORTED_ENGINE error code, 49 ER_VALIDATE_PASSWORD_INSUFFICIENT_CHANGED_CHAR
ER_UNSUPPORTED_EXTENSION error code, 11 error code, 127
ER_UNSUPPORTED_INDEX_ALGORITHM error code, ER_VALIDATE_PWD_CONVERT_TO_BUFFER_FAILED
76 error code, 260
ER_UNSUPPORTED_PS error code, 22 ER_VALIDATE_PWD_COULD_BE_NULL error code,
ER_UNSUPPORTED_SQL_MODE error code, 105 259
ER_UNSUPPORTED_USE_OF_GRANT_AS error code, ER_VALIDATE_PWD_DICT_FILE_NOT_LOADED error
100 code, 217
ER_UNSUPPORT_COMPRESSED_TEMPORARY_TABLE ER_VALIDATE_PWD_DICT_FILE_NOT_SPECIFIED
error code, 76 error code, 217
ER_UNTIL_COND_IGNORED error code, 21 ER_VALIDATE_PWD_DICT_FILE_OPEN_FAILED error
ER_UPDATE_GTID_PURGED_WITH_GR error code, code, 259
106 ER_VALIDATE_PWD_DICT_FILE_TOO_BIG error code,
ER_UPDATE_INFO error code, 12 217
ER_UPDATE_LOG_DEPRECATED_IGNORED error ER_VALIDATE_PWD_FAILED_TO_GET_FLD_FROM_SECURIT
code, 24 error code, 217
ER_UPDATE_LOG_DEPRECATED_TRANSLATED ER_VALIDATE_PWD_FAILED_TO_GET_SECURITY_CTX
error code, 24 error code, 217
ER_UPDATE_TABLE_USED error code, 9 ER_VALIDATE_PWD_FAILED_TO_READ_DICT_FILE
ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE error error code, 217
code, 15 ER_VALIDATE_PWD_LENGTH_CHANGED error code,
ER_UPDATING_DD_TABLE error code, 76 217
ER_UPGRADE_NONEXISTENT_SCHEMA error code, ER_VALIDATE_PWD_STATUS_VAR_REGISTRATION_FAILED
382 error code, 259
ER_UPGRADE_PARSE_ERROR error code, 350 ER_VALIDATE_PWD_STATUS_VAR_UNREGISTRATION_FAILE
ER_USAGE_DEPRECATION_COUNTER error code, error code, 259
416 ER_VALIDATE_PWD_STRING_CONV_TO_BUFFER_FAILED
ER_USERNAME error code, 33 error code, 260
ER_USERNAME_TRUNKATED error code, 377 ER_VALIDATE_PWD_STRING_CONV_TO_LOWERCASE_FAILE
ER_USER_ACCESS_DENIED_FOR_USER_ACCOUNT_BLOCKED_BY_PASSWORD_LOCK
error code, 260
error code, 109 ER_VALIDATE_PWD_STRING_HANDLER_MEM_ALLOCATION
ER_USER_ALREADY_EXISTS error code, 73 error code, 260
ER_USER_COLUMN_OLD_LENGTH error code, 74 ER_VALIDATE_PWD_STRONG_POLICY_DICT_FILE_UNSPECI
ER_USER_DOES_NOT_EXIST error code, 73 error code, 260
ER_USER_LIMIT_REACHED error code, 18 ER_VALIDATE_PWD_VARIABLE_REGISTRATION_FAILED
ER_USER_LOCK_DEADLOCK error code, 64 error code, 260
ER_USER_LOCK_OVERLONG_NAME error code, 126 ER_VALIDATE_PWD_VARIABLE_UNREGISTRATION_FAILED
ER_USER_LOCK_WRONG_NAME error code, 64 error code, 260
ER_USER_NOT_IN_EXTRA_USERS_BINLOG_POSSIBLY_INCOMPLETE
ER_VALUES_IS_NOT_INT_TYPE_ERROR error code,
error code, 161 47
ER_USER_REFERENCED_AS_DEFINER error code, ER_VALUE_OUT_OF_RANGE error code, 119
113 ER_VARIABLE_IS_NOT_STRUCT error code, 21
ER_USER_REGISTRATION_FAILED error code, 118 ER_VARIABLE_IS_READONLY error code, 41
ER_USER_REQUIRES_ROOT error code, 147 ER_VARIABLE_NOT_PERSISTED error code, 79
ER_USER_WHAT_USER error code, 147 ER_VARIABLE_NOT_SETTABLE_IN_SF_OR_TRIGGER
ER_USING_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_AS_LOCAL_OR_UUID
error code, 51
error code, 114 ER_VARIABLE_NOT_SETTABLE_IN_SP error code, 56
ER_UUID_INVALID error code, 143 ER_VARIABLE_NOT_SETTABLE_IN_TRANSACTION
ER_UUID_IS error code, 143 error code, 51
597
ER_VAR_CANT_BE_READ error code, 19 ER_WARN_ADUIT_LOG_MAX_SIZE_CLOSE_TO_ROTATE_ON_SIZ
ER_VAR_DOES_NOT_EXIST error code, 84 error code, 390
ER_VERBOSE_HINT error code, 149 ER_WARN_ALLOWED_PACKET_OVERFLOWED error
ER_VERBOSE_REQUIRES_HELP error code, 144 code, 23
ER_VIEW_CHECKSUM error code, 28 ER_WARN_ASYNC_CONN_FAILOVER_NETWORK_NAMESPACE
ER_VIEW_CHECK_FAILED error code, 27 error code, 116
ER_VIEW_CREATION_CTX_NOT_SET error code, 194 ER_WARN_AUDIT_LOG_DISABLED error code, 397
ER_VIEW_DELETE_MERGE_VIEW error code, 28 ER_WARN_AUDIT_LOG_FORMAT_UNIX_TIMESTAMP_ONLY_WHE
ER_VIEW_FRM_NO_USER error code, 32 error code, 117
ER_VIEW_INVALID error code, 26 ER_WARN_AUDIT_LOG_FORMAT_UNIX_TIMESTAMP_ONLY_WHE
ER_VIEW_INVALID_CREATION_CTX error code, 40 error code, 391
ER_VIEW_MULTIUPDATE error code, 28 ER_WARN_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATO
ER_VIEW_NONUPD_CHECK error code, 27 error code, 369
ER_VIEW_NO_CREATION_CTX error code, 40 ER_WARN_BAD_MAX_EXECUTION_TIME error code,
ER_VIEW_NO_EXPLAIN error code, 26 69
ER_VIEW_NO_INSERT_FIELD_LIST error code, 28 ER_WARN_BINLOG_PARTIAL_UPDATES_DISABLED
ER_VIEW_OTHER_USER error code, 32 error code, 86
ER_VIEW_PREVENT_UPDATE error code, 31 ER_WARN_BINLOG_PARTIAL_UPDATES_SUGGESTS_PARTIAL_I
ER_VIEW_RECURSIVE error code, 33 error code, 86
ER_VIEW_SELECT_CLAUSE error code, 26 ER_WARN_CANNOT_FREE_COMPONENT_DATA_DEALLOCATION
ER_VIEW_SELECT_TMPTABLE error code, 26 error code, 412
ER_VIEW_SELECT_VARIABLE error code, 26 ER_WARN_CANNOT_PERSIST_SENSITIVE_VARIABLES
ER_VIEW_UNKNOWN_CHARSET_OR_COLLATION error code, 397
error code, 140 ER_WARN_CANNOT_SECURELY_PERSIST_SENSITIVE_VARIABL
ER_VIEW_UNPARSABLE error code, 163 error code, 121
ER_VIEW_WRONG_LIST error code, 26 ER_WARN_CANT_DROP_DEFAULT_KEYCACHE error
ER_VTOKEN_PLUGIN_TOKEN_MISMATCH error code, code, 31
70 ER_WARN_CANT_OPEN_CERTIFICATE error code,
ER_VTOKEN_PLUGIN_TOKEN_NOT_FOUND error 417
code, 71 ER_WARN_CA_CERT_VERIFY_FAILED error code,
ER_WAITING_FOR_NO_CONNECTIONS error code, 417
416 ER_WARN_CERTIFICATE_ERROR_STRING error
ER_WAITING_FOR_NO_THDS error code, 416 code, 417
ER_WAITPID_FAILED error code, 204 ER_WARN_COMPONENTS_INFRASTRUCTURE_MANIFEST_MULT
ER_WARNING_AUTHCACHE_INVALID_USER_ATTRIBUTES error code, 412
error code, 354 ER_WARN_COMPONENTS_INFRASTRUCTURE_MANIFEST_NOT_
ER_WARNING_DISCARD_OLD_PASSWORD_CLAUSE_VOID error code, 385
error code, 354 ER_WARN_COMPONENT_KEYRING_OCI_DUPLICATE_KEY
ER_WARNING_NOT_COMPLETE_ROLLBACK error error code, 406
code, 16 ER_WARN_CONFLICTING_HINT error code, 70
ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_CREATED_TEMP_TABLE
ER_WARN_C_DISABLE_GTID_ONLY_WITH_SOURCE_AUTO_POS
error code, 50 error code, 119
ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_DROPPED_TEMP_TABLE
ER_WARN_DATA_OUT_OF_RANGE error code, 20
error code, 50 ER_WARN_DATA_OUT_OF_RANGE_FUNCTIONAL_INDEX
ER_WARNING_PASSWORD_HISTORY_CLAUSES_VOID error code, 94
error code, 86 ER_WARN_DATA_TRUNCATED_FUNCTIONAL_INDEX
ER_WARNING_RETAIN_CURRENT_PASSWORD_CLAUSE_VOID
error code, 94
error code, 354 ER_WARN_DA_PRIVILEGE_NOT_REGISTERED error
ER_WARN_ADUIT_LOG_MAX_SIZE_AND_PRUNE_SECONDS code, 107
error code, 117 ER_WARN_DEPRECATED_CHARSET_OPTION error
ER_WARN_ADUIT_LOG_MAX_SIZE_AND_PRUNE_SECONDS_LOG
code, 396
error code, 390 ER_WARN_DEPRECATED_CLIENT_NO_SCHEMA_OPTION
ER_WARN_ADUIT_LOG_MAX_SIZE_CLOSE_TO_ROTATE_ON_SIZE
error code, 124
error code, 117
598
ER_WARN_DEPRECATED_COLLATION error code, ER_WARN_DEPRECATED_UTF8MB3_COLLATION_OPTION
120 error code, 351
ER_WARN_DEPRECATED_COLLATION_OPTION error ER_WARN_DEPRECATED_UTF8_ALIAS_OPTION
code, 396 error code, 351
ER_WARN_DEPRECATED_DATETIME_DELIMITER ER_WARN_DEPRECATED_VALUES_FUNCTION_ALWAYS_NU
error code, 121 error code, 110
ER_WARN_DEPRECATED_DYNAMIC_PRIV_IN_GRANT ER_WARN_DEPRECATED_WITH_NOTE error code,
error code, 128 127
ER_WARN_DEPRECATED_ENGINE_SYNTAX_NO_REPLACEMENT
ER_WARN_DEPRECATED_YEAR_UNSIGNED error
error code, 129 code, 109
ER_WARN_DEPRECATED_FLOAT_AUTO_INCREMENT ER_WARN_DEPRECATED_ZEROFILL error code, 102
error code, 102 ER_WARN_ENGINE_TRANSACTION_ROLLBACK error
ER_WARN_DEPRECATED_FLOAT_DIGITS error code, code, 41
102 ER_WARN_FAILED_TO_SETUP_TLS error code, 417
ER_WARN_DEPRECATED_FLOAT_UNSIGNED error ER_WARN_FIELD_RESOLVED error code, 21
code, 102 ER_WARN_FUNC_INDEX_NOT_APPLICABLE error
ER_WARN_DEPRECATED_FOUND_ROWS error code, code, 106
110 ER_WARN_GRP_RPL_VIEW_CHANGE_UUID_FAIL_GET_VARI
ER_WARN_DEPRECATED_IDENT error code, 123 error code, 390
ER_WARN_DEPRECATED_INNER_INTO error code, ER_WARN_GTID_THRESHOLD_BREACH error code,
110 384
ER_WARN_DEPRECATED_INTEGER_DISPLAY_WIDTH ER_WARN_HOSTNAME_WONT_WORK error code, 22
error code, 102 ER_WARN_INCORRECT_PRIVILEGE_FOR_DB_RESTRICTION
ER_WARN_DEPRECATED_JSON_TABLE_ON_ERROR_ON_EMPTY
error code, 360
error code, 110 ER_WARN_INDEX_NOT_APPLICABLE error code, 50
ER_WARN_DEPRECATED_NESTED_COMMENT_SYNTAX ER_WARN_INVALID_DB_RESTRICTIONS error code,
error code, 96 360
ER_WARN_DEPRECATED_NON_STANDARD_KEY ER_WARN_INVALID_HINT error code, 84
error code, 135 ER_WARN_INVALID_TIMESTAMP error code, 23
ER_WARN_DEPRECATED_OR_BLOCKED_CIPHER ER_WARN_I_S_SKIPPED_TABLE error code, 46
error code, 416 ER_WARN_LANGUAGE_COMPONENT_CANNOT_UNINSTALL
ER_WARN_DEPRECATED_SQLMODE error code, 67 error code, 425
ER_WARN_DEPRECATED_SQL_CALC_FOUND_ROWS ER_WARN_LANGUAGE_COMPONENT_RESOURCE_LIMIT
error code, 110 error code, 425
ER_WARN_DEPRECATED_SUPERFLUOUS_DELIMITER ER_WARN_LEGACY_SYNTAX_CONVERTED error
error code, 121 code, 60
ER_WARN_DEPRECATED_SYNTAX error code, 22 ER_WARN_LOG_DEPRECATED_NON_STANDARD_KEY
ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENTerror code, 428
error code, 45 ER_WARN_LOG_PRIVILEGE_CHECKS_USER_CORRUPT
ER_WARN_DEPRECATED_SYNTAX_WITH_VER error error code, 369
code, 38 ER_WARN_LOG_PRIVILEGE_CHECKS_USER_DOES_NOT_EX
ER_WARN_DEPRECATED_SYSVAR_UPDATE error error code, 368
code, 67 ER_WARN_LOG_PRIVILEGE_CHECKS_USER_NEEDS_RPL_A
ER_WARN_DEPRECATED_USER_DEFINED_COLLATIONS error code, 369
error code, 126 ER_WARN_L_DISABLE_GTID_ONLY_WITH_SOURCE_AUTO_P
ER_WARN_DEPRECATED_USER_DEFINED_COLLATIONS_OPTION
error code, 394
error code, 411 ER_WARN_MIGRATION_EMPTY_SOURCE_KEYRING
ER_WARN_DEPRECATED_USER_SET_EXPR error error code, 397
code, 96 ER_WARN_NO_KEYRING_COMPONENT_SERVICE_FOUND
ER_WARN_DEPRECATED_UTF8MB3_CHARSET_OPTION error code, 385
error code, 351 ER_WARN_NO_SERVERID_SPECIFIED error code,
ER_WARN_DEPRECATED_UTF8MB3_COLLATION 193
error code, 96 ER_WARN_NO_SPACE_VERSION_COMMENT error
code, 126
599
ER_WARN_NULL_TO_NOTNULL error code, 20 ER_WARN_UNSUPPORTED_MAX_EXECUTION_TIME
ER_WARN_ONLY_SOURCE_LOG_FILE_NO_POS error code, 70
error code, 62 ER_WARN_USING_OTHER_HANDLER error code, 21
ER_WARN_ON_MODIFYING_GTID_EXECUTED_TABLE ER_WARN_VAR_VALUE_CHANGE_NOT_SUPPORTED
error code, 70 error code, 113
ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO ER_WARN_VIEW_MERGE error code, 26
error code, 62 ER_WARN_VIEW_WITHOUT_KEY error code, 26
ER_WARN_OPTIMIZER_HINT_SYNTAX_ERROR error ER_WARN_WRONG_COMPRESSION_ALGORITHM_LOG
code, 69 error code, 368
ER_WARN_OPTION_RESET_AND_IGNORED_DURING_INITIALIZE
ER_WARN_WRONG_COMPRESSION_LEVEL_LOG
error code, 419 error code, 368
ER_WARN_PARTIAL_REVOKE_AND_DB_GRANT ER_WASTEFUL_NET_BUFFER_SIZE error code, 144
error code, 360 ER_WILDCARD_NOT_ALLOWED_FOR_MULTIADDRESS_BIND
ER_WARN_PROPERTY_STRING_PARSE_FAILED error code, 363
error code, 356 ER_WINDOW_CIRCULARITY_IN_WINDOW_GRAPH
ER_WARN_PURGE_LOG_IN_USE error code, 58 error code, 81
ER_WARN_PURGE_LOG_IS_ACTIVE error code, 58 ER_WINDOW_DUPLICATE_NAME error code, 82
ER_WARN_REDACTED_PRIVILEGES error code, 138 ER_WINDOW_EXPLAIN_JSON error code, 83
ER_WARN_REGEXP_USING_DEFAULT error code, ER_WINDOW_FRAME_END_ILLEGAL error code, 82
120 ER_WINDOW_FRAME_ILLEGAL error code, 82
ER_WARN_REMOVED_SQL_MODE error code, 351 ER_WINDOW_FRAME_START_ILLEGAL error code, 82
ER_WARN_REPLICA_ANONYMOUS_TO_GTID_UUID_SAME_AS_VIEW_CHANGE_UUID
ER_WINDOW_FUNCTION_IGNORES_FRAME error
error code, 389 code, 83
ER_WARN_REPLICA_GTID_ONLY_AND_GTID_MODE_NOT_ON
ER_WINDOW_ILLEGAL_ORDER_BY error code, 82
error code, 394 ER_WINDOW_INVALID_WINDOW_FUNC_ALIAS_USE
ER_WARN_RESERVED_SRID_RANGE error code, 91 error code, 82
ER_WARN_RPL_RECOVERY_NO_ROTATE_EVENT_FROM_SOURCE_EOF
ER_WINDOW_INVALID_WINDOW_FUNC_USE error
error code, 369 code, 82
ER_WARN_SCHEDULED_TASK_RUN_FAILED error ER_WINDOW_NESTED_WINDOW_FUNC_USE_IN_WINDOW_SPEC
code, 415 error code, 83
ER_WARN_SF_UDF_NAME_COLLISION error code, ER_WINDOW_NO_CHILD_PARTITIONING error code,
120 82
ER_WARN_SP_STATEMENT_PARTIALLY_EXECUTED ER_WINDOW_NO_GROUP_ORDER_UNUSED error
error code, 135 code, 83
ER_WARN_SQL_AFTER_MTS_GAPS_GAP_NOT_CALCULATEDER_WINDOW_NO_INHERIT_FRAME error code, 82
error code, 117 ER_WINDOW_NO_REDEFINE_ORDER_BY error code,
ER_WARN_SRS_ID_ALREADY_EXISTS error code, 91 82
ER_WARN_SRS_NOT_FOUND error code, 77 ER_WINDOW_NO_SUCH_WINDOW error code, 81
ER_WARN_SRS_NOT_FOUND_AXIS_ORDER error ER_WINDOW_RANGE_BOUND_NOT_CONSTANT
code, 80 error code, 82
ER_WARN_TLS_CHANNEL_INITIALIZATION_ERROR ER_WINDOW_RANGE_FRAME_NUMERIC_TYPE error
error code, 376 code, 82
ER_WARN_TOO_FEW_RECORDS error code, 20 ER_WINDOW_RANGE_FRAME_ORDER_TYPE error
ER_WARN_TOO_MANY_RECORDS error code, 20 code, 82
ER_WARN_TRG_ALREADY_EXISTS error code, 121 ER_WINDOW_RANGE_FRAME_TEMPORAL_TYPE
ER_WARN_TRIGGER_DOESNT_HAVE_CREATED error code, 82
error code, 61 ER_WINDOW_ROWS_INTERVAL_USE error code, 83
ER_WARN_UNKNOWN_KEYRING_AWS_REGION ER_WIN_LISTEN_BUT_HOW error code, 147
error code, 368 ER_WIN_LOAD_LIBRARY_FAILED error code, 204
ER_WARN_UNKNOWN_QB_NAME error code, 70 ER_WL9236_NOW_UNUSED error code, 83
ER_WARN_UNLOAD_THE_NOT_PERSISTED error ER_WRITABLE_CONFIG_REMOVED error code, 146
code, 79 ER_WRITE_ROW_TO_PARTITION_FAILED error code,
ER_WARN_UNSUPPORTED_HINT error code, 77 197
ER_WRITE_SET_EXCEEDS_LIMIT error code, 75
600
ER_WRONG_ARGUMENTS error code, 17 ER_WRONG_SUB_KEY error code, 9
ER_WRONG_AUTO_KEY error code, 8 ER_WRONG_SUM_SELECT error code, 7
ER_WRONG_COLUMN_NAME error code, 14 ER_WRONG_TABLESPACE_NAME error code, 69
ER_WRONG_COMPRESSION_ALGORITHM_CLIENT ER_WRONG_TABLE_NAME error code, 10
error code, 107 ER_WRONG_TYPE_COLUMN_VALUE_ERROR error
ER_WRONG_COMPRESSION_LEVEL_CLIENT error code, 43
code, 107 ER_WRONG_TYPE_FOR_COLUMN_PREFIX_IDX_FLD
ER_WRONG_COUNT_FOR_KEY error code, 179 error code, 203
ER_WRONG_COUNT_FOR_ORIGIN error code, 179 ER_WRONG_TYPE_FOR_VAR error code, 18
ER_WRONG_COUNT_OF_ELEMENTS error code, 180 ER_WRONG_USAGE error code, 18
ER_WRONG_DATETIME_SPEC error code, 146 ER_WRONG_VALUE error code, 37
ER_WRONG_DB_NAME error code, 10 ER_WRONG_VALUE_COUNT error code, 7
ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR ER_WRONG_VALUE_COUNT_ON_ROW error code, 12
error code, 34 ER_WRONG_VALUE_FOR_TYPE error code, 29
ER_WRONG_FIELD_SPEC error code, 7 ER_WRONG_VALUE_FOR_VAR error code, 18
ER_WRONG_FIELD_TERMINATORS error code, 9 ER_WRONG_VALUE_FOR_VAR_PLUS_ACTIONABLE_PART
ER_WRONG_FIELD_WITH_GROUP error code, 7 error code, 111
ER_WRONG_FIELD_WITH_GROUP_V2 error code, 66 ER_X509_CANT_CHMOD_KEY error code, 159
ER_WRONG_FILE_NAME error code, 69 ER_X509_CANT_CREATE_CERT error code, 159
ER_WRONG_FK_DEF error code, 19 ER_X509_CANT_READ_CA_CERT error code, 159
ER_WRONG_FK_OPTION_FOR_GENERATED_COLUMN ER_X509_CANT_READ_CA_KEY error code, 159
error code, 68 ER_X509_CANT_WRITE_CERT error code, 159
ER_WRONG_GROUP_FIELD error code, 7 ER_X509_CANT_WRITE_KEY error code, 159
ER_WRONG_JSON_TABLE_VALUE error code, 87 ER_X509_CIPHERS_MISMATCH error code, 158
ER_WRONG_KEY_COLUMN error code, 14 ER_X509_ISSUER_MISMATCH error code, 158
ER_WRONG_KEY_COLUMN_FUNCTIONAL_INDEX ER_X509_NEEDS_RSA_PRIVKEY error code, 158
error code, 94 ER_X509_SUBJECT_MISMATCH error code, 158
ER_WRONG_LOCK_OF_SYSTEM_TABLE error code, ER_XAER_DUPID error code, 31
30 ER_XAER_INVAL error code, 28
ER_WRONG_MRG_TABLE error code, 14 ER_XAER_NOTA error code, 28
ER_WRONG_MVI_VALUE error code, 106 ER_XAER_OUTSIDE error code, 29
ER_WRONG_NAME_FOR_CATALOG error code, 21 ER_XAER_RMERR error code, 29
ER_WRONG_NAME_FOR_INDEX error code, 21 ER_XAER_RMFAIL error code, 29
ER_WRONG_NATIVE_TABLE_STRUCTURE error ER_XA_CANT_CREATE_MDL_BACKUP error code,
code, 45 367
ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT ER_XA_NO_MULTI_2PC_HEURISTIC_RECOVER error
error code, 18 code, 154
ER_WRONG_OBJECT error code, 26 ER_XA_RBDEADLOCK error code, 41
ER_WRONG_OUTER_JOIN_UNUSED error code, 11 ER_XA_RBROLLBACK error code, 29
ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT error ER_XA_RBTIMEOUT error code, 41
code, 39 ER_XA_RECOVERY_DONE error code, 154
ER_WRONG_PARAMCOUNT_TO_PROCEDURE error ER_XA_RECOVER_EXPLANATION error code, 154
code, 10 ER_XA_RECOVER_FOUND_TRX_IN_SE error code,
ER_WRONG_PARAMETERS_TO_NATIVE_FCT error 154
code, 39 ER_XA_RECOVER_FOUND_XA_TRX error code, 154
ER_WRONG_PARAMETERS_TO_PROCEDURE error ER_XA_REPLICATION_FILTERS error code, 105
code, 10 ER_XA_RETRY error code, 75
ER_WRONG_PARAMETERS_TO_STORED_FCT error ER_XA_STARTING_RECOVERY error code, 154
code, 39 ER_XA_TEMP_TABLE error code, 121
ER_WRONG_PARTITION_NAME error code, 39 ER_XPLUGIN_ALL_IO_INTERFACES_DISABLED error
ER_WRONG_PERFSCHEMA_USAGE error code, 46 code, 222
ER_WRONG_SIZE_NUMBER error code, 37 ER_XPLUGIN_BUFFER_PAGE_ALLOC_FAILED error
ER_WRONG_SRID_FOR_COLUMN error code, 86 code, 221
ER_WRONG_STRING_LENGTH error code, 33 ER_XPLUGIN_CLIENT_KILL_MSG error code, 223
601
ER_XPLUGIN_COMPRESSION_ERROR error code, ER_XPLUGIN_FAILED_TO_UNREGISTER_UDF error
368 code, 224
ER_XPLUGIN_DETECTED_HANGING_CLIENTS error ER_XPLUGIN_FAILED_TO_USE_SSL_CONF error
code, 221 code, 218
ER_XPLUGIN_EMPTY_ADMIN_CMD error code, 223 ER_XPLUGIN_FAILED_TO_VALIDATE_ADDRESS
ER_XPLUGIN_ERROR_MSG error code, 218 error code, 376
ER_XPLUGIN_ERROR_READING_SOCKET error code, ER_XPLUGIN_FORCE_STOP_CLIENT error code, 221
222 ER_XPLUGIN_IPv6_AVAILABLE error code, 223
ER_XPLUGIN_EXCEPTION_IN_EVENT_LOOP error ER_XPLUGIN_LISTENER_SETUP_FAILED error code,
code, 222 222
ER_XPLUGIN_EXCEPTION_IN_TASK_SCHEDULER ER_XPLUGIN_LISTENER_STATUS_MSG error code,
error code, 221 223
ER_XPLUGIN_EXISTING_USER_ACCOUNT_WITH_INCOMPLETE_GRANTS
ER_XPLUGIN_LISTENER_SYS_VARIABLE_ERROR
error code, 223 error code, 223
ER_XPLUGIN_FAILED_AT_SSL_CONF error code, 222 ER_XPLUGIN_MAX_AUTH_ATTEMPTS_REACHED
ER_XPLUGIN_FAILED_TO_ACCEPT_CLIENT error error code, 221
code, 221 ER_XPLUGIN_MESSAGE_TOO_LONG error code, 222
ER_XPLUGIN_FAILED_TO_BIND_INTERFACE_ADDRESSER_XPLUGIN_PEER_DISCONNECTED_WHILE_READING_MSG_B
error code, 376 error code, 223
ER_XPLUGIN_FAILED_TO_CLOSE_SQL_SESSION ER_XPLUGIN_READ_FAILED_CLOSING_CONNECTION
error code, 223 error code, 223
ER_XPLUGIN_FAILED_TO_CREATE_SESSION_FOR_CONN ER_XPLUGIN_REFERENCE_TO_SECURE_CONN_WITH_XPLUGIN
error code, 222 error code, 218
ER_XPLUGIN_FAILED_TO_EXECUTE_ADMIN_CMD ER_XPLUGIN_REFERENCE_TO_USER_ACCOUNT_DOC_SECTION
error code, 223 error code, 221
ER_XPLUGIN_FAILED_TO_GET_CREATION_STMT ER_XPLUGIN_RETRYING_BIND_ON_PORT error
error code, 224 code, 223
ER_XPLUGIN_FAILED_TO_GET_ENGINE_INFO error ER_XPLUGIN_SRV_SESSION_INIT_THREAD_FAILED
code, 224 error code, 221
ER_XPLUGIN_FAILED_TO_GET_SECURITY_CTX ER_XPLUGIN_STARTUP_FAILED error code, 217
error code, 223 ER_XPLUGIN_TASK_SCHEDULING_FAILED error
ER_XPLUGIN_FAILED_TO_GET_SYS_VAR error code, code, 222
223 ER_XPLUGIN_UNABLE_TO_ACCEPT_CONNECTION
ER_XPLUGIN_FAILED_TO_INITIALIZE_SESSION error error code, 222
code, 222 ER_XPLUGIN_UNABLE_TO_USE_USER_SESSION_ACCOUNT
ER_XPLUGIN_FAILED_TO_OPEN_INTERNAL_SESSION error code, 221
error code, 224 ER_XPLUGIN_UNEXPECTED_EXCEPTION_DISPATCHING_CMD
ER_XPLUGIN_FAILED_TO_PREPARE_IO_INTERFACES error code, 221
error code, 221 ER_XPLUGIN_UNINITIALIZED_MESSAGE error code,
ER_XPLUGIN_FAILED_TO_RESET_IPV6_V6ONLY_FLAG 222
error code, 224 ER_XPLUGIN_USING_SSL_CONF_FROM_MYSQLX
ER_XPLUGIN_FAILED_TO_SCHEDULE_CLIENT error error code, 217
code, 221 ER_XPLUGIN_USING_SSL_CONF_FROM_SERVER
ER_XPLUGIN_FAILED_TO_SET_MIN_NUMBER_OF_WORKERSerror code, 217
error code, 222 ER_XPLUGIN_USING_SSL_FOR_TLS_CONNECTION
ER_XPLUGIN_FAILED_TO_SET_SO_REUSEADDR_FLAGerror code, 218
error code, 224 ER_XPLUING_NET_STARTUP_FAILED error code, 222
ER_XPLUGIN_FAILED_TO_STOP_SERVICES error ER_YES error code, 3
code, 341 ER_ZLIB_Z_BUF_ERROR error code, 20
ER_XPLUGIN_FAILED_TO_SWITCH_CONTEXT error ER_ZLIB_Z_DATA_ERROR error code, 20
code, 224 ER_ZLIB_Z_MEM_ERROR error code, 20
ER_XPLUGIN_FAILED_TO_SWITCH_SECURITY_CTX
error code, 350
602
W
WARN_AES_KEY_SIZE error code, 76
WARN_COND_ITEM_TRUNCATED error code, 43
WARN_DATA_TRUNCATED error code, 21
WARN_NAMED_PIPE_ACCESS_EVERYONE error
code, 60
WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED
error code, 42
WARN_NO_CONNECTION_METADATA error code, 41
WARN_ON_BLOCKHOLE_IN_RBR error code, 59
WARN_OPTION_BELOW_LIMIT error code, 47
WARN_OPTION_IGNORED error code, 41
WARN_PLUGIN_BUSY error code, 41
WARN_UNENCRYPTED_TABLE_IN_ENCRYPTED_DB
error code, 99
WARN_UNSUPPORTED_ACL_TABLES_READ error
code, 114
WARN_USELESS_SPATIAL_INDEX error code, 88
603
604