Table of Contents
This appendix lists common problems and errors that may occur and potential resolutions, in addition to listing the errors that may appear when you call MySQL from any host language. The first section covers problems and resolutions. Detailed information on errors is provided: One list displays server error messages. Another list displays client program messages.
There are several sources of error information in MySQL:
Each SQL statement executed results in an error code, an SQLSTATE value, and an error message, as described in Section B.2, “Types of Error Values”. These errors are returned from the server side; see Section B.3, “Server Error Codes and Messages”.
Errors can occur on the client side, usually involving problems communicating with the server; see Section B.4, “Client Error Codes and Messages”.
SQL statement warning and error information is available
through the SHOW WARNINGS
and
SHOW ERRORS
statements. The
warning_count
system variable
indicates the number of errors, warnings, and notes. The
error_count
system variable
indicates the number of errors. Its value excludes warnings
and notes.
The GET DIAGNOSTICS
statement
may be used to inspect the diagnostic information in the
diagnostics area. See Section 13.6.7.3, “GET DIAGNOSTICS Syntax”.
SHOW SLAVE STATUS
statement
output includes information about replication errors occurring
on the slave side.
SHOW ENGINE
INNODB STATUS
statement output includes information
about the most recent foreign key error if a
CREATE TABLE
statement for an
InnoDB
table fails.
The perror program provides information from the command line about error numbers. See Section 4.8.2, “perror — Explain Error Codes”.
Descriptions of server and client errors are provided later in
this Appendix. For information about errors related to
InnoDB
, see
Section 15.20.4, “InnoDB Error Handling”.
When an error occurs in MySQL, the server returns two types of error values:
A MySQL-specific error code. This value is numeric. It is not portable to other database systems.
An SQLSTATE value. The value is a five-character string (for
example, '42S02'
). The values are taken
from ANSI SQL and ODBC and are more standardized.
A message string that provides a textual description of the error is also available.
When an error occurs, the MySQL error code, SQLSTATE value, and message string are available using C API functions:
MySQL error code: Call
mysql_errno()
SQLSTATE value: Call
mysql_sqlstate()
Error message: Call
mysql_error()
For prepared statements, the corresponding error functions are
mysql_stmt_errno()
,
mysql_stmt_sqlstate()
, and
mysql_stmt_error()
. All error
functions are described in Section 27.7, “MySQL C API”.
The number of errors, warnings, and notes for the previous
statement can be obtained by calling
mysql_warning_count()
. See
Section 27.7.7.82, “mysql_warning_count()”.
The first two characters of an SQLSTATE value indicate the error class:
Class = '00'
indicates success.
Class = '01'
indicates a warning.
Class = '02'
indicates “not
found.” This is relevant within the context of cursors
and is used to control what happens when a cursor reaches the
end of a data set. This condition also occurs for
SELECT ... INTO
statements that
retrieve no rows.
var_list
Class > '02'
indicates an exception.
MySQL programs have access to several types of error information when the server returns an error. For example, the mysql client program displays errors using the following format:
shell> SELECT * FROM no_such_table;
ERROR 1146 (42S02): Table 'test.no_such_table' doesn't exist
The message displayed contains three types of information:
A numeric error code (1146
). This number is
MySQL-specific and is not portable to other database systems.
A five-character SQLSTATE value ('42S02'
).
The values are taken from ANSI SQL and ODBC and are more
standardized. Not all MySQL error numbers have corresponding
SQLSTATE values. In these cases, 'HY000'
(general error) is used.
A message string that provides a textual description of the error.
For error checking, use error codes, not error messages. Error messages do not change often, but it is possible. Also if the database administrator changes the language setting, that affects the language of error messages.
Error codes are stable across GA releases of a given MySQL series. Before a series reaches GA status, new codes may still be under development and subject to change.
Server error information comes from the following source files. For details about the way that error information is defined, see the MySQL Internals Manual.
Error message information is listed in the
share/errmsg-utf8.txt
file.
%d
and %s
represent
numbers and strings, respectively, that are substituted into
the Message values when they are displayed.
The Error values listed in
share/errmsg-utf8.txt
are used to
generate the definitions in the
include/mysqld_error.h
and
include/mysqld_ername.h
MySQL source
files.
The SQLSTATE values listed in
share/errmsg-utf8.txt
are used to
generate the definitions in the
include/sql_state.h
MySQL source file.
Because updates are frequent, it is possible that those files will contain additional error information not listed here.
Error: 1
SQLSTATE: HY000
(EE_CANTCREATEFILE
)
Message: Can't create/write to file '%s' (OS errno %d - %s)
Error: 2
SQLSTATE: HY000
(EE_READ
)
Message: Error reading file '%s' (OS errno %d - %s)
Error: 3
SQLSTATE: HY000
(EE_WRITE
)
Message: Error writing file '%s' (OS errno %d - %s)
Error: 4
SQLSTATE: HY000
(EE_BADCLOSE
)
Message: Error on close of '%s' (OS errno %d - %s)
Error: 5
SQLSTATE: HY000
(EE_OUTOFMEMORY
)
Message: Out of memory (Needed %u bytes)
Error: 6
SQLSTATE: HY000
(EE_DELETE
)
Message: Error on delete of '%s' (OS errno %d - %s)
Error: 7
SQLSTATE: HY000
(EE_LINK
)
Message: Error on rename of '%s' to '%s' (OS errno %d - %s)
Error: 9
SQLSTATE: HY000
(EE_EOFERR
)
Message: Unexpected EOF found when reading file '%s' (OS errno %d - %s)
Error: 10
SQLSTATE: HY000
(EE_CANTLOCK
)
Message: Can't lock file (OS errno %d - %s)
Error: 11
SQLSTATE: HY000
(EE_CANTUNLOCK
)
Message: Can't unlock file (OS errno %d - %s)
Error: 12
SQLSTATE: HY000
(EE_DIR
)
Message: Can't read dir of '%s' (OS errno %d - %s)
Error: 13
SQLSTATE: HY000
(EE_STAT
)
Message: Can't get stat of '%s' (OS errno %d - %s)
Error: 14
SQLSTATE: HY000
(EE_CANT_CHSIZE
)
Message: Can't change size of file (OS errno %d - %s)
Error: 15
SQLSTATE: HY000
(EE_CANT_OPEN_STREAM
)
Message: Can't open stream from handle (OS errno %d - %s)
Error: 16
SQLSTATE: HY000
(EE_GETWD
)
Message: Can't get working directory (OS errno %d - %s)
Error: 17
SQLSTATE: HY000
(EE_SETWD
)
Message: Can't change dir to '%s' (OS errno %d - %s)
Error: 18
SQLSTATE: HY000
(EE_LINK_WARNING
)
Message: Warning: '%s' had %d links
Error: 19
SQLSTATE: HY000
(EE_OPEN_WARNING
)
Message: Warning: %d files and %d streams are left open
Error: 20
SQLSTATE: HY000
(EE_DISK_FULL
)
Message: Disk is full writing '%s' (OS errno %d - %s). Waiting for someone to free space...
Error: 21
SQLSTATE: HY000
(EE_CANT_MKDIR
)
Message: Can't create directory '%s' (OS errno %d - %s)
Error: 22
SQLSTATE: HY000
(EE_UNKNOWN_CHARSET
)
Message: Character set '%s' is not a compiled character set and is not specified in the '%s' file
Error: 23
SQLSTATE: HY000
(EE_OUT_OF_FILERESOURCES
)
Message: Out of resources when opening file '%s' (OS errno %d - %s)
Error: 24
SQLSTATE: HY000
(EE_CANT_READLINK
)
Message: Can't read value for symlink '%s' (Error %d - %s)
Error: 25
SQLSTATE: HY000
(EE_CANT_SYMLINK
)
Message: Can't create symlink '%s' pointing at '%s' (Error %d - %s)
Error: 26
SQLSTATE: HY000
(EE_REALPATH
)
Message: Error on realpath() on '%s' (Error %d - %s)
Error: 27
SQLSTATE: HY000
(EE_SYNC
)
Message: Can't sync file '%s' to disk (OS errno %d - %s)
Error: 28
SQLSTATE: HY000
(EE_UNKNOWN_COLLATION
)
Message: Collation '%s' is not a compiled collation and is not specified in the '%s' file
Error: 29
SQLSTATE: HY000
(EE_FILENOTFOUND
)
Message: File '%s' not found (OS errno %d - %s)
Error: 30
SQLSTATE: HY000
(EE_FILE_NOT_CLOSED
)
Message: File '%s' (fileno: %d) was not closed
Error: 31
SQLSTATE: HY000
(EE_CHANGE_OWNERSHIP
)
Message: Cannot change ownership of the file '%s' (OS errno %d - %s)
Error: 32
SQLSTATE: HY000
(EE_CHANGE_PERMISSIONS
)
Message: Cannot change permissions of the file '%s' (OS errno %d - %s)
Error: 33
SQLSTATE: HY000
(EE_CANT_SEEK
)
Message: Cannot seek in file '%s' (OS errno %d - %s)
Error: 34
SQLSTATE: HY000
(EE_CAPACITY_EXCEEDED
)
Message: Memory capacity exceeded (capacity %llu bytes)
Error: 35
SQLSTATE: HY000
(EE_DISK_FULL_WITH_RETRY_MSG
)
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.
EE_DISK_FULL_WITH_RETRY_MSG
was
added in 8.0.13.
Error: 36
SQLSTATE: HY000
(EE_FAILED_TO_CREATE_TIMER
)
Message: Failed to create timer (OS errno %d).
EE_FAILED_TO_CREATE_TIMER
was
added in 8.0.13.
Error: 37
SQLSTATE: HY000
(EE_FAILED_TO_DELETE_TIMER
)
Message: Failed to delete timer (OS errno %d).
EE_FAILED_TO_DELETE_TIMER
was
added in 8.0.13.
Error: 38
SQLSTATE: HY000
(EE_FAILED_TO_CREATE_TIMER_QUEUE
)
Message: Failed to create timer queue (OS errno %d).
EE_FAILED_TO_CREATE_TIMER_QUEUE
was added in 8.0.13.
Error: 39
SQLSTATE: HY000
(EE_FAILED_TO_START_TIMER_NOTIFY_THREAD
)
Message: Failed to start timer notify thread.
EE_FAILED_TO_START_TIMER_NOTIFY_THREAD
was added in 8.0.13.
Error: 40
SQLSTATE: HY000
(EE_FAILED_TO_CREATE_TIMER_NOTIFY_THREAD_INTERRUPT_EVENT
)
Message: Failed to create event to interrupt timer notifier thread (OS errno %d).
EE_FAILED_TO_CREATE_TIMER_NOTIFY_THREAD_INTERRUPT_EVENT
was added in 8.0.13.
Error: 41
SQLSTATE: HY000
(EE_EXITING_TIMER_NOTIFY_THREAD
)
Message: Failed to register timer event with queue (OS errno %d), exiting timer notifier thread.
EE_EXITING_TIMER_NOTIFY_THREAD
was
added in 8.0.13.
Error: 42
SQLSTATE: HY000
(EE_WIN_LIBRARY_LOAD_FAILED
)
Message: LoadLibrary("kernel32.dll") failed: GetLastError returns %lu.
EE_WIN_LIBRARY_LOAD_FAILED
was
added in 8.0.13.
Error: 43
SQLSTATE: HY000
(EE_WIN_RUN_TIME_ERROR_CHECK
)
Message: %s.
EE_WIN_RUN_TIME_ERROR_CHECK
was
added in 8.0.13.
Error: 44
SQLSTATE: HY000
(EE_FAILED_TO_DETERMINE_LARGE_PAGE_SIZE
)
Message: Failed to determine large page size.
EE_FAILED_TO_DETERMINE_LARGE_PAGE_SIZE
was added in 8.0.13.
Error: 45
SQLSTATE: HY000
(EE_FAILED_TO_KILL_ALL_THREADS
)
Message: Error in my_thread_global_end(): %d thread(s) did not exit.
EE_FAILED_TO_KILL_ALL_THREADS
was
added in 8.0.13.
Error: 46
SQLSTATE: HY000
(EE_FAILED_TO_CREATE_IO_COMPLETION_PORT
)
Message: Failed to create IO completion port (OS errno %d).
EE_FAILED_TO_CREATE_IO_COMPLETION_PORT
was added in 8.0.13.
Error: 47
SQLSTATE: HY000
(EE_FAILED_TO_OPEN_DEFAULTS_FILE
)
Message: Failed to open required defaults file: %s
EE_FAILED_TO_OPEN_DEFAULTS_FILE
was added in 8.0.13.
Error: 48
SQLSTATE: HY000
(EE_FAILED_TO_HANDLE_DEFAULTS_FILE
)
Message: Fatal error in defaults handling. Program aborted!
EE_FAILED_TO_HANDLE_DEFAULTS_FILE
was added in 8.0.13.
Error: 49
SQLSTATE: HY000
(EE_WRONG_DIRECTIVE_IN_CONFIG_FILE
)
Message: Wrong '!%s' directive in config file %s at line %d.
EE_WRONG_DIRECTIVE_IN_CONFIG_FILE
was added in 8.0.13.
Error: 50
SQLSTATE: HY000
(EE_SKIPPING_DIRECTIVE_DUE_TO_MAX_INCLUDE_RECURSION
)
Message: Skipping '%s' directive as maximum include recursion level was reached in file %s at line %d.
EE_SKIPPING_DIRECTIVE_DUE_TO_MAX_INCLUDE_RECURSION
was added in 8.0.13.
Error: 51
SQLSTATE: HY000
(EE_INCORRECT_GRP_DEFINITION_IN_CONFIG_FILE
)
Message: Wrong group definition in config file %s at line %d.
EE_INCORRECT_GRP_DEFINITION_IN_CONFIG_FILE
was added in 8.0.13.
Error: 52
SQLSTATE: HY000
(EE_OPTION_WITHOUT_GRP_IN_CONFIG_FILE
)
Message: Found option without preceding group in config file %s at line %d.
EE_OPTION_WITHOUT_GRP_IN_CONFIG_FILE
was added in 8.0.13.
Error: 53
SQLSTATE: HY000
(EE_CONFIG_FILE_PERMISSION_ERROR
)
Message: %s should be readable/writable only by current user.
EE_CONFIG_FILE_PERMISSION_ERROR
was added in 8.0.13.
Error: 54
SQLSTATE: HY000
(EE_IGNORE_WORLD_WRITABLE_CONFIG_FILE
)
Message: World-writable config file '%s' is ignored.
EE_IGNORE_WORLD_WRITABLE_CONFIG_FILE
was added in 8.0.13.
Error: 55
SQLSTATE: HY000
(EE_USING_DISABLED_OPTION
)
Message: %s: Option '%s' was used, but is disabled.
EE_USING_DISABLED_OPTION
was added
in 8.0.13.
Error: 56
SQLSTATE: HY000
(EE_USING_DISABLED_SHORT_OPTION
)
Message: %s: Option '-%c' was used, but is disabled.
EE_USING_DISABLED_SHORT_OPTION
was
added in 8.0.13.
Error: 57
SQLSTATE: HY000
(EE_USING_PASSWORD_ON_CLI_IS_INSECURE
)
Message: Using a password on the command line interface can be insecure.
EE_USING_PASSWORD_ON_CLI_IS_INSECURE
was added in 8.0.13.
Error: 58
SQLSTATE: HY000
(EE_UNKNOWN_SUFFIX_FOR_VARIABLE
)
Message: Unknown suffix '%c' used for variable '%s' (value '%s').
EE_UNKNOWN_SUFFIX_FOR_VARIABLE
was
added in 8.0.13.
Error: 59
SQLSTATE: HY000
(EE_SSL_ERROR_FROM_FILE
)
Message: SSL error: %s from '%s'.
EE_SSL_ERROR_FROM_FILE
was added
in 8.0.13.
Error: 60
SQLSTATE: HY000
(EE_SSL_ERROR
)
Message: SSL error: %s.
EE_SSL_ERROR
was added in 8.0.13.
Error: 61
SQLSTATE: HY000
(EE_NET_SEND_ERROR_IN_BOOTSTRAP
)
Message: %d %s.
EE_NET_SEND_ERROR_IN_BOOTSTRAP
was
added in 8.0.13.
Error: 62
SQLSTATE: HY000
(EE_PACKETS_OUT_OF_ORDER
)
Message: Packets out of order (found %u, expected %u).
EE_PACKETS_OUT_OF_ORDER
was added
in 8.0.13.
Error: 63
SQLSTATE: HY000
(EE_UNKNOWN_PROTOCOL_OPTION
)
Message: Unknown option to protocol: %s.
EE_UNKNOWN_PROTOCOL_OPTION
was
added in 8.0.13.
Error: 64
SQLSTATE: HY000
(EE_FAILED_TO_LOCATE_SERVER_PUBLIC_KEY
)
Message: Failed to locate server public key '%s'.
EE_FAILED_TO_LOCATE_SERVER_PUBLIC_KEY
was added in 8.0.13.
Error: 65
SQLSTATE: HY000
(EE_PUBLIC_KEY_NOT_IN_PEM_FORMAT
)
Message: Public key is not in Privacy Enhanced Mail format: '%s'.
EE_PUBLIC_KEY_NOT_IN_PEM_FORMAT
was added in 8.0.13.
Error: 66
SQLSTATE: HY000
(EE_DEBUG_INFO
)
Message: %s.
EE_DEBUG_INFO
was added in 8.0.13.
Error: 67
SQLSTATE: HY000
(EE_UNKNOWN_VARIABLE
)
Message: unknown variable '%s'.
EE_UNKNOWN_VARIABLE
was added in
8.0.13.
Error: 68
SQLSTATE: HY000
(EE_UNKNOWN_OPTION
)
Message: unknown option '--%s'.
EE_UNKNOWN_OPTION
was added in
8.0.13.
Error: 69
SQLSTATE: HY000
(EE_UNKNOWN_SHORT_OPTION
)
Message: %s: unknown option '-%c'.
EE_UNKNOWN_SHORT_OPTION
was added
in 8.0.13.
Error: 70
SQLSTATE: HY000
(EE_OPTION_WITHOUT_ARGUMENT
)
Message: %s: option '--%s' cannot take an argument.
EE_OPTION_WITHOUT_ARGUMENT
was
added in 8.0.13.
Error: 71
SQLSTATE: HY000
(EE_OPTION_REQUIRES_ARGUMENT
)
Message: %s: option '--%s' requires an argument.
EE_OPTION_REQUIRES_ARGUMENT
was
added in 8.0.13.
Error: 72
SQLSTATE: HY000
(EE_SHORT_OPTION_REQUIRES_ARGUMENT
)
Message: %s: option '-%c' requires an argument.
EE_SHORT_OPTION_REQUIRES_ARGUMENT
was added in 8.0.13.
Error: 73
SQLSTATE: HY000
(EE_OPTION_IGNORED_DUE_TO_INVALID_VALUE
)
Message: %s: ignoring option '--%s' due to invalid value '%s'.
EE_OPTION_IGNORED_DUE_TO_INVALID_VALUE
was added in 8.0.13.
Error: 74
SQLSTATE: HY000
(EE_OPTION_WITH_EMPTY_VALUE
)
Message: %s: Empty value for '%s' specified.
EE_OPTION_WITH_EMPTY_VALUE
was
added in 8.0.13.
Error: 75
SQLSTATE: HY000
(EE_FAILED_TO_ASSIGN_MAX_VALUE_TO_OPTION
)
Message: %s: Maximum value of '%s' cannot be set.
EE_FAILED_TO_ASSIGN_MAX_VALUE_TO_OPTION
was added in 8.0.13.
Error: 76
SQLSTATE: HY000
(EE_INCORRECT_BOOLEAN_VALUE_FOR_OPTION
)
Message: option '%s': boolean value '%s' was not recognized. Set to OFF.
EE_INCORRECT_BOOLEAN_VALUE_FOR_OPTION
was added in 8.0.13.
Error: 77
SQLSTATE: HY000
(EE_FAILED_TO_SET_OPTION_VALUE
)
Message: %s: Error while setting value '%s' to '%s'.
EE_FAILED_TO_SET_OPTION_VALUE
was
added in 8.0.13.
Error: 78
SQLSTATE: HY000
(EE_INCORRECT_INT_VALUE_FOR_OPTION
)
Message: Incorrect integer value: '%s'.
EE_INCORRECT_INT_VALUE_FOR_OPTION
was added in 8.0.13.
Error: 79
SQLSTATE: HY000
(EE_INCORRECT_UINT_VALUE_FOR_OPTION
)
Message: Incorrect unsigned integer value: '%s'.
EE_INCORRECT_UINT_VALUE_FOR_OPTION
was added in 8.0.13.
Error: 80
SQLSTATE: HY000
(EE_ADJUSTED_SIGNED_VALUE_FOR_OPTION
)
Message: option '%s': signed value %s adjusted to %s.
EE_ADJUSTED_SIGNED_VALUE_FOR_OPTION
was added in 8.0.13.
Error: 81
SQLSTATE: HY000
(EE_ADJUSTED_UNSIGNED_VALUE_FOR_OPTION
)
Message: option '%s': unsigned value %s adjusted to %s.
EE_ADJUSTED_UNSIGNED_VALUE_FOR_OPTION
was added in 8.0.13.
Error: 82
SQLSTATE: HY000
(EE_ADJUSTED_ULONGLONG_VALUE_FOR_OPTION
)
Message: option '%s': value %s adjusted to %s.
EE_ADJUSTED_ULONGLONG_VALUE_FOR_OPTION
was added in 8.0.13.
Error: 83
SQLSTATE: HY000
(EE_ADJUSTED_DOUBLE_VALUE_FOR_OPTION
)
Message: option '%s': value %g adjusted to %g.
EE_ADJUSTED_DOUBLE_VALUE_FOR_OPTION
was added in 8.0.13.
Error: 84
SQLSTATE: HY000
(EE_INVALID_DECIMAL_VALUE_FOR_OPTION
)
Message: Invalid decimal value for option '%s'.
EE_INVALID_DECIMAL_VALUE_FOR_OPTION
was added in 8.0.13.
Error: 85
SQLSTATE: HY000
(EE_COLLATION_PARSER_ERROR
)
Message: %s.
EE_COLLATION_PARSER_ERROR
was
added in 8.0.13.
Error: 86
SQLSTATE: HY000
(EE_FAILED_TO_RESET_BEFORE_PRIMARY_IGNORABLE_CHAR
)
Message: Failed to reset before a primary ignorable character %s.
EE_FAILED_TO_RESET_BEFORE_PRIMARY_IGNORABLE_CHAR
was added in 8.0.13.
Error: 87
SQLSTATE: HY000
(EE_FAILED_TO_RESET_BEFORE_TERTIARY_IGNORABLE_CHAR
)
Message: Failed to reset before a territory ignorable character %s.
EE_FAILED_TO_RESET_BEFORE_TERTIARY_IGNORABLE_CHAR
was added in 8.0.13.
Error: 88
SQLSTATE: HY000
(EE_SHIFT_CHAR_OUT_OF_RANGE
)
Message: Shift character out of range: %s.
EE_SHIFT_CHAR_OUT_OF_RANGE
was
added in 8.0.13.
Error: 89
SQLSTATE: HY000
(EE_RESET_CHAR_OUT_OF_RANGE
)
Message: Reset character out of range: %s.
EE_RESET_CHAR_OUT_OF_RANGE
was
added in 8.0.13.
Error: 90
SQLSTATE: HY000
(EE_UNKNOWN_LDML_TAG
)
Message: Unknown LDML tag: '%.*s'.
EE_UNKNOWN_LDML_TAG
was added in
8.0.13.
Error: 1002
SQLSTATE: HY000
(ER_NO
)
Message: NO
Used in the construction of other messages.
Error: 1003
SQLSTATE: HY000
(ER_YES
)
Message: YES
Used in the construction of other messages.
Extended EXPLAIN
format generates
Note messages. ER_YES
is used in
the Code
column for these messages in
subsequent SHOW WARNINGS
output.
Error: 1004
SQLSTATE: HY000
(ER_CANT_CREATE_FILE
)
Message: Can't create file '%s' (errno: %d - %s)
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.
Error: 1005
SQLSTATE: HY000
(ER_CANT_CREATE_TABLE
)
Message: Can't create table '%s' (errno: %d - %s)
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.
Error: 1006
SQLSTATE: HY000
(ER_CANT_CREATE_DB
)
Message: Can't create database '%s' (errno: %d - %s)
Error: 1007
SQLSTATE: HY000
(ER_DB_CREATE_EXISTS
)
Message: Can't create database '%s'; database exists
An attempt to create a database failed because the database already exists.
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.
Error: 1008
SQLSTATE: HY000
(ER_DB_DROP_EXISTS
)
Message: Can't drop database '%s'; database doesn't exist
Error: 1010
SQLSTATE: HY000
(ER_DB_DROP_RMDIR
)
Message: Error dropping database (can't rmdir '%s', errno: %d - %s)
Error: 1012
SQLSTATE: HY000
(ER_CANT_FIND_SYSTEM_REC
)
Message: Can't read record in system table
Returned by InnoDB
for attempts to access
InnoDB
INFORMATION_SCHEMA
tables when InnoDB
is unavailable.
Error: 1013
SQLSTATE: HY000
(ER_CANT_GET_STAT
)
Message: Can't get status of '%s' (errno: %d - %s)
Error: 1015
SQLSTATE: HY000
(ER_CANT_LOCK
)
Message: Can't lock file (errno: %d - %s)
Error: 1016
SQLSTATE: HY000
(ER_CANT_OPEN_FILE
)
Message: Can't open file: '%s' (errno: %d - %s)
InnoDB
reports this error when the table from
the InnoDB
data
files cannot be found.
Error: 1017
SQLSTATE: HY000
(ER_FILE_NOT_FOUND
)
Message: Can't find file: '%s' (errno: %d - %s)
Error: 1018
SQLSTATE: HY000
(ER_CANT_READ_DIR
)
Message: Can't read dir of '%s' (errno: %d - %s)
Error: 1020
SQLSTATE: HY000
(ER_CHECKREAD
)
Message: Record has changed since last read in table '%s'
Error: 1022
SQLSTATE: 23000
(ER_DUP_KEY
)
Message: Can't write; duplicate key in table '%s'
Error: 1024
SQLSTATE: HY000
(ER_ERROR_ON_READ
)
Message: Error reading file '%s' (errno: %d - %s)
Error: 1025
SQLSTATE: HY000
(ER_ERROR_ON_RENAME
)
Message: Error on rename of '%s' to '%s' (errno: %d - %s)
Error: 1026
SQLSTATE: HY000
(ER_ERROR_ON_WRITE
)
Message: Error writing file '%s' (errno: %d - %s)
Error: 1027
SQLSTATE: HY000
(ER_FILE_USED
)
Message: '%s' is locked against change
Error: 1028
SQLSTATE: HY000
(ER_FILSORT_ABORT
)
Message: Sort aborted
Error: 1030
SQLSTATE: HY000
(ER_GET_ERRNO
)
Message: Got error %d - '%s' from storage engine
Check the %d
value to see what the OS error
means. For example, 28 indicates that you have run out of disk
space.
Error: 1031
SQLSTATE: HY000
(ER_ILLEGAL_HA
)
Message: Table storage engine for '%s' doesn't have this option
Error: 1032
SQLSTATE: HY000
(ER_KEY_NOT_FOUND
)
Message: Can't find record in '%s'
Error: 1033
SQLSTATE: HY000
(ER_NOT_FORM_FILE
)
Message: Incorrect information in file: '%s'
Error: 1034
SQLSTATE: HY000
(ER_NOT_KEYFILE
)
Message: Incorrect key file for table '%s'; try to repair it
Error: 1035
SQLSTATE: HY000
(ER_OLD_KEYFILE
)
Message: Old key file for table '%s'; repair it!
Error: 1036
SQLSTATE: HY000
(ER_OPEN_AS_READONLY
)
Message: Table '%s' is read only
Error: 1037
SQLSTATE: HY001
(ER_OUTOFMEMORY
)
Message: Out of memory; restart server and try again (needed %d bytes)
Error: 1038
SQLSTATE: HY001
(ER_OUT_OF_SORTMEMORY
)
Message: Out of sort memory, consider increasing server sort buffer size
Error: 1040
SQLSTATE: 08004
(ER_CON_COUNT_ERROR
)
Message: Too many connections
Error: 1041
SQLSTATE: HY000
(ER_OUT_OF_RESOURCES
)
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
Error: 1042
SQLSTATE: 08S01
(ER_BAD_HOST_ERROR
)
Message: Can't get hostname for your address
Error: 1043
SQLSTATE: 08S01
(ER_HANDSHAKE_ERROR
)
Message: Bad handshake
Error: 1044
SQLSTATE: 42000
(ER_DBACCESS_DENIED_ERROR
)
Message: Access denied for user '%s'@'%s' to database '%s'
Error: 1045
SQLSTATE: 28000
(ER_ACCESS_DENIED_ERROR
)
Message: Access denied for user '%s'@'%s' (using password: %s)
Error: 1046
SQLSTATE: 3D000
(ER_NO_DB_ERROR
)
Message: No database selected
Error: 1047
SQLSTATE: 08S01
(ER_UNKNOWN_COM_ERROR
)
Message: Unknown command
Error: 1048
SQLSTATE: 23000
(ER_BAD_NULL_ERROR
)
Message: Column '%s' cannot be null
Error: 1049
SQLSTATE: 42000
(ER_BAD_DB_ERROR
)
Message: Unknown database '%s'
Error: 1050
SQLSTATE: 42S01
(ER_TABLE_EXISTS_ERROR
)
Message: Table '%s' already exists
Error: 1051
SQLSTATE: 42S02
(ER_BAD_TABLE_ERROR
)
Message: Unknown table '%s'
Error: 1052
SQLSTATE: 23000
(ER_NON_UNIQ_ERROR
)
Message: Column '%s' in %s is ambiguous
%s = column name %s = location of column (for example, "field list")
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 mysql>SELECT * FROM t LEFT JOIN t AS t2 ON i = i;
ERROR 1052 (23000): Column 'i' in on clause is ambiguous
Resolution:
Qualify the column with the appropriate table name:
mysql> SELECT t2.i FROM t INNER JOIN t AS t2;
Modify the query to avoid the need for qualification:
mysql> SELECT * FROM t LEFT JOIN t AS t2 USING (i);
Error: 1053
SQLSTATE: 08S01
(ER_SERVER_SHUTDOWN
)
Message: Server shutdown in progress
Error: 1054
SQLSTATE: 42S22
(ER_BAD_FIELD_ERROR
)
Message: Unknown column '%s' in '%s'
Error: 1055
SQLSTATE: 42000
(ER_WRONG_FIELD_WITH_GROUP
)
Message: '%s' isn't in GROUP BY
Error: 1056
SQLSTATE: 42000
(ER_WRONG_GROUP_FIELD
)
Message: Can't group on '%s'
Error: 1057
SQLSTATE: 42000
(ER_WRONG_SUM_SELECT
)
Message: Statement has sum functions and columns in same statement
Error: 1058
SQLSTATE: 21S01
(ER_WRONG_VALUE_COUNT
)
Message: Column count doesn't match value count
Error: 1059
SQLSTATE: 42000
(ER_TOO_LONG_IDENT
)
Message: Identifier name '%s' is too long
Error: 1060
SQLSTATE: 42S21
(ER_DUP_FIELDNAME
)
Message: Duplicate column name '%s'
Error: 1061
SQLSTATE: 42000
(ER_DUP_KEYNAME
)
Message: Duplicate key name '%s'
Error: 1062
SQLSTATE: 23000
(ER_DUP_ENTRY
)
Message: Duplicate entry '%s' for key %d
The message returned with this error uses the format string for
ER_DUP_ENTRY_WITH_KEY_NAME
.
Error: 1063
SQLSTATE: 42000
(ER_WRONG_FIELD_SPEC
)
Message: Incorrect column specifier for column '%s'
Error: 1064
SQLSTATE: 42000
(ER_PARSE_ERROR
)
Message: %s near '%s' at line %d
Error: 1065
SQLSTATE: 42000
(ER_EMPTY_QUERY
)
Message: Query was empty
Error: 1066
SQLSTATE: 42000
(ER_NONUNIQ_TABLE
)
Message: Not unique table/alias: '%s'
Error: 1067
SQLSTATE: 42000
(ER_INVALID_DEFAULT
)
Message: Invalid default value for '%s'
Error: 1068
SQLSTATE: 42000
(ER_MULTIPLE_PRI_KEY
)
Message: Multiple primary key defined
Error: 1069
SQLSTATE: 42000
(ER_TOO_MANY_KEYS
)
Message: Too many keys specified; max %d keys allowed
Error: 1070
SQLSTATE: 42000
(ER_TOO_MANY_KEY_PARTS
)
Message: Too many key parts specified; max %d parts allowed
Error: 1071
SQLSTATE: 42000
(ER_TOO_LONG_KEY
)
Message: Specified key was too long; max key length is %d bytes
Error: 1072
SQLSTATE: 42000
(ER_KEY_COLUMN_DOES_NOT_EXITS
)
Message: Key column '%s' doesn't exist in table
Error: 1073
SQLSTATE: 42000
(ER_BLOB_USED_AS_KEY
)
Message: BLOB column '%s' can't be used in key specification with the used table type
Error: 1074
SQLSTATE: 42000
(ER_TOO_BIG_FIELDLENGTH
)
Message: Column length too big for column '%s' (max = %lu); use BLOB or TEXT instead
Error: 1075
SQLSTATE: 42000
(ER_WRONG_AUTO_KEY
)
Message: Incorrect table definition; there can be only one auto column and it must be defined as a key
Error: 1076
SQLSTATE: HY000
(ER_READY
)
Message: %s: ready for connections. Version: '%s' socket: '%s' port: %d
Error: 1077
SQLSTATE: HY000
(ER_NORMAL_SHUTDOWN
)
Message: %s: Normal shutdown
ER_NORMAL_SHUTDOWN
was removed
after 8.0.4.
Error: 1079
SQLSTATE: HY000
(ER_SHUTDOWN_COMPLETE
)
Message: %s: Shutdown complete
Error: 1080
SQLSTATE: 08S01
(ER_FORCING_CLOSE
)
Message: %s: Forcing close of thread %ld user: '%s'
Error: 1081
SQLSTATE: 08S01
(ER_IPSOCK_ERROR
)
Message: Can't create IP socket
Error: 1082
SQLSTATE: 42S12
(ER_NO_SUCH_INDEX
)
Message: Table '%s' has no index like the one used in CREATE INDEX; recreate the table
Error: 1083
SQLSTATE: 42000
(ER_WRONG_FIELD_TERMINATORS
)
Message: Field separator argument is not what is expected; check the manual
Error: 1084
SQLSTATE: 42000
(ER_BLOBS_AND_NO_TERMINATED
)
Message: You can't use fixed rowlength with BLOBs; please use 'fields terminated by'
Error: 1085
SQLSTATE: HY000
(ER_TEXTFILE_NOT_READABLE
)
Message: The file '%s' must be in the database directory or be readable by all
Error: 1086
SQLSTATE: HY000
(ER_FILE_EXISTS_ERROR
)
Message: File '%s' already exists
Error: 1087
SQLSTATE: HY000
(ER_LOAD_INFO
)
Message: Records: %ld Deleted: %ld Skipped: %ld Warnings: %ld
Error: 1088
SQLSTATE: HY000
(ER_ALTER_INFO
)
Message: Records: %ld Duplicates: %ld
Error: 1089
SQLSTATE: HY000
(ER_WRONG_SUB_KEY
)
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
Error: 1090
SQLSTATE: 42000
(ER_CANT_REMOVE_ALL_FIELDS
)
Message: You can't delete all columns with ALTER TABLE; use DROP TABLE instead
Error: 1091
SQLSTATE: 42000
(ER_CANT_DROP_FIELD_OR_KEY
)
Message: Can't DROP '%s'; check that column/key exists
Error: 1092
SQLSTATE: HY000
(ER_INSERT_INFO
)
Message: Records: %ld Duplicates: %ld Warnings: %ld
Error: 1093
SQLSTATE: HY000
(ER_UPDATE_TABLE_USED
)
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 Section 8.2.2.3, “Optimizing Derived Tables, View References, and Common Table Expressions”.
Error: 1094
SQLSTATE: HY000
(ER_NO_SUCH_THREAD
)
Message: Unknown thread id: %lu
Error: 1095
SQLSTATE: HY000
(ER_KILL_DENIED_ERROR
)
Message: You are not owner of thread %lu
Error: 1096
SQLSTATE: HY000
(ER_NO_TABLES_USED
)
Message: No tables used
Error: 1097
SQLSTATE: HY000
(ER_TOO_BIG_SET
)
Message: Too many strings for column %s and SET
Error: 1098
SQLSTATE: HY000
(ER_NO_UNIQUE_LOGFILE
)
Message: Can't generate a unique log-filename %s.(1-999)
Error: 1099
SQLSTATE: HY000
(ER_TABLE_NOT_LOCKED_FOR_WRITE
)
Message: Table '%s' was locked with a READ lock and can't be updated
Error: 1100
SQLSTATE: HY000
(ER_TABLE_NOT_LOCKED
)
Message: Table '%s' was not locked with LOCK TABLES
Error: 1101
SQLSTATE: 42000
(ER_BLOB_CANT_HAVE_DEFAULT
)
Message: BLOB, TEXT, GEOMETRY or JSON column '%s' can't have a default value
Error: 1102
SQLSTATE: 42000
(ER_WRONG_DB_NAME
)
Message: Incorrect database name '%s'
Error: 1103
SQLSTATE: 42000
(ER_WRONG_TABLE_NAME
)
Message: Incorrect table name '%s'
Error: 1104
SQLSTATE: 42000
(ER_TOO_BIG_SELECT
)
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
Error: 1105
SQLSTATE: HY000
(ER_UNKNOWN_ERROR
)
Message: Unknown error
Error: 1106
SQLSTATE: 42000
(ER_UNKNOWN_PROCEDURE
)
Message: Unknown procedure '%s'
Error: 1107
SQLSTATE: 42000
(ER_WRONG_PARAMCOUNT_TO_PROCEDURE
)
Message: Incorrect parameter count to procedure '%s'
Error: 1108
SQLSTATE: HY000
(ER_WRONG_PARAMETERS_TO_PROCEDURE
)
Message: Incorrect parameters to procedure '%s'
Error: 1109
SQLSTATE: 42S02
(ER_UNKNOWN_TABLE
)
Message: Unknown table '%s' in %s
Error: 1110
SQLSTATE: 42000
(ER_FIELD_SPECIFIED_TWICE
)
Message: Column '%s' specified twice
Error: 1111
SQLSTATE: HY000
(ER_INVALID_GROUP_FUNC_USE
)
Message: Invalid use of group function
Error: 1112
SQLSTATE: 42000
(ER_UNSUPPORTED_EXTENSION
)
Message: Table '%s' uses an extension that doesn't exist in this MySQL version
Error: 1113
SQLSTATE: 42000
(ER_TABLE_MUST_HAVE_COLUMNS
)
Message: A table must have at least 1 column
Error: 1114
SQLSTATE: HY000
(ER_RECORD_FILE_FULL
)
Message: The table '%s' is full
InnoDB
reports this error when the system
tablespace runs out of free space. Reconfigure the system
tablespace to add a new data file.
Error: 1115
SQLSTATE: 42000
(ER_UNKNOWN_CHARACTER_SET
)
Message: Unknown character set: '%s'
Error: 1116
SQLSTATE: HY000
(ER_TOO_MANY_TABLES
)
Message: Too many tables; MySQL can only use %d tables in a join
Error: 1117
SQLSTATE: HY000
(ER_TOO_MANY_FIELDS
)
Message: Too many columns
Error: 1118
SQLSTATE: 42000
(ER_TOO_BIG_ROWSIZE
)
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
Error: 1119
SQLSTATE: HY000
(ER_STACK_OVERRUN
)
Message: Thread stack overrun: Used: %ld of a %ld stack. Use 'mysqld --thread_stack=#' to specify a bigger stack if needed
Error: 1120
SQLSTATE: 42000
(ER_WRONG_OUTER_JOIN
)
Message: Cross dependency found in OUTER JOIN; examine your ON conditions
ER_WRONG_OUTER_JOIN
was removed
after 8.0.0.
Error: 1120
SQLSTATE: 42000
(ER_WRONG_OUTER_JOIN_UNUSED
)
Message: Cross dependency found in OUTER JOIN; examine your ON conditions
ER_WRONG_OUTER_JOIN_UNUSED
was
added in 8.0.1.
Error: 1121
SQLSTATE: 42000
(ER_NULL_COLUMN_IN_INDEX
)
Message: Table handler doesn't support NULL in given index. Please change column '%s' to be NOT NULL or use another handler
Error: 1122
SQLSTATE: HY000
(ER_CANT_FIND_UDF
)
Message: Can't load function '%s'
Error: 1123
SQLSTATE: HY000
(ER_CANT_INITIALIZE_UDF
)
Message: Can't initialize function '%s'; %s
Error: 1124
SQLSTATE: HY000
(ER_UDF_NO_PATHS
)
Message: No paths allowed for shared library
Error: 1125
SQLSTATE: HY000
(ER_UDF_EXISTS
)
Message: Function '%s' already exists
Error: 1126
SQLSTATE: HY000
(ER_CANT_OPEN_LIBRARY
)
Message: Can't open shared library '%s' (errno: %d %s)
Error: 1127
SQLSTATE: HY000
(ER_CANT_FIND_DL_ENTRY
)
Message: Can't find symbol '%s' in library
Error: 1128
SQLSTATE: HY000
(ER_FUNCTION_NOT_DEFINED
)
Message: Function '%s' is not defined
Error: 1129
SQLSTATE: HY000
(ER_HOST_IS_BLOCKED
)
Message: Host '%s' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
Error: 1130
SQLSTATE: HY000
(ER_HOST_NOT_PRIVILEGED
)
Message: Host '%s' is not allowed to connect to this MySQL server
Error: 1131
SQLSTATE: 42000
(ER_PASSWORD_ANONYMOUS_USER
)
Message: You are using MySQL as an anonymous user and anonymous users are not allowed to change passwords
Error: 1132
SQLSTATE: 42000
(ER_PASSWORD_NOT_ALLOWED
)
Message: You must have privileges to update tables in the mysql database to be able to change passwords for others
Error: 1133
SQLSTATE: 42000
(ER_PASSWORD_NO_MATCH
)
Message: Can't find any matching row in the user table
Error: 1134
SQLSTATE: HY000
(ER_UPDATE_INFO
)
Message: Rows matched: %ld Changed: %ld Warnings: %ld
Error: 1135
SQLSTATE: HY000
(ER_CANT_CREATE_THREAD
)
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
Error: 1136
SQLSTATE: 21S01
(ER_WRONG_VALUE_COUNT_ON_ROW
)
Message: Column count doesn't match value count at row %ld
Error: 1137
SQLSTATE: HY000
(ER_CANT_REOPEN_TABLE
)
Message: Can't reopen table: '%s'
Error: 1138
SQLSTATE: 22004
(ER_INVALID_USE_OF_NULL
)
Message: Invalid use of NULL value
Error: 1139
SQLSTATE: 42000
(ER_REGEXP_ERROR
)
Message: Got error '%s' from regexp
Error: 1140
SQLSTATE: 42000
(ER_MIX_OF_GROUP_FUNC_AND_FIELDS
)
Message: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error: 1141
SQLSTATE: 42000
(ER_NONEXISTING_GRANT
)
Message: There is no such grant defined for user '%s' on host '%s'
Error: 1142
SQLSTATE: 42000
(ER_TABLEACCESS_DENIED_ERROR
)
Message: %s command denied to user '%s'@'%s' for table '%s'
Error: 1143
SQLSTATE: 42000
(ER_COLUMNACCESS_DENIED_ERROR
)
Message: %s command denied to user '%s'@'%s' for column '%s' in table '%s'
Error: 1144
SQLSTATE: 42000
(ER_ILLEGAL_GRANT_FOR_TABLE
)
Message: Illegal GRANT/REVOKE command; please consult the manual to see which privileges can be used
Error: 1145
SQLSTATE: 42000
(ER_GRANT_WRONG_HOST_OR_USER
)
Message: The host or user argument to GRANT is too long
Error: 1146
SQLSTATE: 42S02
(ER_NO_SUCH_TABLE
)
Message: Table '%s.%s' doesn't exist
Error: 1147
SQLSTATE: 42000
(ER_NONEXISTING_TABLE_GRANT
)
Message: There is no such grant defined for user '%s' on host '%s' on table '%s'
Error: 1148
SQLSTATE: 42000
(ER_NOT_ALLOWED_COMMAND
)
Message: The used command is not allowed with this MySQL version
Error: 1149
SQLSTATE: 42000
(ER_SYNTAX_ERROR
)
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
Error: 1152
SQLSTATE: 08S01
(ER_ABORTING_CONNECTION
)
Message: Aborted connection %ld to db: '%s' user: '%s' (%s)
Error: 1153
SQLSTATE: 08S01
(ER_NET_PACKET_TOO_LARGE
)
Message: Got a packet bigger than 'max_allowed_packet' bytes
Error: 1154
SQLSTATE: 08S01
(ER_NET_READ_ERROR_FROM_PIPE
)
Message: Got a read error from the connection pipe
Error: 1155
SQLSTATE: 08S01
(ER_NET_FCNTL_ERROR
)
Message: Got an error from fcntl()
Error: 1156
SQLSTATE: 08S01
(ER_NET_PACKETS_OUT_OF_ORDER
)
Message: Got packets out of order
Error: 1157
SQLSTATE: 08S01
(ER_NET_UNCOMPRESS_ERROR
)
Message: Couldn't uncompress communication packet
Error: 1158
SQLSTATE: 08S01
(ER_NET_READ_ERROR
)
Message: Got an error reading communication packets
Error: 1159
SQLSTATE: 08S01
(ER_NET_READ_INTERRUPTED
)
Message: Got timeout reading communication packets
Error: 1160
SQLSTATE: 08S01
(ER_NET_ERROR_ON_WRITE
)
Message: Got an error writing communication packets
Error: 1161
SQLSTATE: 08S01
(ER_NET_WRITE_INTERRUPTED
)
Message: Got timeout writing communication packets
Error: 1162
SQLSTATE: 42000
(ER_TOO_LONG_STRING
)
Message: Result string is longer than 'max_allowed_packet' bytes
Error: 1163
SQLSTATE: 42000
(ER_TABLE_CANT_HANDLE_BLOB
)
Message: The used table type doesn't support BLOB/TEXT columns
Error: 1164
SQLSTATE: 42000
(ER_TABLE_CANT_HANDLE_AUTO_INCREMENT
)
Message: The used table type doesn't support AUTO_INCREMENT columns
Error: 1166
SQLSTATE: 42000
(ER_WRONG_COLUMN_NAME
)
Message: Incorrect column name '%s'
Error: 1167
SQLSTATE: 42000
(ER_WRONG_KEY_COLUMN
)
Message: The used storage engine can't index column '%s'
Error: 1168
SQLSTATE: HY000
(ER_WRONG_MRG_TABLE
)
Message: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
Error: 1169
SQLSTATE: 23000
(ER_DUP_UNIQUE
)
Message: Can't write, because of unique constraint, to table '%s'
Error: 1170
SQLSTATE: 42000
(ER_BLOB_KEY_WITHOUT_LENGTH
)
Message: BLOB/TEXT column '%s' used in key specification without a key length
Error: 1171
SQLSTATE: 42000
(ER_PRIMARY_CANT_HAVE_NULL
)
Message: All parts of a PRIMARY KEY must be NOT NULL; if you need NULL in a key, use UNIQUE instead
Error: 1172
SQLSTATE: 42000
(ER_TOO_MANY_ROWS
)
Message: Result consisted of more than one row
Error: 1173
SQLSTATE: 42000
(ER_REQUIRES_PRIMARY_KEY
)
Message: This table type requires a primary key
Error: 1175
SQLSTATE: HY000
(ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE
)
Message: You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column
Error: 1176
SQLSTATE: 42000
(ER_KEY_DOES_NOT_EXITS
)
Message: Key '%s' doesn't exist in table '%s'
Error: 1177
SQLSTATE: 42000
(ER_CHECK_NO_SUCH_TABLE
)
Message: Can't open table
Error: 1178
SQLSTATE: 42000
(ER_CHECK_NOT_IMPLEMENTED
)
Message: The storage engine for the table doesn't support %s
Error: 1179
SQLSTATE: 25000
(ER_CANT_DO_THIS_DURING_AN_TRANSACTION
)
Message: You are not allowed to execute this command in a transaction
Error: 1180
SQLSTATE: HY000
(ER_ERROR_DURING_COMMIT
)
Message: Got error %d - '%s' during COMMIT
Error: 1181
SQLSTATE: HY000
(ER_ERROR_DURING_ROLLBACK
)
Message: Got error %d - '%s' during ROLLBACK
Error: 1182
SQLSTATE: HY000
(ER_ERROR_DURING_FLUSH_LOGS
)
Message: Got error %d during FLUSH_LOGS
Error: 1184
SQLSTATE: 08S01
(ER_NEW_ABORTING_CONNECTION
)
Message: Aborted connection %u to db: '%s' user: '%s' host: '%s' (%s)
Error: 1188
SQLSTATE: HY000
(ER_MASTER
)
Message: Error from master: '%s'
Error: 1189
SQLSTATE: 08S01
(ER_MASTER_NET_READ
)
Message: Net error reading from master
Error: 1190
SQLSTATE: 08S01
(ER_MASTER_NET_WRITE
)
Message: Net error writing to master
Error: 1191
SQLSTATE: HY000
(ER_FT_MATCHING_KEY_NOT_FOUND
)
Message: Can't find FULLTEXT index matching the column list
Error: 1192
SQLSTATE: HY000
(ER_LOCK_OR_ACTIVE_TRANSACTION
)
Message: Can't execute the given command because you have active locked tables or an active transaction
Error: 1193
SQLSTATE: HY000
(ER_UNKNOWN_SYSTEM_VARIABLE
)
Message: Unknown system variable '%s'
Error: 1194
SQLSTATE: HY000
(ER_CRASHED_ON_USAGE
)
Message: Table '%s' is marked as crashed and should be repaired
Error: 1195
SQLSTATE: HY000
(ER_CRASHED_ON_REPAIR
)
Message: Table '%s' is marked as crashed and last (automatic?) repair failed
Error: 1196
SQLSTATE: HY000
(ER_WARNING_NOT_COMPLETE_ROLLBACK
)
Message: Some non-transactional changed tables couldn't be rolled back
Error: 1197
SQLSTATE: HY000
(ER_TRANS_CACHE_FULL
)
Message: Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage; increase this mysqld variable and try again
Error: 1199
SQLSTATE: HY000
(ER_SLAVE_NOT_RUNNING
)
Message: This operation requires a running slave; configure slave and do START SLAVE
Error: 1200
SQLSTATE: HY000
(ER_BAD_SLAVE
)
Message: The server is not configured as slave; fix in config file or with CHANGE MASTER TO
Error: 1201
SQLSTATE: HY000
(ER_MASTER_INFO
)
Message: Could not initialize master info structure; more error messages can be found in the MySQL error log
Error: 1202
SQLSTATE: HY000
(ER_SLAVE_THREAD
)
Message: Could not create slave thread; check system resources
Error: 1203
SQLSTATE: 42000
(ER_TOO_MANY_USER_CONNECTIONS
)
Message: User %s already has more than 'max_user_connections' active connections
Error: 1204
SQLSTATE: HY000
(ER_SET_CONSTANTS_ONLY
)
Message: You may only use constant expressions with SET
Error: 1205
SQLSTATE: HY000
(ER_LOCK_WAIT_TIMEOUT
)
Message: Lock wait timeout exceeded; try restarting transaction
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.
Error: 1206
SQLSTATE: HY000
(ER_LOCK_TABLE_FULL
)
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.
Error: 1207
SQLSTATE: 25000
(ER_READ_ONLY_TRANSACTION
)
Message: Update locks cannot be acquired during a READ UNCOMMITTED transaction
Error: 1210
SQLSTATE: HY000
(ER_WRONG_ARGUMENTS
)
Message: Incorrect arguments to %s
Error: 1211
SQLSTATE: 42000
(ER_NO_PERMISSION_TO_CREATE_USER
)
Message: '%s'@'%s' is not allowed to create new users
Error: 1213
SQLSTATE: 40001
(ER_LOCK_DEADLOCK
)
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
Section 15.5.5, “Deadlocks in InnoDB” for details.
Error: 1214
SQLSTATE: HY000
(ER_TABLE_CANT_HANDLE_FT
)
Message: The used table type doesn't support FULLTEXT indexes
Error: 1215
SQLSTATE: HY000
(ER_CANNOT_ADD_FOREIGN
)
Message: Cannot add foreign key constraint
Error: 1216
SQLSTATE: 23000
(ER_NO_REFERENCED_ROW
)
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.
Error: 1217
SQLSTATE: 23000
(ER_ROW_IS_REFERENCED
)
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.
Error: 1218
SQLSTATE: 08S01
(ER_CONNECT_TO_MASTER
)
Message: Error connecting to master: %s
Error: 1220
SQLSTATE: HY000
(ER_ERROR_WHEN_EXECUTING_COMMAND
)
Message: Error when executing command %s: %s
Error: 1221
SQLSTATE: HY000
(ER_WRONG_USAGE
)
Message: Incorrect usage of %s and %s
Error: 1222
SQLSTATE: 21000
(ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
)
Message: The used SELECT statements have a different number of columns
Error: 1223
SQLSTATE: HY000
(ER_CANT_UPDATE_WITH_READLOCK
)
Message: Can't execute the query because you have a conflicting read lock
Error: 1224
SQLSTATE: HY000
(ER_MIXING_NOT_ALLOWED
)
Message: Mixing of transactional and non-transactional tables is disabled
Error: 1225
SQLSTATE: HY000
(ER_DUP_ARGUMENT
)
Message: Option '%s' used twice in statement
Error: 1226
SQLSTATE: 42000
(ER_USER_LIMIT_REACHED
)
Message: User '%s' has exceeded the '%s' resource (current value: %ld)
Error: 1227
SQLSTATE: 42000
(ER_SPECIFIC_ACCESS_DENIED_ERROR
)
Message: Access denied; you need (at least one of) the %s privilege(s) for this operation
Error: 1228
SQLSTATE: HY000
(ER_LOCAL_VARIABLE
)
Message: Variable '%s' is a SESSION variable and can't be used with SET GLOBAL
Error: 1229
SQLSTATE: HY000
(ER_GLOBAL_VARIABLE
)
Message: Variable '%s' is a GLOBAL variable and should be set with SET GLOBAL
Error: 1230
SQLSTATE: 42000
(ER_NO_DEFAULT
)
Message: Variable '%s' doesn't have a default value
Error: 1231
SQLSTATE: 42000
(ER_WRONG_VALUE_FOR_VAR
)
Message: Variable '%s' can't be set to the value of '%s'
Error: 1232
SQLSTATE: 42000
(ER_WRONG_TYPE_FOR_VAR
)
Message: Incorrect argument type to variable '%s'
Error: 1233
SQLSTATE: HY000
(ER_VAR_CANT_BE_READ
)
Message: Variable '%s' can only be set, not read
Error: 1234
SQLSTATE: 42000
(ER_CANT_USE_OPTION_HERE
)
Message: Incorrect usage/placement of '%s'
Error: 1235
SQLSTATE: 42000
(ER_NOT_SUPPORTED_YET
)
Message: This version of MySQL doesn't yet support '%s'
Error: 1236
SQLSTATE: HY000
(ER_MASTER_FATAL_ERROR_READING_BINLOG
)
Message: Got fatal error %d from master when reading data from binary log: '%s'
Error: 1237
SQLSTATE: HY000
(ER_SLAVE_IGNORED_TABLE
)
Message: Slave SQL thread ignored the query because of replicate-*-table rules
Error: 1238
SQLSTATE: HY000
(ER_INCORRECT_GLOBAL_LOCAL_VAR
)
Message: Variable '%s' is a %s variable
Error: 1239
SQLSTATE: 42000
(ER_WRONG_FK_DEF
)
Message: Incorrect foreign key definition for '%s': %s
Error: 1240
SQLSTATE: HY000
(ER_KEY_REF_DO_NOT_MATCH_TABLE_REF
)
Message: Key reference and table reference don't match
Error: 1241
SQLSTATE: 21000
(ER_OPERAND_COLUMNS
)
Message: Operand should contain %d column(s)
Error: 1242
SQLSTATE: 21000
(ER_SUBQUERY_NO_1_ROW
)
Message: Subquery returns more than 1 row
Error: 1243
SQLSTATE: HY000
(ER_UNKNOWN_STMT_HANDLER
)
Message: Unknown prepared statement handler (%.*s) given to %s
Error: 1244
SQLSTATE: HY000
(ER_CORRUPT_HELP_DB
)
Message: Help database is corrupt or does not exist
Error: 1246
SQLSTATE: HY000
(ER_AUTO_CONVERT
)
Message: Converting column '%s' from %s to %s
Error: 1247
SQLSTATE: 42S22
(ER_ILLEGAL_REFERENCE
)
Message: Reference '%s' not supported (%s)
Error: 1248
SQLSTATE: 42000
(ER_DERIVED_MUST_HAVE_ALIAS
)
Message: Every derived table must have its own alias
Error: 1249
SQLSTATE: 01000
(ER_SELECT_REDUCED
)
Message: Select %u was reduced during optimization
Error: 1250
SQLSTATE: 42000
(ER_TABLENAME_NOT_ALLOWED_HERE
)
Message: Table '%s' from one of the SELECTs cannot be used in %s
Error: 1251
SQLSTATE: 08004
(ER_NOT_SUPPORTED_AUTH_MODE
)
Message: Client does not support authentication protocol requested by server; consider upgrading MySQL client
Error: 1252
SQLSTATE: 42000
(ER_SPATIAL_CANT_HAVE_NULL
)
Message: All parts of a SPATIAL index must be NOT NULL
Error: 1253
SQLSTATE: 42000
(ER_COLLATION_CHARSET_MISMATCH
)
Message: COLLATION '%s' is not valid for CHARACTER SET '%s'
Error: 1256
SQLSTATE: HY000
(ER_TOO_BIG_FOR_UNCOMPRESS
)
Message: Uncompressed data size too large; the maximum size is %d (probably, length of uncompressed data was corrupted)
Error: 1257
SQLSTATE: HY000
(ER_ZLIB_Z_MEM_ERROR
)
Message: ZLIB: Not enough memory
Error: 1258
SQLSTATE: HY000
(ER_ZLIB_Z_BUF_ERROR
)
Message: ZLIB: Not enough room in the output buffer (probably, length of uncompressed data was corrupted)
Error: 1259
SQLSTATE: HY000
(ER_ZLIB_Z_DATA_ERROR
)
Message: ZLIB: Input data corrupted
Error: 1260
SQLSTATE: HY000
(ER_CUT_VALUE_GROUP_CONCAT
)
Message: Row %u was cut by GROUP_CONCAT()
Error: 1261
SQLSTATE: 01000
(ER_WARN_TOO_FEW_RECORDS
)
Message: Row %ld doesn't contain data for all columns
Error: 1262
SQLSTATE: 01000
(ER_WARN_TOO_MANY_RECORDS
)
Message: Row %ld was truncated; it contained more data than there were input columns
Error: 1263
SQLSTATE: 22004
(ER_WARN_NULL_TO_NOTNULL
)
Message: Column set to default value; NULL supplied to NOT NULL column '%s' at row %ld
Error: 1264
SQLSTATE: 22003
(ER_WARN_DATA_OUT_OF_RANGE
)
Message: Out of range value for column '%s' at row %ld
Error: 1265
SQLSTATE: 01000
(WARN_DATA_TRUNCATED
)
Message: Data truncated for column '%s' at row %ld
Error: 1266
SQLSTATE: HY000
(ER_WARN_USING_OTHER_HANDLER
)
Message: Using storage engine %s for table '%s'
Error: 1267
SQLSTATE: HY000
(ER_CANT_AGGREGATE_2COLLATIONS
)
Message: Illegal mix of collations (%s,%s) and (%s,%s) for operation '%s'
Error: 1269
SQLSTATE: HY000
(ER_REVOKE_GRANTS
)
Message: Can't revoke all privileges for one or more of the requested users
Error: 1270
SQLSTATE: HY000
(ER_CANT_AGGREGATE_3COLLATIONS
)
Message: Illegal mix of collations (%s,%s), (%s,%s), (%s,%s) for operation '%s'
Error: 1271
SQLSTATE: HY000
(ER_CANT_AGGREGATE_NCOLLATIONS
)
Message: Illegal mix of collations for operation '%s'
Error: 1272
SQLSTATE: HY000
(ER_VARIABLE_IS_NOT_STRUCT
)
Message: Variable '%s' is not a variable component (can't be used as XXXX.variable_name)
Error: 1273
SQLSTATE: HY000
(ER_UNKNOWN_COLLATION
)
Message: Unknown collation: '%s'
Error: 1274
SQLSTATE: HY000
(ER_SLAVE_IGNORED_SSL_PARAMS
)
Message: SSL parameters in CHANGE MASTER are ignored because this MySQL slave was compiled without SSL support; they can be used later if MySQL slave with SSL is started
Error: 1275
SQLSTATE: HY000
(ER_SERVER_IS_IN_SECURE_AUTH_MODE
)
Message: Server is running in --secure-auth mode, but '%s'@'%s' has a password in the old format; please change the password to the new format
Error: 1276
SQLSTATE: HY000
(ER_WARN_FIELD_RESOLVED
)
Message: Field or reference '%s%s%s%s%s' of SELECT #%d was resolved in SELECT #%d
Error: 1277
SQLSTATE: HY000
(ER_BAD_SLAVE_UNTIL_COND
)
Message: Incorrect parameter or combination of parameters for START SLAVE UNTIL
Error: 1278
SQLSTATE: HY000
(ER_MISSING_SKIP_SLAVE
)
Message: It is recommended to use --skip-slave-start when doing step-by-step replication with START SLAVE UNTIL; otherwise, you will get problems if you get an unexpected slave's mysqld restart
Error: 1279
SQLSTATE: HY000
(ER_UNTIL_COND_IGNORED
)
Message: SQL thread is not to be started so UNTIL options are ignored
Error: 1280
SQLSTATE: 42000
(ER_WRONG_NAME_FOR_INDEX
)
Message: Incorrect index name '%s'
Error: 1281
SQLSTATE: 42000
(ER_WRONG_NAME_FOR_CATALOG
)
Message: Incorrect catalog name '%s'
Error: 1282
SQLSTATE: HY000
(ER_WARN_QC_RESIZE
)
Message: Query cache failed to set size %lu; new query cache size is %lu
ER_WARN_QC_RESIZE
was removed
after 8.0.2.
Error: 1283
SQLSTATE: HY000
(ER_BAD_FT_COLUMN
)
Message: Column '%s' cannot be part of FULLTEXT index
Error: 1284
SQLSTATE: HY000
(ER_UNKNOWN_KEY_CACHE
)
Message: Unknown key cache '%s'
Error: 1285
SQLSTATE: HY000
(ER_WARN_HOSTNAME_WONT_WORK
)
Message: MySQL is started in --skip-name-resolve mode; you must restart it without this switch for this grant to work
Error: 1286
SQLSTATE: 42000
(ER_UNKNOWN_STORAGE_ENGINE
)
Message: Unknown storage engine '%s'
Error: 1287
SQLSTATE: HY000
(ER_WARN_DEPRECATED_SYNTAX
)
Message: '%s' is deprecated and will be removed in a future release. Please use %s instead
Error: 1288
SQLSTATE: HY000
(ER_NON_UPDATABLE_TABLE
)
Message: The target table %s of the %s is not updatable
Error: 1289
SQLSTATE: HY000
(ER_FEATURE_DISABLED
)
Message: The '%s' feature is disabled; you need MySQL built with '%s' to have it working
Error: 1290
SQLSTATE: HY000
(ER_OPTION_PREVENTS_STATEMENT
)
Message: The MySQL server is running with the %s option so it cannot execute this statement
Error: 1291
SQLSTATE: HY000
(ER_DUPLICATED_VALUE_IN_TYPE
)
Message: Column '%s' has duplicated value '%s' in %s
Error: 1292
SQLSTATE: 22007
(ER_TRUNCATED_WRONG_VALUE
)
Message: Truncated incorrect %s value: '%s'
Error: 1294
SQLSTATE: HY000
(ER_INVALID_ON_UPDATE
)
Message: Invalid ON UPDATE clause for '%s' column
Error: 1295
SQLSTATE: HY000
(ER_UNSUPPORTED_PS
)
Message: This command is not supported in the prepared statement protocol yet
Error: 1296
SQLSTATE: HY000
(ER_GET_ERRMSG
)
Message: Got error %d '%s' from %s
Error: 1297
SQLSTATE: HY000
(ER_GET_TEMPORARY_ERRMSG
)
Message: Got temporary error %d '%s' from %s
Error: 1298
SQLSTATE: HY000
(ER_UNKNOWN_TIME_ZONE
)
Message: Unknown or incorrect time zone: '%s'
Error: 1299
SQLSTATE: HY000
(ER_WARN_INVALID_TIMESTAMP
)
Message: Invalid TIMESTAMP value in column '%s' at row %ld
Error: 1300
SQLSTATE: HY000
(ER_INVALID_CHARACTER_STRING
)
Message: Invalid %s character string: '%s'
Error: 1301
SQLSTATE: HY000
(ER_WARN_ALLOWED_PACKET_OVERFLOWED
)
Message: Result of %s() was larger than max_allowed_packet (%ld) - truncated
Error: 1302
SQLSTATE: HY000
(ER_CONFLICTING_DECLARATIONS
)
Message: Conflicting declarations: '%s%s' and '%s%s'
Error: 1303
SQLSTATE: 2F003
(ER_SP_NO_RECURSIVE_CREATE
)
Message: Can't create a %s from within another stored routine
Error: 1304
SQLSTATE: 42000
(ER_SP_ALREADY_EXISTS
)
Message: %s %s already exists
Error: 1305
SQLSTATE: 42000
(ER_SP_DOES_NOT_EXIST
)
Message: %s %s does not exist
Error: 1306
SQLSTATE: HY000
(ER_SP_DROP_FAILED
)
Message: Failed to DROP %s %s
Error: 1307
SQLSTATE: HY000
(ER_SP_STORE_FAILED
)
Message: Failed to CREATE %s %s
Error: 1308
SQLSTATE: 42000
(ER_SP_LILABEL_MISMATCH
)
Message: %s with no matching label: %s
Error: 1309
SQLSTATE: 42000
(ER_SP_LABEL_REDEFINE
)
Message: Redefining label %s
Error: 1310
SQLSTATE: 42000
(ER_SP_LABEL_MISMATCH
)
Message: End-label %s without match
Error: 1311
SQLSTATE: 01000
(ER_SP_UNINIT_VAR
)
Message: Referring to uninitialized variable %s
Error: 1312
SQLSTATE: 0A000
(ER_SP_BADSELECT
)
Message: PROCEDURE %s can't return a result set in the given context
Error: 1313
SQLSTATE: 42000
(ER_SP_BADRETURN
)
Message: RETURN is only allowed in a FUNCTION
Error: 1314
SQLSTATE: 0A000
(ER_SP_BADSTATEMENT
)
Message: %s is not allowed in stored procedures
Error: 1315
SQLSTATE: 42000
(ER_UPDATE_LOG_DEPRECATED_IGNORED
)
Message: The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been ignored.
Error: 1316
SQLSTATE: 42000
(ER_UPDATE_LOG_DEPRECATED_TRANSLATED
)
Message: The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been translated to SET SQL_LOG_BIN.
Error: 1317
SQLSTATE: 70100
(ER_QUERY_INTERRUPTED
)
Message: Query execution was interrupted
Error: 1318
SQLSTATE: 42000
(ER_SP_WRONG_NO_OF_ARGS
)
Message: Incorrect number of arguments for %s %s; expected %u, got %u
Error: 1319
SQLSTATE: 42000
(ER_SP_COND_MISMATCH
)
Message: Undefined CONDITION: %s
Error: 1320
SQLSTATE: 42000
(ER_SP_NORETURN
)
Message: No RETURN found in FUNCTION %s
Error: 1321
SQLSTATE: 2F005
(ER_SP_NORETURNEND
)
Message: FUNCTION %s ended without RETURN
Error: 1322
SQLSTATE: 42000
(ER_SP_BAD_CURSOR_QUERY
)
Message: Cursor statement must be a SELECT
Error: 1323
SQLSTATE: 42000
(ER_SP_BAD_CURSOR_SELECT
)
Message: Cursor SELECT must not have INTO
Error: 1324
SQLSTATE: 42000
(ER_SP_CURSOR_MISMATCH
)
Message: Undefined CURSOR: %s
Error: 1325
SQLSTATE: 24000
(ER_SP_CURSOR_ALREADY_OPEN
)
Message: Cursor is already open
Error: 1326
SQLSTATE: 24000
(ER_SP_CURSOR_NOT_OPEN
)
Message: Cursor is not open
Error: 1327
SQLSTATE: 42000
(ER_SP_UNDECLARED_VAR
)
Message: Undeclared variable: %s
Error: 1328
SQLSTATE: HY000
(ER_SP_WRONG_NO_OF_FETCH_ARGS
)
Message: Incorrect number of FETCH variables
Error: 1329
SQLSTATE: 02000
(ER_SP_FETCH_NO_DATA
)
Message: No data - zero rows fetched, selected, or processed
Error: 1330
SQLSTATE: 42000
(ER_SP_DUP_PARAM
)
Message: Duplicate parameter: %s
Error: 1331
SQLSTATE: 42000
(ER_SP_DUP_VAR
)
Message: Duplicate variable: %s
Error: 1332
SQLSTATE: 42000
(ER_SP_DUP_COND
)
Message: Duplicate condition: %s
Error: 1333
SQLSTATE: 42000
(ER_SP_DUP_CURS
)
Message: Duplicate cursor: %s
Error: 1334
SQLSTATE: HY000
(ER_SP_CANT_ALTER
)
Message: Failed to ALTER %s %s
Error: 1335
SQLSTATE: 0A000
(ER_SP_SUBSELECT_NYI
)
Message: Subquery value not supported
Error: 1336
SQLSTATE: 0A000
(ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG
)
Message: %s is not allowed in stored function or trigger
Error: 1337
SQLSTATE: 42000
(ER_SP_VARCOND_AFTER_CURSHNDLR
)
Message: Variable or condition declaration after cursor or handler declaration
Error: 1338
SQLSTATE: 42000
(ER_SP_CURSOR_AFTER_HANDLER
)
Message: Cursor declaration after handler declaration
Error: 1339
SQLSTATE: 20000
(ER_SP_CASE_NOT_FOUND
)
Message: Case not found for CASE statement
Error: 1340
SQLSTATE: HY000
(ER_FPARSER_TOO_BIG_FILE
)
Message: Configuration file '%s' is too big
Error: 1341
SQLSTATE: HY000
(ER_FPARSER_BAD_HEADER
)
Message: Malformed file type header in file '%s'
Error: 1342
SQLSTATE: HY000
(ER_FPARSER_EOF_IN_COMMENT
)
Message: Unexpected end of file while parsing comment '%s'
Error: 1343
SQLSTATE: HY000
(ER_FPARSER_ERROR_IN_PARAMETER
)
Message: Error while parsing parameter '%s' (line: '%s')
Error: 1344
SQLSTATE: HY000
(ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER
)
Message: Unexpected end of file while skipping unknown parameter '%s'
Error: 1345
SQLSTATE: HY000
(ER_VIEW_NO_EXPLAIN
)
Message: EXPLAIN/SHOW can not be issued; lacking privileges for underlying table
Error: 1347
SQLSTATE: HY000
(ER_WRONG_OBJECT
)
Message: '%s.%s' is not %s
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.
Error: 1348
SQLSTATE: HY000
(ER_NONUPDATEABLE_COLUMN
)
Message: Column '%s' is not updatable
Error: 1350
SQLSTATE: HY000
(ER_VIEW_SELECT_CLAUSE
)
Message: View's SELECT contains a '%s' clause
Error: 1351
SQLSTATE: HY000
(ER_VIEW_SELECT_VARIABLE
)
Message: View's SELECT contains a variable or parameter
Error: 1352
SQLSTATE: HY000
(ER_VIEW_SELECT_TMPTABLE
)
Message: View's SELECT refers to a temporary table '%s'
Error: 1353
SQLSTATE: HY000
(ER_VIEW_WRONG_LIST
)
Message: In definition of view, derived table or common table expression, SELECT list and column names list have different column counts
Error: 1354
SQLSTATE: HY000
(ER_WARN_VIEW_MERGE
)
Message: View merge algorithm can't be used here for now (assumed undefined algorithm)
Error: 1355
SQLSTATE: HY000
(ER_WARN_VIEW_WITHOUT_KEY
)
Message: View being updated does not have complete key of underlying table in it
Error: 1356
SQLSTATE: HY000
(ER_VIEW_INVALID
)
Message: View '%s.%s' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
Error: 1357
SQLSTATE: HY000
(ER_SP_NO_DROP_SP
)
Message: Can't drop or alter a %s from within another stored routine
Error: 1359
SQLSTATE: HY000
(ER_TRG_ALREADY_EXISTS
)
Message: Trigger already exists
Error: 1360
SQLSTATE: HY000
(ER_TRG_DOES_NOT_EXIST
)
Message: Trigger does not exist
Error: 1361
SQLSTATE: HY000
(ER_TRG_ON_VIEW_OR_TEMP_TABLE
)
Message: Trigger's '%s' is view or temporary table
Error: 1362
SQLSTATE: HY000
(ER_TRG_CANT_CHANGE_ROW
)
Message: Updating of %s row is not allowed in %strigger
Error: 1363
SQLSTATE: HY000
(ER_TRG_NO_SUCH_ROW_IN_TRG
)
Message: There is no %s row in %s trigger
Error: 1364
SQLSTATE: HY000
(ER_NO_DEFAULT_FOR_FIELD
)
Message: Field '%s' doesn't have a default value
Error: 1365
SQLSTATE: 22012
(ER_DIVISION_BY_ZERO
)
Message: Division by 0
Error: 1366
SQLSTATE: HY000
(ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
)
Message: Incorrect %s value: '%s' for column '%s' at row %ld
Error: 1367
SQLSTATE: 22007
(ER_ILLEGAL_VALUE_FOR_TYPE
)
Message: Illegal %s '%s' value found during parsing
Error: 1368
SQLSTATE: HY000
(ER_VIEW_NONUPD_CHECK
)
Message: CHECK OPTION on non-updatable view '%s.%s'
Error: 1369
SQLSTATE: HY000
(ER_VIEW_CHECK_FAILED
)
Message: CHECK OPTION failed '%s.%s'
Error: 1370
SQLSTATE: 42000
(ER_PROCACCESS_DENIED_ERROR
)
Message: %s command denied to user '%s'@'%s' for routine '%s'
Error: 1371
SQLSTATE: HY000
(ER_RELAY_LOG_FAIL
)
Message: Failed purging old relay logs: %s
Error: 1373
SQLSTATE: HY000
(ER_UNKNOWN_TARGET_BINLOG
)
Message: Target log not found in binlog index
Error: 1374
SQLSTATE: HY000
(ER_IO_ERR_LOG_INDEX_READ
)
Message: I/O error reading log index file
Error: 1375
SQLSTATE: HY000
(ER_BINLOG_PURGE_PROHIBITED
)
Message: Server configuration does not permit binlog purge
Error: 1376
SQLSTATE: HY000
(ER_FSEEK_FAIL
)
Message: Failed on fseek()
Error: 1377
SQLSTATE: HY000
(ER_BINLOG_PURGE_FATAL_ERR
)
Message: Fatal error during log purge
Error: 1378
SQLSTATE: HY000
(ER_LOG_IN_USE
)
Message: A purgeable log is in use, will not purge
Error: 1379
SQLSTATE: HY000
(ER_LOG_PURGE_UNKNOWN_ERR
)
Message: Unknown error during log purge
Error: 1380
SQLSTATE: HY000
(ER_RELAY_LOG_INIT
)
Message: Failed initializing relay log position: %s
Error: 1381
SQLSTATE: HY000
(ER_NO_BINARY_LOGGING
)
Message: You are not using binary logging
Error: 1382
SQLSTATE: HY000
(ER_RESERVED_SYNTAX
)
Message: The '%s' syntax is reserved for purposes internal to the MySQL server
Error: 1390
SQLSTATE: HY000
(ER_PS_MANY_PARAM
)
Message: Prepared statement contains too many placeholders
Error: 1391
SQLSTATE: HY000
(ER_KEY_PART_0
)
Message: Key part '%s' length cannot be 0
Error: 1392
SQLSTATE: HY000
(ER_VIEW_CHECKSUM
)
Message: View text checksum failed
Error: 1393
SQLSTATE: HY000
(ER_VIEW_MULTIUPDATE
)
Message: Can not modify more than one base table through a join view '%s.%s'
Error: 1394
SQLSTATE: HY000
(ER_VIEW_NO_INSERT_FIELD_LIST
)
Message: Can not insert into join view '%s.%s' without fields list
Error: 1395
SQLSTATE: HY000
(ER_VIEW_DELETE_MERGE_VIEW
)
Message: Can not delete from join view '%s.%s'
Error: 1396
SQLSTATE: HY000
(ER_CANNOT_USER
)
Message: Operation %s failed for %s
Error: 1397
SQLSTATE: XAE04
(ER_XAER_NOTA
)
Message: XAER_NOTA: Unknown XID
Error: 1398
SQLSTATE: XAE05
(ER_XAER_INVAL
)
Message: XAER_INVAL: Invalid arguments (or unsupported command)
Error: 1399
SQLSTATE: XAE07
(ER_XAER_RMFAIL
)
Message: XAER_RMFAIL: The command cannot be executed when global transaction is in the %s state
Error: 1400
SQLSTATE: XAE09
(ER_XAER_OUTSIDE
)
Message: XAER_OUTSIDE: Some work is done outside global transaction
Error: 1401
SQLSTATE: XAE03
(ER_XAER_RMERR
)
Message: XAER_RMERR: Fatal error occurred in the transaction branch - check your data for consistency
Error: 1402
SQLSTATE: XA100
(ER_XA_RBROLLBACK
)
Message: XA_RBROLLBACK: Transaction branch was rolled back
Error: 1403
SQLSTATE: 42000
(ER_NONEXISTING_PROC_GRANT
)
Message: There is no such grant defined for user '%s' on host '%s' on routine '%s'
Error: 1404
SQLSTATE: HY000
(ER_PROC_AUTO_GRANT_FAIL
)
Message: Failed to grant EXECUTE and ALTER ROUTINE privileges
Error: 1405
SQLSTATE: HY000
(ER_PROC_AUTO_REVOKE_FAIL
)
Message: Failed to revoke all privileges to dropped routine
Error: 1406
SQLSTATE: 22001
(ER_DATA_TOO_LONG
)
Message: Data too long for column '%s' at row %ld
Error: 1407
SQLSTATE: 42000
(ER_SP_BAD_SQLSTATE
)
Message: Bad SQLSTATE: '%s'
Error: 1408
SQLSTATE: HY000
(ER_STARTUP
)
Message: %s: ready for connections. Version: '%s' socket: '%s' port: %d %s
Error: 1409
SQLSTATE: HY000
(ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR
)
Message: Can't load value from file with fixed size rows to variable
Error: 1410
SQLSTATE: 42000
(ER_CANT_CREATE_USER_WITH_GRANT
)
Message: You are not allowed to create a user with GRANT
Error: 1411
SQLSTATE: HY000
(ER_WRONG_VALUE_FOR_TYPE
)
Message: Incorrect %s value: '%s' for function %s
Error: 1412
SQLSTATE: HY000
(ER_TABLE_DEF_CHANGED
)
Message: Table definition has changed, please retry transaction
Error: 1413
SQLSTATE: 42000
(ER_SP_DUP_HANDLER
)
Message: Duplicate handler declared in the same block
Error: 1414
SQLSTATE: 42000
(ER_SP_NOT_VAR_ARG
)
Message: OUT or INOUT argument %d for routine %s is not a variable or NEW pseudo-variable in BEFORE trigger
Error: 1415
SQLSTATE: 0A000
(ER_SP_NO_RETSET
)
Message: Not allowed to return a result set from a %s
Error: 1416
SQLSTATE: 22003
(ER_CANT_CREATE_GEOMETRY_OBJECT
)
Message: Cannot get geometry object from data you send to the GEOMETRY field
Error: 1418
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_ROUTINE
)
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)
Error: 1419
SQLSTATE: HY000
(ER_BINLOG_CREATE_ROUTINE_NEED_SUPER
)
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)
Error: 1421
SQLSTATE: HY000
(ER_STMT_HAS_NO_OPEN_CURSOR
)
Message: The statement (%lu) has no open cursor.
Error: 1422
SQLSTATE: HY000
(ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG
)
Message: Explicit or implicit commit is not allowed in stored function or trigger.
Error: 1423
SQLSTATE: HY000
(ER_NO_DEFAULT_FOR_VIEW_FIELD
)
Message: Field of view '%s.%s' underlying table doesn't have a default value
Error: 1424
SQLSTATE: HY000
(ER_SP_NO_RECURSION
)
Message: Recursive stored functions and triggers are not allowed.
Error: 1425
SQLSTATE: 42000
(ER_TOO_BIG_SCALE
)
Message: Too big scale %d specified for column '%s'. Maximum is %lu.
Error: 1426
SQLSTATE: 42000
(ER_TOO_BIG_PRECISION
)
Message: Too-big precision %d specified for '%s'. Maximum is %lu.
Error: 1427
SQLSTATE: 42000
(ER_M_BIGGER_THAN_D
)
Message: For float(M,D), double(M,D) or decimal(M,D), M must be >= D (column '%s').
Error: 1428
SQLSTATE: HY000
(ER_WRONG_LOCK_OF_SYSTEM_TABLE
)
Message: You can't combine write-locking of system tables with other tables or lock types
Error: 1429
SQLSTATE: HY000
(ER_CONNECT_TO_FOREIGN_DATA_SOURCE
)
Message: Unable to connect to foreign data source: %s
Error: 1430
SQLSTATE: HY000
(ER_QUERY_ON_FOREIGN_DATA_SOURCE
)
Message: There was a problem processing the query on the foreign data source. Data source error: %s
Error: 1431
SQLSTATE: HY000
(ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST
)
Message: The foreign data source you are trying to reference does not exist. Data source error: %s
Error: 1432
SQLSTATE: HY000
(ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE
)
Message: Can't create federated table. The data source connection string '%s' is not in the correct format
Error: 1433
SQLSTATE: HY000
(ER_FOREIGN_DATA_STRING_INVALID
)
Message: The data source connection string '%s' is not in the correct format
Error: 1435
SQLSTATE: HY000
(ER_TRG_IN_WRONG_SCHEMA
)
Message: Trigger in wrong schema
Error: 1436
SQLSTATE: HY000
(ER_STACK_OVERRUN_NEED_MORE
)
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.
Error: 1437
SQLSTATE: 42000
(ER_TOO_LONG_BODY
)
Message: Routine body for '%s' is too long
Error: 1438
SQLSTATE: HY000
(ER_WARN_CANT_DROP_DEFAULT_KEYCACHE
)
Message: Cannot drop default keycache
Error: 1439
SQLSTATE: 42000
(ER_TOO_BIG_DISPLAYWIDTH
)
Message: Display width out of range for column '%s' (max = %lu)
Error: 1440
SQLSTATE: XAE08
(ER_XAER_DUPID
)
Message: XAER_DUPID: The XID already exists
Error: 1441
SQLSTATE: 22008
(ER_DATETIME_FUNCTION_OVERFLOW
)
Message: Datetime function: %s field overflow
Error: 1442
SQLSTATE: HY000
(ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG
)
Message: Can't update table '%s' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.
Error: 1443
SQLSTATE: HY000
(ER_VIEW_PREVENT_UPDATE
)
Message: The definition of table '%s' prevents operation %s on table '%s'.
Error: 1444
SQLSTATE: HY000
(ER_PS_NO_RECURSION
)
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
Error: 1445
SQLSTATE: HY000
(ER_SP_CANT_SET_AUTOCOMMIT
)
Message: Not allowed to set autocommit from a stored function or trigger
Error: 1447
SQLSTATE: HY000
(ER_VIEW_FRM_NO_USER
)
Message: View '%s'.'%s' has no definer information (old table format). Current user is used as definer. Please recreate the view!
Error: 1448
SQLSTATE: HY000
(ER_VIEW_OTHER_USER
)
Message: You need the SUPER privilege for creation view with '%s'@'%s' definer
Error: 1449
SQLSTATE: HY000
(ER_NO_SUCH_USER
)
Message: The user specified as a definer ('%s'@'%s') does not exist
Error: 1450
SQLSTATE: HY000
(ER_FORBID_SCHEMA_CHANGE
)
Message: Changing schema from '%s' to '%s' is not allowed.
Error: 1451
SQLSTATE: 23000
(ER_ROW_IS_REFERENCED_2
)
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.
Error: 1452
SQLSTATE: 23000
(ER_NO_REFERENCED_ROW_2
)
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.
Error: 1453
SQLSTATE: 42000
(ER_SP_BAD_VAR_SHADOW
)
Message: Variable '%s' must be quoted with `...`, or renamed
Error: 1454
SQLSTATE: HY000
(ER_TRG_NO_DEFINER
)
Message: No definer attribute for trigger '%s'.'%s'. It's disallowed to create trigger without definer.
Error: 1455
SQLSTATE: HY000
(ER_OLD_FILE_FORMAT
)
Message: '%s' has an old format, you should re-create the '%s' object(s)
Error: 1456
SQLSTATE: HY000
(ER_SP_RECURSION_LIMIT
)
Message: Recursive limit %d (as set by the max_sp_recursion_depth variable) was exceeded for routine %s
Error: 1458
SQLSTATE: 42000
(ER_SP_WRONG_NAME
)
Message: Incorrect routine name '%s'
Error: 1459
SQLSTATE: HY000
(ER_TABLE_NEEDS_UPGRADE
)
Message: Table upgrade required. Please do "REPAIR TABLE `%s`" or dump/reload to fix it!
Error: 1460
SQLSTATE: 42000
(ER_SP_NO_AGGREGATE
)
Message: AGGREGATE is not supported for stored functions
Error: 1461
SQLSTATE: 42000
(ER_MAX_PREPARED_STMT_COUNT_REACHED
)
Message: Can't create more than max_prepared_stmt_count statements (current value: %lu)
Error: 1462
SQLSTATE: HY000
(ER_VIEW_RECURSIVE
)
Message: `%s`.`%s` contains view recursion
Error: 1463
SQLSTATE: 42000
(ER_NON_GROUPING_FIELD_USED
)
Message: Non-grouping field '%s' is used in %s clause
Error: 1464
SQLSTATE: HY000
(ER_TABLE_CANT_HANDLE_SPKEYS
)
Message: The used table type doesn't support SPATIAL indexes
Error: 1465
SQLSTATE: HY000
(ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA
)
Message: Triggers can not be created on system tables
Error: 1466
SQLSTATE: HY000
(ER_REMOVED_SPACES
)
Message: Leading spaces are removed from name '%s'
Error: 1467
SQLSTATE: HY000
(ER_AUTOINC_READ_FAILED
)
Message: Failed to read auto-increment value from storage engine
Error: 1468
SQLSTATE: HY000
(ER_USERNAME
)
Message: user name
Error: 1469
SQLSTATE: HY000
(ER_HOSTNAME
)
Message: host name
Error: 1470
SQLSTATE: HY000
(ER_WRONG_STRING_LENGTH
)
Message: String '%s' is too long for %s (should be no longer than %d)
Error: 1471
SQLSTATE: HY000
(ER_NON_INSERTABLE_TABLE
)
Message: The target table %s of the %s is not insertable-into
Error: 1472
SQLSTATE: HY000
(ER_ADMIN_WRONG_MRG_TABLE
)
Message: Table '%s' is differently defined or of non-MyISAM type or doesn't exist
Error: 1473
SQLSTATE: HY000
(ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT
)
Message: Too high level of nesting for select
Error: 1474
SQLSTATE: HY000
(ER_NAME_BECOMES_EMPTY
)
Message: Name '%s' has become ''
Error: 1475
SQLSTATE: HY000
(ER_AMBIGUOUS_FIELD_TERM
)
Message: First character of the FIELDS TERMINATED string is ambiguous; please use non-optional and non-empty FIELDS ENCLOSED BY
Error: 1476
SQLSTATE: HY000
(ER_FOREIGN_SERVER_EXISTS
)
Message: The foreign server, %s, you are trying to create already exists.
Error: 1477
SQLSTATE: HY000
(ER_FOREIGN_SERVER_DOESNT_EXIST
)
Message: The foreign server name you are trying to reference does not exist. Data source error: %s
Error: 1478
SQLSTATE: HY000
(ER_ILLEGAL_HA_CREATE_OPTION
)
Message: Table storage engine '%s' does not support the create option '%s'
Error: 1479
SQLSTATE: HY000
(ER_PARTITION_REQUIRES_VALUES_ERROR
)
Message: Syntax error: %s PARTITIONING requires definition of VALUES %s for each partition
Error: 1480
SQLSTATE: HY000
(ER_PARTITION_WRONG_VALUES_ERROR
)
Message: Only %s PARTITIONING can use VALUES %s in partition definition
Error: 1481
SQLSTATE: HY000
(ER_PARTITION_MAXVALUE_ERROR
)
Message: MAXVALUE can only be used in last partition definition
Error: 1484
SQLSTATE: HY000
(ER_PARTITION_WRONG_NO_PART_ERROR
)
Message: Wrong number of partitions defined, mismatch with previous setting
Error: 1485
SQLSTATE: HY000
(ER_PARTITION_WRONG_NO_SUBPART_ERROR
)
Message: Wrong number of subpartitions defined, mismatch with previous setting
Error: 1486
SQLSTATE: HY000
(ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR
)
Message: Constant, random or timezone-dependent expressions in (sub)partitioning function are not allowed
Error: 1488
SQLSTATE: HY000
(ER_FIELD_NOT_FOUND_PART_ERROR
)
Message: Field in list of fields for partition function not found in table
Error: 1490
SQLSTATE: HY000
(ER_INCONSISTENT_PARTITION_INFO_ERROR
)
Message: The partition info in the frm file is not consistent with what can be written into the frm file
Error: 1491
SQLSTATE: HY000
(ER_PARTITION_FUNC_NOT_ALLOWED_ERROR
)
Message: The %s function returns the wrong type
Error: 1492
SQLSTATE: HY000
(ER_PARTITIONS_MUST_BE_DEFINED_ERROR
)
Message: For %s partitions each partition must be defined
Error: 1493
SQLSTATE: HY000
(ER_RANGE_NOT_INCREASING_ERROR
)
Message: VALUES LESS THAN value must be strictly increasing for each partition
Error: 1494
SQLSTATE: HY000
(ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR
)
Message: VALUES value must be of same type as partition function
Error: 1495
SQLSTATE: HY000
(ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR
)
Message: Multiple definition of same constant in list partitioning
Error: 1496
SQLSTATE: HY000
(ER_PARTITION_ENTRY_ERROR
)
Message: Partitioning can not be used stand-alone in query
Error: 1497
SQLSTATE: HY000
(ER_MIX_HANDLER_ERROR
)
Message: The mix of handlers in the partitions is not allowed in this version of MySQL
Error: 1498
SQLSTATE: HY000
(ER_PARTITION_NOT_DEFINED_ERROR
)
Message: For the partitioned engine it is necessary to define all %s
Error: 1499
SQLSTATE: HY000
(ER_TOO_MANY_PARTITIONS_ERROR
)
Message: Too many partitions (including subpartitions) were defined
Error: 1500
SQLSTATE: HY000
(ER_SUBPARTITION_ERROR
)
Message: It is only possible to mix RANGE/LIST partitioning with HASH/KEY partitioning for subpartitioning
Error: 1501
SQLSTATE: HY000
(ER_CANT_CREATE_HANDLER_FILE
)
Message: Failed to create specific handler file
Error: 1502
SQLSTATE: HY000
(ER_BLOB_FIELD_IN_PART_FUNC_ERROR
)
Message: A BLOB field is not allowed in partition function
Error: 1503
SQLSTATE: HY000
(ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF
)
Message: A %s must include all columns in the table's partitioning function
Error: 1504
SQLSTATE: HY000
(ER_NO_PARTS_ERROR
)
Message: Number of %s = 0 is not an allowed value
Error: 1505
SQLSTATE: HY000
(ER_PARTITION_MGMT_ON_NONPARTITIONED
)
Message: Partition management on a not partitioned table is not possible
Error: 1506
SQLSTATE: HY000
(ER_FOREIGN_KEY_ON_PARTITIONED
)
Message: Foreign keys are not yet supported in conjunction with partitioning
Error: 1507
SQLSTATE: HY000
(ER_DROP_PARTITION_NON_EXISTENT
)
Message: Error in list of partitions to %s
Error: 1508
SQLSTATE: HY000
(ER_DROP_LAST_PARTITION
)
Message: Cannot remove all partitions, use DROP TABLE instead
Error: 1509
SQLSTATE: HY000
(ER_COALESCE_ONLY_ON_HASH_PARTITION
)
Message: COALESCE PARTITION can only be used on HASH/KEY partitions
Error: 1510
SQLSTATE: HY000
(ER_REORG_HASH_ONLY_ON_SAME_NO
)
Message: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
Error: 1511
SQLSTATE: HY000
(ER_REORG_NO_PARAM_ERROR
)
Message: REORGANIZE PARTITION without parameters can only be used on auto-partitioned tables using HASH PARTITIONs
Error: 1512
SQLSTATE: HY000
(ER_ONLY_ON_RANGE_LIST_PARTITION
)
Message: %s PARTITION can only be used on RANGE/LIST partitions
Error: 1513
SQLSTATE: HY000
(ER_ADD_PARTITION_SUBPART_ERROR
)
Message: Trying to Add partition(s) with wrong number of subpartitions
Error: 1514
SQLSTATE: HY000
(ER_ADD_PARTITION_NO_NEW_PARTITION
)
Message: At least one partition must be added
Error: 1515
SQLSTATE: HY000
(ER_COALESCE_PARTITION_NO_PARTITION
)
Message: At least one partition must be coalesced
Error: 1516
SQLSTATE: HY000
(ER_REORG_PARTITION_NOT_EXIST
)
Message: More partitions to reorganize than there are partitions
Error: 1517
SQLSTATE: HY000
(ER_SAME_NAME_PARTITION
)
Message: Duplicate partition name %s
Error: 1518
SQLSTATE: HY000
(ER_NO_BINLOG_ERROR
)
Message: It is not allowed to shut off binlog on this command
Error: 1519
SQLSTATE: HY000
(ER_CONSECUTIVE_REORG_PARTITIONS
)
Message: When reorganizing a set of partitions they must be in consecutive order
Error: 1520
SQLSTATE: HY000
(ER_REORG_OUTSIDE_RANGE
)
Message: Reorganize of range partitions cannot change total ranges except for last partition where it can extend the range
Error: 1521
SQLSTATE: HY000
(ER_PARTITION_FUNCTION_FAILURE
)
Message: Partition function not supported in this version for this handler
Error: 1523
SQLSTATE: HY000
(ER_LIMITED_PART_RANGE
)
Message: The %s handler only supports 32 bit integers in VALUES
Error: 1524
SQLSTATE: HY000
(ER_PLUGIN_IS_NOT_LOADED
)
Message: Plugin '%s' is not loaded
Error: 1525
SQLSTATE: HY000
(ER_WRONG_VALUE
)
Message: Incorrect %s value: '%s'
Error: 1526
SQLSTATE: HY000
(ER_NO_PARTITION_FOR_GIVEN_VALUE
)
Message: Table has no partition for value %s
Error: 1527
SQLSTATE: HY000
(ER_FILEGROUP_OPTION_ONLY_ONCE
)
Message: It is not allowed to specify %s more than once
Error: 1528
SQLSTATE: HY000
(ER_CREATE_FILEGROUP_FAILED
)
Message: Failed to create %s
Error: 1529
SQLSTATE: HY000
(ER_DROP_FILEGROUP_FAILED
)
Message: Failed to drop %s
Error: 1530
SQLSTATE: HY000
(ER_TABLESPACE_AUTO_EXTEND_ERROR
)
Message: The handler doesn't support autoextend of tablespaces
Error: 1531
SQLSTATE: HY000
(ER_WRONG_SIZE_NUMBER
)
Message: A size parameter was incorrectly specified, either number or on the form 10M
Error: 1532
SQLSTATE: HY000
(ER_SIZE_OVERFLOW_ERROR
)
Message: The size number was correct but we don't allow the digit part to be more than 2 billion
Error: 1533
SQLSTATE: HY000
(ER_ALTER_FILEGROUP_FAILED
)
Message: Failed to alter: %s
Error: 1534
SQLSTATE: HY000
(ER_BINLOG_ROW_LOGGING_FAILED
)
Message: Writing one row to the row-based binary log failed
Error: 1537
SQLSTATE: HY000
(ER_EVENT_ALREADY_EXISTS
)
Message: Event '%s' already exists
Error: 1539
SQLSTATE: HY000
(ER_EVENT_DOES_NOT_EXIST
)
Message: Unknown event '%s'
Error: 1542
SQLSTATE: HY000
(ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG
)
Message: INTERVAL is either not positive or too big
Error: 1543
SQLSTATE: HY000
(ER_EVENT_ENDS_BEFORE_STARTS
)
Message: ENDS is either invalid or before STARTS
Error: 1544
SQLSTATE: HY000
(ER_EVENT_EXEC_TIME_IN_THE_PAST
)
Message: Event execution time is in the past. Event has been disabled
Error: 1551
SQLSTATE: HY000
(ER_EVENT_SAME_NAME
)
Message: Same old and new event name
Error: 1553
SQLSTATE: HY000
(ER_DROP_INDEX_FK
)
Message: Cannot drop index '%s': needed in a foreign key constraint
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.
Error: 1554
SQLSTATE: HY000
(ER_WARN_DEPRECATED_SYNTAX_WITH_VER
)
Message: The syntax '%s' is deprecated and will be removed in MySQL %s. Please use %s instead
Error: 1556
SQLSTATE: HY000
(ER_CANT_LOCK_LOG_TABLE
)
Message: You can't use locks with log tables.
Error: 1557
SQLSTATE: 23000
(ER_FOREIGN_DUPLICATE_KEY_OLD_UNUSED
)
Message: Upholding foreign key constraints for table '%s', entry '%s', key %d would lead to a duplicate entry
Error: 1558
SQLSTATE: HY000
(ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE
)
Message: Column count of mysql.%s is wrong. Expected %d, found %d. Created with MySQL %d, now running %d. Please use mysql_upgrade to fix this error.
Error: 1559
SQLSTATE: HY000
(ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR
)
Message: Cannot switch out of the row-based binary log format when the session has open temporary tables
ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR
was removed after 8.0.12.
Error: 1560
SQLSTATE: HY000
(ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT
)
Message: Cannot change the binary logging format inside a stored function or trigger
Error: 1562
SQLSTATE: HY000
(ER_PARTITION_NO_TEMPORARY
)
Message: Cannot create temporary table with partitions
Error: 1563
SQLSTATE: HY000
(ER_PARTITION_CONST_DOMAIN_ERROR
)
Message: Partition constant is out of partition function domain
Error: 1564
SQLSTATE: HY000
(ER_PARTITION_FUNCTION_IS_NOT_ALLOWED
)
Message: This partition function is not allowed
Error: 1565
SQLSTATE: HY000
(ER_DDL_LOG_ERROR
)
Message: Error in DDL log
ER_DDL_LOG_ERROR
was removed after
8.0.1.
Error: 1566
SQLSTATE: HY000
(ER_NULL_IN_VALUES_LESS_THAN
)
Message: Not allowed to use NULL value in VALUES LESS THAN
Error: 1567
SQLSTATE: HY000
(ER_WRONG_PARTITION_NAME
)
Message: Incorrect partition name
Error: 1568
SQLSTATE: 25001
(ER_CANT_CHANGE_TX_CHARACTERISTICS
)
Message: Transaction characteristics can't be changed while a transaction is in progress
Error: 1569
SQLSTATE: HY000
(ER_DUP_ENTRY_AUTOINCREMENT_CASE
)
Message: ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry '%s' for key '%s'
Error: 1571
SQLSTATE: HY000
(ER_EVENT_SET_VAR_ERROR
)
Message: Error during starting/stopping of the scheduler. Error code %u
Error: 1572
SQLSTATE: HY000
(ER_PARTITION_MERGE_ERROR
)
Message: Engine cannot be used in partitioned tables
Error: 1575
SQLSTATE: HY000
(ER_BASE64_DECODE_ERROR
)
Message: Decoding of base64 string failed
Error: 1576
SQLSTATE: HY000
(ER_EVENT_RECURSION_FORBIDDEN
)
Message: Recursion of EVENT DDL statements is forbidden when body is present
Error: 1578
SQLSTATE: HY000
(ER_ONLY_INTEGERS_ALLOWED
)
Message: Only integers allowed as number here
Error: 1579
SQLSTATE: HY000
(ER_UNSUPORTED_LOG_ENGINE
)
Message: This storage engine cannot be used for log tables
Error: 1580
SQLSTATE: HY000
(ER_BAD_LOG_STATEMENT
)
Message: You cannot '%s' a log table if logging is enabled
Error: 1581
SQLSTATE: HY000
(ER_CANT_RENAME_LOG_TABLE
)
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'
Error: 1582
SQLSTATE: 42000
(ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT
)
Message: Incorrect parameter count in the call to native function '%s'
Error: 1583
SQLSTATE: 42000
(ER_WRONG_PARAMETERS_TO_NATIVE_FCT
)
Message: Incorrect parameters in the call to native function '%s'
Error: 1584
SQLSTATE: 42000
(ER_WRONG_PARAMETERS_TO_STORED_FCT
)
Message: Incorrect parameters in the call to stored function %s
Error: 1585
SQLSTATE: HY000
(ER_NATIVE_FCT_NAME_COLLISION
)
Message: This function '%s' has the same name as a native function
Error: 1586
SQLSTATE: 23000
(ER_DUP_ENTRY_WITH_KEY_NAME
)
Message: Duplicate entry '%s' for key '%s'
The format string for this error is also used with
ER_DUP_ENTRY
.
Error: 1587
SQLSTATE: HY000
(ER_BINLOG_PURGE_EMFILE
)
Message: Too many files opened, please execute the command again
Error: 1588
SQLSTATE: HY000
(ER_EVENT_CANNOT_CREATE_IN_THE_PAST
)
Message: Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was dropped immediately after creation.
Error: 1589
SQLSTATE: HY000
(ER_EVENT_CANNOT_ALTER_IN_THE_PAST
)
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.
Error: 1591
SQLSTATE: HY000
(ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT
)
Message: Table has no partition for some existing values
Error: 1592
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_STATEMENT
)
Message: Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. %s
Error: 1593
SQLSTATE: HY000
(ER_BINLOG_FATAL_ERROR
)
Message: Fatal error: %s
ER_BINLOG_FATAL_ERROR
was added in
8.0.11.
Error: 1598
SQLSTATE: HY000
(ER_BINLOG_LOGGING_IMPOSSIBLE
)
Message: Binary logging not possible. Message: %s
Error: 1599
SQLSTATE: HY000
(ER_VIEW_NO_CREATION_CTX
)
Message: View `%s`.`%s` has no creation context
Error: 1600
SQLSTATE: HY000
(ER_VIEW_INVALID_CREATION_CTX
)
Message: Creation context of view `%s`.`%s' is invalid
Error: 1602
SQLSTATE: HY000
(ER_TRG_CORRUPTED_FILE
)
Message: Corrupted TRG file for table `%s`.`%s`
Error: 1603
SQLSTATE: HY000
(ER_TRG_NO_CREATION_CTX
)
Message: Triggers for table `%s`.`%s` have no creation context
Error: 1604
SQLSTATE: HY000
(ER_TRG_INVALID_CREATION_CTX
)
Message: Trigger creation context of table `%s`.`%s` is invalid
Error: 1605
SQLSTATE: HY000
(ER_EVENT_INVALID_CREATION_CTX
)
Message: Creation context of event `%s`.`%s` is invalid
Error: 1606
SQLSTATE: HY000
(ER_TRG_CANT_OPEN_TABLE
)
Message: Cannot open table for trigger `%s`.`%s`
Error: 1609
SQLSTATE: HY000
(ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT
)
Message: The BINLOG statement of type `%s` was not preceded by a format description BINLOG statement.
Error: 1610
SQLSTATE: HY000
(ER_SLAVE_CORRUPT_EVENT
)
Message: Corrupted replication event was detected
Error: 1612
SQLSTATE: HY000
(ER_LOG_PURGE_NO_FILE
)
Message: Being purged log %s was not found
Error: 1613
SQLSTATE: XA106
(ER_XA_RBTIMEOUT
)
Message: XA_RBTIMEOUT: Transaction branch was rolled back: took too long
Error: 1614
SQLSTATE: XA102
(ER_XA_RBDEADLOCK
)
Message: XA_RBDEADLOCK: Transaction branch was rolled back: deadlock was detected
Error: 1615
SQLSTATE: HY000
(ER_NEED_REPREPARE
)
Message: Prepared statement needs to be re-prepared
Error: 1617
SQLSTATE: HY000
(WARN_NO_MASTER_INFO
)
Message: The master info structure does not exist
Error: 1618
SQLSTATE: HY000
(WARN_OPTION_IGNORED
)
Message: <%s> option ignored
Error: 1619
SQLSTATE: HY000
(ER_PLUGIN_DELETE_BUILTIN
)
Message: Built-in plugins cannot be deleted
Error: 1620
SQLSTATE: HY000
(WARN_PLUGIN_BUSY
)
Message: Plugin is busy and will be uninstalled on shutdown
Error: 1621
SQLSTATE: HY000
(ER_VARIABLE_IS_READONLY
)
Message: %s variable '%s' is read-only. Use SET %s to assign the value
Error: 1622
SQLSTATE: HY000
(ER_WARN_ENGINE_TRANSACTION_ROLLBACK
)
Message: Storage engine %s does not support rollback for this statement. Transaction rolled back and must be restarted
Error: 1624
SQLSTATE: HY000
(ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE
)
Message: The requested value for the heartbeat period is either negative or exceeds the maximum allowed (%s seconds).
Error: 1625
SQLSTATE: HY000
(ER_NDB_REPLICATION_SCHEMA_ERROR
)
Message: Bad schema for mysql.ndb_replication table. Message: %s
Error: 1626
SQLSTATE: HY000
(ER_CONFLICT_FN_PARSE_ERROR
)
Message: Error in parsing conflict function. Message: %s
Error: 1627
SQLSTATE: HY000
(ER_EXCEPTIONS_WRITE_ERROR
)
Message: Write to exceptions table failed. Message: %s
Error: 1628
SQLSTATE: HY000
(ER_TOO_LONG_TABLE_COMMENT
)
Message: Comment for table '%s' is too long (max = %lu)
Error: 1629
SQLSTATE: HY000
(ER_TOO_LONG_FIELD_COMMENT
)
Message: Comment for field '%s' is too long (max = %lu)
Error: 1630
SQLSTATE: 42000
(ER_FUNC_INEXISTENT_NAME_COLLISION
)
Message: FUNCTION %s does not exist. Check the 'Function Name Parsing and Resolution' section in the Reference Manual
Error: 1631
SQLSTATE: HY000
(ER_DATABASE_NAME
)
Message: Database
Error: 1632
SQLSTATE: HY000
(ER_TABLE_NAME
)
Message: Table
Error: 1633
SQLSTATE: HY000
(ER_PARTITION_NAME
)
Message: Partition
Error: 1634
SQLSTATE: HY000
(ER_SUBPARTITION_NAME
)
Message: Subpartition
Error: 1635
SQLSTATE: HY000
(ER_TEMPORARY_NAME
)
Message: Temporary
Error: 1636
SQLSTATE: HY000
(ER_RENAMED_NAME
)
Message: Renamed
Error: 1637
SQLSTATE: HY000
(ER_TOO_MANY_CONCURRENT_TRXS
)
Message: Too many active concurrent transactions
Error: 1638
SQLSTATE: HY000
(WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED
)
Message: Non-ASCII separator arguments are not fully supported
Error: 1639
SQLSTATE: HY000
(ER_DEBUG_SYNC_TIMEOUT
)
Message: debug sync point wait timed out
Error: 1640
SQLSTATE: HY000
(ER_DEBUG_SYNC_HIT_LIMIT
)
Message: debug sync point hit limit reached
Error: 1641
SQLSTATE: 42000
(ER_DUP_SIGNAL_SET
)
Message: Duplicate condition information item '%s'
Error: 1642
SQLSTATE: 01000
(ER_SIGNAL_WARN
)
Message: Unhandled user-defined warning condition
Error: 1643
SQLSTATE: 02000
(ER_SIGNAL_NOT_FOUND
)
Message: Unhandled user-defined not found condition
Error: 1644
SQLSTATE: HY000
(ER_SIGNAL_EXCEPTION
)
Message: Unhandled user-defined exception condition
Error: 1645
SQLSTATE: 0K000
(ER_RESIGNAL_WITHOUT_ACTIVE_HANDLER
)
Message: RESIGNAL when handler not active
Error: 1646
SQLSTATE: HY000
(ER_SIGNAL_BAD_CONDITION_TYPE
)
Message: SIGNAL/RESIGNAL can only use a CONDITION defined with SQLSTATE
Error: 1647
SQLSTATE: HY000
(WARN_COND_ITEM_TRUNCATED
)
Message: Data truncated for condition item '%s'
Error: 1648
SQLSTATE: HY000
(ER_COND_ITEM_TOO_LONG
)
Message: Data too long for condition item '%s'
Error: 1649
SQLSTATE: HY000
(ER_UNKNOWN_LOCALE
)
Message: Unknown locale: '%s'
Error: 1650
SQLSTATE: HY000
(ER_SLAVE_IGNORE_SERVER_IDS
)
Message: The requested server id %d clashes with the slave startup option --replicate-same-server-id
Error: 1651
SQLSTATE: HY000
(ER_QUERY_CACHE_DISABLED
)
Message: Query cache is disabled; restart the server with query_cache_type=1 to enable it
ER_QUERY_CACHE_DISABLED
was
removed after 8.0.2.
Error: 1652
SQLSTATE: HY000
(ER_SAME_NAME_PARTITION_FIELD
)
Message: Duplicate partition field name '%s'
Error: 1653
SQLSTATE: HY000
(ER_PARTITION_COLUMN_LIST_ERROR
)
Message: Inconsistency in usage of column lists for partitioning
Error: 1654
SQLSTATE: HY000
(ER_WRONG_TYPE_COLUMN_VALUE_ERROR
)
Message: Partition column values of incorrect type
Error: 1655
SQLSTATE: HY000
(ER_TOO_MANY_PARTITION_FUNC_FIELDS_ERROR
)
Message: Too many fields in '%s'
Error: 1656
SQLSTATE: HY000
(ER_MAXVALUE_IN_VALUES_IN
)
Message: Cannot use MAXVALUE as value in VALUES IN
Error: 1657
SQLSTATE: HY000
(ER_TOO_MANY_VALUES_ERROR
)
Message: Cannot have more than one value for this type of %s partitioning
Error: 1658
SQLSTATE: HY000
(ER_ROW_SINGLE_PARTITION_FIELD_ERROR
)
Message: Row expressions in VALUES IN only allowed for multi-field column partitioning
Error: 1659
SQLSTATE: HY000
(ER_FIELD_TYPE_NOT_ALLOWED_AS_PARTITION_FIELD
)
Message: Field '%s' is of a not allowed type for this type of partitioning
Error: 1660
SQLSTATE: HY000
(ER_PARTITION_FIELDS_TOO_LONG
)
Message: The total length of the partitioning fields is too large
Error: 1661
SQLSTATE: HY000
(ER_BINLOG_ROW_ENGINE_AND_STMT_ENGINE
)
Message: Cannot execute statement: impossible to write to binary log since both row-incapable engines and statement-incapable engines are involved.
Error: 1662
SQLSTATE: HY000
(ER_BINLOG_ROW_MODE_AND_STMT_ENGINE
)
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.
Error: 1663
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_AND_STMT_ENGINE
)
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
Error: 1664
SQLSTATE: HY000
(ER_BINLOG_ROW_INJECTION_AND_STMT_ENGINE
)
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.
Error: 1665
SQLSTATE: HY000
(ER_BINLOG_STMT_MODE_AND_ROW_ENGINE
)
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
Error: 1666
SQLSTATE: HY000
(ER_BINLOG_ROW_INJECTION_AND_STMT_MODE
)
Message: Cannot execute statement: impossible to write to binary log since statement is in row format and BINLOG_FORMAT = STATEMENT.
Error: 1667
SQLSTATE: HY000
(ER_BINLOG_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE
)
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.
Error: 1668
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_LIMIT
)
Message: The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted.
Error: 1670
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_SYSTEM_TABLE
)
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 slaves.
Error: 1671
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_AUTOINC_COLUMNS
)
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.
Error: 1672
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_UDF
)
Message: Statement is unsafe because it uses a UDF which may not return the same value on the slave.
Error: 1673
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_SYSTEM_VARIABLE
)
Message: Statement is unsafe because it uses a system variable that may have a different value on the slave.
Error: 1674
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_SYSTEM_FUNCTION
)
Message: Statement is unsafe because it uses a system function that may return a different value on the slave.
Error: 1675
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_NONTRANS_AFTER_TRANS
)
Message: Statement is unsafe because it accesses a non-transactional table after accessing a transactional table within the same transaction.
Error: 1676
SQLSTATE: HY000
(ER_MESSAGE_AND_STATEMENT
)
Message: %s Statement: %s
Error: 1677
SQLSTATE: HY000
(ER_SLAVE_CONVERSION_FAILED
)
Message: Column %d of table '%s.%s' cannot be converted from type '%s' to type '%s'
ER_SLAVE_CONVERSION_FAILED
was
removed after 8.0.4.
Error: 1678
SQLSTATE: HY000
(ER_SLAVE_CANT_CREATE_CONVERSION
)
Message: Can't create conversion table for table '%s.%s'
Error: 1679
SQLSTATE: HY000
(ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_FORMAT
)
Message: Cannot modify @@session.binlog_format inside a transaction
Error: 1680
SQLSTATE: HY000
(ER_PATH_LENGTH
)
Message: The path specified for %s is too long.
Error: 1681
SQLSTATE: HY000
(ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT
)
Message: '%s' is deprecated and will be removed in a future release.
Error: 1682
SQLSTATE: HY000
(ER_WRONG_NATIVE_TABLE_STRUCTURE
)
Message: Native table '%s'.'%s' has the wrong structure
Error: 1683
SQLSTATE: HY000
(ER_WRONG_PERFSCHEMA_USAGE
)
Message: Invalid performance_schema usage.
Error: 1684
SQLSTATE: HY000
(ER_WARN_I_S_SKIPPED_TABLE
)
Message: Table '%s'.'%s' was skipped since its definition is being modified by concurrent DDL statement
Error: 1685
SQLSTATE: HY000
(ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_DIRECT
)
Message: Cannot modify @@session.binlog_direct_non_transactional_updates inside a transaction
Error: 1686
SQLSTATE: HY000
(ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_DIRECT
)
Message: Cannot change the binlog direct flag inside a stored function or trigger
Error: 1687
SQLSTATE: 42000
(ER_SPATIAL_MUST_HAVE_GEOM_COL
)
Message: A SPATIAL index may only contain a geometrical type column
Error: 1688
SQLSTATE: HY000
(ER_TOO_LONG_INDEX_COMMENT
)
Message: Comment for index '%s' is too long (max = %lu)
Error: 1689
SQLSTATE: HY000
(ER_LOCK_ABORTED
)
Message: Wait on a lock was aborted due to a pending exclusive lock
Error: 1690
SQLSTATE: 22003
(ER_DATA_OUT_OF_RANGE
)
Message: %s value is out of range in '%s'
Error: 1691
SQLSTATE: HY000
(ER_WRONG_SPVAR_TYPE_IN_LIMIT
)
Message: A variable of a non-integer based type in LIMIT clause
Error: 1692
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE
)
Message: Mixing self-logging and non-self-logging engines in a statement is unsafe.
Error: 1693
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_MIXED_STATEMENT
)
Message: Statement accesses nontransactional table as well as transactional or temporary table, and writes to any of them.
Error: 1694
SQLSTATE: HY000
(ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_SQL_LOG_BIN
)
Message: Cannot modify @@session.sql_log_bin inside a transaction
Error: 1695
SQLSTATE: HY000
(ER_STORED_FUNCTION_PREVENTS_SWITCH_SQL_LOG_BIN
)
Message: Cannot change the sql_log_bin inside a stored function or trigger
Error: 1696
SQLSTATE: HY000
(ER_FAILED_READ_FROM_PAR_FILE
)
Message: Failed to read from the .par file
Error: 1697
SQLSTATE: HY000
(ER_VALUES_IS_NOT_INT_TYPE_ERROR
)
Message: VALUES value for partition '%s' must have type INT
Error: 1698
SQLSTATE: 28000
(ER_ACCESS_DENIED_NO_PASSWORD_ERROR
)
Message: Access denied for user '%s'@'%s'
Error: 1699
SQLSTATE: HY000
(ER_SET_PASSWORD_AUTH_PLUGIN
)
Message: SET PASSWORD has no significance for users authenticating via plugins
Error: 1701
SQLSTATE: 42000
(ER_TRUNCATE_ILLEGAL_FK
)
Message: Cannot truncate a table referenced in a foreign key constraint (%s)
Error: 1702
SQLSTATE: HY000
(ER_PLUGIN_IS_PERMANENT
)
Message: Plugin '%s' is force_plus_permanent and can not be unloaded
Error: 1703
SQLSTATE: HY000
(ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN
)
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.
Error: 1704
SQLSTATE: HY000
(ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX
)
Message: The requested value for the heartbeat period exceeds the value of `slave_net_timeout' seconds. A sensible value for the period should be less than the timeout.
Error: 1705
SQLSTATE: HY000
(ER_STMT_CACHE_FULL
)
Message: Multi-row statements required more than 'max_binlog_stmt_cache_size' bytes of storage; increase this mysqld variable and try again
Error: 1706
SQLSTATE: HY000
(ER_MULTI_UPDATE_KEY_CONFLICT
)
Message: Primary key/partition key update is not allowed since the table is updated both as '%s' and '%s'.
Error: 1707
SQLSTATE: HY000
(ER_TABLE_NEEDS_REBUILD
)
Message: Table rebuild required. Please do "ALTER TABLE `%s` FORCE" or dump/reload to fix it!
Error: 1708
SQLSTATE: HY000
(WARN_OPTION_BELOW_LIMIT
)
Message: The value of '%s' should be no less than the value of '%s'
Error: 1709
SQLSTATE: HY000
(ER_INDEX_COLUMN_TOO_LONG
)
Message: Index column size too large. The maximum column size is %lu bytes.
Error: 1710
SQLSTATE: HY000
(ER_ERROR_IN_TRIGGER_BODY
)
Message: Trigger '%s' has an error in its body: '%s'
Error: 1711
SQLSTATE: HY000
(ER_ERROR_IN_UNKNOWN_TRIGGER_BODY
)
Message: Unknown trigger has an error in its body: '%s'
Error: 1712
SQLSTATE: HY000
(ER_INDEX_CORRUPT
)
Message: Index %s is corrupted
Error: 1713
SQLSTATE: HY000
(ER_UNDO_RECORD_TOO_BIG
)
Message: Undo log record is too big.
Error: 1714
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_INSERT_IGNORE_SELECT
)
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 master and the slave.
Error: 1715
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_INSERT_SELECT_UPDATE
)
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 master and the slave.
Error: 1716
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_REPLACE_SELECT
)
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 master and the slave.
Error: 1717
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_CREATE_IGNORE_SELECT
)
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 master and the slave.
Error: 1718
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_CREATE_REPLACE_SELECT
)
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 master and the slave.
Error: 1719
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_UPDATE_IGNORE
)
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 master and the slave.
Error: 1720
SQLSTATE: HY000
(ER_PLUGIN_NO_UNINSTALL
)
Message: Plugin '%s' is marked as not dynamically uninstallable. You have to stop the server to uninstall it.
Error: 1721
SQLSTATE: HY000
(ER_PLUGIN_NO_INSTALL
)
Message: Plugin '%s' is marked as not dynamically installable. You have to stop the server to install it.
Error: 1722
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_WRITE_AUTOINC_SELECT
)
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 master and the slave.
Error: 1723
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_CREATE_SELECT_AUTOINC
)
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 master and the slave.
Error: 1724
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_INSERT_TWO_KEYS
)
Message: INSERT... ON DUPLICATE KEY UPDATE on a table with more than one UNIQUE KEY is unsafe
Error: 1725
SQLSTATE: HY000
(ER_TABLE_IN_FK_CHECK
)
Message: Table is being used in foreign key check.
Error: 1726
SQLSTATE: HY000
(ER_UNSUPPORTED_ENGINE
)
Message: Storage engine '%s' does not support system tables. [%s.%s]
Error: 1727
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_AUTOINC_NOT_FIRST
)
Message: INSERT into autoincrement field which is not the first part in the composed primary key is unsafe.
Error: 1728
SQLSTATE: HY000
(ER_CANNOT_LOAD_FROM_TABLE_V2
)
Message: Cannot load from %s.%s. The table is probably corrupted
Error: 1729
SQLSTATE: HY000
(ER_MASTER_DELAY_VALUE_OUT_OF_RANGE
)
Message: The requested value %s for the master delay exceeds the maximum %u
Error: 1730
SQLSTATE: HY000
(ER_ONLY_FD_AND_RBR_EVENTS_ALLOWED_IN_BINLOG_STATEMENT
)
Message: Only Format_description_log_event and row events are allowed in BINLOG statements (but %s was provided)
Error: 1731
SQLSTATE: HY000
(ER_PARTITION_EXCHANGE_DIFFERENT_OPTION
)
Message: Non matching attribute '%s' between partition and table
Error: 1732
SQLSTATE: HY000
(ER_PARTITION_EXCHANGE_PART_TABLE
)
Message: Table to exchange with partition is partitioned: '%s'
Error: 1733
SQLSTATE: HY000
(ER_PARTITION_EXCHANGE_TEMP_TABLE
)
Message: Table to exchange with partition is temporary: '%s'
Error: 1734
SQLSTATE: HY000
(ER_PARTITION_INSTEAD_OF_SUBPARTITION
)
Message: Subpartitioned table, use subpartition instead of partition
Error: 1735
SQLSTATE: HY000
(ER_UNKNOWN_PARTITION
)
Message: Unknown partition '%s' in table '%s'
Error: 1736
SQLSTATE: HY000
(ER_TABLES_DIFFERENT_METADATA
)
Message: Tables have different definitions
Error: 1737
SQLSTATE: HY000
(ER_ROW_DOES_NOT_MATCH_PARTITION
)
Message: Found a row that does not match the partition
Error: 1738
SQLSTATE: HY000
(ER_BINLOG_CACHE_SIZE_GREATER_THAN_MAX
)
Message: Option binlog_cache_size (%lu) is greater than max_binlog_cache_size (%lu); setting binlog_cache_size equal to max_binlog_cache_size.
Error: 1739
SQLSTATE: HY000
(ER_WARN_INDEX_NOT_APPLICABLE
)
Message: Cannot use %s access on index '%s' due to type or collation conversion on field '%s'
Error: 1740
SQLSTATE: HY000
(ER_PARTITION_EXCHANGE_FOREIGN_KEY
)
Message: Table to exchange with partition has foreign key references: '%s'
Error: 1742
SQLSTATE: HY000
(ER_RPL_INFO_DATA_TOO_LONG
)
Message: Data for column '%s' too long
Error: 1745
SQLSTATE: HY000
(ER_BINLOG_STMT_CACHE_SIZE_GREATER_THAN_MAX
)
Message: Option binlog_stmt_cache_size (%lu) is greater than max_binlog_stmt_cache_size (%lu); setting binlog_stmt_cache_size equal to max_binlog_stmt_cache_size.
Error: 1746
SQLSTATE: HY000
(ER_CANT_UPDATE_TABLE_IN_CREATE_TABLE_SELECT
)
Message: Can't update table '%s' while '%s' is being created.
Error: 1747
SQLSTATE: HY000
(ER_PARTITION_CLAUSE_ON_NONPARTITIONED
)
Message: PARTITION () clause on non partitioned table
Error: 1748
SQLSTATE: HY000
(ER_ROW_DOES_NOT_MATCH_GIVEN_PARTITION_SET
)
Message: Found a row not matching the given partition set
Error: 1750
SQLSTATE: HY000
(ER_CHANGE_RPL_INFO_REPOSITORY_FAILURE
)
Message: Failure while changing the type of replication repository: %s.
Error: 1751
SQLSTATE: HY000
(ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_CREATED_TEMP_TABLE
)
Message: The creation of some temporary tables could not be rolled back.
Error: 1752
SQLSTATE: HY000
(ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_DROPPED_TEMP_TABLE
)
Message: Some temporary tables were dropped, but these operations could not be rolled back.
Error: 1753
SQLSTATE: HY000
(ER_MTS_FEATURE_IS_NOT_SUPPORTED
)
Message: %s is not supported in multi-threaded slave mode. %s
Error: 1754
SQLSTATE: HY000
(ER_MTS_UPDATED_DBS_GREATER_MAX
)
Message: The number of modified databases exceeds the maximum %d; the database names will not be included in the replication event metadata.
Error: 1755
SQLSTATE: HY000
(ER_MTS_CANT_PARALLEL
)
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.
Error: 1756
SQLSTATE: HY000
(ER_MTS_INCONSISTENT_DATA
)
Message: %s
Error: 1757
SQLSTATE: HY000
(ER_FULLTEXT_NOT_SUPPORTED_WITH_PARTITIONING
)
Message: FULLTEXT index is not supported for partitioned tables.
Error: 1758
SQLSTATE: 35000
(ER_DA_INVALID_CONDITION_NUMBER
)
Message: Invalid condition number
Error: 1759
SQLSTATE: HY000
(ER_INSECURE_PLAIN_TEXT
)
Message: Sending passwords in plain text without SSL/TLS is extremely insecure.
Error: 1760
SQLSTATE: HY000
(ER_INSECURE_CHANGE_MASTER
)
Message: Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
Error: 1761
SQLSTATE: 23000
(ER_FOREIGN_DUPLICATE_KEY_WITH_CHILD_INFO
)
Message: Foreign key constraint for table '%s', record '%s' would lead to a duplicate entry in table '%s', key '%s'
Error: 1762
SQLSTATE: 23000
(ER_FOREIGN_DUPLICATE_KEY_WITHOUT_CHILD_INFO
)
Message: Foreign key constraint for table '%s', record '%s' would lead to a duplicate entry in a child table
Error: 1763
SQLSTATE: HY000
(ER_SQLTHREAD_WITH_SECURE_SLAVE
)
Message: Setting authentication options is not possible when only the Slave SQL Thread is being started.
Error: 1764
SQLSTATE: HY000
(ER_TABLE_HAS_NO_FT
)
Message: The table does not have FULLTEXT index to support this query
Error: 1765
SQLSTATE: HY000
(ER_VARIABLE_NOT_SETTABLE_IN_SF_OR_TRIGGER
)
Message: The system variable %s cannot be set in stored functions or triggers.
Error: 1766
SQLSTATE: HY000
(ER_VARIABLE_NOT_SETTABLE_IN_TRANSACTION
)
Message: The system variable %s cannot be set when there is an ongoing transaction.
Error: 1769
SQLSTATE: HY000
(ER_SET_STATEMENT_CANNOT_INVOKE_FUNCTION
)
Message: The statement 'SET %s' cannot invoke a stored function.
Error: 1770
SQLSTATE: HY000
(ER_GTID_NEXT_CANT_BE_AUTOMATIC_IF_GTID_NEXT_LIST_IS_NON_NULL
)
Message: The system variable @@SESSION.GTID_NEXT cannot be 'AUTOMATIC' when @@SESSION.GTID_NEXT_LIST is non-NULL.
Error: 1772
SQLSTATE: HY000
(ER_MALFORMED_GTID_SET_SPECIFICATION
)
Message: Malformed GTID set specification '%s'.
Error: 1773
SQLSTATE: HY000
(ER_MALFORMED_GTID_SET_ENCODING
)
Message: Malformed GTID set encoding.
Error: 1774
SQLSTATE: HY000
(ER_MALFORMED_GTID_SPECIFICATION
)
Message: Malformed GTID specification '%s'.
Error: 1775
SQLSTATE: HY000
(ER_GNO_EXHAUSTED
)
Message: Impossible to generate Global Transaction Identifier: the integer component reached the maximal value. Restart the server with a new server_uuid.
Error: 1776
SQLSTATE: HY000
(ER_BAD_SLAVE_AUTO_POSITION
)
Message: Parameters MASTER_LOG_FILE, MASTER_LOG_POS, RELAY_LOG_FILE and RELAY_LOG_POS cannot be set when MASTER_AUTO_POSITION is active.
Error: 1777
SQLSTATE: HY000
(ER_AUTO_POSITION_REQUIRES_GTID_MODE_NOT_OFF
)
Message: CHANGE MASTER TO MASTER_AUTO_POSITION = 1 cannot be executed because @@GLOBAL.GTID_MODE = OFF.
Error: 1778
SQLSTATE: HY000
(ER_CANT_DO_IMPLICIT_COMMIT_IN_TRX_WHEN_GTID_NEXT_IS_SET
)
Message: Cannot execute statements with implicit commit inside a transaction when @@SESSION.GTID_NEXT == 'UUID:NUMBER'.
Error: 1779
SQLSTATE: HY000
(ER_GTID_MODE_ON_REQUIRES_ENFORCE_GTID_CONSISTENCY_ON
)
Message: GTID_MODE = ON requires ENFORCE_GTID_CONSISTENCY = ON.
Error: 1781
SQLSTATE: HY000
(ER_CANT_SET_GTID_NEXT_TO_GTID_WHEN_GTID_MODE_IS_OFF
)
Message: @@SESSION.GTID_NEXT cannot be set to UUID:NUMBER when @@GLOBAL.GTID_MODE = OFF.
Error: 1782
SQLSTATE: HY000
(ER_CANT_SET_GTID_NEXT_TO_ANONYMOUS_WHEN_GTID_MODE_IS_ON
)
Message: @@SESSION.GTID_NEXT cannot be set to ANONYMOUS when @@GLOBAL.GTID_MODE = ON.
Error: 1783
SQLSTATE: HY000
(ER_CANT_SET_GTID_NEXT_LIST_TO_NON_NULL_WHEN_GTID_MODE_IS_OFF
)
Message: @@SESSION.GTID_NEXT_LIST cannot be set to a non-NULL value when @@GLOBAL.GTID_MODE = OFF.
Error: 1785
SQLSTATE: HY000
(ER_GTID_UNSAFE_NON_TRANSACTIONAL_TABLE
)
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.
Error: 1786
SQLSTATE: HY000
(ER_GTID_UNSAFE_CREATE_SELECT
)
Message: Statement violates GTID consistency: CREATE TABLE ... SELECT.
Error: 1787
SQLSTATE: HY000
(ER_GTID_UNSAFE_CREATE_DROP_TEMPORARY_TABLE_IN_TRANSACTION
)
Message: Statement violates GTID consistency: CREATE TEMPORARY TABLE and DROP TEMPORARY TABLE can only be executed outside transactional context. These statements are also not allowed in a function or trigger because functions and triggers are also considered to be multi-statement transactions.
ER_GTID_UNSAFE_CREATE_DROP_TEMPORARY_TABLE_IN_TRANSACTION
was removed after 8.0.12.
Error: 1788
SQLSTATE: HY000
(ER_GTID_MODE_CAN_ONLY_CHANGE_ONE_STEP_AT_A_TIME
)
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.
Error: 1789
SQLSTATE: HY000
(ER_MASTER_HAS_PURGED_REQUIRED_GTIDS
)
Message: Cannot replicate because the master purged required binary logs. Replicate the missing transactions from elsewhere, or provision a new slave from backup. Consider increasing the master's binary log expiration period. To find the missing transactions, see the master's error log or the manual for GTID_SUBTRACT.
Error: 1790
SQLSTATE: HY000
(ER_CANT_SET_GTID_NEXT_WHEN_OWNING_GTID
)
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.
Error: 1791
SQLSTATE: HY000
(ER_UNKNOWN_EXPLAIN_FORMAT
)
Message: Unknown EXPLAIN format name: '%s'
Error: 1792
SQLSTATE: 25006
(ER_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
)
Message: Cannot execute statement in a READ ONLY transaction.
Error: 1793
SQLSTATE: HY000
(ER_TOO_LONG_TABLE_PARTITION_COMMENT
)
Message: Comment for table partition '%s' is too long (max = %lu)
Error: 1794
SQLSTATE: HY000
(ER_SLAVE_CONFIGURATION
)
Message: Slave is not configured or failed to initialize properly. You must at least set --server-id to enable either a master or a slave. Additional error messages can be found in the MySQL error log.
Error: 1795
SQLSTATE: HY000
(ER_INNODB_FT_LIMIT
)
Message: InnoDB presently supports one FULLTEXT index creation at a time
Error: 1796
SQLSTATE: HY000
(ER_INNODB_NO_FT_TEMP_TABLE
)
Message: Cannot create FULLTEXT index on temporary InnoDB table
Error: 1797
SQLSTATE: HY000
(ER_INNODB_FT_WRONG_DOCID_COLUMN
)
Message: Column '%s' is of wrong type for an InnoDB FULLTEXT index
Error: 1798
SQLSTATE: HY000
(ER_INNODB_FT_WRONG_DOCID_INDEX
)
Message: Index '%s' is of wrong type for an InnoDB FULLTEXT index
Error: 1799
SQLSTATE: HY000
(ER_INNODB_ONLINE_LOG_TOO_BIG
)
Message: Creating index '%s' required more than 'innodb_online_alter_log_max_size' bytes of modification log. Please try again.
Error: 1800
SQLSTATE: HY000
(ER_UNKNOWN_ALTER_ALGORITHM
)
Message: Unknown ALGORITHM '%s'
Error: 1801
SQLSTATE: HY000
(ER_UNKNOWN_ALTER_LOCK
)
Message: Unknown LOCK type '%s'
Error: 1802
SQLSTATE: HY000
(ER_MTS_CHANGE_MASTER_CANT_RUN_WITH_GAPS
)
Message: CHANGE MASTER cannot be executed when the slave was stopped with an error or killed in MTS mode. Consider using RESET SLAVE or START SLAVE UNTIL.
Error: 1803
SQLSTATE: HY000
(ER_MTS_RECOVERY_FAILURE
)
Message: Cannot recover after SLAVE errored out in parallel execution mode. Additional error messages can be found in the MySQL error log.
Error: 1804
SQLSTATE: HY000
(ER_MTS_RESET_WORKERS
)
Message: Cannot clean up worker info tables. Additional error messages can be found in the MySQL error log.
Error: 1805
SQLSTATE: HY000
(ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2
)
Message: Column count of %s.%s is wrong. Expected %d, found %d. The table is probably corrupted
Error: 1806
SQLSTATE: HY000
(ER_SLAVE_SILENT_RETRY_TRANSACTION
)
Message: Slave must silently retry current transaction
Error: 1807
SQLSTATE: HY000
(ER_DISCARD_FK_CHECKS_RUNNING
)
Message: There is a foreign key check running on table '%s'. Cannot discard the table.
Error: 1808
SQLSTATE: HY000
(ER_TABLE_SCHEMA_MISMATCH
)
Message: Schema mismatch (%s)
Error: 1809
SQLSTATE: HY000
(ER_TABLE_IN_SYSTEM_TABLESPACE
)
Message: Table '%s' in system tablespace
Error: 1810
SQLSTATE: HY000
(ER_IO_READ_ERROR
)
Message: IO Read error: (%lu, %s) %s
Error: 1811
SQLSTATE: HY000
(ER_IO_WRITE_ERROR
)
Message: IO Write error: (%lu, %s) %s
Error: 1812
SQLSTATE: HY000
(ER_TABLESPACE_MISSING
)
Message: Tablespace is missing for table %s.
Error: 1813
SQLSTATE: HY000
(ER_TABLESPACE_EXISTS
)
Message: Tablespace '%s' exists.
Error: 1814
SQLSTATE: HY000
(ER_TABLESPACE_DISCARDED
)
Message: Tablespace has been discarded for table '%s'
Error: 1815
SQLSTATE: HY000
(ER_INTERNAL_ERROR
)
Message: Internal error: %s
Error: 1816
SQLSTATE: HY000
(ER_INNODB_IMPORT_ERROR
)
Message: ALTER TABLE %s IMPORT TABLESPACE failed with error %lu : '%s'
Error: 1817
SQLSTATE: HY000
(ER_INNODB_INDEX_CORRUPT
)
Message: Index corrupt: %s
Error: 1818
SQLSTATE: HY000
(ER_INVALID_YEAR_COLUMN_LENGTH
)
Message: Supports only YEAR or YEAR(4) column.
Error: 1819
SQLSTATE: HY000
(ER_NOT_VALID_PASSWORD
)
Message: Your password does not satisfy the current policy requirements
Error: 1820
SQLSTATE: HY000
(ER_MUST_CHANGE_PASSWORD
)
Message: You must reset your password using ALTER USER statement before executing this statement.
Error: 1821
SQLSTATE: HY000
(ER_FK_NO_INDEX_CHILD
)
Message: Failed to add the foreign key constraint. Missing index for constraint '%s' in the foreign table '%s'
Error: 1822
SQLSTATE: HY000
(ER_FK_NO_INDEX_PARENT
)
Message: Failed to add the foreign key constraint. Missing index for constraint '%s' in the referenced table '%s'
Error: 1823
SQLSTATE: HY000
(ER_FK_FAIL_ADD_SYSTEM
)
Message: Failed to add the foreign key constraint '%s' to system tables
Error: 1824
SQLSTATE: HY000
(ER_FK_CANNOT_OPEN_PARENT
)
Message: Failed to open the referenced table '%s'
Error: 1825
SQLSTATE: HY000
(ER_FK_INCORRECT_OPTION
)
Message: Failed to add the foreign key constraint on table '%s'. Incorrect options in FOREIGN KEY constraint '%s'
Error: 1826
SQLSTATE: HY000
(ER_FK_DUP_NAME
)
Message: Duplicate foreign key constraint name '%s'
Error: 1827
SQLSTATE: HY000
(ER_PASSWORD_FORMAT
)
Message: The password hash doesn't have the expected format. Check if the correct password algorithm is being used with the PASSWORD() function.
Error: 1828
SQLSTATE: HY000
(ER_FK_COLUMN_CANNOT_DROP
)
Message: Cannot drop column '%s': needed in a foreign key constraint '%s'
Error: 1829
SQLSTATE: HY000
(ER_FK_COLUMN_CANNOT_DROP_CHILD
)
Message: Cannot drop column '%s': needed in a foreign key constraint '%s' of table '%s'
Error: 1830
SQLSTATE: HY000
(ER_FK_COLUMN_NOT_NULL
)
Message: Column '%s' cannot be NOT NULL: needed in a foreign key constraint '%s' SET NULL
Error: 1831
SQLSTATE: HY000
(ER_DUP_INDEX
)
Message: Duplicate index '%s' defined on the table '%s.%s'. This is deprecated and will be disallowed in a future release.
Error: 1832
SQLSTATE: HY000
(ER_FK_COLUMN_CANNOT_CHANGE
)
Message: Cannot change column '%s': used in a foreign key constraint '%s'
Error: 1833
SQLSTATE: HY000
(ER_FK_COLUMN_CANNOT_CHANGE_CHILD
)
Message: Cannot change column '%s': used in a foreign key constraint '%s' of table '%s'
Error: 1835
SQLSTATE: HY000
(ER_MALFORMED_PACKET
)
Message: Malformed communication packet.
Error: 1836
SQLSTATE: HY000
(ER_READ_ONLY_MODE
)
Message: Running in read-only mode
Error: 1837
SQLSTATE: HY000
(ER_GTID_NEXT_TYPE_UNDEFINED_GROUP
)
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'.
ER_GTID_NEXT_TYPE_UNDEFINED_GROUP
was removed after 8.0.4.
Error: 1837
SQLSTATE: HY000
(ER_GTID_NEXT_TYPE_UNDEFINED_GTID
)
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'.
ER_GTID_NEXT_TYPE_UNDEFINED_GTID
was added in 8.0.11.
Error: 1838
SQLSTATE: HY000
(ER_VARIABLE_NOT_SETTABLE_IN_SP
)
Message: The system variable %s cannot be set in stored procedures.
Error: 1840
SQLSTATE: HY000
(ER_CANT_SET_GTID_PURGED_WHEN_GTID_EXECUTED_IS_NOT_EMPTY
)
Message: @@GLOBAL.GTID_PURGED can only be set when @@GLOBAL.GTID_EXECUTED is empty.
Error: 1841
SQLSTATE: HY000
(ER_CANT_SET_GTID_PURGED_WHEN_OWNED_GTIDS_IS_NOT_EMPTY
)
Message: @@GLOBAL.GTID_PURGED can only be set when there are no ongoing transactions (not even in other clients).
Error: 1842
SQLSTATE: HY000
(ER_GTID_PURGED_WAS_CHANGED
)
Message: @@GLOBAL.GTID_PURGED was changed from '%s' to '%s'.
Error: 1843
SQLSTATE: HY000
(ER_GTID_EXECUTED_WAS_CHANGED
)
Message: @@GLOBAL.GTID_EXECUTED was changed from '%s' to '%s'.
Error: 1844
SQLSTATE: HY000
(ER_BINLOG_STMT_MODE_AND_NO_REPL_TABLES
)
Message: Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT, and both replicated and non replicated tables are written to.
Error: 1845
SQLSTATE: 0A000
(ER_ALTER_OPERATION_NOT_SUPPORTED
)
Message: %s is not supported for this operation. Try %s.
Error: 1846
SQLSTATE: 0A000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON
)
Message: %s is not supported. Reason: %s. Try %s.
Error: 1847
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COPY
)
Message: COPY algorithm requires a lock
Error: 1848
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_PARTITION
)
Message: Partition specific operations do not yet support LOCK/ALGORITHM
Error: 1849
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_RENAME
)
Message: Columns participating in a foreign key are renamed
Error: 1850
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE
)
Message: Cannot change column type INPLACE
Error: 1851
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_CHECK
)
Message: Adding foreign keys needs foreign_key_checks=OFF
Error: 1853
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOPK
)
Message: Dropping a primary key is not allowed without also adding a new primary key
Error: 1854
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_AUTOINC
)
Message: Adding an auto-increment column requires a lock
Error: 1855
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_HIDDEN_FTS
)
Message: Cannot replace hidden FTS_DOC_ID with a user-visible one
Error: 1856
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_CHANGE_FTS
)
Message: Cannot drop or rename FTS_DOC_ID
Error: 1857
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FTS
)
Message: Fulltext index creation requires a lock
Error: 1858
SQLSTATE: HY000
(ER_SQL_SLAVE_SKIP_COUNTER_NOT_SETTABLE_IN_GTID_MODE
)
Message: sql_slave_skip_counter can not be set when the server is running with @@GLOBAL.GTID_MODE = ON. Instead, for each transaction that you want to skip, generate an empty transaction with the same GTID as the transaction
Error: 1859
SQLSTATE: 23000
(ER_DUP_UNKNOWN_IN_INDEX
)
Message: Duplicate entry for key '%s'
Error: 1860
SQLSTATE: HY000
(ER_IDENT_CAUSES_TOO_LONG_PATH
)
Message: Long database name and identifier for object resulted in path length exceeding %d characters. Path: '%s'.
Error: 1861
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOT_NULL
)
Message: cannot silently convert NULL values, as required in this SQL_MODE
Error: 1862
SQLSTATE: HY000
(ER_MUST_CHANGE_PASSWORD_LOGIN
)
Message: Your password has expired. To log in you must change it using a client that supports expired passwords.
Error: 1863
SQLSTATE: HY000
(ER_ROW_IN_WRONG_PARTITION
)
Message: Found a row in wrong partition %s
Error: 1864
SQLSTATE: HY000
(ER_MTS_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX
)
Message: Cannot schedule event %s, relay-log name %s, position %s to Worker thread because its size %lu exceeds %lu of slave_pending_jobs_size_max.
Error: 1866
SQLSTATE: HY000
(ER_BINLOG_LOGICAL_CORRUPTION
)
Message: The binary log file '%s' is logically corrupted: %s
Error: 1867
SQLSTATE: HY000
(ER_WARN_PURGE_LOG_IN_USE
)
Message: file %s was not purged because it was being read by %d thread(s), purged only %d out of %d files.
Error: 1868
SQLSTATE: HY000
(ER_WARN_PURGE_LOG_IS_ACTIVE
)
Message: file %s was not purged because it is the active log file.
Error: 1869
SQLSTATE: HY000
(ER_AUTO_INCREMENT_CONFLICT
)
Message: Auto-increment value in UPDATE conflicts with internally generated values
Error: 1870
SQLSTATE: HY000
(WARN_ON_BLOCKHOLE_IN_RBR
)
Message: Row events are not logged for %s statements that modify BLACKHOLE tables in row format. Table(s): '%s'
Error: 1871
SQLSTATE: HY000
(ER_SLAVE_MI_INIT_REPOSITORY
)
Message: Slave failed to initialize master info structure from the repository
Error: 1872
SQLSTATE: HY000
(ER_SLAVE_RLI_INIT_REPOSITORY
)
Message: Slave failed to initialize relay log info structure from the repository
Error: 1873
SQLSTATE: 28000
(ER_ACCESS_DENIED_CHANGE_USER_ERROR
)
Message: Access denied trying to change to user '%s'@'%s' (using password: %s). Disconnecting.
Error: 1874
SQLSTATE: HY000
(ER_INNODB_READ_ONLY
)
Message: InnoDB is in read only mode.
Error: 1875
SQLSTATE: HY000
(ER_STOP_SLAVE_SQL_THREAD_TIMEOUT
)
Message: STOP SLAVE command execution is incomplete: Slave SQL thread got the stop signal, thread is busy, SQL thread will stop once the current task is complete.
Error: 1876
SQLSTATE: HY000
(ER_STOP_SLAVE_IO_THREAD_TIMEOUT
)
Message: STOP SLAVE command execution is incomplete: Slave IO thread got the stop signal, thread is busy, IO thread will stop once the current task is complete.
Error: 1877
SQLSTATE: HY000
(ER_TABLE_CORRUPT
)
Message: Operation cannot be performed. The table '%s.%s' is missing, corrupt or contains bad data.
Error: 1878
SQLSTATE: HY000
(ER_TEMP_FILE_WRITE_FAILURE
)
Message: Temporary file write failure.
Error: 1879
SQLSTATE: HY000
(ER_INNODB_FT_AUX_NOT_HEX_ID
)
Message: Upgrade index name failed, please use create index(alter table) algorithm copy to rebuild index.
Error: 1880
SQLSTATE: HY000
(ER_OLD_TEMPORALS_UPGRADED
)
Message: TIME/TIMESTAMP/DATETIME columns of old format have been upgraded to the new format.
Error: 1881
SQLSTATE: HY000
(ER_INNODB_FORCED_RECOVERY
)
Message: Operation not allowed when innodb_forced_recovery > 0.
Error: 1882
SQLSTATE: HY000
(ER_AES_INVALID_IV
)
Message: The initialization vector supplied to %s is too short. Must be at least %d bytes long
Error: 1883
SQLSTATE: HY000
(ER_PLUGIN_CANNOT_BE_UNINSTALLED
)
Message: Plugin '%s' cannot be uninstalled now. %s
Error: 1884
SQLSTATE: HY000
(ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_GTID_GROUP
)
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'.
ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_GTID_GROUP
was removed after 8.0.4.
Error: 1884
SQLSTATE: HY000
(ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_ASSIGNED_GTID
)
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'.
ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_ASSIGNED_GTID
was added in 8.0.11.
Error: 1885
SQLSTATE: HY000
(ER_SLAVE_HAS_MORE_GTIDS_THAN_MASTER
)
Message: Slave has more GTIDs than the master has, using the master's SERVER_UUID. This may indicate that the end of the binary log was truncated or that the last binary log file was lost, e.g., after a power or disk failure when sync_binlog != 1. The master may or may not have rolled back transactions that were already replicated to the slave. Suggest to replicate any transactions that master has rolled back from slave to master, and/or commit empty transactions on master to account for transactions that have been committed on master but are not included in GTID_EXECUTED.
Error: 1886
SQLSTATE: HY000
(ER_MISSING_KEY
)
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.
ER_MISSING_KEY
was added in
8.0.11.
Error: 3000
SQLSTATE: HY000
(ER_FILE_CORRUPT
)
Message: File %s is corrupted
Error: 3001
SQLSTATE: HY000
(ER_ERROR_ON_MASTER
)
Message: Query partially completed on the master (error on master: %d) and was aborted. There is a chance that your master is inconsistent at this point. If you are sure that your master is ok, run this query manually on the slave and then restart the slave with SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1; START SLAVE;. Query:'%s'
Error: 3003
SQLSTATE: HY000
(ER_STORAGE_ENGINE_NOT_LOADED
)
Message: Storage engine for table '%s'.'%s' is not loaded.
Error: 3004
SQLSTATE: 0Z002
(ER_GET_STACKED_DA_WITHOUT_ACTIVE_HANDLER
)
Message: GET STACKED DIAGNOSTICS when handler not active
Error: 3005
SQLSTATE: HY000
(ER_WARN_LEGACY_SYNTAX_CONVERTED
)
Message: %s is no longer supported. The statement was converted to %s.
Error: 3006
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_FULLTEXT_PLUGIN
)
Message: Statement is unsafe because it uses a fulltext parser plugin which may not return the same value on the slave.
Error: 3007
SQLSTATE: HY000
(ER_CANNOT_DISCARD_TEMPORARY_TABLE
)
Message: Cannot DISCARD/IMPORT tablespace associated with temporary table
Error: 3008
SQLSTATE: HY000
(ER_FK_DEPTH_EXCEEDED
)
Message: Foreign key cascade delete/update exceeds max depth of %d.
Error: 3009
SQLSTATE: HY000
(ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE_V2
)
Message: Column count of %s.%s is wrong. Expected %d, found %d. Created with MySQL %d, now running %d. Please use mysql_upgrade to fix this error.
Error: 3010
SQLSTATE: HY000
(ER_WARN_TRIGGER_DOESNT_HAVE_CREATED
)
Message: Trigger %s.%s.%s does not have CREATED attribute.
Error: 3011
SQLSTATE: HY000
(ER_REFERENCED_TRG_DOES_NOT_EXIST
)
Message: Referenced trigger '%s' for the given action time and event type does not exist.
Error: 3012
SQLSTATE: HY000
(ER_EXPLAIN_NOT_SUPPORTED
)
Message: EXPLAIN FOR CONNECTION command is supported only for SELECT/UPDATE/INSERT/DELETE/REPLACE
Error: 3013
SQLSTATE: HY000
(ER_INVALID_FIELD_SIZE
)
Message: Invalid size for column '%s'.
Error: 3014
SQLSTATE: HY000
(ER_MISSING_HA_CREATE_OPTION
)
Message: Table storage engine '%s' found required create option missing
Error: 3015
SQLSTATE: HY000
(ER_ENGINE_OUT_OF_MEMORY
)
Message: Out of memory in storage engine '%s'.
Error: 3016
SQLSTATE: HY000
(ER_PASSWORD_EXPIRE_ANONYMOUS_USER
)
Message: The password for anonymous user cannot be expired.
Error: 3017
SQLSTATE: HY000
(ER_SLAVE_SQL_THREAD_MUST_STOP
)
Message: This operation cannot be performed with a running slave sql thread; run STOP SLAVE SQL_THREAD first
Error: 3018
SQLSTATE: HY000
(ER_NO_FT_MATERIALIZED_SUBQUERY
)
Message: Cannot create FULLTEXT index on materialized subquery
Error: 3019
SQLSTATE: HY000
(ER_INNODB_UNDO_LOG_FULL
)
Message: Undo Log error: %s
Error: 3020
SQLSTATE: 2201E
(ER_INVALID_ARGUMENT_FOR_LOGARITHM
)
Message: Invalid argument for logarithm
Error: 3021
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_IO_THREAD_MUST_STOP
)
Message: This operation cannot be performed with a running slave io thread; run STOP SLAVE IO_THREAD FOR CHANNEL '%s' first.
Error: 3022
SQLSTATE: HY000
(ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO
)
Message: This operation may not be safe when the slave 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 slave_open_temp_tables = 0.
Error: 3023
SQLSTATE: HY000
(ER_WARN_ONLY_MASTER_LOG_FILE_NO_POS
)
Message: CHANGE MASTER TO with a MASTER_LOG_FILE clause but no MASTER_LOG_POS clause may not be safe. The old position value may not be valid for the new binary log file.
Error: 3024
SQLSTATE: HY000
(ER_QUERY_TIMEOUT
)
Message: Query execution was interrupted, maximum statement execution time exceeded
Error: 3025
SQLSTATE: HY000
(ER_NON_RO_SELECT_DISABLE_TIMER
)
Message: Select is not a read only statement, disabling timer
Error: 3026
SQLSTATE: HY000
(ER_DUP_LIST_ENTRY
)
Message: Duplicate entry '%s'.
Error: 3028
SQLSTATE: HY000
(ER_AGGREGATE_ORDER_FOR_UNION
)
Message: Expression #%u of ORDER BY contains aggregate function and applies to a UNION
Error: 3029
SQLSTATE: HY000
(ER_AGGREGATE_ORDER_NON_AGG_QUERY
)
Message: Expression #%u of ORDER BY contains aggregate function and applies to the result of a non-aggregated query
Error: 3030
SQLSTATE: HY000
(ER_SLAVE_WORKER_STOPPED_PREVIOUS_THD_ERROR
)
Message: Slave worker has stopped after at least one previous worker encountered an error when slave-preserve-commit-order was enabled. To preserve commit order, the last transaction executed by this thread has not been committed. When restarting the slave after fixing any failed threads, you should fix this worker as well.
Error: 3031
SQLSTATE: HY000
(ER_DONT_SUPPORT_SLAVE_PRESERVE_COMMIT_ORDER
)
Message: slave_preserve_commit_order is not supported %s.
Error: 3032
SQLSTATE: HY000
(ER_SERVER_OFFLINE_MODE
)
Message: The server is currently in offline mode
Error: 3033
SQLSTATE: HY000
(ER_GIS_DIFFERENT_SRIDS
)
Message: Binary geometry function %s given two geometries of different srids: %u and %u, which should have been identical.
Geometry values passed as arguments to spatial functions must have the same SRID value.
Error: 3034
SQLSTATE: HY000
(ER_GIS_UNSUPPORTED_ARGUMENT
)
Message: Calling geometry function %s with unsupported types of arguments.
A spatial function was called with a combination of argument types that the function does not support.
Error: 3035
SQLSTATE: HY000
(ER_GIS_UNKNOWN_ERROR
)
Message: Unknown GIS error occurred in function %s.
Error: 3036
SQLSTATE: HY000
(ER_GIS_UNKNOWN_EXCEPTION
)
Message: Unknown exception caught in GIS function %s.
Error: 3037
SQLSTATE: 22023
(ER_GIS_INVALID_DATA
)
Message: Invalid GIS data provided to function %s.
A spatial function was called with an argument not recognized as a valid geometry value.
Error: 3038
SQLSTATE: HY000
(ER_BOOST_GEOMETRY_EMPTY_INPUT_EXCEPTION
)
Message: The geometry has no data in function %s.
Error: 3039
SQLSTATE: HY000
(ER_BOOST_GEOMETRY_CENTROID_EXCEPTION
)
Message: Unable to calculate centroid because geometry is empty in function %s.
Error: 3040
SQLSTATE: HY000
(ER_BOOST_GEOMETRY_OVERLAY_INVALID_INPUT_EXCEPTION
)
Message: Geometry overlay calculation error: geometry data is invalid in function %s.
Error: 3041
SQLSTATE: HY000
(ER_BOOST_GEOMETRY_TURN_INFO_EXCEPTION
)
Message: Geometry turn info calculation error: geometry data is invalid in function %s.
Error: 3042
SQLSTATE: HY000
(ER_BOOST_GEOMETRY_SELF_INTERSECTION_POINT_EXCEPTION
)
Message: Analysis procedures of intersection points interrupted unexpectedly in function %s.
Error: 3043
SQLSTATE: HY000
(ER_BOOST_GEOMETRY_UNKNOWN_EXCEPTION
)
Message: Unknown exception thrown in function %s.
Error: 3044
SQLSTATE: HY000
(ER_STD_BAD_ALLOC_ERROR
)
Message: Memory allocation error: %s in function %s.
Error: 3045
SQLSTATE: HY000
(ER_STD_DOMAIN_ERROR
)
Message: Domain error: %s in function %s.
Error: 3046
SQLSTATE: HY000
(ER_STD_LENGTH_ERROR
)
Message: Length error: %s in function %s.
Error: 3047
SQLSTATE: HY000
(ER_STD_INVALID_ARGUMENT
)
Message: Invalid argument error: %s in function %s.
Error: 3048
SQLSTATE: HY000
(ER_STD_OUT_OF_RANGE_ERROR
)
Message: Out of range error: %s in function %s.
Error: 3049
SQLSTATE: HY000
(ER_STD_OVERFLOW_ERROR
)
Message: Overflow error error: %s in function %s.
Error: 3050
SQLSTATE: HY000
(ER_STD_RANGE_ERROR
)
Message: Range error: %s in function %s.
Error: 3051
SQLSTATE: HY000
(ER_STD_UNDERFLOW_ERROR
)
Message: Underflow error: %s in function %s.
Error: 3052
SQLSTATE: HY000
(ER_STD_LOGIC_ERROR
)
Message: Logic error: %s in function %s.
Error: 3053
SQLSTATE: HY000
(ER_STD_RUNTIME_ERROR
)
Message: Runtime error: %s in function %s.
Error: 3054
SQLSTATE: HY000
(ER_STD_UNKNOWN_EXCEPTION
)
Message: Unknown exception: %s in function %s.
Error: 3055
SQLSTATE: HY000
(ER_GIS_DATA_WRONG_ENDIANESS
)
Message: Geometry byte string must be little endian.
Error: 3056
SQLSTATE: HY000
(ER_CHANGE_MASTER_PASSWORD_LENGTH
)
Message: The password provided for the replication user exceeds the maximum length of 32 characters
Error: 3057
SQLSTATE: 42000
(ER_USER_LOCK_WRONG_NAME
)
Message: Incorrect user-level lock name '%s'.
Error: 3058
SQLSTATE: HY000
(ER_USER_LOCK_DEADLOCK
)
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
.
Error: 3059
SQLSTATE: HY000
(ER_REPLACE_INACCESSIBLE_ROWS
)
Message: REPLACE cannot be executed as it requires deleting rows that are not in the view
Error: 3060
SQLSTATE: HY000
(ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_GIS
)
Message: Do not support online operation on table with GIS index
Error: 3061
SQLSTATE: 42000
(ER_ILLEGAL_USER_VAR
)
Message: User variable name '%s' is illegal
Error: 3062
SQLSTATE: HY000
(ER_GTID_MODE_OFF
)
Message: Cannot %s when GTID_MODE = OFF.
Error: 3064
SQLSTATE: HY000
(ER_INCORRECT_TYPE
)
Message: Incorrect type for argument %s in function %s.
Error: 3065
SQLSTATE: HY000
(ER_FIELD_IN_ORDER_NOT_SELECT
)
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
Error: 3066
SQLSTATE: HY000
(ER_AGGREGATE_IN_ORDER_NOT_SELECT
)
Message: Expression #%u of ORDER BY clause is not in SELECT list, contains aggregate function; this is incompatible with %s
Error: 3067
SQLSTATE: HY000
(ER_INVALID_RPL_WILD_TABLE_FILTER_PATTERN
)
Message: Supplied filter list contains a value which is not in the required format 'db_pattern.table_pattern'
Error: 3068
SQLSTATE: 08S01
(ER_NET_OK_PACKET_TOO_LARGE
)
Message: OK packet too large
Error: 3069
SQLSTATE: HY000
(ER_INVALID_JSON_DATA
)
Message: Invalid JSON data provided to function %s: %s
Error: 3070
SQLSTATE: HY000
(ER_INVALID_GEOJSON_MISSING_MEMBER
)
Message: Invalid GeoJSON data provided to function %s: Missing required member '%s'
Error: 3071
SQLSTATE: HY000
(ER_INVALID_GEOJSON_WRONG_TYPE
)
Message: Invalid GeoJSON data provided to function %s: Member '%s' must be of type '%s'
Error: 3072
SQLSTATE: HY000
(ER_INVALID_GEOJSON_UNSPECIFIED
)
Message: Invalid GeoJSON data provided to function %s
Error: 3073
SQLSTATE: HY000
(ER_DIMENSION_UNSUPPORTED
)
Message: Unsupported number of coordinate dimensions in function %s: Found %u, expected %u
Error: 3074
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_DOES_NOT_EXIST
)
Message: Slave channel '%s' does not exist.
Error: 3076
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_NAME_INVALID_OR_TOO_LONG
)
Message: Couldn't create channel: Channel name is either invalid or too long.
Error: 3077
SQLSTATE: HY000
(ER_SLAVE_NEW_CHANNEL_WRONG_REPOSITORY
)
Message: To have multiple channels, repository cannot be of type FILE; Please check the repository configuration and convert them to TABLE.
Error: 3079
SQLSTATE: HY000
(ER_SLAVE_MULTIPLE_CHANNELS_CMD
)
Message: Multiple channels exist on the slave. Please provide channel name as an argument.
Error: 3080
SQLSTATE: HY000
(ER_SLAVE_MAX_CHANNELS_EXCEEDED
)
Message: Maximum number of replication channels allowed exceeded.
Error: 3081
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_MUST_STOP
)
Message: This operation cannot be performed with running replication threads; run STOP SLAVE FOR CHANNEL '%s' first
Error: 3082
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_NOT_RUNNING
)
Message: This operation requires running replication threads; configure slave and run START SLAVE FOR CHANNEL '%s'
Error: 3083
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_WAS_RUNNING
)
Message: Replication thread(s) for channel '%s' are already runnning.
Error: 3084
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_WAS_NOT_RUNNING
)
Message: Replication thread(s) for channel '%s' are already stopped.
Error: 3085
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_SQL_THREAD_MUST_STOP
)
Message: This operation cannot be performed with a running slave sql thread; run STOP SLAVE SQL_THREAD FOR CHANNEL '%s' first.
Error: 3086
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_SQL_SKIP_COUNTER
)
Message: When sql_slave_skip_counter > 0, it is not allowed to start more than one SQL thread by using 'START SLAVE [SQL_THREAD]'. Value of sql_slave_skip_counter can only be used by one SQL thread at a time. Please use 'START SLAVE [SQL_THREAD] FOR CHANNEL' to start the SQL thread which will use the value of sql_slave_skip_counter.
Error: 3087
SQLSTATE: HY000
(ER_WRONG_FIELD_WITH_GROUP_V2
)
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
Error: 3088
SQLSTATE: HY000
(ER_MIX_OF_GROUP_FUNC_AND_FIELDS_V2
)
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
Error: 3089
SQLSTATE: HY000
(ER_WARN_DEPRECATED_SYSVAR_UPDATE
)
Message: Updating '%s' is deprecated. It will be made read-only in a future release.
Error: 3090
SQLSTATE: HY000
(ER_WARN_DEPRECATED_SQLMODE
)
Message: Changing sql mode '%s' is deprecated. It will be removed in a future release.
Error: 3091
SQLSTATE: HY000
(ER_CANNOT_LOG_PARTIAL_DROP_DATABASE_WITH_GTID
)
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`.
Error: 3092
SQLSTATE: HY000
(ER_GROUP_REPLICATION_CONFIGURATION
)
Message: The server is not configured properly to be an active member of the group. Please see more details on error log.
Error: 3093
SQLSTATE: HY000
(ER_GROUP_REPLICATION_RUNNING
)
Message: The START GROUP_REPLICATION command failed since the group is already running.
Error: 3094
SQLSTATE: HY000
(ER_GROUP_REPLICATION_APPLIER_INIT_ERROR
)
Message: The START GROUP_REPLICATION command failed as the applier module failed to start.
Error: 3095
SQLSTATE: HY000
(ER_GROUP_REPLICATION_STOP_APPLIER_THREAD_TIMEOUT
)
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.
Error: 3096
SQLSTATE: HY000
(ER_GROUP_REPLICATION_COMMUNICATION_LAYER_SESSION_ERROR
)
Message: The START GROUP_REPLICATION command failed as there was an error when initializing the group communication layer.
Error: 3097
SQLSTATE: HY000
(ER_GROUP_REPLICATION_COMMUNICATION_LAYER_JOIN_ERROR
)
Message: The START GROUP_REPLICATION command failed as there was an error when joining the communication group.
Error: 3098
SQLSTATE: HY000
(ER_BEFORE_DML_VALIDATION_ERROR
)
Message: The table does not comply with the requirements by an external plugin.
Error: 3099
SQLSTATE: HY000
(ER_PREVENTS_VARIABLE_WITHOUT_RBR
)
Message: Cannot change the value of variable %s without binary log format as ROW.
transaction_write_set_extraction
option value is set and
binlog_format
is not
ROW
.
Error: 3100
SQLSTATE: HY000
(ER_RUN_HOOK_ERROR
)
Message: Error on observer while running replication hook '%s'.
Error: 3101
SQLSTATE: 40000
(ER_TRANSACTION_ROLLBACK_DURING_COMMIT
)
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 Chapter 18, Group Replication.
Error: 3102
SQLSTATE: HY000
(ER_GENERATED_COLUMN_FUNCTION_IS_NOT_ALLOWED
)
Message: Expression of generated column '%s' contains a disallowed function.
Error: 3103
SQLSTATE: HY000
(ER_UNSUPPORTED_ALTER_INPLACE_ON_VIRTUAL_COLUMN
)
Message: INPLACE ADD or DROP of virtual columns cannot be combined with other ALTER TABLE actions
Error: 3104
SQLSTATE: HY000
(ER_WRONG_FK_OPTION_FOR_GENERATED_COLUMN
)
Message: Cannot define foreign key with %s clause on a generated column.
Error: 3105
SQLSTATE: HY000
(ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN
)
Message: The value specified for generated column '%s' in table '%s' is not allowed.
Error: 3106
SQLSTATE: HY000
(ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN
)
Message: '%s' is not supported for generated columns.
Error: 3107
SQLSTATE: HY000
(ER_GENERATED_COLUMN_NON_PRIOR
)
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.
Error: 3108
SQLSTATE: HY000
(ER_DEPENDENT_BY_GENERATED_COLUMN
)
Message: Column '%s' has a generated column dependency.
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.
Error: 3109
SQLSTATE: HY000
(ER_GENERATED_COLUMN_REF_AUTO_INC
)
Message: Generated column '%s' cannot refer to auto-increment column.
Error: 3110
SQLSTATE: HY000
(ER_FEATURE_NOT_AVAILABLE
)
Message: The '%s' feature is not available; you need to remove '%s' or use MySQL built with '%s'
Error: 3111
SQLSTATE: HY000
(ER_CANT_SET_GTID_MODE
)
Message: SET @@GLOBAL.GTID_MODE = %s is not allowed because %s.
Error: 3112
SQLSTATE: HY000
(ER_CANT_USE_AUTO_POSITION_WITH_GTID_MODE_OFF
)
Message: The replication receiver thread%s cannot start in AUTO_POSITION mode: this server uses @@GLOBAL.GTID_MODE = OFF.
Error: 3116
SQLSTATE: HY000
(ER_CANT_ENFORCE_GTID_CONSISTENCY_WITH_ONGOING_GTID_VIOLATING_TX
)
Message: Cannot set ENFORCE_GTID_CONSISTENCY = ON because there are ongoing transactions that violate GTID consistency.
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
.
Error: 3117
SQLSTATE: HY000
(ER_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_GTID_VIOLATING_TX
)
Message: There are ongoing transactions that violate GTID consistency.
ER_SET_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_GTID_VIOLATING_TRANSACTIONS
was renamed to
ER_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_GTID_VIOLATING_TX
.
Error: 3118
SQLSTATE: HY000
(ER_ACCOUNT_HAS_BEEN_LOCKED
)
Message: Access denied for user '%s'@'%s'. Account is locked.
The account was locked with
CREATE USER ...
ACCOUNT LOCK
or
ALTER USER ... ACCOUNT
LOCK
. An administrator can unlock it with
ALTER USER ... ACCOUNT
UNLOCK
.
Error: 3119
SQLSTATE: 42000
(ER_WRONG_TABLESPACE_NAME
)
Message: Incorrect tablespace name `%s`
Error: 3120
SQLSTATE: HY000
(ER_TABLESPACE_IS_NOT_EMPTY
)
Message: Tablespace `%s` is not empty.
Error: 3121
SQLSTATE: HY000
(ER_WRONG_FILE_NAME
)
Message: Incorrect File Name '%s'.
Error: 3122
SQLSTATE: HY000
(ER_BOOST_GEOMETRY_INCONSISTENT_TURNS_EXCEPTION
)
Message: Inconsistent intersection points.
Error: 3123
SQLSTATE: HY000
(ER_WARN_OPTIMIZER_HINT_SYNTAX_ERROR
)
Message: Optimizer hint syntax error
Error: 3124
SQLSTATE: HY000
(ER_WARN_BAD_MAX_EXECUTION_TIME
)
Message: Unsupported MAX_EXECUTION_TIME
Error: 3125
SQLSTATE: HY000
(ER_WARN_UNSUPPORTED_MAX_EXECUTION_TIME
)
Message: MAX_EXECUTION_TIME hint is supported by top-level standalone SELECT statements only
The MAX_EXECUTION_TIME
optimizer hint is
supported only for SELECT
statements.
Error: 3126
SQLSTATE: HY000
(ER_WARN_CONFLICTING_HINT
)
Message: Hint %s is ignored as conflicting/duplicated
Error: 3127
SQLSTATE: HY000
(ER_WARN_UNKNOWN_QB_NAME
)
Message: Query block name %s is not found for %s hint
Error: 3128
SQLSTATE: HY000
(ER_UNRESOLVED_HINT_NAME
)
Message: Unresolved name %s for %s hint
Error: 3129
SQLSTATE: HY000
(ER_WARN_ON_MODIFYING_GTID_EXECUTED_TABLE
)
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.
Error: 3130
SQLSTATE: HY000
(ER_PLUGGABLE_PROTOCOL_COMMAND_NOT_SUPPORTED
)
Message: Command not supported by pluggable protocols
Error: 3131
SQLSTATE: 42000
(ER_LOCKING_SERVICE_WRONG_NAME
)
Message: Incorrect locking service lock name '%s'.
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.
Error: 3132
SQLSTATE: HY000
(ER_LOCKING_SERVICE_DEADLOCK
)
Message: Deadlock found when trying to get locking service lock; try releasing locks and restarting lock acquisition.
Error: 3133
SQLSTATE: HY000
(ER_LOCKING_SERVICE_TIMEOUT
)
Message: Service lock wait timeout exceeded.
Error: 3134
SQLSTATE: HY000
(ER_GIS_MAX_POINTS_IN_GEOMETRY_OVERFLOWED
)
Message: Parameter %s exceeds the maximum number of points in a geometry (%lu) in function %s.
Error: 3135
SQLSTATE: HY000
(ER_SQL_MODE_MERGED
)
Message: 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release.
Error: 3136
SQLSTATE: HY000
(ER_VTOKEN_PLUGIN_TOKEN_MISMATCH
)
Message: Version token mismatch for %.*s. Correct value %.*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
Section 5.6.5, “Version Tokens”.
Error: 3137
SQLSTATE: HY000
(ER_VTOKEN_PLUGIN_TOKEN_NOT_FOUND
)
Message: Version token %.*s not found.
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 Section 5.6.5, “Version Tokens”.
Error: 3138
SQLSTATE: HY000
(ER_CANT_SET_VARIABLE_WHEN_OWNING_GTID
)
Message: Variable %s cannot be changed by a client that owns a GTID. The client owns %s. Ownership is released on COMMIT or ROLLBACK.
Error: 3139
SQLSTATE: HY000
(ER_SLAVE_CHANNEL_OPERATION_NOT_ALLOWED
)
Message: %s cannot be performed on channel '%s'.
Error: 3140
SQLSTATE: 22032
(ER_INVALID_JSON_TEXT
)
Message: Invalid JSON text: "%s" at position %u in value for column '%s'.
Error: 3141
SQLSTATE: 22032
(ER_INVALID_JSON_TEXT_IN_PARAM
)
Message: Invalid JSON text in argument %u to function %s: "%s" at position %u.%s
Error: 3142
SQLSTATE: HY000
(ER_INVALID_JSON_BINARY_DATA
)
Message: The JSON binary value contains invalid data.
Error: 3143
SQLSTATE: 42000
(ER_INVALID_JSON_PATH
)
Message: Invalid JSON path expression. The error is around character position %u.%s
Error: 3144
SQLSTATE: 22032
(ER_INVALID_JSON_CHARSET
)
Message: Cannot create a JSON value from a string with CHARACTER SET '%s'.
Error: 3145
SQLSTATE: 22032
(ER_INVALID_JSON_CHARSET_IN_FUNCTION
)
Message: Invalid JSON character data provided to function %s: '%s'; utf8 is required.
Error: 3146
SQLSTATE: 22032
(ER_INVALID_TYPE_FOR_JSON
)
Message: Invalid data type for JSON data in argument %u to function %s; a JSON string or JSON type is required.
Error: 3147
SQLSTATE: 22032
(ER_INVALID_CAST_TO_JSON
)
Message: Cannot CAST value to JSON.
Error: 3148
SQLSTATE: 42000
(ER_INVALID_JSON_PATH_CHARSET
)
Message: A path expression must be encoded in the utf8 character set. The path expression '%s' is encoded in character set '%s'.
Error: 3149
SQLSTATE: 42000
(ER_INVALID_JSON_PATH_WILDCARD
)
Message: In this situation, path expressions may not contain the * and ** tokens or an array range.
Error: 3150
SQLSTATE: 22032
(ER_JSON_VALUE_TOO_BIG
)
Message: The JSON value is too big to be stored in a JSON column.
Error: 3151
SQLSTATE: 22032
(ER_JSON_KEY_TOO_BIG
)
Message: The JSON object contains a key name that is too long.
Error: 3152
SQLSTATE: 42000
(ER_JSON_USED_AS_KEY
)
Message: JSON column '%s' supports indexing only via generated columns on a specified JSON path.
Error: 3153
SQLSTATE: 42000
(ER_JSON_VACUOUS_PATH
)
Message: The path expression '$' is not allowed in this context.
Error: 3154
SQLSTATE: 42000
(ER_JSON_BAD_ONE_OR_ALL_ARG
)
Message: The oneOrAll argument to %s may take these values: 'one' or 'all'.
Error: 3155
SQLSTATE: 22003
(ER_NUMERIC_JSON_VALUE_OUT_OF_RANGE
)
Message: Out of range JSON value for CAST to %s%s from column %s at row %ld
Error: 3156
SQLSTATE: 22018
(ER_INVALID_JSON_VALUE_FOR_CAST
)
Message: Invalid JSON value for CAST to %s%s from column %s at row %ld
Error: 3157
SQLSTATE: 22032
(ER_JSON_DOCUMENT_TOO_DEEP
)
Message: The JSON document exceeds the maximum depth.
Error: 3158
SQLSTATE: 22032
(ER_JSON_DOCUMENT_NULL_KEY
)
Message: JSON documents may not contain NULL member names.
Error: 3159
SQLSTATE: HY000
(ER_SECURE_TRANSPORT_REQUIRED
)
Message: Connections using insecure transport are prohibited while --require_secure_transport=ON.
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.
Error: 3160
SQLSTATE: HY000
(ER_NO_SECURE_TRANSPORTS_CONFIGURED
)
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.
Error: 3161
SQLSTATE: HY000
(ER_DISABLED_STORAGE_ENGINE
)
Message: Storage engine %s is disabled (Table creation is disallowed).
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.
Error: 3162
SQLSTATE: HY000
(ER_USER_DOES_NOT_EXIST
)
Message: Authorization ID %s does not exist.
Error: 3163
SQLSTATE: HY000
(ER_USER_ALREADY_EXISTS
)
Message: Authorization ID %s already exists.
Error: 3164
SQLSTATE: HY000
(ER_AUDIT_API_ABORT
)
Message: Aborted by Audit API ('%s';%d).
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.
Error: 3165
SQLSTATE: 42000
(ER_INVALID_JSON_PATH_ARRAY_CELL
)
Message: A path expression is not a path to a cell in an array.
Error: 3166
SQLSTATE: HY000
(ER_BUFPOOL_RESIZE_INPROGRESS
)
Message: Another buffer pool resize is already in progress.
Error: 3167
SQLSTATE: HY000
(ER_FEATURE_DISABLED_SEE_DOC
)
Message: The '%s' feature is disabled; see the documentation for '%s'
Error: 3168
SQLSTATE: HY000
(ER_SERVER_ISNT_AVAILABLE
)
Message: Server isn't available
Error: 3169
SQLSTATE: HY000
(ER_SESSION_WAS_KILLED
)
Message: Session was killed
Error: 3170
SQLSTATE: HY000
(ER_CAPACITY_EXCEEDED
)
Message: Memory capacity of %llu bytes for '%s' exceeded. %s
Error: 3171
SQLSTATE: HY000
(ER_CAPACITY_EXCEEDED_IN_RANGE_OPTIMIZER
)
Message: Range optimization was not done for this query.
Error: 3173
SQLSTATE: HY000
(ER_CANT_WAIT_FOR_EXECUTED_GTID_SET_WHILE_OWNING_A_GTID
)
Message: The client holds ownership of the GTID %s. Therefore, WAIT_FOR_EXECUTED_GTID_SET cannot wait for this GTID.
Error: 3174
SQLSTATE: HY000
(ER_CANNOT_ADD_FOREIGN_BASE_COL_VIRTUAL
)
Message: Cannot add foreign key on the base column of indexed virtual column.
Error: 3175
SQLSTATE: HY000
(ER_CANNOT_CREATE_VIRTUAL_INDEX_CONSTRAINT
)
Message: Cannot create index on virtual column whose base column has foreign constraint.
Error: 3176
SQLSTATE: HY000
(ER_ERROR_ON_MODIFYING_GTID_EXECUTED_TABLE
)
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 neccessary you can modify it with a non-XA transaction.
Error: 3177
SQLSTATE: HY000
(ER_LOCK_REFUSED_BY_ENGINE
)
Message: Lock acquisition refused by storage engine.
Error: 3178
SQLSTATE: HY000
(ER_UNSUPPORTED_ALTER_ONLINE_ON_VIRTUAL_COLUMN
)
Message: ADD COLUMN col...VIRTUAL, ADD INDEX(col)
Error: 3179
SQLSTATE: HY000
(ER_MASTER_KEY_ROTATION_NOT_SUPPORTED_BY_SE
)
Message: Master key rotation is not supported by storage engine.
Error: 3181
SQLSTATE: HY000
(ER_MASTER_KEY_ROTATION_BINLOG_FAILED
)
Message: Write to binlog failed. However, master key rotation has been completed successfully.
Error: 3182
SQLSTATE: HY000
(ER_MASTER_KEY_ROTATION_SE_UNAVAILABLE
)
Message: Storage engine is not available.
Error: 3183
SQLSTATE: HY000
(ER_TABLESPACE_CANNOT_ENCRYPT
)
Message: This tablespace can't be encrypted.
Error: 3184
SQLSTATE: HY000
(ER_INVALID_ENCRYPTION_OPTION
)
Message: Invalid encryption option.
Error: 3185
SQLSTATE: HY000
(ER_CANNOT_FIND_KEY_IN_KEYRING
)
Message: Can't find master key from keyring, please check in the server log if a keyring plugin is loaded and initialized successfully.
Error: 3186
SQLSTATE: HY000
(ER_CAPACITY_EXCEEDED_IN_PARSER
)
Message: Parser bailed out for this query.
Error: 3187
SQLSTATE: HY000
(ER_UNSUPPORTED_ALTER_ENCRYPTION_INPLACE
)
Message: Cannot alter encryption attribute by inplace algorithm.
Error: 3188
SQLSTATE: HY000
(ER_KEYRING_UDF_KEYRING_SERVICE_ERROR
)
Message: Function '%s' failed because underlying keyring service returned an error. Please check if a keyring plugin is installed and that provided arguments are valid for the keyring you are using.
Error: 3189
SQLSTATE: HY000
(ER_USER_COLUMN_OLD_LENGTH
)
Message: It seems that your db schema is old. The %s column is 77 characters long and should be 93 characters long. Please run mysql_upgrade.
Error: 3190
SQLSTATE: HY000
(ER_CANT_RESET_MASTER
)
Message: RESET MASTER is not allowed because %s.
Error: 3191
SQLSTATE: HY000
(ER_GROUP_REPLICATION_MAX_GROUP_SIZE
)
Message: The START GROUP_REPLICATION command failed since the group already has 9 members.
Error: 3192
SQLSTATE: HY000
(ER_CANNOT_ADD_FOREIGN_BASE_COL_STORED
)
Message: Cannot add foreign key on the base column of stored column.
Error: 3193
SQLSTATE: HY000
(ER_TABLE_REFERENCED
)
Message: Cannot complete the operation because table is referenced by another connection.
Error: 3197
SQLSTATE: HY000
(ER_XA_RETRY
)
Message: The resource manager is not able to commit the transaction branch at this time. Please retry later.
ER_XA_RETRY
was added in 8.0.2.
Error: 3198
SQLSTATE: HY000
(ER_KEYRING_AWS_UDF_AWS_KMS_ERROR
)
Message: Function %s failed due to: %s.
ER_KEYRING_AWS_UDF_AWS_KMS_ERROR
was added in 8.0.2.
Error: 3199
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_XA
)
Message: Statement is unsafe because it is being used inside a XA transaction. Concurrent XA transactions may deadlock on slaves when replicated using statements.
ER_BINLOG_UNSAFE_XA
was added in
8.0.2.
Error: 3200
SQLSTATE: HY000
(ER_UDF_ERROR
)
Message: %s UDF failed; %s
ER_UDF_ERROR
was added in 8.0.4.
Error: 3201
SQLSTATE: HY000
(ER_KEYRING_MIGRATION_FAILURE
)
Message: Can not perform keyring migration : %s
ER_KEYRING_MIGRATION_FAILURE
was
added in 8.0.11.
Error: 3202
SQLSTATE: 42000
(ER_KEYRING_ACCESS_DENIED_ERROR
)
Message: Access denied; you need %s privileges for this operation
ER_KEYRING_ACCESS_DENIED_ERROR
was
added in 8.0.11.
Error: 3203
SQLSTATE: HY000
(ER_KEYRING_MIGRATION_STATUS
)
Message: Keyring migration %s.
ER_KEYRING_MIGRATION_STATUS
was
added in 8.0.11.
Error: 3212
SQLSTATE: HY000
(ER_AUDIT_LOG_SUPER_PRIVILEGE_REQUIRED
)
Message: SUPER privilege required for '%s'@'%s' user.
ER_AUDIT_LOG_SUPER_PRIVILEGE_REQUIRED
was added in 8.0.11.
Error: 3214
SQLSTATE: HY000
(ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_TYPE
)
Message: Invalid argument type
ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_TYPE
was added in 8.0.11.
Error: 3215
SQLSTATE: HY000
(ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_COUNT
)
Message: Invalid argument count
ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_COUNT
was added in 8.0.11.
Error: 3216
SQLSTATE: HY000
(ER_AUDIT_LOG_HAS_NOT_BEEN_INSTALLED
)
Message: audit_log plugin has not been installed using INSTALL PLUGIN syntax.
ER_AUDIT_LOG_HAS_NOT_BEEN_INSTALLED
was added in 8.0.11.
Error: 3217
SQLSTATE: HY000
(ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_TYPE
)
Message: Invalid "max_array_length" argument type.
ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_TYPE
was added in 8.0.11.
Error: 3218
SQLSTATE: HY000
(ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_VALUE
)
Message: Invalid "max_array_length" argument value.
ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_VALUE
was added in 8.0.11.
Error: 3500
SQLSTATE: HY000
(ER_UNSUPPORT_COMPRESSED_TEMPORARY_TABLE
)
Message: CREATE TEMPORARY TABLE is not allowed with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.
Error: 3501
SQLSTATE: HY000
(ER_ACL_OPERATION_FAILED
)
Message: The ACL operation failed due to the following error from SE: errcode %d - %s
Error: 3502
SQLSTATE: HY000
(ER_UNSUPPORTED_INDEX_ALGORITHM
)
Message: This storage engine does not support the %s index algorithm, storage engine default was used instead.
Error: 3503
SQLSTATE: 42Y07
(ER_NO_SUCH_DB
)
Message: Database '%s' doesn't exist
Error: 3504
SQLSTATE: HY000
(ER_TOO_BIG_ENUM
)
Message: Too many enumeration values for column %s.
Error: 3505
SQLSTATE: HY000
(ER_TOO_LONG_SET_ENUM_VALUE
)
Message: Too long enumeration/set value for column %s.
Error: 3506
SQLSTATE: HY000
(ER_INVALID_DD_OBJECT
)
Message: %s dictionary object is invalid. (%s)
Error: 3507
SQLSTATE: HY000
(ER_UPDATING_DD_TABLE
)
Message: Failed to update %s dictionary object.
Error: 3508
SQLSTATE: HY000
(ER_INVALID_DD_OBJECT_ID
)
Message: Dictionary object id (%lu) does not exist.
Error: 3509
SQLSTATE: HY000
(ER_INVALID_DD_OBJECT_NAME
)
Message: Dictionary object name '%s' is invalid. (%s)
Error: 3510
SQLSTATE: HY000
(ER_TABLESPACE_MISSING_WITH_NAME
)
Message: Tablespace %s doesn't exist.
Error: 3511
SQLSTATE: HY000
(ER_TOO_LONG_ROUTINE_COMMENT
)
Message: Comment for routine '%s' is too long (max = %lu)
Error: 3512
SQLSTATE: HY000
(ER_SP_LOAD_FAILED
)
Message: Failed to load routine '%s'.
Error: 3513
SQLSTATE: HY000
(ER_INVALID_BITWISE_OPERANDS_SIZE
)
Message: Binary operands of bitwise operators must be of equal length
Error: 3514
SQLSTATE: HY000
(ER_INVALID_BITWISE_AGGREGATE_OPERANDS_SIZE
)
Message: Aggregate bitwise functions cannot accept arguments longer than 511 bytes; consider using the SUBSTRING() function
Error: 3515
SQLSTATE: HY000
(ER_WARN_UNSUPPORTED_HINT
)
Message: Hints aren't supported in %s
Error: 3516
SQLSTATE: 22S01
(ER_UNEXPECTED_GEOMETRY_TYPE
)
Message: %s value is a geometry of unexpected type %s in %s.
Error: 3517
SQLSTATE: SR002
(ER_SRS_PARSE_ERROR
)
Message: Can't parse the spatial reference system definition of SRID %u.
Error: 3518
SQLSTATE: SR003
(ER_SRS_PROJ_PARAMETER_MISSING
)
Message: The spatial reference system definition for SRID %u does not specify the mandatory %s (EPSG %u) projection parameter.
Error: 3519
SQLSTATE: 01000
(ER_WARN_SRS_NOT_FOUND
)
Message: There's no spatial reference system with SRID %u.
Error: 3520
SQLSTATE: 22S00
(ER_SRS_NOT_CARTESIAN
)
Message: Function %s is only defined for Cartesian spatial reference systems, but one of its arguments is in SRID %u, which is not Cartesian.
Error: 3521
SQLSTATE: SR001
(ER_SRS_NOT_CARTESIAN_UNDEFINED
)
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.
Error: 3522
SQLSTATE: HY000
(ER_PK_INDEX_CANT_BE_INVISIBLE
)
Message: A primary key index cannot be invisible
Error: 3523
SQLSTATE: HY000
(ER_UNKNOWN_AUTHID
)
Message: Unknown authorization ID `%s`@`%s`
Error: 3524
SQLSTATE: HY000
(ER_FAILED_ROLE_GRANT
)
Message: Failed to grant %s` to %s
Error: 3525
SQLSTATE: HY000
(ER_OPEN_ROLE_TABLES
)
Message: Failed to open the security system tables
Error: 3526
SQLSTATE: HY000
(ER_FAILED_DEFAULT_ROLES
)
Message: Failed to set default roles
Error: 3527
SQLSTATE: HY000
(ER_COMPONENTS_NO_SCHEME
)
Message: Cannot find schema in specified URN: '%s'.
Error: 3528
SQLSTATE: HY000
(ER_COMPONENTS_NO_SCHEME_SERVICE
)
Message: Cannot acquire scheme load service implementation for schema '%s' in specified URN: '%s'.
Error: 3529
SQLSTATE: HY000
(ER_COMPONENTS_CANT_LOAD
)
Message: Cannot load component from specified URN: '%s'.
Error: 3530
SQLSTATE: HY000
(ER_ROLE_NOT_GRANTED
)
Message: `%s`@`%s` is not granted to `%s`@`%s`
Error: 3531
SQLSTATE: HY000
(ER_FAILED_REVOKE_ROLE
)
Message: Could not revoke role from `%s`@`%s`
Error: 3532
SQLSTATE: HY000
(ER_RENAME_ROLE
)
Message: Renaming of a role identifier is forbidden
Error: 3533
SQLSTATE: HY000
(ER_COMPONENTS_CANT_ACQUIRE_SERVICE_IMPLEMENTATION
)
Message: Cannot acquire specified service implementation: '%s'.
Error: 3534
SQLSTATE: HY000
(ER_COMPONENTS_CANT_SATISFY_DEPENDENCY
)
Message: Cannot satisfy dependency for service '%s' required by component '%s'.
Error: 3535
SQLSTATE: HY000
(ER_COMPONENTS_LOAD_CANT_REGISTER_SERVICE_IMPLEMENTATION
)
Message: Cannot register service implementation '%s' provided by component '%s'.
Error: 3536
SQLSTATE: HY000
(ER_COMPONENTS_LOAD_CANT_INITIALIZE
)
Message: Initialization method provided by component '%s' failed.
Error: 3537
SQLSTATE: HY000
(ER_COMPONENTS_UNLOAD_NOT_LOADED
)
Message: Component specified by URN '%s' to unload has not been loaded before.
Error: 3538
SQLSTATE: HY000
(ER_COMPONENTS_UNLOAD_CANT_DEINITIALIZE
)
Message: De-initialization method provided by component '%s' failed.
Error: 3539
SQLSTATE: HY000
(ER_COMPONENTS_CANT_RELEASE_SERVICE
)
Message: Release of previously acquired service implementation failed.
Error: 3540
SQLSTATE: HY000
(ER_COMPONENTS_UNLOAD_CANT_UNREGISTER_SERVICE
)
Message: Unregistration of service implementation '%s' provided by component '%s' failed during unloading of the component.
Error: 3541
SQLSTATE: HY000
(ER_COMPONENTS_CANT_UNLOAD
)
Message: Cannot unload component from specified URN: '%s'.
Error: 3542
SQLSTATE: HY000
(ER_WARN_UNLOAD_THE_NOT_PERSISTED
)
Message: The Persistent Dynamic Loader was used to unload a component '%s', but it was not used to load that component before.
Error: 3543
SQLSTATE: HY000
(ER_COMPONENT_TABLE_INCORRECT
)
Message: The mysql.component table is missing or has an incorrect definition.
Error: 3544
SQLSTATE: HY000
(ER_COMPONENT_MANIPULATE_ROW_FAILED
)
Message: Failed to manipulate component '%s' persistence data. Error code %d from storage engine.
Error: 3545
SQLSTATE: HY000
(ER_COMPONENTS_UNLOAD_DUPLICATE_IN_GROUP
)
Message: The component with specified URN: '%s' was specified in group more than once.
Error: 3546
SQLSTATE: HY000
(ER_CANT_SET_GTID_PURGED_DUE_SETS_CONSTRAINTS
)
Message: @@GLOBAL.GTID_PURGED cannot be changed: %s
Error: 3547
SQLSTATE: HY000
(ER_CANNOT_LOCK_USER_MANAGEMENT_CACHES
)
Message: Can not lock user management caches for processing.
Error: 3548
SQLSTATE: SR001
(ER_SRS_NOT_FOUND
)
Message: There's no spatial reference system with SRID %u.
Error: 3549
SQLSTATE: HY000
(ER_VARIABLE_NOT_PERSISTED
)
Message: Variables cannot be persisted. Please retry.
Error: 3550
SQLSTATE: HY000
(ER_IS_QUERY_INVALID_CLAUSE
)
Message: Information schema queries do not support the '%s' clause.
Error: 3551
SQLSTATE: HY000
(ER_UNABLE_TO_STORE_STATISTICS
)
Message: Unable to store dynamic %s statistics into data dictionary.
Error: 3552
SQLSTATE: HY000
(ER_NO_SYSTEM_SCHEMA_ACCESS
)
Message: Access to system schema '%s' is rejected.
Error: 3553
SQLSTATE: HY000
(ER_NO_SYSTEM_TABLESPACE_ACCESS
)
Message: Access to system tablespace '%s' is rejected.
Error: 3554
SQLSTATE: HY000
(ER_NO_SYSTEM_TABLE_ACCESS
)
Message: Access to %s '%s.%s' is rejected.
Error: 3555
SQLSTATE: HY000
(ER_NO_SYSTEM_TABLE_ACCESS_FOR_DICTIONARY_TABLE
)
Message: data dictionary table
ER_NO_SYSTEM_TABLE_ACCESS_FOR_DICTIONARY_TABLE
was added in 8.0.1.
Error: 3556
SQLSTATE: HY000
(ER_NO_SYSTEM_TABLE_ACCESS_FOR_SYSTEM_TABLE
)
Message: system table
ER_NO_SYSTEM_TABLE_ACCESS_FOR_SYSTEM_TABLE
was added in 8.0.1.
Error: 3557
SQLSTATE: HY000
(ER_NO_SYSTEM_TABLE_ACCESS_FOR_TABLE
)
Message: table
ER_NO_SYSTEM_TABLE_ACCESS_FOR_TABLE
was added in 8.0.1.
Error: 3558
SQLSTATE: 22023
(ER_INVALID_OPTION_KEY
)
Message: Invalid option key '%s' in function %s.
ER_INVALID_OPTION_KEY
was added in
8.0.1.
Error: 3559
SQLSTATE: 22023
(ER_INVALID_OPTION_VALUE
)
Message: Invalid value '%s' for option '%s' in function '%s'.
ER_INVALID_OPTION_VALUE
was added
in 8.0.1.
Error: 3560
SQLSTATE: 22023
(ER_INVALID_OPTION_KEY_VALUE_PAIR
)
Message: The string '%s' is not a valid key %c value pair in function %s.
ER_INVALID_OPTION_KEY_VALUE_PAIR
was added in 8.0.1.
Error: 3561
SQLSTATE: 22023
(ER_INVALID_OPTION_START_CHARACTER
)
Message: The options argument in function %s starts with the invalid character '%c'.
ER_INVALID_OPTION_START_CHARACTER
was added in 8.0.1.
Error: 3562
SQLSTATE: 22023
(ER_INVALID_OPTION_END_CHARACTER
)
Message: The options argument in function %s ends with the invalid character '%c'.
ER_INVALID_OPTION_END_CHARACTER
was added in 8.0.1.
Error: 3563
SQLSTATE: 22023
(ER_INVALID_OPTION_CHARACTERS
)
Message: The options argument in function %s contains the invalid character sequence '%s'.
ER_INVALID_OPTION_CHARACTERS
was
added in 8.0.1.
Error: 3564
SQLSTATE: 22023
(ER_DUPLICATE_OPTION_KEY
)
Message: Duplicate option key '%s' in funtion '%s'.
ER_DUPLICATE_OPTION_KEY
was added
in 8.0.1.
Error: 3565
SQLSTATE: 01000
(ER_WARN_SRS_NOT_FOUND_AXIS_ORDER
)
Message: There's no spatial reference system with SRID %u. The axis order is unknown.
ER_WARN_SRS_NOT_FOUND_AXIS_ORDER
was added in 8.0.1.
Error: 3566
SQLSTATE: HY000
(ER_NO_ACCESS_TO_NATIVE_FCT
)
Message: Access to native function '%s' is rejected.
ER_NO_ACCESS_TO_NATIVE_FCT
was
added in 8.0.1.
Error: 3567
SQLSTATE: HY000
(ER_RESET_MASTER_TO_VALUE_OUT_OF_RANGE
)
Message: The requested value '%lu' for the next binary log index is out of range. Please use a value between '1' and '%lu'.
ER_RESET_MASTER_TO_VALUE_OUT_OF_RANGE
was added in 8.0.1.
Error: 3568
SQLSTATE: HY000
(ER_UNRESOLVED_TABLE_LOCK
)
Message: Unresolved table name %s in locking clause.
ER_UNRESOLVED_TABLE_LOCK
was added
in 8.0.1.
Error: 3569
SQLSTATE: HY000
(ER_DUPLICATE_TABLE_LOCK
)
Message: Table %s appears in multiple locking clauses.
ER_DUPLICATE_TABLE_LOCK
was added
in 8.0.1.
Error: 3570
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_SKIP_LOCKED
)
Message: Statement is unsafe because it uses SKIP LOCKED. The set of inserted values is non-deterministic.
ER_BINLOG_UNSAFE_SKIP_LOCKED
was
added in 8.0.1.
Error: 3571
SQLSTATE: HY000
(ER_BINLOG_UNSAFE_NOWAIT
)
Message: Statement is unsafe because it uses NOWAIT. Whether the command will succeed or fail is not deterministic.
ER_BINLOG_UNSAFE_NOWAIT
was added
in 8.0.1.
Error: 3572
SQLSTATE: HY000
(ER_LOCK_NOWAIT
)
Message: Statement aborted because lock(s) could not be acquired immediately and NOWAIT is set.
ER_LOCK_NOWAIT
was added in 8.0.1.
Error: 3573
SQLSTATE: HY000
(ER_CTE_RECURSIVE_REQUIRES_UNION
)
Message: Recursive Common Table Expression '%s' should contain a UNION
ER_CTE_RECURSIVE_REQUIRES_UNION
was added in 8.0.1.
Error: 3574
SQLSTATE: HY000
(ER_CTE_RECURSIVE_REQUIRES_NONRECURSIVE_FIRST
)
Message: Recursive Common Table Expression '%s' should have one or more non-recursive query blocks followed by one or more recursive ones
ER_CTE_RECURSIVE_REQUIRES_NONRECURSIVE_FIRST
was added in 8.0.1.
Error: 3575
SQLSTATE: HY000
(ER_CTE_RECURSIVE_FORBIDS_AGGREGATION
)
Message: Recursive Common Table Expression '%s' can contain neither aggregation nor window functions in recursive query block
ER_CTE_RECURSIVE_FORBIDS_AGGREGATION
was added in 8.0.1.
Error: 3576
SQLSTATE: HY000
(ER_CTE_RECURSIVE_FORBIDDEN_JOIN_ORDER
)
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
ER_CTE_RECURSIVE_FORBIDDEN_JOIN_ORDER
was added in 8.0.1.
Error: 3577
SQLSTATE: HY000
(ER_CTE_RECURSIVE_REQUIRES_SINGLE_REFERENCE
)
Message: In recursive query block of Recursive Common Table Expression '%s', the recursive table must be referenced only once, and not in any subquery
ER_CTE_RECURSIVE_REQUIRES_SINGLE_REFERENCE
was added in 8.0.1.
Error: 3578
SQLSTATE: HY000
(ER_SWITCH_TMP_ENGINE
)
Message: '%s' requires @@internal_tmp_disk_storage_engine=InnoDB
ER_SWITCH_TMP_ENGINE
was added in
8.0.1.
Error: 3579
SQLSTATE: HY000
(ER_WINDOW_NO_SUCH_WINDOW
)
Message: Window name '%s' is not defined.
ER_WINDOW_NO_SUCH_WINDOW
was added
in 8.0.2.
Error: 3580
SQLSTATE: HY000
(ER_WINDOW_CIRCULARITY_IN_WINDOW_GRAPH
)
Message: There is a circularity in the window dependency graph.
ER_WINDOW_CIRCULARITY_IN_WINDOW_GRAPH
was added in 8.0.2.
Error: 3581
SQLSTATE: HY000
(ER_WINDOW_NO_CHILD_PARTITIONING
)
Message: A window which depends on another cannot define partitioning.
ER_WINDOW_NO_CHILD_PARTITIONING
was added in 8.0.2.
Error: 3582
SQLSTATE: HY000
(ER_WINDOW_NO_INHERIT_FRAME
)
Message: Window '%s' has a frame definition, so cannot be referenced by another window.
ER_WINDOW_NO_INHERIT_FRAME
was
added in 8.0.2.
Error: 3583
SQLSTATE: HY000
(ER_WINDOW_NO_REDEFINE_ORDER_BY
)
Message: Window '%s' cannot inherit '%s' since both contain an ORDER BY clause.
ER_WINDOW_NO_REDEFINE_ORDER_BY
was
added in 8.0.2.
Error: 3584
SQLSTATE: HY000
(ER_WINDOW_FRAME_START_ILLEGAL
)
Message: Window '%s': frame start cannot be UNBOUNDED FOLLOWING.
ER_WINDOW_FRAME_START_ILLEGAL
was
added in 8.0.2.
Error: 3585
SQLSTATE: HY000
(ER_WINDOW_FRAME_END_ILLEGAL
)
Message: Window '%s': frame end cannot be UNBOUNDED PRECEDING.
ER_WINDOW_FRAME_END_ILLEGAL
was
added in 8.0.2.
Error: 3586
SQLSTATE: HY000
(ER_WINDOW_FRAME_ILLEGAL
)
Message: Window '%s': frame start or end is negative, NULL or of non-integral type
ER_WINDOW_FRAME_ILLEGAL
was added
in 8.0.2.
Error: 3587
SQLSTATE: HY000
(ER_WINDOW_RANGE_FRAME_ORDER_TYPE
)
Message: Window '%s' with RANGE N PRECEDING/FOLLOWING frame requires exactly one ORDER BY expression, of numeric or temporal type
ER_WINDOW_RANGE_FRAME_ORDER_TYPE
was added in 8.0.2.
Error: 3588
SQLSTATE: HY000
(ER_WINDOW_RANGE_FRAME_TEMPORAL_TYPE
)
Message: Window '%s' with RANGE frame has ORDER BY expression of datetime type. Only INTERVAL bound value allowed.
ER_WINDOW_RANGE_FRAME_TEMPORAL_TYPE
was added in 8.0.2.
Error: 3589
SQLSTATE: HY000
(ER_WINDOW_RANGE_FRAME_NUMERIC_TYPE
)
Message: Window '%s' with RANGE frame has ORDER BY expression of numeric type, INTERVAL bound value not allowed.
ER_WINDOW_RANGE_FRAME_NUMERIC_TYPE
was added in 8.0.2.
Error: 3590
SQLSTATE: HY000
(ER_WINDOW_RANGE_BOUND_NOT_CONSTANT
)
Message: Window '%s' has a non-constant frame bound.
ER_WINDOW_RANGE_BOUND_NOT_CONSTANT
was added in 8.0.2.
Error: 3591
SQLSTATE: HY000
(ER_WINDOW_DUPLICATE_NAME
)
Message: Window '%s' is defined twice.
ER_WINDOW_DUPLICATE_NAME
was added
in 8.0.2.
Error: 3592
SQLSTATE: HY000
(ER_WINDOW_ILLEGAL_ORDER_BY
)
Message: Window '%s': ORDER BY or PARTITION BY uses legacy position indication which is not supported, use expression.
ER_WINDOW_ILLEGAL_ORDER_BY
was
added in 8.0.2.
Error: 3593
SQLSTATE: HY000
(ER_WINDOW_INVALID_WINDOW_FUNC_USE
)
Message: You cannot use the window function '%s' in this context.'
ER_WINDOW_INVALID_WINDOW_FUNC_USE
was added in 8.0.2.
Error: 3594
SQLSTATE: HY000
(ER_WINDOW_INVALID_WINDOW_FUNC_ALIAS_USE
)
Message: You cannot use the alias '%s' of an expression containing a window function in this context.'
ER_WINDOW_INVALID_WINDOW_FUNC_ALIAS_USE
was added in 8.0.2.
Error: 3595
SQLSTATE: HY000
(ER_WINDOW_NESTED_WINDOW_FUNC_USE_IN_WINDOW_SPEC
)
Message: You cannot nest a window function in the specification of window '%s'.
ER_WINDOW_NESTED_WINDOW_FUNC_USE_IN_WINDOW_SPEC
was added in 8.0.2.
Error: 3596
SQLSTATE: HY000
(ER_WINDOW_ROWS_INTERVAL_USE
)
Message: Window '%s': INTERVAL can only be used with RANGE frames.
ER_WINDOW_ROWS_INTERVAL_USE
was
added in 8.0.2.
Error: 3597
SQLSTATE: HY000
(ER_WINDOW_NO_GROUP_ORDER
)
Message: ASC or DESC with GROUP BY isn't allowed with window functions; put ASC or DESC in ORDER BY
ER_WINDOW_NO_GROUP_ORDER
was added
in 8.0.2, removed after 8.0.12.
Error: 3597
SQLSTATE: HY000
(ER_WINDOW_NO_GROUP_ORDER_UNUSED
)
Message: ASC or DESC with GROUP BY isn't allowed with window functions; put ASC or DESC in ORDER BY
ER_WINDOW_NO_GROUP_ORDER_UNUSED
was added in 8.0.13.
Error: 3598
SQLSTATE: HY000
(ER_WINDOW_EXPLAIN_JSON
)
Message: To get information about window functions use EXPLAIN FORMAT=JSON
ER_WINDOW_EXPLAIN_JSON
was added
in 8.0.2.
Error: 3599
SQLSTATE: HY000
(ER_WINDOW_FUNCTION_IGNORES_FRAME
)
Message: Window function '%s' ignores the frame clause of window '%s' and aggregates over the whole partition
ER_WINDOW_FUNCTION_IGNORES_FRAME
was added in 8.0.2.
Error: 3600
SQLSTATE: HY000
(ER_WINDOW_SE_NOT_ACCEPTABLE
)
Message: Windowing requires @@internal_tmp_mem_storage_engine=TempTable.
ER_WINDOW_SE_NOT_ACCEPTABLE
was
added in 8.0.2, removed after 8.0.3.
Error: 3600
SQLSTATE: HY000
(ER_WL9236_NOW_UNUSED
)
Message: Windowing requires @@internal_tmp_mem_storage_engine=TempTable.
ER_WL9236_NOW_UNUSED
was added in
8.0.4.
Error: 3601
SQLSTATE: HY000
(ER_INVALID_NO_OF_ARGS
)
Message: Too many arguments for function %s: %lu; maximum allowed is %s.
ER_INVALID_NO_OF_ARGS
was added in
8.0.1.
Error: 3602
SQLSTATE: HY000
(ER_FIELD_IN_GROUPING_NOT_GROUP_BY
)
Message: Argument #%u of GROUPING function is not in GROUP BY
ER_FIELD_IN_GROUPING_NOT_GROUP_BY
was added in 8.0.1.
Error: 3603
SQLSTATE: HY000
(ER_TOO_LONG_TABLESPACE_COMMENT
)
Message: Comment for tablespace '%s' is too long (max = %lu)
ER_TOO_LONG_TABLESPACE_COMMENT
was
added in 8.0.1.
Error: 3604
SQLSTATE: HY000
(ER_ENGINE_CANT_DROP_TABLE
)
Message: Storage engine can't drop table '%s'
ER_ENGINE_CANT_DROP_TABLE
was
added in 8.0.1.
Error: 3605
SQLSTATE: HY000
(ER_ENGINE_CANT_DROP_MISSING_TABLE
)
Message: Storage engine can't drop table '%s' because it is missing. Use DROP TABLE IF EXISTS to remove it from data-dictionary.
ER_ENGINE_CANT_DROP_MISSING_TABLE
was added in 8.0.1.
Error: 3606
SQLSTATE: HY000
(ER_TABLESPACE_DUP_FILENAME
)
Message: Duplicate file name for tablespace '%s'
ER_TABLESPACE_DUP_FILENAME
was
added in 8.0.1.
Error: 3607
SQLSTATE: HY000
(ER_DB_DROP_RMDIR2
)
Message: Problem while dropping database. Can't remove database directory (%s). Please remove it manually.
ER_DB_DROP_RMDIR2
was added in
8.0.1.
Error: 3608
SQLSTATE: HY000
(ER_IMP_NO_FILES_MATCHED
)
Message: No SDI files matched the pattern '%s'
ER_IMP_NO_FILES_MATCHED
was added
in 8.0.1.
Error: 3609
SQLSTATE: HY000
(ER_IMP_SCHEMA_DOES_NOT_EXIST
)
Message: Schema '%s', referenced in SDI, does not exist.
ER_IMP_SCHEMA_DOES_NOT_EXIST
was
added in 8.0.1.
Error: 3610
SQLSTATE: HY000
(ER_IMP_TABLE_ALREADY_EXISTS
)
Message: Table '%s.%s', referenced in SDI, already exists.
ER_IMP_TABLE_ALREADY_EXISTS
was
added in 8.0.1.
Error: 3611
SQLSTATE: HY000
(ER_IMP_INCOMPATIBLE_MYSQLD_VERSION
)
Message: Imported mysqld_version (%llu) is not compatible with current (%llu)
ER_IMP_INCOMPATIBLE_MYSQLD_VERSION
was added in 8.0.1.
Error: 3612
SQLSTATE: HY000
(ER_IMP_INCOMPATIBLE_DD_VERSION
)
Message: Imported dd version (%u) is not compatible with current (%u)
ER_IMP_INCOMPATIBLE_DD_VERSION
was
added in 8.0.1.
Error: 3613
SQLSTATE: HY000
(ER_IMP_INCOMPATIBLE_SDI_VERSION
)
Message: Imported sdi version (%llu) is not compatible with current (%llu)
ER_IMP_INCOMPATIBLE_SDI_VERSION
was added in 8.0.1.
Error: 3614
SQLSTATE: HY000
(ER_WARN_INVALID_HINT
)
Message: Invalid number of arguments for hint %s
ER_WARN_INVALID_HINT
was added in
8.0.1.
Error: 3615
SQLSTATE: HY000
(ER_VAR_DOES_NOT_EXIST
)
Message: Variable %s does not exist in persisted config file
ER_VAR_DOES_NOT_EXIST
was added in
8.0.1.
Error: 3616
SQLSTATE: 22S02
(ER_LONGITUDE_OUT_OF_RANGE
)
Message: Longitude %f is out of range in function %s. It must be within (%f, %f].
ER_LONGITUDE_OUT_OF_RANGE
was
added in 8.0.1.
Error: 3617
SQLSTATE: 22S03
(ER_LATITUDE_OUT_OF_RANGE
)
Message: Latitude %f is out of range in function %s. It must be within [%f, %f].
ER_LATITUDE_OUT_OF_RANGE
was added
in 8.0.1.
Error: 3618
SQLSTATE: 22S00
(ER_NOT_IMPLEMENTED_FOR_GEOGRAPHIC_SRS
)
Message: %s(%s) has not been implemented for geographic spatial reference systems.
ER_NOT_IMPLEMENTED_FOR_GEOGRAPHIC_SRS
was added in 8.0.1.
Error: 3619
SQLSTATE: HY000
(ER_ILLEGAL_PRIVILEGE_LEVEL
)
Message: Illegal privilege level specified for %s
ER_ILLEGAL_PRIVILEGE_LEVEL
was
added in 8.0.1.
Error: 3620
SQLSTATE: HY000
(ER_NO_SYSTEM_VIEW_ACCESS
)
Message: Access to system view INFORMATION_SCHEMA.'%s' is rejected.
ER_NO_SYSTEM_VIEW_ACCESS
was added
in 8.0.2.
Error: 3621
SQLSTATE: HY000
(ER_COMPONENT_FILTER_FLABBERGASTED
)
Message: The log-filter component "%s" got confused at "%s" ...
ER_COMPONENT_FILTER_FLABBERGASTED
was added in 8.0.2.
Error: 3622
SQLSTATE: HY000
(ER_PART_EXPR_TOO_LONG
)
Message: Partitioning expression is too long.
ER_PART_EXPR_TOO_LONG
was added in
8.0.2.
Error: 3623
SQLSTATE: HY000
(ER_UDF_DROP_DYNAMICALLY_REGISTERED
)
Message: DROP FUNCTION can't drop a dynamically registered user defined function
ER_UDF_DROP_DYNAMICALLY_REGISTERED
was added in 8.0.2.
Error: 3624
SQLSTATE: HY000
(ER_UNABLE_TO_STORE_COLUMN_STATISTICS
)
Message: Unable to store column statistics for column '%s' in table '%s'.'%s'
ER_UNABLE_TO_STORE_COLUMN_STATISTICS
was added in 8.0.2.
Error: 3625
SQLSTATE: HY000
(ER_UNABLE_TO_UPDATE_COLUMN_STATISTICS
)
Message: Unable to update column statistics for column '%s' in table '%s'.'%s'
ER_UNABLE_TO_UPDATE_COLUMN_STATISTICS
was added in 8.0.2.
Error: 3626
SQLSTATE: HY000
(ER_UNABLE_TO_DROP_COLUMN_STATISTICS
)
Message: Unable to remove column statistics for column '%s' in table '%s'.'%s'
ER_UNABLE_TO_DROP_COLUMN_STATISTICS
was added in 8.0.2.
Error: 3627
SQLSTATE: HY000
(ER_UNABLE_TO_BUILD_HISTOGRAM
)
Message: Unable to build histogram statistics for column '%s' in table '%s'.'%s'
ER_UNABLE_TO_BUILD_HISTOGRAM
was
added in 8.0.2.
Error: 3628
SQLSTATE: HY000
(ER_MANDATORY_ROLE
)
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.
ER_MANDATORY_ROLE
was added in
8.0.2.
Error: 3629
SQLSTATE: HY000
(ER_MISSING_TABLESPACE_FILE
)
Message: Tablespace '%s' does not have a file named '%s'
ER_MISSING_TABLESPACE_FILE
was
added in 8.0.3.
Error: 3630
SQLSTATE: 42000
(ER_PERSIST_ONLY_ACCESS_DENIED_ERROR
)
Message: Access denied; you need %s privileges for this operation
ER_PERSIST_ONLY_ACCESS_DENIED_ERROR
was added in 8.0.3.
Error: 3631
SQLSTATE: HY000
(ER_CMD_NEED_SUPER
)
Message: You need the SUPER privilege for command '%s'
ER_CMD_NEED_SUPER
was added in
8.0.3.
Error: 3632
SQLSTATE: HY000
(ER_PATH_IN_DATADIR
)
Message: Path is within the current data directory '%s'
ER_PATH_IN_DATADIR
was added in
8.0.3.
Error: 3633
SQLSTATE: HY000
(ER_DDL_IN_PROGRESS
)
Message: Concurrent DDL is performed during the operation. Please try again.
ER_DDL_IN_PROGRESS
was added in
8.0.3.
Error: 3634
SQLSTATE: HY000
(ER_TOO_MANY_CONCURRENT_CLONES
)
Message: Too many concurrent clone operations. Maximum allowed - %d.
ER_TOO_MANY_CONCURRENT_CLONES
was
added in 8.0.3.
Error: 3635
SQLSTATE: HY000
(ER_APPLIER_LOG_EVENT_VALIDATION_ERROR
)
Message: The table in transaction %s does not comply with the requirements by an external plugin.
ER_APPLIER_LOG_EVENT_VALIDATION_ERROR
was added in 8.0.3.
Error: 3636
SQLSTATE: HY000
(ER_CTE_MAX_RECURSION_DEPTH
)
Message: Recursive query aborted after %u iterations. Try increasing @@cte_max_recursion_depth to a larger value.
ER_CTE_MAX_RECURSION_DEPTH
was
added in 8.0.3.
Error: 3637
SQLSTATE: HY000
(ER_NOT_HINT_UPDATABLE_VARIABLE
)
Message: Variable %s cannot be set using SET_VAR hint.
ER_NOT_HINT_UPDATABLE_VARIABLE
was
added in 8.0.3.
Error: 3638
SQLSTATE: HY000
(ER_CREDENTIALS_CONTRADICT_TO_HISTORY
)
Message: Cannot use these credentials for '%.*s@%.*s' because they contradict the password history policy
ER_CREDENTIALS_CONTRADICT_TO_HISTORY
was added in 8.0.3.
Error: 3639
SQLSTATE: HY000
(ER_WARNING_PASSWORD_HISTORY_CLAUSES_VOID
)
Message: Non-zero password history clauses ignored for user '%s'@'%s' as its authentication plugin %s does not support password history
ER_WARNING_PASSWORD_HISTORY_CLAUSES_VOID
was added in 8.0.3.
Error: 3640
SQLSTATE: HY000
(ER_CLIENT_DOES_NOT_SUPPORT
)
Message: The client doesn't support %s
ER_CLIENT_DOES_NOT_SUPPORT
was
added in 8.0.3.
Error: 3641
SQLSTATE: HY000
(ER_I_S_SKIPPED_TABLESPACE
)
Message: Tablespace '%s' was skipped since its definition is being modified by concurrent DDL statement
ER_I_S_SKIPPED_TABLESPACE
was
added in 8.0.3.
Error: 3642
SQLSTATE: HY000
(ER_TABLESPACE_ENGINE_MISMATCH
)
Message: Engine '%s' does not match stored engine '%s' for tablespace '%s'
ER_TABLESPACE_ENGINE_MISMATCH
was
added in 8.0.3.
Error: 3643
SQLSTATE: HY000
(ER_WRONG_SRID_FOR_COLUMN
)
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.
ER_WRONG_SRID_FOR_COLUMN
was added
in 8.0.3.
Error: 3644
SQLSTATE: HY000
(ER_CANNOT_ALTER_SRID_DUE_TO_INDEX
)
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.
ER_CANNOT_ALTER_SRID_DUE_TO_INDEX
was added in 8.0.3.
Error: 3645
SQLSTATE: HY000
(ER_WARN_BINLOG_PARTIAL_UPDATES_DISABLED
)
Message: When %s, the option binlog_row_value_options=%s will be ignored and updates will be written in full format to binary log.
ER_WARN_BINLOG_PARTIAL_UPDATES_DISABLED
was added in 8.0.3.
Error: 3646
SQLSTATE: HY000
(ER_WARN_BINLOG_V1_ROW_EVENTS_DISABLED
)
Message: When %s, the option log_bin_use_v1_row_events=1 will be ignored and row events will be written in new format to binary log.
ER_WARN_BINLOG_V1_ROW_EVENTS_DISABLED
was added in 8.0.3.
Error: 3647
SQLSTATE: HY000
(ER_WARN_BINLOG_PARTIAL_UPDATES_SUGGESTS_PARTIAL_IMAGES
)
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%%.
ER_WARN_BINLOG_PARTIAL_UPDATES_SUGGESTS_PARTIAL_IMAGES
was added in 8.0.3.
Error: 3648
SQLSTATE: HY000
(ER_COULD_NOT_APPLY_JSON_DIFF
)
Message: Could not apply JSON diff in table %.*s, column %s.
ER_COULD_NOT_APPLY_JSON_DIFF
was
added in 8.0.3.
Error: 3649
SQLSTATE: HY000
(ER_CORRUPTED_JSON_DIFF
)
Message: Corrupted JSON diff for table %.*s, column %s.
ER_CORRUPTED_JSON_DIFF
was added
in 8.0.3.
Error: 3650
SQLSTATE: HY000
(ER_RESOURCE_GROUP_EXISTS
)
Message: Resource Group '%s' exists
ER_RESOURCE_GROUP_EXISTS
was added
in 8.0.3.
Error: 3651
SQLSTATE: HY000
(ER_RESOURCE_GROUP_NOT_EXISTS
)
Message: Resource Group '%s' does not exist.
ER_RESOURCE_GROUP_NOT_EXISTS
was
added in 8.0.3.
Error: 3652
SQLSTATE: HY000
(ER_INVALID_VCPU_ID
)
Message: Invalid cpu id %u
ER_INVALID_VCPU_ID
was added in
8.0.3.
Error: 3653
SQLSTATE: HY000
(ER_INVALID_VCPU_RANGE
)
Message: Invalid VCPU range %u-%u
ER_INVALID_VCPU_RANGE
was added in
8.0.3.
Error: 3654
SQLSTATE: HY000
(ER_INVALID_THREAD_PRIORITY
)
Message: Invalid thread priority value %d for %s resource group %s. Allowed range is [%d, %d].
ER_INVALID_THREAD_PRIORITY
was
added in 8.0.3.
Error: 3655
SQLSTATE: HY000
(ER_DISALLOWED_OPERATION
)
Message: %s operation is disallowed on %s
ER_DISALLOWED_OPERATION
was added
in 8.0.3.
Error: 3656
SQLSTATE: HY000
(ER_RESOURCE_GROUP_BUSY
)
Message: Resource group %s is busy.
ER_RESOURCE_GROUP_BUSY
was added
in 8.0.3.
Error: 3657
SQLSTATE: HY000
(ER_RESOURCE_GROUP_DISABLED
)
Message: Resource group %s is disabled.
ER_RESOURCE_GROUP_DISABLED
was
added in 8.0.3.
Error: 3658
SQLSTATE: HY000
(ER_FEATURE_UNSUPPORTED
)
Message: Feature %s is unsupported (%s).
ER_FEATURE_UNSUPPORTED
was added
in 8.0.3.
Error: 3659
SQLSTATE: HY000
(ER_ATTRIBUTE_IGNORED
)
Message: Attribute %s is ignored (%s).
ER_ATTRIBUTE_IGNORED
was added in
8.0.3.
Error: 3660
SQLSTATE: HY000
(ER_INVALID_THREAD_ID
)
Message: Invalid thread id (%llu).
ER_INVALID_THREAD_ID
was added in
8.0.3.
Error: 3661
SQLSTATE: HY000
(ER_RESOURCE_GROUP_BIND_FAILED
)
Message: Unable to bind resource group %s with thread id (%llu).(%s).
ER_RESOURCE_GROUP_BIND_FAILED
was
added in 8.0.3.
Error: 3662
SQLSTATE: HY000
(ER_INVALID_USE_OF_FORCE_OPTION
)
Message: Option FORCE invalid as DISABLE option is not specified.
ER_INVALID_USE_OF_FORCE_OPTION
was
added in 8.0.3.
Error: 3663
SQLSTATE: HY000
(ER_GROUP_REPLICATION_COMMAND_FAILURE
)
Message: The %s command encountered a failure. %s
ER_GROUP_REPLICATION_COMMAND_FAILURE
was added in 8.0.4.
Error: 3664
SQLSTATE: HY000
(ER_SDI_OPERATION_FAILED
)
Message: Failed to %s SDI '%s.%s' in tablespace '%s'.
ER_SDI_OPERATION_FAILED
was added
in 8.0.3.
Error: 3665
SQLSTATE: 22035
(ER_MISSING_JSON_TABLE_VALUE
)
Message: Missing value for JSON_TABLE column '%s'
ER_MISSING_JSON_TABLE_VALUE
was
added in 8.0.4.
Error: 3666
SQLSTATE: 2203F
(ER_WRONG_JSON_TABLE_VALUE
)
Message: Can't store an array or an object in the scalar JSON_TABLE column '%s'
ER_WRONG_JSON_TABLE_VALUE
was
added in 8.0.4.
Error: 3667
SQLSTATE: 42000
(ER_TF_MUST_HAVE_ALIAS
)
Message: Every table function must have an alias
ER_TF_MUST_HAVE_ALIAS
was added in
8.0.4.
Error: 3668
SQLSTATE: HY000
(ER_TF_FORBIDDEN_JOIN_TYPE
)
Message: INNER or LEFT JOIN must be used for '%s' table function's LATERAL reference
ER_TF_FORBIDDEN_JOIN_TYPE
was
added in 8.0.4.
Error: 3669
SQLSTATE: 22003
(ER_JT_VALUE_OUT_OF_RANGE
)
Message: Value is out of range for JSON_TABLE's column '%s'
ER_JT_VALUE_OUT_OF_RANGE
was added
in 8.0.4.
Error: 3670
SQLSTATE: 42000
(ER_JT_MAX_NESTED_PATH
)
Message: More than supported %u NESTED PATHs were found in JSON_TABLE '%s'
ER_JT_MAX_NESTED_PATH
was added in
8.0.4.
Error: 3671
SQLSTATE: HY000
(ER_PASSWORD_EXPIRATION_NOT_SUPPORTED_BY_AUTH_METHOD
)
Message: The selected authentication method %.*s does not support password expiration
ER_PASSWORD_EXPIRATION_NOT_SUPPORTED_BY_AUTH_METHOD
was added in 8.0.4.
Error: 3672
SQLSTATE: HY000
(ER_INVALID_GEOJSON_CRS_NOT_TOP_LEVEL
)
Message: Invalid GeoJSON data provided to function %s: Member 'crs' must be specified in the top level object.
ER_INVALID_GEOJSON_CRS_NOT_TOP_LEVEL
was added in 8.0.4.
Error: 3673
SQLSTATE: 23000
(ER_BAD_NULL_ERROR_NOT_IGNORED
)
Message: Column '%s' cannot be null
ER_BAD_NULL_ERROR_NOT_IGNORED
was
added in 8.0.4.
Error: 3674
SQLSTATE: HY000
(WARN_USELESS_SPATIAL_INDEX
)
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.
WARN_USELESS_SPATIAL_INDEX
was
added in 8.0.11.
Error: 3675
SQLSTATE: HY000
(ER_DISK_FULL_NOWAIT
)
Message: Create table/tablespace '%s' failed, as disk is full
ER_DISK_FULL_NOWAIT
was added in
8.0.11.
Error: 3676
SQLSTATE: HY000
(ER_PARSE_ERROR_IN_DIGEST_FN
)
Message: Could not parse argument to digest function: "%s".
ER_PARSE_ERROR_IN_DIGEST_FN
was
added in 8.0.11.
Error: 3677
SQLSTATE: HY000
(ER_UNDISCLOSED_PARSE_ERROR_IN_DIGEST_FN
)
Message: Could not parse argument to digest function.
ER_UNDISCLOSED_PARSE_ERROR_IN_DIGEST_FN
was added in 8.0.11.
Error: 3678
SQLSTATE: HY000
(ER_SCHEMA_DIR_EXISTS
)
Message: Schema directory '%s' already exists. This must be resolved manually (e.g. by moving the schema directory to another location).
ER_SCHEMA_DIR_EXISTS
was added in
8.0.11.
Error: 3679
SQLSTATE: HY000
(ER_SCHEMA_DIR_MISSING
)
Message: Schema directory '%s' does not exist
ER_SCHEMA_DIR_MISSING
was added in
8.0.11.
Error: 3680
SQLSTATE: HY000
(ER_SCHEMA_DIR_CREATE_FAILED
)
Message: Failed to create schema directory '%s' (errno: %d - %s)
ER_SCHEMA_DIR_CREATE_FAILED
was
added in 8.0.11.
Error: 3681
SQLSTATE: HY000
(ER_SCHEMA_DIR_UNKNOWN
)
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).
ER_SCHEMA_DIR_UNKNOWN
was added in
8.0.11.
Error: 3682
SQLSTATE: 22S00
(ER_ONLY_IMPLEMENTED_FOR_SRID_0_AND_4326
)
Message: Function %s is only defined for SRID 0 and SRID 4326.
ER_ONLY_IMPLEMENTED_FOR_SRID_0_AND_4326
was added in 8.0.11.
Error: 3683
SQLSTATE: HY000
(ER_BINLOG_EXPIRE_LOG_DAYS_AND_SECS_USED_TOGETHER
)
Message: The option expire_logs_days and binlog_expire_logs_seconds cannot be used together. Please use binlog_expire_logs_seconds to set the expire time (expire_logs_days is deprecated)
ER_BINLOG_EXPIRE_LOG_DAYS_AND_SECS_USED_TOGETHER
was added in 8.0.11.
Error: 3684
SQLSTATE: HY000
(ER_REGEXP_BUFFER_OVERFLOW
)
Message: The result string is larger than the result buffer.
ER_REGEXP_BUFFER_OVERFLOW
was
added in 8.0.11.
Error: 3685
SQLSTATE: HY000
(ER_REGEXP_ILLEGAL_ARGUMENT
)
Message: Illegal argument to a regular expression.
ER_REGEXP_ILLEGAL_ARGUMENT
was
added in 8.0.11.
Error: 3686
SQLSTATE: HY000
(ER_REGEXP_INDEX_OUTOFBOUNDS_ERROR
)
Message: Index out of bounds in regular expression search.
ER_REGEXP_INDEX_OUTOFBOUNDS_ERROR
was added in 8.0.11.
Error: 3687
SQLSTATE: HY000
(ER_REGEXP_INTERNAL_ERROR
)
Message: Internal error in the regular expression library.
ER_REGEXP_INTERNAL_ERROR
was added
in 8.0.11.
Error: 3688
SQLSTATE: HY000
(ER_REGEXP_RULE_SYNTAX
)
Message: Syntax error in regular expression on line %u, character %u.
ER_REGEXP_RULE_SYNTAX
was added in
8.0.11.
Error: 3689
SQLSTATE: HY000
(ER_REGEXP_BAD_ESCAPE_SEQUENCE
)
Message: Unrecognized escape sequence in regular expression.
ER_REGEXP_BAD_ESCAPE_SEQUENCE
was
added in 8.0.11.
Error: 3690
SQLSTATE: HY000
(ER_REGEXP_UNIMPLEMENTED
)
Message: The regular expression contains a feature that is not implemented in this library version.
ER_REGEXP_UNIMPLEMENTED
was added
in 8.0.11.
Error: 3691
SQLSTATE: HY000
(ER_REGEXP_MISMATCHED_PAREN
)
Message: Mismatched parenthesis in regular expression.
ER_REGEXP_MISMATCHED_PAREN
was
added in 8.0.11.
Error: 3692
SQLSTATE: HY000
(ER_REGEXP_BAD_INTERVAL
)
Message: Incorrect description of a {min,max} interval.
ER_REGEXP_BAD_INTERVAL
was added
in 8.0.11.
Error: 3693
SQLSTATE: HY000
(ER_REGEXP_MAX_LT_MIN
)
Message: The maximum is less than the minumum in a {min,max} interval.
ER_REGEXP_MAX_LT_MIN
was added in
8.0.11.
Error: 3694
SQLSTATE: HY000
(ER_REGEXP_INVALID_BACK_REF
)
Message: Invalid back-reference in regular expression.
ER_REGEXP_INVALID_BACK_REF
was
added in 8.0.11.
Error: 3695
SQLSTATE: HY000
(ER_REGEXP_LOOK_BEHIND_LIMIT
)
Message: The look-behind assertion exceeds the limit in regular expression.
ER_REGEXP_LOOK_BEHIND_LIMIT
was
added in 8.0.11.
Error: 3696
SQLSTATE: HY000
(ER_REGEXP_MISSING_CLOSE_BRACKET
)
Message: The regular expression contains an unclosed bracket expression.
ER_REGEXP_MISSING_CLOSE_BRACKET
was added in 8.0.11.
Error: 3697
SQLSTATE: HY000
(ER_REGEXP_INVALID_RANGE
)
Message: The regular expression contains an [x-y] character range where x comes after y.
ER_REGEXP_INVALID_RANGE
was added
in 8.0.11.
Error: 3698
SQLSTATE: HY000
(ER_REGEXP_STACK_OVERFLOW
)
Message: Overflow in the regular expression backtrack stack.
ER_REGEXP_STACK_OVERFLOW
was added
in 8.0.11.
Error: 3699
SQLSTATE: HY000
(ER_REGEXP_TIME_OUT
)
Message: Timeout exceeded in regular expression match.
ER_REGEXP_TIME_OUT
was added in
8.0.11.
Error: 3700
SQLSTATE: HY000
(ER_REGEXP_PATTERN_TOO_BIG
)
Message: The regular expression pattern exceeds limits on size or complexity.
ER_REGEXP_PATTERN_TOO_BIG
was
added in 8.0.11.
Error: 3701
SQLSTATE: HY000
(ER_CANT_SET_ERROR_LOG_SERVICE
)
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.
ER_CANT_SET_ERROR_LOG_SERVICE
was
added in 8.0.11.
Error: 3702
SQLSTATE: HY000
(ER_EMPTY_PIPELINE_FOR_ERROR_LOG_SERVICE
)
Message: Setting an empty %s pipeline disables error logging!
ER_EMPTY_PIPELINE_FOR_ERROR_LOG_SERVICE
was added in 8.0.11.
Error: 3703
SQLSTATE: HY000
(ER_COMPONENT_FILTER_DIAGNOSTICS
)
Message: filter %s: %s
ER_COMPONENT_FILTER_DIAGNOSTICS
was added in 8.0.11.
Error: 3704
SQLSTATE: HY000
(ER_INNODB_CANNOT_BE_IGNORED
)
Message: ignore-builtin-innodb is ignored and will be removed in future releases.
ER_INNODB_CANNOT_BE_IGNORED
was
added in 8.0.2, removed after 8.0.2.
Error: 3704
SQLSTATE: 22S00
(ER_NOT_IMPLEMENTED_FOR_CARTESIAN_SRS
)
Message: %s(%s) has not been implemented for Cartesian spatial reference systems.
ER_NOT_IMPLEMENTED_FOR_CARTESIAN_SRS
was added in 8.0.11.
Error: 3705
SQLSTATE: 22S00
(ER_NOT_IMPLEMENTED_FOR_PROJECTED_SRS
)
Message: %s(%s) has not been implemented for projected spatial reference systems.
ER_NOT_IMPLEMENTED_FOR_PROJECTED_SRS
was added in 8.0.11.
Error: 3706
SQLSTATE: 22003
(ER_NONPOSITIVE_RADIUS
)
Message: Invalid radius provided to function %s: Radius must be greater than zero.
ER_NONPOSITIVE_RADIUS
was added in
8.0.11.
Error: 3707
SQLSTATE: HY000
(ER_RESTART_SERVER_FAILED
)
Message: Restart server failed (%s).
ER_RESTART_SERVER_FAILED
was added
in 8.0.11.
Error: 3708
SQLSTATE: SR006
(ER_SRS_MISSING_MANDATORY_ATTRIBUTE
)
Message: Missing mandatory attribute %s.
ER_SRS_MISSING_MANDATORY_ATTRIBUTE
was added in 8.0.11.
Error: 3709
SQLSTATE: SR006
(ER_SRS_MULTIPLE_ATTRIBUTE_DEFINITIONS
)
Message: Multiple definitions of attribute %s.
ER_SRS_MULTIPLE_ATTRIBUTE_DEFINITIONS
was added in 8.0.11.
Error: 3710
SQLSTATE: SR006
(ER_SRS_NAME_CANT_BE_EMPTY_OR_WHITESPACE
)
Message: The spatial reference system name can't be an empty string or start or end with whitespace.
ER_SRS_NAME_CANT_BE_EMPTY_OR_WHITESPACE
was added in 8.0.11.
Error: 3711
SQLSTATE: SR006
(ER_SRS_ORGANIZATION_CANT_BE_EMPTY_OR_WHITESPACE
)
Message: The organization name can't be an empty string or start or end with whitespace.
ER_SRS_ORGANIZATION_CANT_BE_EMPTY_OR_WHITESPACE
was added in 8.0.11.
Error: 3712
SQLSTATE: SR004
(ER_SRS_ID_ALREADY_EXISTS
)
Message: There is already a spatial reference system with SRID %u.
ER_SRS_ID_ALREADY_EXISTS
was added
in 8.0.11.
Error: 3713
SQLSTATE: 01S00
(ER_WARN_SRS_ID_ALREADY_EXISTS
)
Message: There is already a spatial reference system with SRID %u.
ER_WARN_SRS_ID_ALREADY_EXISTS
was
added in 8.0.11.
Error: 3714
SQLSTATE: SR000
(ER_CANT_MODIFY_SRID_0
)
Message: SRID 0 is not modifiable.
ER_CANT_MODIFY_SRID_0
was added in
8.0.11.
Error: 3715
SQLSTATE: 01S01
(ER_WARN_RESERVED_SRID_RANGE
)
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.
ER_WARN_RESERVED_SRID_RANGE
was
added in 8.0.11.
Error: 3716
SQLSTATE: SR005
(ER_CANT_MODIFY_SRS_USED_BY_COLUMN
)
Message: Can't modify SRID %u. There is at least one column depending on it.
ER_CANT_MODIFY_SRS_USED_BY_COLUMN
was added in 8.0.11.
Error: 3717
SQLSTATE: SR006
(ER_SRS_INVALID_CHARACTER_IN_ATTRIBUTE
)
Message: Invalid character in attribute %s.
ER_SRS_INVALID_CHARACTER_IN_ATTRIBUTE
was added in 8.0.11.
Error: 3718
SQLSTATE: SR006
(ER_SRS_ATTRIBUTE_STRING_TOO_LONG
)
Message: Attribute %s is too long. The maximum length is %u characters.
ER_SRS_ATTRIBUTE_STRING_TOO_LONG
was added in 8.0.11.
Error: 3719
SQLSTATE: HY000
(ER_DEPRECATED_UTF8_ALIAS
)
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.
ER_DEPRECATED_UTF8_ALIAS
was added
in 8.0.11.
Error: 3720
SQLSTATE: HY000
(ER_DEPRECATED_NATIONAL
)
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.
ER_DEPRECATED_NATIONAL
was added
in 8.0.11.
Error: 3721
SQLSTATE: HY000
(ER_INVALID_DEFAULT_UTF8MB4_COLLATION
)
Message: Invalid default collation %s: utf8mb4_0900_ai_ci or utf8mb4_general_ci expected
ER_INVALID_DEFAULT_UTF8MB4_COLLATION
was added in 8.0.11.
Error: 3722
SQLSTATE: HY000
(ER_UNABLE_TO_COLLECT_INSTANCE_LOG_STATUS
)
Message: Unable to collect information for column '%s': %s.
ER_UNABLE_TO_COLLECT_INSTANCE_LOG_STATUS
was added in 8.0.11, removed after 8.0.11.
Error: 3722
SQLSTATE: HY000
(ER_UNABLE_TO_COLLECT_LOG_STATUS
)
Message: Unable to collect information for column '%s': %s.
ER_UNABLE_TO_COLLECT_LOG_STATUS
was added in 8.0.12.
Error: 3723
SQLSTATE: HY000
(ER_RESERVED_TABLESPACE_NAME
)
Message: The table '%s' may not be created in the reserved tablespace '%s'.
ER_RESERVED_TABLESPACE_NAME
was
added in 8.0.11.
Error: 3724
SQLSTATE: HY000
(ER_UNABLE_TO_SET_OPTION
)
Message: This option cannot be set %s.
ER_UNABLE_TO_SET_OPTION
was added
in 8.0.11.
Error: 3725
SQLSTATE: HY000
(ER_SLAVE_POSSIBLY_DIVERGED_AFTER_DDL
)
Message: A commit for an atomic DDL statement was unsuccessful on the master and the slave. The slave supports atomic DDL statements but the master does not, so the action taken by the slave and master might differ. Check that their states have not diverged before proceeding.
ER_SLAVE_POSSIBLY_DIVERGED_AFTER_DDL
was added in 8.0.11.
Error: 3726
SQLSTATE: 22S00
(ER_SRS_NOT_GEOGRAPHIC
)
Message: Function %s is only defined for geographic spatial reference systems, but one of its arguments is in SRID %u, which is not geographic.
ER_SRS_NOT_GEOGRAPHIC
was added in
8.0.12.
Error: 3727
SQLSTATE: 22023
(ER_POLYGON_TOO_LARGE
)
Message: Function %s encountered a polygon that was too large. Polygons must cover less than half the planet.
ER_POLYGON_TOO_LARGE
was added in
8.0.12.
Error: 3728
SQLSTATE: HY000
(ER_SPATIAL_UNIQUE_INDEX
)
Message: Spatial indexes can't be primary or unique indexes.
ER_SPATIAL_UNIQUE_INDEX
was added
in 8.0.12.
Error: 3729
SQLSTATE: HY000
(ER_INDEX_TYPE_NOT_SUPPORTED_FOR_SPATIAL_INDEX
)
Message: The index type %s is not supported for spatial indexes.
ER_INDEX_TYPE_NOT_SUPPORTED_FOR_SPATIAL_INDEX
was added in 8.0.12.
Error: 3730
SQLSTATE: HY000
(ER_FK_CANNOT_DROP_PARENT
)
Message: Cannot drop table '%s' referenced by a foreign key constraint '%s' on table '%s'.
ER_FK_CANNOT_DROP_PARENT
was added
in 8.0.12.
Error: 3731
SQLSTATE: 22S02
(ER_GEOMETRY_PARAM_LONGITUDE_OUT_OF_RANGE
)
Message: A parameter of function %s contains a geometry with longitude %f, which is out of range. It must be within (%f, %f].
ER_GEOMETRY_PARAM_LONGITUDE_OUT_OF_RANGE
was added in 8.0.12.
Error: 3732
SQLSTATE: 22S03
(ER_GEOMETRY_PARAM_LATITUDE_OUT_OF_RANGE
)
Message: A parameter of function %s contains a geometry with latitude %f, which is out of range. It must be within [%f, %f].
ER_GEOMETRY_PARAM_LATITUDE_OUT_OF_RANGE
was added in 8.0.12.
Error: 3733
SQLSTATE: HY000
(ER_FK_CANNOT_USE_VIRTUAL_COLUMN
)
Message: Foreign key '%s' uses virtual column '%s' which is not supported.
ER_FK_CANNOT_USE_VIRTUAL_COLUMN
was added in 8.0.12.
Error: 3734
SQLSTATE: HY000
(ER_FK_NO_COLUMN_PARENT
)
Message: Failed to add the foreign key constraint. Missing column '%s' for constraint '%s' in the referenced table '%s'
ER_FK_NO_COLUMN_PARENT
was added
in 8.0.12.
Error: 3735
SQLSTATE: HY000
(ER_CANT_SET_ERROR_SUPPRESSION_LIST
)
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.
ER_CANT_SET_ERROR_SUPPRESSION_LIST
was added in 8.0.13.
Error: 3736
SQLSTATE: SR002
(ER_SRS_GEOGCS_INVALID_AXES
)
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.
ER_SRS_GEOGCS_INVALID_AXES
was
added in 8.0.13.
Error: 3737
SQLSTATE: SR002
(ER_SRS_INVALID_SEMI_MAJOR_AXIS
)
Message: The length of the semi-major axis must be a positive number.
ER_SRS_INVALID_SEMI_MAJOR_AXIS
was
added in 8.0.13.
Error: 3738
SQLSTATE: SR002
(ER_SRS_INVALID_INVERSE_FLATTENING
)
Message: The inverse flattening must be larger than 1.0, or 0.0 if the ellipsoid is a sphere.
ER_SRS_INVALID_INVERSE_FLATTENING
was added in 8.0.13.
Error: 3739
SQLSTATE: SR002
(ER_SRS_INVALID_ANGULAR_UNIT
)
Message: The angular unit conversion factor must be a positive number.
ER_SRS_INVALID_ANGULAR_UNIT
was
added in 8.0.13.
Error: 3740
SQLSTATE: SR002
(ER_SRS_INVALID_PRIME_MERIDIAN
)
Message: The prime meridian must be within (-180, 180] degrees, specified in the SRS angular unit.
ER_SRS_INVALID_PRIME_MERIDIAN
was
added in 8.0.13.
Error: 3741
SQLSTATE: 22S00
(ER_TRANSFORM_SOURCE_SRS_NOT_SUPPORTED
)
Message: Transformation from SRID %u is not supported.
ER_TRANSFORM_SOURCE_SRS_NOT_SUPPORTED
was added in 8.0.13.
Error: 3742
SQLSTATE: 22S00
(ER_TRANSFORM_TARGET_SRS_NOT_SUPPORTED
)
Message: Transformation to SRID %u is not supported.
ER_TRANSFORM_TARGET_SRS_NOT_SUPPORTED
was added in 8.0.13.
Error: 3743
SQLSTATE: 22S00
(ER_TRANSFORM_SOURCE_SRS_MISSING_TOWGS84
)
Message: Transformation from SRID %u is not supported. The spatial reference system has no TOWGS84 clause.
ER_TRANSFORM_SOURCE_SRS_MISSING_TOWGS84
was added in 8.0.13.
Error: 3744
SQLSTATE: 22S00
(ER_TRANSFORM_TARGET_SRS_MISSING_TOWGS84
)
Message: Transformation to SRID %u is not supported. The spatial reference system has no TOWGS84 clause.
ER_TRANSFORM_TARGET_SRS_MISSING_TOWGS84
was added in 8.0.13.
Error: 3745
SQLSTATE: HY000
(ER_TEMP_TABLE_PREVENTS_SWITCH_SESSION_BINLOG_FORMAT
)
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.
ER_TEMP_TABLE_PREVENTS_SWITCH_SESSION_BINLOG_FORMAT
was added in 8.0.13.
Error: 3746
SQLSTATE: HY000
(ER_TEMP_TABLE_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT
)
Message: Changing @@global.binlog_format or @@persist.binlog_format is disallowed when any replication channel has open temporary table(s). You could wait until Slave_open_temp_tables = 0 and try again
ER_TEMP_TABLE_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT
was added in 8.0.13.
Error: 3747
SQLSTATE: HY000
(ER_RUNNING_APPLIER_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT
)
Message: Changing @@global.binlog_format or @@persist.binlog_format is disallowed when any replication channel applier thread is running. You could execute STOP SLAVE SQL_THREAD and try again.
ER_RUNNING_APPLIER_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT
was added in 8.0.13.
Error: 3748
SQLSTATE: HY000
(ER_CLIENT_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TRX_IN_SBR
)
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.
ER_CLIENT_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TRX_IN_SBR
was added in 8.0.13.
Error: 3749
SQLSTATE: HY000
(ER_XA_CANT_CREATE_MDL_BACKUP
)
Message: XA: Failed to take MDL Lock backup of PREPARED XA transaction during client disconnect.
ER_XA_CANT_CREATE_MDL_BACKUP
was
added in 8.0.13.
Error: 3750
SQLSTATE: HY000
(ER_TABLE_WITHOUT_PK
)
Message: Unable to create a table without PK, when system variable 'sql_require_primary_key' is set. Add a PK to the table or unset this variable to avoid this message. Note that tables without PK can cause performance problems in row-based replication, so please consult your DBA before changing this setting.
ER_TABLE_WITHOUT_PK
was added in
8.0.13.
Error: 3751
SQLSTATE: 01000
(WARN_DATA_TRUNCATED_FUNCTIONAL_INDEX
)
Message: Data truncated for functional index '%s' at row %ld
WARN_DATA_TRUNCATED_FUNCTIONAL_INDEX
was added in 8.0.13.
Error: 3752
SQLSTATE: 22003
(ER_WARN_DATA_OUT_OF_RANGE_FUNCTIONAL_INDEX
)
Message: Value is out of range for functional index '%s' at row %ld
ER_WARN_DATA_OUT_OF_RANGE_FUNCTIONAL_INDEX
was added in 8.0.13.
Error: 3753
SQLSTATE: 42000
(ER_FUNCTIONAL_INDEX_ON_JSON_OR_GEOMETRY_FUNCTION
)
Message: Cannot create a functional index on a function that returns a JSON or GEOMETRY value.
ER_FUNCTIONAL_INDEX_ON_JSON_OR_GEOMETRY_FUNCTION
was added in 8.0.13.
Error: 3754
SQLSTATE: HY000
(ER_FUNCTIONAL_INDEX_REF_AUTO_INCREMENT
)
Message: Functional index '%s' cannot refer to an auto-increment column.
ER_FUNCTIONAL_INDEX_REF_AUTO_INCREMENT
was added in 8.0.13.
Error: 3755
SQLSTATE: HY000
(ER_CANNOT_DROP_COLUMN_FUNCTIONAL_INDEX
)
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.
ER_CANNOT_DROP_COLUMN_FUNCTIONAL_INDEX
was added in 8.0.13.
Error: 3756
SQLSTATE: HY000
(ER_FUNCTIONAL_INDEX_PRIMARY_KEY
)
Message: The primary key cannot be a functional index
ER_FUNCTIONAL_INDEX_PRIMARY_KEY
was added in 8.0.13.
Error: 3757
SQLSTATE: HY000
(ER_FUNCTIONAL_INDEX_ON_LOB
)
Message: Cannot create a functional index on an expression that returns a BLOB or TEXT. Please consider using CAST.
ER_FUNCTIONAL_INDEX_ON_LOB
was
added in 8.0.13.
Error: 3758
SQLSTATE: HY000
(ER_FUNCTIONAL_INDEX_FUNCTION_IS_NOT_ALLOWED
)
Message: Expression of functional index '%s' contains a disallowed function.
ER_FUNCTIONAL_INDEX_FUNCTION_IS_NOT_ALLOWED
was added in 8.0.13.
Error: 3759
SQLSTATE: HY000
(ER_FULLTEXT_FUNCTIONAL_INDEX
)
Message: Fulltext functional index is not supported.
ER_FULLTEXT_FUNCTIONAL_INDEX
was
added in 8.0.13.
Error: 3760
SQLSTATE: HY000
(ER_SPATIAL_FUNCTIONAL_INDEX
)
Message: Spatial functional index is not supported.
ER_SPATIAL_FUNCTIONAL_INDEX
was
added in 8.0.13.
Error: 3761
SQLSTATE: HY000
(ER_WRONG_KEY_COLUMN_FUNCTIONAL_INDEX
)
Message: The used storage engine cannot index the expression '%s'.
ER_WRONG_KEY_COLUMN_FUNCTIONAL_INDEX
was added in 8.0.13.
Error: 3762
SQLSTATE: HY000
(ER_FUNCTIONAL_INDEX_ON_FIELD
)
Message: Functional index on a column is not supported. Consider using a regular index instead.
ER_FUNCTIONAL_INDEX_ON_FIELD
was
added in 8.0.13.
Error: 3763
SQLSTATE: HY000
(ER_GENERATED_COLUMN_NAMED_FUNCTION_IS_NOT_ALLOWED
)
Message: Expression of generated column '%s' contains a disallowed function: %s.
ER_GENERATED_COLUMN_NAMED_FUNCTION_IS_NOT_ALLOWED
was added in 8.0.13.
Error: 3764
SQLSTATE: HY000
(ER_GENERATED_COLUMN_ROW_VALUE
)
Message: Expression of generated column '%s' cannot refer to a row value.
ER_GENERATED_COLUMN_ROW_VALUE
was
added in 8.0.13.
Error: 3765
SQLSTATE: HY000
(ER_GENERATED_COLUMN_VARIABLES
)
Message: Expression of generated column '%s' cannot refer user or system variables.
ER_GENERATED_COLUMN_VARIABLES
was
added in 8.0.13.
Error: 3766
SQLSTATE: HY000
(ER_DEPENDENT_BY_DEFAULT_GENERATED_VALUE
)
Message: Column '%s' of table '%s' has a default value expression dependency and cannot be dropped.
ER_DEPENDENT_BY_DEFAULT_GENERATED_VALUE
was added in 8.0.13.
Error: 3767
SQLSTATE: HY000
(ER_DEFAULT_VAL_GENERATED_NON_PRIOR
)
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.
ER_DEFAULT_VAL_GENERATED_NON_PRIOR
was added in 8.0.13.
Error: 3768
SQLSTATE: HY000
(ER_DEFAULT_VAL_GENERATED_REF_AUTO_INC
)
Message: Default value expression of column '%s' cannot refer to an auto-increment column.
ER_DEFAULT_VAL_GENERATED_REF_AUTO_INC
was added in 8.0.13.
Error: 3769
SQLSTATE: HY000
(ER_DEFAULT_VAL_GENERATED_FUNCTION_IS_NOT_ALLOWED
)
Message: Default value expression of column '%s' contains a disallowed function.
ER_DEFAULT_VAL_GENERATED_FUNCTION_IS_NOT_ALLOWED
was added in 8.0.13.
Error: 3770
SQLSTATE: HY000
(ER_DEFAULT_VAL_GENERATED_NAMED_FUNCTION_IS_NOT_ALLOWED
)
Message: Default value expression of column '%s' contains a disallowed function: %s.
ER_DEFAULT_VAL_GENERATED_NAMED_FUNCTION_IS_NOT_ALLOWED
was added in 8.0.13.
Error: 3771
SQLSTATE: HY000
(ER_DEFAULT_VAL_GENERATED_ROW_VALUE
)
Message: Default value expression of column '%s' cannot refer to a row value.
ER_DEFAULT_VAL_GENERATED_ROW_VALUE
was added in 8.0.13.
Error: 3772
SQLSTATE: HY000
(ER_DEFAULT_VAL_GENERATED_VARIABLES
)
Message: Default value expression of column '%s' cannot refer user or system variables.
ER_DEFAULT_VAL_GENERATED_VARIABLES
was added in 8.0.13.
Error: 3773
SQLSTATE: HY000
(ER_DEFAULT_AS_VAL_GENERATED
)
Message: DEFAULT function cannot be used with default value expressions
ER_DEFAULT_AS_VAL_GENERATED
was
added in 8.0.13.
Error: 3774
SQLSTATE: HY000
(ER_UNSUPPORTED_ACTION_ON_DEFAULT_VAL_GENERATED
)
Message: '%s' is not supported for default value expressions.
ER_UNSUPPORTED_ACTION_ON_DEFAULT_VAL_GENERATED
was added in 8.0.13.
Error: 3775
SQLSTATE: HY000
(ER_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAULT_EXPRESSION
)
Message: Statement violates GTID consistency: ALTER TABLE ... ADD COLUMN .. with expression as DEFAULT.
ER_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAULT_EXPRESSION
was added in 8.0.13.
Error: 3937
SQLSTATE: HY000
(ER_AUTHCACHE_ROLE_TABLES_DODGY
)
Message: Could not load mysql.role_edges and mysql.default_roles tables. ACL DDLs will not work unless mysql_upgrade is executed.
ER_AUTHCACHE_ROLE_TABLES_DODGY
was
added in 8.0.2, removed after 8.0.4.
Error: 4576
SQLSTATE: HY000
(ER_DISK_FULL
)
Message: Create table/tablespace '%s' failed, as disk is full
ER_DISK_FULL
was added in 8.0.4,
removed after 8.0.4.
Error: 10000
SQLSTATE: XX999
(ER_PARSER_TRACE
)
Message: Parser saw: %s
ER_PARSER_TRACE
was added in
8.0.2.
Error: 10001
SQLSTATE: HY000
(ER_BOOTSTRAP_CANT_THREAD
)
Message: Can't create thread to handle bootstrap (errno: %d)
ER_BOOTSTRAP_CANT_THREAD
was added
in 8.0.2.
Error: 10002
SQLSTATE: HY000
(ER_TRIGGER_INVALID_VALUE
)
Message: Trigger for table '%s'.'%s': invalid %s value (%s).
ER_TRIGGER_INVALID_VALUE
was added
in 8.0.2.
Error: 10003
SQLSTATE: HY000
(ER_OPT_WRONG_TREE
)
Message: Wrong tree: %s
ER_OPT_WRONG_TREE
was added in
8.0.2.
Error: 10004
SQLSTATE: HY000
(ER_DD_FAILSAFE
)
Message: Error: Invalid %s
ER_DD_FAILSAFE
was added in 8.0.2.
Error: 10005
SQLSTATE: HY000
(ER_DD_NO_WRITES_NO_REPOPULATION
)
Message: Skip re-populating collations and character sets tables in %s%sread-only mode.
ER_DD_NO_WRITES_NO_REPOPULATION
was added in 8.0.2.
Error: 10006
SQLSTATE: HY000
(ER_DD_VERSION_FOUND
)
Message: Using data dictionary with version '%d'.
ER_DD_VERSION_FOUND
was added in
8.0.2.
Error: 10007
SQLSTATE: HY000
(ER_DD_VERSION_INSTALLED
)
Message: Installed data dictionary with version %d
ER_DD_VERSION_INSTALLED
was added
in 8.0.2.
Error: 10008
SQLSTATE: HY000
(ER_DD_VERSION_UNSUPPORTED
)
Message: Data Dictionary version '%d' not supported.
ER_DD_VERSION_UNSUPPORTED
was
added in 8.0.2.
Error: 10009
SQLSTATE: HY000
(ER_LOG_SYSLOG_FACILITY_FAIL
)
Message: Failed to set syslog facility to "%s", setting to "%s" (%d) instead.
ER_LOG_SYSLOG_FACILITY_FAIL
was
added in 8.0.2, removed after 8.0.12.
Error: 10010
SQLSTATE: HY000
(ER_LOG_SYSLOG_CANNOT_OPEN
)
Message: Cannot open %s; check privileges, or remove syseventlog from --log-error-services!
ER_LOG_SYSLOG_CANNOT_OPEN
was
added in 8.0.2.
Error: 10011
SQLSTATE: HY000
(ER_LOG_SLOW_CANNOT_OPEN
)
Message: either restart the query logging by using "SET GLOBAL SLOW_QUERY_LOG=ON" or
ER_LOG_SLOW_CANNOT_OPEN
was added
in 8.0.2.
Error: 10012
SQLSTATE: HY000
(ER_LOG_GENERAL_CANNOT_OPEN
)
Message: either restart the query logging by using "SET GLOBAL GENERAL_LOG=ON" or
ER_LOG_GENERAL_CANNOT_OPEN
was
added in 8.0.2.
Error: 10013
SQLSTATE: HY000
(ER_LOG_CANNOT_WRITE
)
Message: Failed to write to %s: %s
ER_LOG_CANNOT_WRITE
was added in
8.0.2.
Error: 10014
SQLSTATE: HY000
(ER_RPL_ZOMBIE_ENCOUNTERED
)
Message: While initializing dump thread for slave with %s <%s>, found a zombie dump thread with the same %s. Master is killing the zombie dump thread(%u).
ER_RPL_ZOMBIE_ENCOUNTERED
was
added in 8.0.2.
Error: 10015
SQLSTATE: HY000
(ER_RPL_GTID_TABLE_CANNOT_OPEN
)
Message: Gtid table is not ready to be used. Table '%s.%s' cannot be opened.
ER_RPL_GTID_TABLE_CANNOT_OPEN
was
added in 8.0.2.
Error: 10016
SQLSTATE: HY000
(ER_SYSTEM_SCHEMA_NOT_FOUND
)
Message: System schema directory does not exist.
ER_SYSTEM_SCHEMA_NOT_FOUND
was
added in 8.0.2.
Error: 10017
SQLSTATE: HY000
(ER_DD_INIT_UPGRADE_FAILED
)
Message: Error in initializing dictionary, upgrade will do a cleanup and exit
ER_DD_INIT_UPGRADE_FAILED
was
added in 8.0.2.
Error: 10018
SQLSTATE: HY000
(ER_VIEW_UNKNOWN_CHARSET_OR_COLLATION
)
Message: View '%s'.'%s': unknown charset name and/or collation name (client: '%s'; connection: '%s').
ER_VIEW_UNKNOWN_CHARSET_OR_COLLATION
was added in 8.0.2.
Error: 10019
SQLSTATE: HY000
(ER_DD_VIEW_CANT_ALLOC_CHARSET
)
Message: Error in allocating memory for character set name for view %s.%s.
ER_DD_VIEW_CANT_ALLOC_CHARSET
was
added in 8.0.2.
Error: 10020
SQLSTATE: HY000
(ER_DD_INIT_FAILED
)
Message: Data Dictionary initialization failed.
ER_DD_INIT_FAILED
was added in
8.0.2.
Error: 10021
SQLSTATE: HY000
(ER_DD_UPDATING_PLUGIN_MD_FAILED
)
Message: Failed to update plugin metadata in dictionary tables.
ER_DD_UPDATING_PLUGIN_MD_FAILED
was added in 8.0.2.
Error: 10022
SQLSTATE: HY000
(ER_DD_POPULATING_TABLES_FAILED
)
Message: Failed to Populate DD tables.
ER_DD_POPULATING_TABLES_FAILED
was
added in 8.0.2.
Error: 10023
SQLSTATE: HY000
(ER_DD_VIEW_CANT_CREATE
)
Message: Error in Creating View %s.%s
ER_DD_VIEW_CANT_CREATE
was added
in 8.0.2.
Error: 10024
SQLSTATE: HY000
(ER_DD_METADATA_NOT_FOUND
)
Message: Unable to start server. Cannot find the meta data for data dictionary table '%s'.
ER_DD_METADATA_NOT_FOUND
was added
in 8.0.2.
Error: 10025
SQLSTATE: HY000
(ER_DD_CACHE_NOT_EMPTY_AT_SHUTDOWN
)
Message: Dictionary cache not empty at shutdown.
ER_DD_CACHE_NOT_EMPTY_AT_SHUTDOWN
was added in 8.0.2.
Error: 10026
SQLSTATE: HY000
(ER_DD_OBJECT_REMAINS
)
Message: Dictionary objects used but not released.
ER_DD_OBJECT_REMAINS
was added in
8.0.2.
Error: 10027
SQLSTATE: HY000
(ER_DD_OBJECT_REMAINS_IN_RELEASER
)
Message: Dictionary objects left in default releaser.
ER_DD_OBJECT_REMAINS_IN_RELEASER
was added in 8.0.2.
Error: 10028
SQLSTATE: HY000
(ER_DD_OBJECT_RELEASER_REMAINS
)
Message: Dictionary object auto releaser not deleted
ER_DD_OBJECT_RELEASER_REMAINS
was
added in 8.0.2.
Error: 10029
SQLSTATE: HY000
(ER_DD_CANT_GET_OBJECT_KEY
)
Message: Error: Unable to create primary object key
ER_DD_CANT_GET_OBJECT_KEY
was
added in 8.0.2.
Error: 10030
SQLSTATE: HY000
(ER_DD_CANT_CREATE_OBJECT_KEY
)
Message: Error: Unable to create object key
ER_DD_CANT_CREATE_OBJECT_KEY
was
added in 8.0.2.
Error: 10031
SQLSTATE: HY000
(ER_CANT_CREATE_HANDLE_MGR_THREAD
)
Message: Can't create handle_manager thread (errno= %d)
ER_CANT_CREATE_HANDLE_MGR_THREAD
was added in 8.0.2.
Error: 10032
SQLSTATE: HY000
(ER_RPL_REPO_HAS_GAPS
)
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.
ER_RPL_REPO_HAS_GAPS
was added in
8.0.2.
Error: 10033
SQLSTATE: HY000
(ER_INVALID_VALUE_FOR_ENFORCE_GTID_CONSISTENCY
)
Message: option 'enforce-gtid-consistency': value '%s' was not recognized. Setting enforce-gtid-consistency to OFF.
ER_INVALID_VALUE_FOR_ENFORCE_GTID_CONSISTENCY
was added in 8.0.2.
Error: 10034
SQLSTATE: HY000
(ER_CHANGED_ENFORCE_GTID_CONSISTENCY
)
Message: Changed ENFORCE_GTID_CONSISTENCY from %s to %s.
ER_CHANGED_ENFORCE_GTID_CONSISTENCY
was added in 8.0.2.
Error: 10035
SQLSTATE: HY000
(ER_CHANGED_GTID_MODE
)
Message: Changed GTID_MODE from %s to %s.
ER_CHANGED_GTID_MODE
was added in
8.0.2.
Error: 10036
SQLSTATE: HY000
(ER_DISABLED_STORAGE_ENGINE_AS_DEFAULT
)
Message: %s is set to a disabled storage engine %s.
ER_DISABLED_STORAGE_ENGINE_AS_DEFAULT
was added in 8.0.2.
Error: 10037
SQLSTATE: HY000
(ER_DEBUG_SYNC_HIT
)
Message: Debug sync points hit: %s
ER_DEBUG_SYNC_HIT
was added in
8.0.2.
Error: 10038
SQLSTATE: HY000
(ER_DEBUG_SYNC_EXECUTED
)
Message: Debug sync points executed: %s
ER_DEBUG_SYNC_EXECUTED
was added
in 8.0.2.
Error: 10039
SQLSTATE: HY000
(ER_DEBUG_SYNC_THREAD_MAX
)
Message: Debug sync points max active per thread: %s
ER_DEBUG_SYNC_THREAD_MAX
was added
in 8.0.2.
Error: 10040
SQLSTATE: HY000
(ER_DEBUG_SYNC_OOM
)
Message: Debug Sync Facility disabled due to lack of memory.
ER_DEBUG_SYNC_OOM
was added in
8.0.2.
Error: 10041
SQLSTATE: HY000
(ER_CANT_INIT_TC_LOG
)
Message: Can't init tc log
ER_CANT_INIT_TC_LOG
was added in
8.0.2.
Error: 10042
SQLSTATE: HY000
(ER_EVENT_CANT_INIT_QUEUE
)
Message: Event Scheduler: Can't initialize the execution queue
ER_EVENT_CANT_INIT_QUEUE
was added
in 8.0.2.
Error: 10043
SQLSTATE: HY000
(ER_EVENT_PURGING_QUEUE
)
Message: Event Scheduler: Purging the queue. %u events
ER_EVENT_PURGING_QUEUE
was added
in 8.0.2.
Error: 10044
SQLSTATE: HY000
(ER_EVENT_LAST_EXECUTION
)
Message: Event Scheduler: Last execution of %s.%s. %s
ER_EVENT_LAST_EXECUTION
was added
in 8.0.2.
Error: 10045
SQLSTATE: HY000
(ER_EVENT_MESSAGE_STACK
)
Message: %*s
ER_EVENT_MESSAGE_STACK
was added
in 8.0.2.
Error: 10046
SQLSTATE: HY000
(ER_EVENT_EXECUTION_FAILED
)
Message: Event Scheduler: [%s].[%s.%s] event execution failed.
ER_EVENT_EXECUTION_FAILED
was
added in 8.0.2.
Error: 10047
SQLSTATE: HY000
(ER_CANT_INIT_SCHEDULER_THREAD
)
Message: Event Scheduler: Cannot initialize the scheduler thread
ER_CANT_INIT_SCHEDULER_THREAD
was
added in 8.0.2.
Error: 10048
SQLSTATE: HY000
(ER_SCHEDULER_STOPPED
)
Message: Event Scheduler: Stopped
ER_SCHEDULER_STOPPED
was added in
8.0.2.
Error: 10049
SQLSTATE: HY000
(ER_CANT_CREATE_SCHEDULER_THREAD
)
Message: Event scheduler: Failed to start scheduler, Can not create thread for event scheduler (errno=%d)
ER_CANT_CREATE_SCHEDULER_THREAD
was added in 8.0.2.
Error: 10050
SQLSTATE: HY000
(ER_SCHEDULER_WAITING
)
Message: Event Scheduler: Waiting for the scheduler thread to reply
ER_SCHEDULER_WAITING
was added in
8.0.2.
Error: 10051
SQLSTATE: HY000
(ER_SCHEDULER_STARTED
)
Message: Event Scheduler: scheduler thread started with id %u
ER_SCHEDULER_STARTED
was added in
8.0.2.
Error: 10052
SQLSTATE: HY000
(ER_SCHEDULER_STOPPING_FAILED_TO_GET_EVENT
)
Message: Event Scheduler: Serious error during getting next event to execute. Stopping
ER_SCHEDULER_STOPPING_FAILED_TO_GET_EVENT
was added in 8.0.2.
Error: 10053
SQLSTATE: HY000
(ER_SCHEDULER_STOPPING_FAILED_TO_CREATE_WORKER
)
Message: Event_scheduler::execute_top: Can not create event worker thread (errno=%d). Stopping event scheduler
ER_SCHEDULER_STOPPING_FAILED_TO_CREATE_WORKER
was added in 8.0.2.
Error: 10054
SQLSTATE: HY000
(ER_SCHEDULER_KILLING
)
Message: Event Scheduler: Killing the scheduler thread, thread id %u
ER_SCHEDULER_KILLING
was added in
8.0.2.
Error: 10055
SQLSTATE: HY000
(ER_UNABLE_TO_RESOLVE_IP
)
Message: IP address '%s' could not be resolved: %s
ER_UNABLE_TO_RESOLVE_IP
was added
in 8.0.2.
Error: 10056
SQLSTATE: HY000
(ER_UNABLE_TO_RESOLVE_HOSTNAME
)
Message: Host name '%s' could not be resolved: %s
ER_UNABLE_TO_RESOLVE_HOSTNAME
was
added in 8.0.2.
Error: 10057
SQLSTATE: HY000
(ER_HOSTNAME_RESEMBLES_IPV4
)
Message: IP address '%s' has been resolved to the host name '%s', which resembles IPv4-address itself.
ER_HOSTNAME_RESEMBLES_IPV4
was
added in 8.0.2.
Error: 10058
SQLSTATE: HY000
(ER_HOSTNAME_DOESNT_RESOLVE_TO
)
Message: Hostname '%s' does not resolve to '%s'.
ER_HOSTNAME_DOESNT_RESOLVE_TO
was
added in 8.0.2.
Error: 10059
SQLSTATE: HY000
(ER_ADDRESSES_FOR_HOSTNAME_HEADER
)
Message: Hostname '%s' has the following IP addresses:
ER_ADDRESSES_FOR_HOSTNAME_HEADER
was added in 8.0.2.
Error: 10060
SQLSTATE: HY000
(ER_ADDRESSES_FOR_HOSTNAME_LIST_ITEM
)
Message: - %s
ER_ADDRESSES_FOR_HOSTNAME_LIST_ITEM
was added in 8.0.2.
Error: 10061
SQLSTATE: HY000
(ER_TRG_WITHOUT_DEFINER
)
Message: Definer clause is missing in Trigger of Table %s. Rebuild Trigger to fix definer.
ER_TRG_WITHOUT_DEFINER
was added
in 8.0.2.
Error: 10062
SQLSTATE: HY000
(ER_TRG_NO_CLIENT_CHARSET
)
Message: Client character set is missing for trigger of table %s. Using default character set.
ER_TRG_NO_CLIENT_CHARSET
was added
in 8.0.2.
Error: 10063
SQLSTATE: HY000
(ER_PARSING_VIEW
)
Message: Error in parsing view %s.%s
ER_PARSING_VIEW
was added in
8.0.2.
Error: 10064
SQLSTATE: HY000
(ER_COMPONENTS_INFRASTRUCTURE_BOOTSTRAP
)
Message: Failed to bootstrap components infrastructure.
ER_COMPONENTS_INFRASTRUCTURE_BOOTSTRAP
was added in 8.0.2.
Error: 10065
SQLSTATE: HY000
(ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN
)
Message: Failed to shutdown components infrastructure.
ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN
was added in 8.0.2.
Error: 10066
SQLSTATE: HY000
(ER_COMPONENTS_PERSIST_LOADER_BOOTSTRAP
)
Message: Failed to bootstrap persistent components loader.
ER_COMPONENTS_PERSIST_LOADER_BOOTSTRAP
was added in 8.0.2.
Error: 10067
SQLSTATE: HY000
(ER_DEPART_WITH_GRACE
)
Message: Giving %d client threads a chance to die gracefully
ER_DEPART_WITH_GRACE
was added in
8.0.2.
Error: 10068
SQLSTATE: HY000
(ER_CA_SELF_SIGNED
)
Message: CA certificate %s is self signed.
ER_CA_SELF_SIGNED
was added in
8.0.2.
Error: 10069
SQLSTATE: HY000
(ER_SSL_LIBRARY_ERROR
)
Message: Failed to set up SSL because of the following SSL library error: %s
ER_SSL_LIBRARY_ERROR
was added in
8.0.2.
Error: 10070
SQLSTATE: HY000
(ER_NO_THD_NO_UUID
)
Message: Failed to generate a server UUID because it is failed to allocate the THD.
ER_NO_THD_NO_UUID
was added in
8.0.2.
Error: 10071
SQLSTATE: HY000
(ER_UUID_SALT
)
Message: Salting uuid generator variables, current_pid: %lu, server_start_time: %lu, bytes_sent: %llu,
ER_UUID_SALT
was added in 8.0.2.
Error: 10072
SQLSTATE: HY000
(ER_UUID_IS
)
Message: Generated uuid: '%s', server_start_time: %lu, bytes_sent: %llu
ER_UUID_IS
was added in 8.0.2.
Error: 10073
SQLSTATE: HY000
(ER_UUID_INVALID
)
Message: The server_uuid stored in auto.cnf file is not a valid UUID.
ER_UUID_INVALID
was added in
8.0.2.
Error: 10074
SQLSTATE: HY000
(ER_UUID_SCRUB
)
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.
ER_UUID_SCRUB
was added in 8.0.2.
Error: 10075
SQLSTATE: HY000
(ER_CREATING_NEW_UUID
)
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.
ER_CREATING_NEW_UUID
was added in
8.0.2.
Error: 10076
SQLSTATE: HY000
(ER_CANT_CREATE_UUID
)
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.
ER_CANT_CREATE_UUID
was added in
8.0.2.
Error: 10077
SQLSTATE: HY000
(ER_UNKNOWN_UNSUPPORTED_STORAGE_ENGINE
)
Message: Unknown/unsupported storage engine: %s
ER_UNKNOWN_UNSUPPORTED_STORAGE_ENGINE
was added in 8.0.2.
Error: 10078
SQLSTATE: HY000
(ER_SECURE_AUTH_VALUE_UNSUPPORTED
)
Message: Unsupported value 0 for secure-auth
ER_SECURE_AUTH_VALUE_UNSUPPORTED
was added in 8.0.2.
Error: 10079
SQLSTATE: HY000
(ER_INVALID_INSTRUMENT
)
Message: Invalid instrument name or value for performance_schema_instrument '%s'
ER_INVALID_INSTRUMENT
was added in
8.0.2.
Error: 10080
SQLSTATE: HY000
(ER_INNODB_MANDATORY
)
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.
ER_INNODB_MANDATORY
was added in
8.0.2.
Error: 10082
SQLSTATE: HY000
(ER_OLD_PASSWORDS_NO_MIDDLE_GROUND
)
Message: Invalid old_passwords mode: 1. Valid values are 2 and 0
ER_OLD_PASSWORDS_NO_MIDDLE_GROUND
was added in 8.0.2.
Error: 10083
SQLSTATE: HY000
(ER_VERBOSE_REQUIRES_HELP
)
Message: --verbose is for use with --help; did you mean --log-error-verbosity?
ER_VERBOSE_REQUIRES_HELP
was added
in 8.0.2.
Error: 10084
SQLSTATE: HY000
(ER_POINTLESS_WITHOUT_SLOWLOG
)
Message: options --log-slow-admin-statements, --log-queries-not-using-indexes and --log-slow-slave-statements have no effect if --slow-query-log is not set
ER_POINTLESS_WITHOUT_SLOWLOG
was
added in 8.0.2.
Error: 10085
SQLSTATE: HY000
(ER_WASTEFUL_NET_BUFFER_SIZE
)
Message: net_buffer_length (%lu) is set to be larger than max_allowed_packet (%lu). Please rectify.
ER_WASTEFUL_NET_BUFFER_SIZE
was
added in 8.0.2.
Error: 10086
SQLSTATE: HY000
(ER_DEPRECATED_TIMESTAMP_IMPLICIT_DEFAULTS
)
Message: TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
ER_DEPRECATED_TIMESTAMP_IMPLICIT_DEFAULTS
was added in 8.0.2.
Error: 10087
SQLSTATE: HY000
(ER_FT_BOOL_SYNTAX_INVALID
)
Message: Invalid ft-boolean-syntax string: %s
ER_FT_BOOL_SYNTAX_INVALID
was
added in 8.0.2.
Error: 10088
SQLSTATE: HY000
(ER_CREDENTIALLESS_AUTO_USER_BAD
)
Message: 'NO_AUTO_CREATE_USER' sql mode was not set.
ER_CREDENTIALLESS_AUTO_USER_BAD
was added in 8.0.2.
Error: 10089
SQLSTATE: HY000
(ER_CONNECTION_HANDLING_OOM
)
Message: Could not allocate memory for connection handling
ER_CONNECTION_HANDLING_OOM
was
added in 8.0.2.
Error: 10090
SQLSTATE: HY000
(ER_THREAD_HANDLING_OOM
)
Message: Could not allocate memory for thread handling
ER_THREAD_HANDLING_OOM
was added
in 8.0.2.
Error: 10091
SQLSTATE: HY000
(ER_CANT_CREATE_TEST_FILE
)
Message: Can't create test file %s
ER_CANT_CREATE_TEST_FILE
was added
in 8.0.2.
Error: 10092
SQLSTATE: HY000
(ER_CANT_CREATE_PID_FILE
)
Message: Can't start server: can't create PID file: %s
ER_CANT_CREATE_PID_FILE
was added
in 8.0.2.
Error: 10093
SQLSTATE: HY000
(ER_CANT_REMOVE_PID_FILE
)
Message: Unable to delete pid file: %s
ER_CANT_REMOVE_PID_FILE
was added
in 8.0.2.
Error: 10094
SQLSTATE: HY000
(ER_CANT_CREATE_SHUTDOWN_THREAD
)
Message: Can't create thread to handle shutdown requests (errno= %d)
ER_CANT_CREATE_SHUTDOWN_THREAD
was
added in 8.0.2.
Error: 10095
SQLSTATE: HY000
(ER_SEC_FILE_PRIV_CANT_ACCESS_DIR
)
Message: Failed to access directory for --secure-file-priv. Please make sure that directory exists and is accessible by MySQL Server. Supplied value : %s
ER_SEC_FILE_PRIV_CANT_ACCESS_DIR
was added in 8.0.2.
Error: 10096
SQLSTATE: HY000
(ER_SEC_FILE_PRIV_IGNORED
)
Message: Ignoring --secure-file-priv value as server is running with --initialize(-insecure).
ER_SEC_FILE_PRIV_IGNORED
was added
in 8.0.2.
Error: 10097
SQLSTATE: HY000
(ER_SEC_FILE_PRIV_EMPTY
)
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.
ER_SEC_FILE_PRIV_EMPTY
was added
in 8.0.2.
Error: 10098
SQLSTATE: HY000
(ER_SEC_FILE_PRIV_NULL
)
Message: --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled
ER_SEC_FILE_PRIV_NULL
was added in
8.0.2.
Error: 10099
SQLSTATE: HY000
(ER_SEC_FILE_PRIV_DIRECTORY_INSECURE
)
Message: Insecure configuration for --secure-file-priv: %s is accessible through --secure-file-priv. Consider choosing a different directory.
ER_SEC_FILE_PRIV_DIRECTORY_INSECURE
was added in 8.0.2.
Error: 10100
SQLSTATE: HY000
(ER_SEC_FILE_PRIV_CANT_STAT
)
Message: Failed to get stat for directory pointed out by --secure-file-priv
ER_SEC_FILE_PRIV_CANT_STAT
was
added in 8.0.2.
Error: 10101
SQLSTATE: HY000
(ER_SEC_FILE_PRIV_DIRECTORY_PERMISSIONS
)
Message: Insecure configuration for --secure-file-priv: Location is accessible to all OS users. Consider choosing a different directory.
ER_SEC_FILE_PRIV_DIRECTORY_PERMISSIONS
was added in 8.0.2.
Error: 10102
SQLSTATE: HY000
(ER_SEC_FILE_PRIV_ARGUMENT_TOO_LONG
)
Message: Value for --secure-file-priv is longer than maximum limit of %d
ER_SEC_FILE_PRIV_ARGUMENT_TOO_LONG
was added in 8.0.2.
Error: 10103
SQLSTATE: HY000
(ER_CANT_CREATE_NAMED_PIPES_THREAD
)
Message: Can't create thread to handle named pipes (errno= %d)
ER_CANT_CREATE_NAMED_PIPES_THREAD
was added in 8.0.2.
Error: 10104
SQLSTATE: HY000
(ER_CANT_CREATE_TCPIP_THREAD
)
Message: Can't create thread to handle TCP/IP (errno= %d)
ER_CANT_CREATE_TCPIP_THREAD
was
added in 8.0.2.
Error: 10105
SQLSTATE: HY000
(ER_CANT_CREATE_SHM_THREAD
)
Message: Can't create thread to handle shared memory (errno= %d)
ER_CANT_CREATE_SHM_THREAD
was
added in 8.0.2.
Error: 10106
SQLSTATE: HY000
(ER_CANT_CREATE_INTERRUPT_THREAD
)
Message: Can't create interrupt-thread (error %d, errno: %d)
ER_CANT_CREATE_INTERRUPT_THREAD
was added in 8.0.2.
Error: 10107
SQLSTATE: HY000
(ER_WRITABLE_CONFIG_REMOVED
)
Message: World-writable config file '%s' has been removed.
ER_WRITABLE_CONFIG_REMOVED
was
added in 8.0.2.
Error: 10108
SQLSTATE: HY000
(ER_CORE_VALUES
)
Message: setrlimit could not change the size of core files to 'infinity'; We may not be able to generate a core file on signals
ER_CORE_VALUES
was added in 8.0.2.
Error: 10109
SQLSTATE: HY000
(ER_WRONG_DATETIME_SPEC
)
Message: Wrong date/time format specifier: %s
ER_WRONG_DATETIME_SPEC
was added
in 8.0.2.
Error: 10110
SQLSTATE: HY000
(ER_RPL_BINLOG_FILTERS_OOM
)
Message: Could not allocate replication and binlog filters: %s
ER_RPL_BINLOG_FILTERS_OOM
was
added in 8.0.2.
Error: 10111
SQLSTATE: HY000
(ER_KEYCACHE_OOM
)
Message: Cannot allocate the keycache
ER_KEYCACHE_OOM
was added in
8.0.2.
Error: 10112
SQLSTATE: HY000
(ER_CONFIRMING_THE_FUTURE
)
Message: Current time has got past year 2038. Validating current time with %d iterations before initiating the normal server shutdown process.
ER_CONFIRMING_THE_FUTURE
was added
in 8.0.2.
Error: 10113
SQLSTATE: HY000
(ER_BACK_IN_TIME
)
Message: Iteration %d: Obtained valid current time from system
ER_BACK_IN_TIME
was added in
8.0.2.
Error: 10114
SQLSTATE: HY000
(ER_FUTURE_DATE
)
Message: Iteration %d: Current time obtained from system is greater than 2038
ER_FUTURE_DATE
was added in 8.0.2.
Error: 10115
SQLSTATE: HY000
(ER_UNSUPPORTED_DATE
)
Message: This MySQL server doesn't support dates later then 2038
ER_UNSUPPORTED_DATE
was added in
8.0.2.
Error: 10116
SQLSTATE: HY000
(ER_STARTING_AS
)
Message: %s (mysqld %s) starting as process %lu
ER_STARTING_AS
was added in 8.0.2.
Error: 10117
SQLSTATE: HY000
(ER_SHUTTING_DOWN_SLAVE_THREADS
)
Message: Shutting down slave threads
ER_SHUTTING_DOWN_SLAVE_THREADS
was
added in 8.0.2.
Error: 10118
SQLSTATE: HY000
(ER_DISCONNECTING_REMAINING_CLIENTS
)
Message: Forcefully disconnecting %d remaining clients
ER_DISCONNECTING_REMAINING_CLIENTS
was added in 8.0.2.
Error: 10119
SQLSTATE: HY000
(ER_ABORTING
)
Message: Aborting
ER_ABORTING
was added in 8.0.2.
Error: 10120
SQLSTATE: HY000
(ER_BINLOG_END
)
Message: Binlog end
ER_BINLOG_END
was added in 8.0.2.
Error: 10121
SQLSTATE: HY000
(ER_CALL_ME_LOCALHOST
)
Message: gethostname failed, using '%s' as hostname
ER_CALL_ME_LOCALHOST
was added in
8.0.2.
Error: 10122
SQLSTATE: HY000
(ER_USER_REQUIRES_ROOT
)
Message: One can only use the --user switch if running as root
ER_USER_REQUIRES_ROOT
was added in
8.0.2.
Error: 10123
SQLSTATE: HY000
(ER_REALLY_RUN_AS_ROOT
)
Message: Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
ER_REALLY_RUN_AS_ROOT
was added in
8.0.2.
Error: 10124
SQLSTATE: HY000
(ER_USER_WHAT_USER
)
Message: Fatal error: Can't change to run as user '%s' ; Please check that the user exists!
ER_USER_WHAT_USER
was added in
8.0.2.
Error: 10125
SQLSTATE: HY000
(ER_TRANSPORTS_WHAT_TRANSPORTS
)
Message: Server is started with --require-secure-transport=ON but no secure transports (SSL or Shared Memory) are configured.
ER_TRANSPORTS_WHAT_TRANSPORTS
was
added in 8.0.2.
Error: 10126
SQLSTATE: HY000
(ER_FAIL_SETGID
)
Message: setgid: %s
ER_FAIL_SETGID
was added in 8.0.2.
Error: 10127
SQLSTATE: HY000
(ER_FAIL_SETUID
)
Message: setuid: %s
ER_FAIL_SETUID
was added in 8.0.2.
Error: 10128
SQLSTATE: HY000
(ER_FAIL_SETREGID
)
Message: setregid: %s
ER_FAIL_SETREGID
was added in
8.0.2.
Error: 10129
SQLSTATE: HY000
(ER_FAIL_SETREUID
)
Message: setreuid: %s
ER_FAIL_SETREUID
was added in
8.0.2.
Error: 10130
SQLSTATE: HY000
(ER_FAIL_CHROOT
)
Message: chroot: %s
ER_FAIL_CHROOT
was added in 8.0.2.
Error: 10131
SQLSTATE: HY000
(ER_WIN_LISTEN_BUT_HOW
)
Message: TCP/IP, --shared-memory, or --named-pipe should be configured on NT OS
ER_WIN_LISTEN_BUT_HOW
was added in
8.0.2.
Error: 10132
SQLSTATE: HY000
(ER_NOT_RIGHT_NOW
)
Message: CTRL-C ignored during startup
ER_NOT_RIGHT_NOW
was added in
8.0.2.
Error: 10133
SQLSTATE: HY000
(ER_FIXING_CLIENT_CHARSET
)
Message: '%s' can not be used as client character set. '%s' will be used as default client character set.
ER_FIXING_CLIENT_CHARSET
was added
in 8.0.2.
Error: 10134
SQLSTATE: HY000
(ER_OOM
)
Message: Out of memory
ER_OOM
was added in 8.0.2.
Error: 10135
SQLSTATE: HY000
(ER_FAILED_TO_LOCK_MEM
)
Message: Failed to lock memory. Errno: %d
ER_FAILED_TO_LOCK_MEM
was added in
8.0.2.
Error: 10136
SQLSTATE: HY000
(ER_MYINIT_FAILED
)
Message: my_init() failed.
ER_MYINIT_FAILED
was added in
8.0.2.
Error: 10137
SQLSTATE: HY000
(ER_BEG_INITFILE
)
Message: Execution of init_file \'%s\' started.
ER_BEG_INITFILE
was added in
8.0.2.
Error: 10138
SQLSTATE: HY000
(ER_END_INITFILE
)
Message: Execution of init_file \'%s\' ended.
ER_END_INITFILE
was added in
8.0.2.
Error: 10139
SQLSTATE: HY000
(ER_CHANGED_MAX_OPEN_FILES
)
Message: Changed limits: max_open_files: %lu (requested %lu)
ER_CHANGED_MAX_OPEN_FILES
was
added in 8.0.2.
Error: 10140
SQLSTATE: HY000
(ER_CANT_INCREASE_MAX_OPEN_FILES
)
Message: Could not increase number of max_open_files to more than %lu (request: %lu)
ER_CANT_INCREASE_MAX_OPEN_FILES
was added in 8.0.2.
Error: 10141
SQLSTATE: HY000
(ER_CHANGED_MAX_CONNECTIONS
)
Message: Changed limits: max_connections: %lu (requested %lu)
ER_CHANGED_MAX_CONNECTIONS
was
added in 8.0.2.
Error: 10142
SQLSTATE: HY000
(ER_CHANGED_TABLE_OPEN_CACHE
)
Message: Changed limits: table_open_cache: %lu (requested %lu)
ER_CHANGED_TABLE_OPEN_CACHE
was
added in 8.0.2.
Error: 10143
SQLSTATE: HY000
(ER_THE_USER_ABIDES
)
Message: Ignoring user change to '%s' because the user was set to '%s' earlier on the command line
ER_THE_USER_ABIDES
was added in
8.0.2.
Error: 10144
SQLSTATE: HY000
(ER_RPL_CANT_ADD_DO_TABLE
)
Message: Could not add do table rule '%s'!
ER_RPL_CANT_ADD_DO_TABLE
was added
in 8.0.2.
Error: 10145
SQLSTATE: HY000
(ER_RPL_CANT_ADD_IGNORE_TABLE
)
Message: Could not add ignore table rule '%s'!
ER_RPL_CANT_ADD_IGNORE_TABLE
was
added in 8.0.2.
Error: 10146
SQLSTATE: HY000
(ER_TRACK_VARIABLES_BOGUS
)
Message: The variable session_track_system_variables either has duplicate values or invalid values.
ER_TRACK_VARIABLES_BOGUS
was added
in 8.0.2.
Error: 10147
SQLSTATE: HY000
(ER_EXCESS_ARGUMENTS
)
Message: Too many arguments (first extra is '%s').
ER_EXCESS_ARGUMENTS
was added in
8.0.2.
Error: 10148
SQLSTATE: HY000
(ER_VERBOSE_HINT
)
Message: Use --verbose --help to get a list of available options!
ER_VERBOSE_HINT
was added in
8.0.2.
Error: 10149
SQLSTATE: HY000
(ER_CANT_READ_ERRMSGS
)
Message: Unable to read errmsg.sys file
ER_CANT_READ_ERRMSGS
was added in
8.0.2.
Error: 10150
SQLSTATE: HY000
(ER_CANT_INIT_DBS
)
Message: Can't init databases
ER_CANT_INIT_DBS
was added in
8.0.2.
Error: 10151
SQLSTATE: HY000
(ER_LOG_OUTPUT_CONTRADICTORY
)
Message: There were other values specified to log-output besides NONE. Disabling slow and general logs anyway.
ER_LOG_OUTPUT_CONTRADICTORY
was
added in 8.0.2.
Error: 10152
SQLSTATE: HY000
(ER_NO_CSV_NO_LOG_TABLES
)
Message: CSV engine is not present, falling back to the log files
ER_NO_CSV_NO_LOG_TABLES
was added
in 8.0.2.
Error: 10153
SQLSTATE: HY000
(ER_RPL_REWRITEDB_MISSING_ARROW
)
Message: Bad syntax in replicate-rewrite-db - missing '->'!
ER_RPL_REWRITEDB_MISSING_ARROW
was
added in 8.0.2.
Error: 10154
SQLSTATE: HY000
(ER_RPL_REWRITEDB_EMPTY_FROM
)
Message: Bad syntax in replicate-rewrite-db - empty FROM db!
ER_RPL_REWRITEDB_EMPTY_FROM
was
added in 8.0.2.
Error: 10155
SQLSTATE: HY000
(ER_RPL_REWRITEDB_EMPTY_TO
)
Message: Bad syntax in replicate-rewrite-db - empty TO db!
ER_RPL_REWRITEDB_EMPTY_TO
was
added in 8.0.2.
Error: 10156
SQLSTATE: HY000
(ER_LOG_FILES_GIVEN_LOG_OUTPUT_IS_TABLE
)
Message: Although a path was specified for the %s, log tables are used. To enable logging to files use the --log-output=file option.
ER_LOG_FILES_GIVEN_LOG_OUTPUT_IS_TABLE
was added in 8.0.2.
Error: 10157
SQLSTATE: HY000
(ER_LOG_FILE_INVALID
)
Message: Invalid value for %s: %s
ER_LOG_FILE_INVALID
was added in
8.0.2.
Error: 10158
SQLSTATE: HY000
(ER_LOWER_CASE_TABLE_NAMES_CS_DD_ON_CI_FS_UNSUPPORTED
)
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.
ER_LOWER_CASE_TABLE_NAMES_CS_DD_ON_CI_FS_UNSUPPORTED
was added in 8.0.2.
Error: 10159
SQLSTATE: HY000
(ER_LOWER_CASE_TABLE_NAMES_USING_2
)
Message: Setting lower_case_table_names=2 because file system for %s is case insensitive
ER_LOWER_CASE_TABLE_NAMES_USING_2
was added in 8.0.2.
Error: 10160
SQLSTATE: HY000
(ER_LOWER_CASE_TABLE_NAMES_USING_0
)
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.
ER_LOWER_CASE_TABLE_NAMES_USING_0
was added in 8.0.2.
Error: 10161
SQLSTATE: HY000
(ER_NEED_LOG_BIN
)
Message: You need to use --log-bin to make %s work.
ER_NEED_LOG_BIN
was added in
8.0.2.
Error: 10162
SQLSTATE: HY000
(ER_NEED_FILE_INSTEAD_OF_DIR
)
Message: Path '%s' is a directory name, please specify a file name for %s option
ER_NEED_FILE_INSTEAD_OF_DIR
was
added in 8.0.2.
Error: 10163
SQLSTATE: HY000
(ER_LOG_BIN_BETTER_WITH_NAME
)
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 master and has his hostname changed!! Please use '--log-bin=%s' to avoid this problem.
ER_LOG_BIN_BETTER_WITH_NAME
was
added in 8.0.2.
Error: 10164
SQLSTATE: HY000
(ER_BINLOG_NEEDS_SERVERID
)
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
ER_BINLOG_NEEDS_SERVERID
was added
in 8.0.2.
Error: 10165
SQLSTATE: HY000
(ER_RPL_CANT_MAKE_PATHS
)
Message: Unable to create replication path names: out of memory or path names too long (path name exceeds %d or file name exceeds %d).
ER_RPL_CANT_MAKE_PATHS
was added
in 8.0.2.
Error: 10166
SQLSTATE: HY000
(ER_CANT_INITIALIZE_GTID
)
Message: Failed to initialize GTID structures.
ER_CANT_INITIALIZE_GTID
was added
in 8.0.2.
Error: 10167
SQLSTATE: HY000
(ER_CANT_INITIALIZE_EARLY_PLUGINS
)
Message: Failed to initialize early plugins.
ER_CANT_INITIALIZE_EARLY_PLUGINS
was added in 8.0.2.
Error: 10168
SQLSTATE: HY000
(ER_CANT_INITIALIZE_BUILTIN_PLUGINS
)
Message: Failed to initialize builtin plugins.
ER_CANT_INITIALIZE_BUILTIN_PLUGINS
was added in 8.0.2.
Error: 10169
SQLSTATE: HY000
(ER_CANT_INITIALIZE_DYNAMIC_PLUGINS
)
Message: Failed to initialize dynamic plugins.
ER_CANT_INITIALIZE_DYNAMIC_PLUGINS
was added in 8.0.2.
Error: 10170
SQLSTATE: HY000
(ER_PERFSCHEMA_INIT_FAILED
)
Message: Performance schema disabled (reason: init failed).
ER_PERFSCHEMA_INIT_FAILED
was
added in 8.0.2.
Error: 10171
SQLSTATE: HY000
(ER_STACKSIZE_UNEXPECTED
)
Message: Asked for %lu thread stack, but got %ld
ER_STACKSIZE_UNEXPECTED
was added
in 8.0.2.
Error: 10172
SQLSTATE: HY000
(ER_CANT_SET_DATADIR
)
Message: failed to set datadir to %s
ER_CANT_SET_DATADIR
was added in
8.0.2.
Error: 10173
SQLSTATE: HY000
(ER_CANT_STAT_DATADIR
)
Message: Can't read data directory's stats (%d): %s. Assuming that it's not owned by the same user/group
ER_CANT_STAT_DATADIR
was added in
8.0.2.
Error: 10174
SQLSTATE: HY000
(ER_CANT_CHOWN_DATADIR
)
Message: Can't change data directory owner to %s
ER_CANT_CHOWN_DATADIR
was added in
8.0.2.
Error: 10175
SQLSTATE: HY000
(ER_CANT_SET_UP_PERSISTED_VALUES
)
Message: Setting persistent options failed.
ER_CANT_SET_UP_PERSISTED_VALUES
was added in 8.0.2.
Error: 10176
SQLSTATE: HY000
(ER_CANT_SAVE_GTIDS
)
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.
ER_CANT_SAVE_GTIDS
was added in
8.0.2.
Error: 10177
SQLSTATE: HY000
(ER_AUTH_CANT_SET_DEFAULT_PLUGIN
)
Message: Can't start server: Invalid value for --default-authentication-plugin
ER_AUTH_CANT_SET_DEFAULT_PLUGIN
was added in 8.0.2.
Error: 10178
SQLSTATE: HY000
(ER_CANT_JOIN_SHUTDOWN_THREAD
)
Message: Could not join %sthread. error:%d
ER_CANT_JOIN_SHUTDOWN_THREAD
was
added in 8.0.2.
Error: 10179
SQLSTATE: HY000
(ER_CANT_HASH_DO_AND_IGNORE_RULES
)
Message: An error occurred while building do_table and ignore_table rules to hashes for global replication filter.
ER_CANT_HASH_DO_AND_IGNORE_RULES
was added in 8.0.2.
Error: 10180
SQLSTATE: HY000
(ER_CANT_OPEN_CA
)
Message: Error opening CA certificate file
ER_CANT_OPEN_CA
was added in
8.0.2.
Error: 10181
SQLSTATE: HY000
(ER_CANT_ACCESS_CAPATH
)
Message: Error accessing directory pointed by --ssl-capath
ER_CANT_ACCESS_CAPATH
was added in
8.0.2.
Error: 10182
SQLSTATE: HY000
(ER_SSL_TRYING_DATADIR_DEFAULTS
)
Message: Found %s, %s and %s in data directory. Trying to enable SSL support using them.
ER_SSL_TRYING_DATADIR_DEFAULTS
was
added in 8.0.2.
Error: 10183
SQLSTATE: HY000
(ER_AUTO_OPTIONS_FAILED
)
Message: Failed to create %s(file: '%s', errno %d)
ER_AUTO_OPTIONS_FAILED
was added
in 8.0.2.
Error: 10184
SQLSTATE: HY000
(ER_CANT_INIT_TIMER
)
Message: Failed to initialize timer component (errno %d).
ER_CANT_INIT_TIMER
was added in
8.0.2.
Error: 10185
SQLSTATE: HY000
(ER_SERVERID_TOO_LARGE
)
Message: server-id configured is too large to represent with server-id-bits configured.
ER_SERVERID_TOO_LARGE
was added in
8.0.2.
Error: 10186
SQLSTATE: HY000
(ER_DEFAULT_SE_UNAVAILABLE
)
Message: Default%s storage engine (%s) is not available
ER_DEFAULT_SE_UNAVAILABLE
was
added in 8.0.2.
Error: 10187
SQLSTATE: HY000
(ER_CANT_OPEN_ERROR_LOG
)
Message: Could not open file '%s' for error logging%s%s
ER_CANT_OPEN_ERROR_LOG
was added
in 8.0.2.
Error: 10188
SQLSTATE: HY000
(ER_INVALID_ERROR_LOG_NAME
)
Message: Invalid log file name after expanding symlinks: '%s'
ER_INVALID_ERROR_LOG_NAME
was
added in 8.0.2.
Error: 10189
SQLSTATE: HY000
(ER_RPL_INFINITY_DENIED
)
Message: using --replicate-same-server-id in conjunction with --log-slave-updates is impossible, it would lead to infinite loops in this server.
ER_RPL_INFINITY_DENIED
was added
in 8.0.2.
Error: 10190
SQLSTATE: HY000
(ER_RPL_INFINITY_IGNORED
)
Message: using --replicate-same-server-id in conjunction with --log-slave-updates would lead to infinite loops in this server. However this will be ignored as the --log-bin option is not defined.
ER_RPL_INFINITY_IGNORED
was added
in 8.0.2.
Error: 10191
SQLSTATE: HY000
(ER_NDB_TABLES_NOT_READY
)
Message: NDB : Tables not available after %lu seconds. Consider increasing --ndb-wait-setup value
ER_NDB_TABLES_NOT_READY
was added
in 8.0.2.
Error: 10192
SQLSTATE: HY000
(ER_TABLE_CHECK_INTACT
)
Message: %s
ER_TABLE_CHECK_INTACT
was added in
8.0.2.
Error: 10193
SQLSTATE: HY000
(ER_DD_TABLESPACE_NOT_FOUND
)
Message: Unable to start server. The data dictionary tablespace '%s' does not exist.
ER_DD_TABLESPACE_NOT_FOUND
was
added in 8.0.2.
Error: 10194
SQLSTATE: HY000
(ER_DD_TRG_CONNECTION_COLLATION_MISSING
)
Message: Connection collation is missing for trigger of table %s. Using default connection collation.
ER_DD_TRG_CONNECTION_COLLATION_MISSING
was added in 8.0.2.
Error: 10195
SQLSTATE: HY000
(ER_DD_TRG_DB_COLLATION_MISSING
)
Message: Database collation is missing for trigger of table %s. Using Default character set.
ER_DD_TRG_DB_COLLATION_MISSING
was
added in 8.0.2.
Error: 10196
SQLSTATE: HY000
(ER_DD_TRG_DEFINER_OOM
)
Message: Error in Memory allocation for Definer %s for Trigger.
ER_DD_TRG_DEFINER_OOM
was added in
8.0.2.
Error: 10197
SQLSTATE: HY000
(ER_DD_TRG_FILE_UNREADABLE
)
Message: Error in reading %s.TRG file.
ER_DD_TRG_FILE_UNREADABLE
was
added in 8.0.2.
Error: 10198
SQLSTATE: HY000
(ER_TRG_CANT_PARSE
)
Message: Error in parsing Triggers from %s.TRG file.
ER_TRG_CANT_PARSE
was added in
8.0.2.
Error: 10199
SQLSTATE: HY000
(ER_DD_TRG_CANT_ADD
)
Message: Error in creating DD entry for Trigger %s.%s
ER_DD_TRG_CANT_ADD
was added in
8.0.2.
Error: 10200
SQLSTATE: HY000
(ER_DD_CANT_RESOLVE_VIEW
)
Message: Resolving dependency for the view '%s.%s' failed. View is no more valid to use
ER_DD_CANT_RESOLVE_VIEW
was added
in 8.0.2.
Error: 10201
SQLSTATE: HY000
(ER_DD_VIEW_WITHOUT_DEFINER
)
Message: %s.%s has no definer (as per an old view format). Current user is used as definer. Please recreate the view.
ER_DD_VIEW_WITHOUT_DEFINER
was
added in 8.0.2.
Error: 10202
SQLSTATE: HY000
(ER_PLUGIN_INIT_FAILED
)
Message: Plugin '%s' init function returned error.
ER_PLUGIN_INIT_FAILED
was added in
8.0.2.
Error: 10203
SQLSTATE: HY000
(ER_RPL_TRX_DELEGATES_INIT_FAILED
)
Message: Initialization of transaction delegates failed. Please report a bug.
ER_RPL_TRX_DELEGATES_INIT_FAILED
was added in 8.0.2.
Error: 10204
SQLSTATE: HY000
(ER_RPL_BINLOG_STORAGE_DELEGATES_INIT_FAILED
)
Message: Initialization binlog storage delegates failed. Please report a bug.
ER_RPL_BINLOG_STORAGE_DELEGATES_INIT_FAILED
was added in 8.0.2.
Error: 10205
SQLSTATE: HY000
(ER_RPL_BINLOG_TRANSMIT_DELEGATES_INIT_FAILED
)
Message: Initialization of binlog transmit delegates failed. Please report a bug.
ER_RPL_BINLOG_TRANSMIT_DELEGATES_INIT_FAILED
was added in 8.0.2.
Error: 10206
SQLSTATE: HY000
(ER_RPL_BINLOG_RELAY_DELEGATES_INIT_FAILED
)
Message: Initialization binlog relay IO delegates failed. Please report a bug.
ER_RPL_BINLOG_RELAY_DELEGATES_INIT_FAILED
was added in 8.0.2.
Error: 10207
SQLSTATE: HY000
(ER_RPL_PLUGIN_FUNCTION_FAILED
)
Message: Run function '...' in plugin '%s' failed
ER_RPL_PLUGIN_FUNCTION_FAILED
was
added in 8.0.2.
Error: 10208
SQLSTATE: HY000
(ER_SQL_HA_READ_FAILED
)
Message: mysql_ha_read: Got error %d when reading table '%s'
ER_SQL_HA_READ_FAILED
was added in
8.0.2.
Error: 10209
SQLSTATE: HY000
(ER_SR_BOGUS_VALUE
)
Message: Stored routine '%s'.'%s': invalid value in column %s.
ER_SR_BOGUS_VALUE
was added in
8.0.2.
Error: 10210
SQLSTATE: HY000
(ER_SR_INVALID_CONTEXT
)
Message: Invalid creation context '%s.%s'.
ER_SR_INVALID_CONTEXT
was added in
8.0.2.
Error: 10211
SQLSTATE: HY000
(ER_READING_TABLE_FAILED
)
Message: Got error %d when reading table '%s'
ER_READING_TABLE_FAILED
was added
in 8.0.2.
Error: 10212
SQLSTATE: HY000
(ER_DES_FILE_WRONG_KEY
)
Message: load_des_file: Found wrong key_number: %c
ER_DES_FILE_WRONG_KEY
was added in
8.0.2.
Error: 10213
SQLSTATE: HY000
(ER_CANT_SET_PERSISTED
)
Message: Failed to set persisted options.
ER_CANT_SET_PERSISTED
was added in
8.0.2.
Error: 10214
SQLSTATE: HY000
(ER_JSON_PARSE_ERROR
)
Message: JSON parsing error
ER_JSON_PARSE_ERROR
was added in
8.0.2.
Error: 10215
SQLSTATE: HY000
(ER_CONFIG_OPTION_WITHOUT_GROUP
)
Message: Found option without preceding group in config file
ER_CONFIG_OPTION_WITHOUT_GROUP
was
added in 8.0.2.
Error: 10216
SQLSTATE: HY000
(ER_VALGRIND_DO_QUICK_LEAK_CHECK
)
Message: VALGRIND_DO_QUICK_LEAK_CHECK
ER_VALGRIND_DO_QUICK_LEAK_CHECK
was added in 8.0.2.
Error: 10217
SQLSTATE: HY000
(ER_VALGRIND_COUNT_LEAKS
)
Message: VALGRIND_COUNT_LEAKS reports %lu leaked bytes for query '%.*s'
ER_VALGRIND_COUNT_LEAKS
was added
in 8.0.2.
Error: 10218
SQLSTATE: HY000
(ER_LOAD_DATA_INFILE_FAILED_IN_UNEXPECTED_WAY
)
Message: LOAD DATA INFILE in the slave SQL Thread can only read from --slave-load-tmpdir. Please, report a bug.
ER_LOAD_DATA_INFILE_FAILED_IN_UNEXPECTED_WAY
was added in 8.0.2.
Error: 10219
SQLSTATE: HY000
(ER_UNKNOWN_ERROR_NUMBER
)
Message: Got unknown error: %d
ER_UNKNOWN_ERROR_NUMBER
was added
in 8.0.2.
Error: 10220
SQLSTATE: HY000
(ER_UDF_CANT_ALLOC_FOR_STRUCTURES
)
Message: Can't allocate memory for udf structures
ER_UDF_CANT_ALLOC_FOR_STRUCTURES
was added in 8.0.2.
Error: 10221
SQLSTATE: HY000
(ER_UDF_CANT_ALLOC_FOR_FUNCTION
)
Message: Can't alloc memory for udf function: '%s'
ER_UDF_CANT_ALLOC_FOR_FUNCTION
was
added in 8.0.2.
Error: 10222
SQLSTATE: HY000
(ER_UDF_INVALID_ROW_IN_FUNCTION_TABLE
)
Message: Invalid row in mysql.func table for function '%s'
ER_UDF_INVALID_ROW_IN_FUNCTION_TABLE
was added in 8.0.2.
Error: 10223
SQLSTATE: HY000
(ER_UDF_CANT_OPEN_FUNCTION_TABLE
)
Message: Can't open the mysql.func table. Please run mysql_upgrade to create it.
ER_UDF_CANT_OPEN_FUNCTION_TABLE
was added in 8.0.2.
Error: 10224
SQLSTATE: HY000
(ER_XA_RECOVER_FOUND_TRX_IN_SE
)
Message: Found %d prepared transaction(s) in %s
ER_XA_RECOVER_FOUND_TRX_IN_SE
was
added in 8.0.2.
Error: 10225
SQLSTATE: HY000
(ER_XA_RECOVER_FOUND_XA_TRX
)
Message: Found %d prepared XA transactions
ER_XA_RECOVER_FOUND_XA_TRX
was
added in 8.0.2.
Error: 10226
SQLSTATE: HY000
(ER_XA_IGNORING_XID
)
Message: ignore xid %s
ER_XA_IGNORING_XID
was added in
8.0.2.
Error: 10227
SQLSTATE: HY000
(ER_XA_COMMITTING_XID
)
Message: commit xid %s
ER_XA_COMMITTING_XID
was added in
8.0.2.
Error: 10228
SQLSTATE: HY000
(ER_XA_ROLLING_BACK_XID
)
Message: rollback xid %s
ER_XA_ROLLING_BACK_XID
was added
in 8.0.2.
Error: 10229
SQLSTATE: HY000
(ER_XA_STARTING_RECOVERY
)
Message: Starting crash recovery...
ER_XA_STARTING_RECOVERY
was added
in 8.0.2.
Error: 10230
SQLSTATE: HY000
(ER_XA_NO_MULTI_2PC_HEURISTIC_RECOVER
)
Message: --tc-heuristic-recover rollback strategy is not safe on systems with more than one 2-phase-commit-capable storage engine. Aborting crash recovery.
ER_XA_NO_MULTI_2PC_HEURISTIC_RECOVER
was added in 8.0.2.
Error: 10231
SQLSTATE: HY000
(ER_XA_RECOVER_EXPLANATION
)
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.
ER_XA_RECOVER_EXPLANATION
was
added in 8.0.2.
Error: 10232
SQLSTATE: HY000
(ER_XA_RECOVERY_DONE
)
Message: Crash recovery finished.
ER_XA_RECOVERY_DONE
was added in
8.0.2.
Error: 10233
SQLSTATE: HY000
(ER_TRX_GTID_COLLECT_REJECT
)
Message: Failed to collect GTID to send in the response packet!
ER_TRX_GTID_COLLECT_REJECT
was
added in 8.0.2.
Error: 10234
SQLSTATE: HY000
(ER_SQL_AUTHOR_DEFAULT_ROLES_FAIL
)
Message: MYSQL.DEFAULT_ROLES couldn't be updated for authorization identifier %s
ER_SQL_AUTHOR_DEFAULT_ROLES_FAIL
was added in 8.0.2.
Error: 10235
SQLSTATE: HY000
(ER_SQL_USER_TABLE_CREATE_WARNING
)
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
ER_SQL_USER_TABLE_CREATE_WARNING
was added in 8.0.2.
Error: 10236
SQLSTATE: HY000
(ER_SQL_USER_TABLE_ALTER_WARNING
)
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
ER_SQL_USER_TABLE_ALTER_WARNING
was added in 8.0.2.
Error: 10237
SQLSTATE: HY000
(ER_ROW_IN_WRONG_PARTITION_PLEASE_REPAIR
)
Message: Table '%s' corrupted: row in wrong partition: %s -- Please REPAIR the table!
ER_ROW_IN_WRONG_PARTITION_PLEASE_REPAIR
was added in 8.0.2.
Error: 10238
SQLSTATE: HY000
(ER_MYISAM_CRASHED_ERROR_IN_THREAD
)
Message: Got an error from thread_id=%u, %s:%d
ER_MYISAM_CRASHED_ERROR_IN_THREAD
was added in 8.0.2.
Error: 10239
SQLSTATE: HY000
(ER_MYISAM_CRASHED_ERROR_IN
)
Message: Got an error from unknown thread, %s:%d
ER_MYISAM_CRASHED_ERROR_IN
was
added in 8.0.2.
Error: 10240
SQLSTATE: HY000
(ER_TOO_MANY_STORAGE_ENGINES
)
Message: Too many storage engines!
ER_TOO_MANY_STORAGE_ENGINES
was
added in 8.0.2.
Error: 10241
SQLSTATE: HY000
(ER_SE_TYPECODE_CONFLICT
)
Message: Storage engine '%s' has conflicting typecode. Assigning value %d.
ER_SE_TYPECODE_CONFLICT
was added
in 8.0.2.
Error: 10242
SQLSTATE: HY000
(ER_TRX_WRITE_SET_OOM
)
Message: Out of memory on transaction write set extraction
ER_TRX_WRITE_SET_OOM
was added in
8.0.2.
Error: 10243
SQLSTATE: HY000
(ER_HANDLERTON_OOM
)
Message: Unable to allocate memory for plugin '%s' handlerton.
ER_HANDLERTON_OOM
was added in
8.0.2.
Error: 10244
SQLSTATE: HY000
(ER_CONN_SHM_LISTENER
)
Message: Shared memory setting up listener
ER_CONN_SHM_LISTENER
was added in
8.0.2.
Error: 10245
SQLSTATE: HY000
(ER_CONN_SHM_CANT_CREATE_SERVICE
)
Message: Can't create shared memory service: %s. : %s
ER_CONN_SHM_CANT_CREATE_SERVICE
was added in 8.0.2.
Error: 10246
SQLSTATE: HY000
(ER_CONN_SHM_CANT_CREATE_CONNECTION
)
Message: Can't create shared memory connection: %s. : %s
ER_CONN_SHM_CANT_CREATE_CONNECTION
was added in 8.0.2.
Error: 10247
SQLSTATE: HY000
(ER_CONN_PIP_CANT_CREATE_EVENT
)
Message: Can't create event, last error=%u
ER_CONN_PIP_CANT_CREATE_EVENT
was
added in 8.0.2.
Error: 10248
SQLSTATE: HY000
(ER_CONN_PIP_CANT_CREATE_PIPE
)
Message: Can't create new named pipe!: %s
ER_CONN_PIP_CANT_CREATE_PIPE
was
added in 8.0.2.
Error: 10249
SQLSTATE: HY000
(ER_CONN_PER_THREAD_NO_THREAD
)
Message: Can't create thread to handle new connection(errno= %d)
ER_CONN_PER_THREAD_NO_THREAD
was
added in 8.0.2.
Error: 10250
SQLSTATE: HY000
(ER_CONN_TCP_NO_SOCKET
)
Message: Failed to create a socket for %s '%s': errno: %d.
ER_CONN_TCP_NO_SOCKET
was added in
8.0.2.
Error: 10251
SQLSTATE: HY000
(ER_CONN_TCP_CREATED
)
Message: Server socket created on IP: '%s'.
ER_CONN_TCP_CREATED
was added in
8.0.2.
Error: 10252
SQLSTATE: HY000
(ER_CONN_TCP_ADDRESS
)
Message: Server hostname (bind-address): '%s'; port: %d
ER_CONN_TCP_ADDRESS
was added in
8.0.2.
Error: 10253
SQLSTATE: HY000
(ER_CONN_TCP_IPV6_AVAILABLE
)
Message: IPv6 is available.
ER_CONN_TCP_IPV6_AVAILABLE
was
added in 8.0.2.
Error: 10254
SQLSTATE: HY000
(ER_CONN_TCP_IPV6_UNAVAILABLE
)
Message: IPv6 is not available.
ER_CONN_TCP_IPV6_UNAVAILABLE
was
added in 8.0.2.
Error: 10255
SQLSTATE: HY000
(ER_CONN_TCP_ERROR_WITH_STRERROR
)
Message: Can't create IP socket: %s
ER_CONN_TCP_ERROR_WITH_STRERROR
was added in 8.0.2.
Error: 10256
SQLSTATE: HY000
(ER_CONN_TCP_CANT_RESOLVE_HOSTNAME
)
Message: Can't start server: cannot resolve hostname!
ER_CONN_TCP_CANT_RESOLVE_HOSTNAME
was added in 8.0.2.
Error: 10257
SQLSTATE: HY000
(ER_CONN_TCP_IS_THERE_ANOTHER_USING_PORT
)
Message: Do you already have another mysqld server running on port: %d ?
ER_CONN_TCP_IS_THERE_ANOTHER_USING_PORT
was added in 8.0.2.
Error: 10258
SQLSTATE: HY000
(ER_CONN_UNIX_IS_THERE_ANOTHER_USING_SOCKET
)
Message: Do you already have another mysqld server running on socket: %s ?
ER_CONN_UNIX_IS_THERE_ANOTHER_USING_SOCKET
was added in 8.0.2.
Error: 10259
SQLSTATE: HY000
(ER_CONN_UNIX_PID_CLAIMED_SOCKET_FILE
)
Message: Another process with pid %d is using unix socket file.
ER_CONN_UNIX_PID_CLAIMED_SOCKET_FILE
was added in 8.0.2.
Error: 10260
SQLSTATE: HY000
(ER_CONN_TCP_CANT_RESET_V6ONLY
)
Message: Failed to reset IPV6_V6ONLY flag (error: %d). The server will listen to IPv6 addresses only.
ER_CONN_TCP_CANT_RESET_V6ONLY
was
added in 8.0.2.
Error: 10261
SQLSTATE: HY000
(ER_CONN_TCP_BIND_RETRY
)
Message: Retrying bind on TCP/IP port %u
ER_CONN_TCP_BIND_RETRY
was added
in 8.0.2.
Error: 10262
SQLSTATE: HY000
(ER_CONN_TPC_BIND_FAIL
)
Message: Can't start server: Bind on TCP/IP port: %s
ER_CONN_TPC_BIND_FAIL
was added in
8.0.2, removed after 8.0.11.
Error: 10262
SQLSTATE: HY000
(ER_CONN_TCP_BIND_FAIL
)
Message: Can't start server: Bind on TCP/IP port: %s
ER_CONN_TCP_BIND_FAIL
was added in
8.0.12.
Error: 10263
SQLSTATE: HY000
(ER_CONN_TCP_IP_NOT_LOGGED
)
Message: Fails to print out IP-address.
ER_CONN_TCP_IP_NOT_LOGGED
was
added in 8.0.2.
Error: 10264
SQLSTATE: HY000
(ER_CONN_TCP_RESOLVE_INFO
)
Message: - '%s' resolves to '%s';
ER_CONN_TCP_RESOLVE_INFO
was added
in 8.0.2.
Error: 10265
SQLSTATE: HY000
(ER_CONN_TCP_START_FAIL
)
Message: Can't start server: listen() on TCP/IP port: %s
ER_CONN_TCP_START_FAIL
was added
in 8.0.2.
Error: 10266
SQLSTATE: HY000
(ER_CONN_TCP_LISTEN_FAIL
)
Message: listen() on TCP/IP failed with error %d
ER_CONN_TCP_LISTEN_FAIL
was added
in 8.0.2.
Error: 10267
SQLSTATE: HY000
(ER_CONN_UNIX_PATH_TOO_LONG
)
Message: The socket file path is too long (> %u): %s
ER_CONN_UNIX_PATH_TOO_LONG
was
added in 8.0.2.
Error: 10268
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_FAIL
)
Message: Unable to setup unix socket lock file.
ER_CONN_UNIX_LOCK_FILE_FAIL
was
added in 8.0.2.
Error: 10269
SQLSTATE: HY000
(ER_CONN_UNIX_NO_FD
)
Message: Can't start server: UNIX Socket : %s
ER_CONN_UNIX_NO_FD
was added in
8.0.2.
Error: 10270
SQLSTATE: HY000
(ER_CONN_UNIX_NO_BIND_NO_START
)
Message: Can't start server : Bind on unix socket: %s
ER_CONN_UNIX_NO_BIND_NO_START
was
added in 8.0.2.
Error: 10271
SQLSTATE: HY000
(ER_CONN_UNIX_LISTEN_FAILED
)
Message: listen() on Unix socket failed with error %d
ER_CONN_UNIX_LISTEN_FAILED
was
added in 8.0.2.
Error: 10272
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_GIVING_UP
)
Message: Unable to create unix socket lock file %s after retries.
ER_CONN_UNIX_LOCK_FILE_GIVING_UP
was added in 8.0.2.
Error: 10273
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_CANT_CREATE
)
Message: Could not create unix socket lock file %s.
ER_CONN_UNIX_LOCK_FILE_CANT_CREATE
was added in 8.0.2.
Error: 10274
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_CANT_OPEN
)
Message: Could not open unix socket lock file %s.
ER_CONN_UNIX_LOCK_FILE_CANT_OPEN
was added in 8.0.2.
Error: 10275
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_CANT_READ
)
Message: Could not read unix socket lock file %s.
ER_CONN_UNIX_LOCK_FILE_CANT_READ
was added in 8.0.2.
Error: 10276
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_EMPTY
)
Message: Unix socket lock file is empty %s.
ER_CONN_UNIX_LOCK_FILE_EMPTY
was
added in 8.0.2.
Error: 10277
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_PIDLESS
)
Message: Invalid pid in unix socket lock file %s.
ER_CONN_UNIX_LOCK_FILE_PIDLESS
was
added in 8.0.2.
Error: 10278
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_CANT_WRITE
)
Message: Could not write unix socket lock file %s errno %d.
ER_CONN_UNIX_LOCK_FILE_CANT_WRITE
was added in 8.0.2.
Error: 10279
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_CANT_DELETE
)
Message: Could not remove unix socket lock file %s errno %d.
ER_CONN_UNIX_LOCK_FILE_CANT_DELETE
was added in 8.0.2.
Error: 10280
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_CANT_SYNC
)
Message: Could not sync unix socket lock file %s errno %d.
ER_CONN_UNIX_LOCK_FILE_CANT_SYNC
was added in 8.0.2.
Error: 10281
SQLSTATE: HY000
(ER_CONN_UNIX_LOCK_FILE_CANT_CLOSE
)
Message: Could not close unix socket lock file %s errno %d.
ER_CONN_UNIX_LOCK_FILE_CANT_CLOSE
was added in 8.0.2.
Error: 10282
SQLSTATE: HY000
(ER_CONN_SOCKET_SELECT_FAILED
)
Message: mysqld: Got error %d from select
ER_CONN_SOCKET_SELECT_FAILED
was
added in 8.0.2.
Error: 10283
SQLSTATE: HY000
(ER_CONN_SOCKET_ACCEPT_FAILED
)
Message: Error in accept: %s
ER_CONN_SOCKET_ACCEPT_FAILED
was
added in 8.0.2.
Error: 10284
SQLSTATE: HY000
(ER_AUTH_RSA_CANT_FIND
)
Message: RSA %s key file not found: %s. Some authentication plugins will not work.
ER_AUTH_RSA_CANT_FIND
was added in
8.0.2.
Error: 10285
SQLSTATE: HY000
(ER_AUTH_RSA_CANT_PARSE
)
Message: Failure to parse RSA %s key (file exists): %s: %s
ER_AUTH_RSA_CANT_PARSE
was added
in 8.0.2.
Error: 10286
SQLSTATE: HY000
(ER_AUTH_RSA_CANT_READ
)
Message: Failure to read key file: %s
ER_AUTH_RSA_CANT_READ
was added in
8.0.2.
Error: 10287
SQLSTATE: HY000
(ER_AUTH_RSA_FILES_NOT_FOUND
)
Message: RSA key files not found. Some authentication plugins will not work.
ER_AUTH_RSA_FILES_NOT_FOUND
was
added in 8.0.2.
Error: 10288
SQLSTATE: HY000
(ER_CONN_ATTR_TRUNCATED
)
Message: Connection attributes of length %lu were truncated (%d bytes lost) for connection %llu, user %s@%s (as %s), auth: %s
ER_CONN_ATTR_TRUNCATED
was added
in 8.0.2.
Error: 10289
SQLSTATE: HY000
(ER_X509_CIPHERS_MISMATCH
)
Message: X509 ciphers mismatch: should be '%s' but is '%s'
ER_X509_CIPHERS_MISMATCH
was added
in 8.0.2.
Error: 10290
SQLSTATE: HY000
(ER_X509_ISSUER_MISMATCH
)
Message: X509 issuer mismatch: should be '%s' but is '%s'
ER_X509_ISSUER_MISMATCH
was added
in 8.0.2.
Error: 10291
SQLSTATE: HY000
(ER_X509_SUBJECT_MISMATCH
)
Message: X509 subject mismatch: should be '%s' but is '%s'
ER_X509_SUBJECT_MISMATCH
was added
in 8.0.2.
Error: 10292
SQLSTATE: HY000
(ER_AUTH_CANT_ACTIVATE_ROLE
)
Message: Failed to activate default role %s for %s
ER_AUTH_CANT_ACTIVATE_ROLE
was
added in 8.0.2.
Error: 10293
SQLSTATE: HY000
(ER_X509_NEEDS_RSA_PRIVKEY
)
Message: Could not generate RSA private key required for X509 certificate.
ER_X509_NEEDS_RSA_PRIVKEY
was
added in 8.0.2.
Error: 10294
SQLSTATE: HY000
(ER_X509_CANT_WRITE_KEY
)
Message: Could not write key file: %s
ER_X509_CANT_WRITE_KEY
was added
in 8.0.2.
Error: 10295
SQLSTATE: HY000
(ER_X509_CANT_CHMOD_KEY
)
Message: Could not set file permission for %s
ER_X509_CANT_CHMOD_KEY
was added
in 8.0.2.
Error: 10296
SQLSTATE: HY000
(ER_X509_CANT_READ_CA_KEY
)
Message: Could not read CA key file: %s
ER_X509_CANT_READ_CA_KEY
was added
in 8.0.2.
Error: 10297
SQLSTATE: HY000
(ER_X509_CANT_READ_CA_CERT
)
Message: Could not read CA certificate file: %s
ER_X509_CANT_READ_CA_CERT
was
added in 8.0.2.
Error: 10298
SQLSTATE: HY000
(ER_X509_CANT_CREATE_CERT
)
Message: Could not generate X509 certificate.
ER_X509_CANT_CREATE_CERT
was added
in 8.0.2.
Error: 10299
SQLSTATE: HY000
(ER_X509_CANT_WRITE_CERT
)
Message: Could not write certificate file: %s
ER_X509_CANT_WRITE_CERT
was added
in 8.0.2.
Error: 10300
SQLSTATE: HY000
(ER_AUTH_CANT_CREATE_RSA_PAIR
)
Message: Could not generate RSA Private/Public key pair
ER_AUTH_CANT_CREATE_RSA_PAIR
was
added in 8.0.2.
Error: 10301
SQLSTATE: HY000
(ER_AUTH_CANT_WRITE_PRIVKEY
)
Message: Could not write private key file: %s
ER_AUTH_CANT_WRITE_PRIVKEY
was
added in 8.0.2.
Error: 10302
SQLSTATE: HY000
(ER_AUTH_CANT_WRITE_PUBKEY
)
Message: Could not write public key file: %s
ER_AUTH_CANT_WRITE_PUBKEY
was
added in 8.0.2.
Error: 10303
SQLSTATE: HY000
(ER_AUTH_SSL_CONF_PREVENTS_CERT_GENERATION
)
Message: Skipping generation of SSL certificates as options related to SSL are specified.
ER_AUTH_SSL_CONF_PREVENTS_CERT_GENERATION
was added in 8.0.2.
Error: 10304
SQLSTATE: HY000
(ER_AUTH_USING_EXISTING_CERTS
)
Message: Skipping generation of SSL certificates as certificate files are present in data directory.
ER_AUTH_USING_EXISTING_CERTS
was
added in 8.0.2.
Error: 10305
SQLSTATE: HY000
(ER_AUTH_CERTS_SAVED_TO_DATADIR
)
Message: Auto generated SSL certificates are placed in data directory.
ER_AUTH_CERTS_SAVED_TO_DATADIR
was
added in 8.0.2.
Error: 10306
SQLSTATE: HY000
(ER_AUTH_CERT_GENERATION_DISABLED
)
Message: Skipping generation of SSL certificates as --auto_generate_certs is set to OFF.
ER_AUTH_CERT_GENERATION_DISABLED
was added in 8.0.2.
Error: 10307
SQLSTATE: HY000
(ER_AUTH_RSA_CONF_PREVENTS_KEY_GENERATION
)
Message: Skipping generation of RSA key pair through %s as options related to RSA keys are specified.
ER_AUTH_RSA_CONF_PREVENTS_KEY_GENERATION
was added in 8.0.2.
Error: 10308
SQLSTATE: HY000
(ER_AUTH_KEY_GENERATION_SKIPPED_PAIR_PRESENT
)
Message: Skipping generation of RSA key pair through %s as key files are present in data directory.
ER_AUTH_KEY_GENERATION_SKIPPED_PAIR_PRESENT
was added in 8.0.2.
Error: 10309
SQLSTATE: HY000
(ER_AUTH_KEYS_SAVED_TO_DATADIR
)
Message: Auto generated RSA key files through %s are placed in data directory.
ER_AUTH_KEYS_SAVED_TO_DATADIR
was
added in 8.0.2.
Error: 10310
SQLSTATE: HY000
(ER_AUTH_KEY_GENERATION_DISABLED
)
Message: Skipping generation of RSA key pair as %s is set to OFF.
ER_AUTH_KEY_GENERATION_DISABLED
was added in 8.0.2.