// // Copyright (c) 2019-2025 Ruben Perez Hidalgo (rubenperez038 at gmail dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef BOOST_MYSQL_COMMON_SERVER_ERRC_HPP #define BOOST_MYSQL_COMMON_SERVER_ERRC_HPP #include #include #include namespace boost { namespace mysql { /** * \brief Server-defined error codes, shared between MySQL and MariaDB. * \details The numeric value and semantics match the ones described in the MySQL documentation. * For more info, consult the error reference for * MySQL 8.0, * MySQL 5.7, * MariaDB. */ enum class common_server_errc : int { /** * \brief Common server error. Error number: 1000, symbol: * ER_HASHCHK. */ er_hashchk = 1000, /** * \brief Common server error. Error number: 1001, symbol: * ER_NISAMCHK. */ er_nisamchk = 1001, /** * \brief Common server error. Error number: 1002, symbol: * ER_NO. */ er_no = 1002, /** * \brief Common server error. Error number: 1003, symbol: * ER_YES. */ er_yes = 1003, /** * \brief Common server error. Error number: 1004, symbol: * ER_CANT_CREATE_FILE. */ er_cant_create_file = 1004, /** * \brief Common server error. Error number: 1005, symbol: * ER_CANT_CREATE_TABLE. */ er_cant_create_table = 1005, /** * \brief Common server error. Error number: 1006, symbol: * ER_CANT_CREATE_DB. */ er_cant_create_db = 1006, /** * \brief Common server error. Error number: 1007, symbol: * ER_DB_CREATE_EXISTS. */ er_db_create_exists = 1007, /** * \brief Common server error. Error number: 1008, symbol: * ER_DB_DROP_EXISTS. */ er_db_drop_exists = 1008, /** * \brief Common server error. Error number: 1009, symbol: * ER_DB_DROP_DELETE. */ er_db_drop_delete = 1009, /** * \brief Common server error. Error number: 1010, symbol: * ER_DB_DROP_RMDIR. */ er_db_drop_rmdir = 1010, /** * \brief Common server error. Error number: 1011, symbol: * ER_CANT_DELETE_FILE. */ er_cant_delete_file = 1011, /** * \brief Common server error. Error number: 1012, symbol: * ER_CANT_FIND_SYSTEM_REC. */ er_cant_find_system_rec = 1012, /** * \brief Common server error. Error number: 1013, symbol: * ER_CANT_GET_STAT. */ er_cant_get_stat = 1013, /** * \brief Common server error. Error number: 1014, symbol: * ER_CANT_GET_WD. */ er_cant_get_wd = 1014, /** * \brief Common server error. Error number: 1015, symbol: * ER_CANT_LOCK. */ er_cant_lock = 1015, /** * \brief Common server error. Error number: 1016, symbol: * ER_CANT_OPEN_FILE. */ er_cant_open_file = 1016, /** * \brief Common server error. Error number: 1017, symbol: * ER_FILE_NOT_FOUND. */ er_file_not_found = 1017, /** * \brief Common server error. Error number: 1018, symbol: * ER_CANT_READ_DIR. */ er_cant_read_dir = 1018, /** * \brief Common server error. Error number: 1019, symbol: * ER_CANT_SET_WD. */ er_cant_set_wd = 1019, /** * \brief Common server error. Error number: 1020, symbol: * ER_CHECKREAD. */ er_checkread = 1020, /** * \brief Common server error. Error number: 1021, symbol: * ER_DISK_FULL. */ er_disk_full = 1021, /** * \brief Common server error. Error number: 1022, symbol: * ER_DUP_KEY. */ er_dup_key = 1022, /** * \brief Common server error. Error number: 1023, symbol: * ER_ERROR_ON_CLOSE. */ er_error_on_close = 1023, /** * \brief Common server error. Error number: 1024, symbol: * ER_ERROR_ON_READ. */ er_error_on_read = 1024, /** * \brief Common server error. Error number: 1025, symbol: * ER_ERROR_ON_RENAME. */ er_error_on_rename = 1025, /** * \brief Common server error. Error number: 1026, symbol: * ER_ERROR_ON_WRITE. */ er_error_on_write = 1026, /** * \brief Common server error. Error number: 1027, symbol: * ER_FILE_USED. */ er_file_used = 1027, /** * \brief Common server error. Error number: 1028, symbol: * ER_FILSORT_ABORT. */ er_filsort_abort = 1028, /** * \brief Common server error. Error number: 1029, symbol: * ER_FORM_NOT_FOUND. */ er_form_not_found = 1029, /** * \brief Common server error. Error number: 1030, symbol: * ER_GET_ERRNO. */ er_get_errno = 1030, /** * \brief Common server error. Error number: 1031, symbol: * ER_ILLEGAL_HA. */ er_illegal_ha = 1031, /** * \brief Common server error. Error number: 1032, symbol: * ER_KEY_NOT_FOUND. */ er_key_not_found = 1032, /** * \brief Common server error. Error number: 1033, symbol: * ER_NOT_FORM_FILE. */ er_not_form_file = 1033, /** * \brief Common server error. Error number: 1034, symbol: * ER_NOT_KEYFILE. */ er_not_keyfile = 1034, /** * \brief Common server error. Error number: 1035, symbol: * ER_OLD_KEYFILE. */ er_old_keyfile = 1035, /** * \brief Common server error. Error number: 1036, symbol: * ER_OPEN_AS_READONLY. */ er_open_as_readonly = 1036, /** * \brief Common server error. Error number: 1037, symbol: * ER_OUTOFMEMORY. */ er_outofmemory = 1037, /** * \brief Common server error. Error number: 1038, symbol: * ER_OUT_OF_SORTMEMORY. */ er_out_of_sortmemory = 1038, /** * \brief Common server error. Error number: 1039, symbol: * ER_UNEXPECTED_EOF. */ er_unexpected_eof = 1039, /** * \brief Common server error. Error number: 1040, symbol: * ER_CON_COUNT_ERROR. */ er_con_count_error = 1040, /** * \brief Common server error. Error number: 1041, symbol: * ER_OUT_OF_RESOURCES. */ er_out_of_resources = 1041, /** * \brief Common server error. Error number: 1042, symbol: * ER_BAD_HOST_ERROR. */ er_bad_host_error = 1042, /** * \brief Common server error. Error number: 1043, symbol: * ER_HANDSHAKE_ERROR. */ er_handshake_error = 1043, /** * \brief Common server error. Error number: 1044, symbol: * ER_DBACCESS_DENIED_ERROR. */ er_dbaccess_denied_error = 1044, /** * \brief Common server error. Error number: 1045, symbol: * ER_ACCESS_DENIED_ERROR. */ er_access_denied_error = 1045, /** * \brief Common server error. Error number: 1046, symbol: * ER_NO_DB_ERROR. */ er_no_db_error = 1046, /** * \brief Common server error. Error number: 1047, symbol: * ER_UNKNOWN_COM_ERROR. */ er_unknown_com_error = 1047, /** * \brief Common server error. Error number: 1048, symbol: * ER_BAD_NULL_ERROR. */ er_bad_null_error = 1048, /** * \brief Common server error. Error number: 1049, symbol: * ER_BAD_DB_ERROR. */ er_bad_db_error = 1049, /** * \brief Common server error. Error number: 1050, symbol: * ER_TABLE_EXISTS_ERROR. */ er_table_exists_error = 1050, /** * \brief Common server error. Error number: 1051, symbol: * ER_BAD_TABLE_ERROR. */ er_bad_table_error = 1051, /** * \brief Common server error. Error number: 1052, symbol: * ER_NON_UNIQ_ERROR. */ er_non_uniq_error = 1052, /** * \brief Common server error. Error number: 1053, symbol: * ER_SERVER_SHUTDOWN. */ er_server_shutdown = 1053, /** * \brief Common server error. Error number: 1054, symbol: * ER_BAD_FIELD_ERROR. */ er_bad_field_error = 1054, /** * \brief Common server error. Error number: 1055, symbol: * ER_WRONG_FIELD_WITH_GROUP. */ er_wrong_field_with_group = 1055, /** * \brief Common server error. Error number: 1056, symbol: * ER_WRONG_GROUP_FIELD. */ er_wrong_group_field = 1056, /** * \brief Common server error. Error number: 1057, symbol: * ER_WRONG_SUM_SELECT. */ er_wrong_sum_select = 1057, /** * \brief Common server error. Error number: 1058, symbol: * ER_WRONG_VALUE_COUNT. */ er_wrong_value_count = 1058, /** * \brief Common server error. Error number: 1059, symbol: * ER_TOO_LONG_IDENT. */ er_too_long_ident = 1059, /** * \brief Common server error. Error number: 1060, symbol: * ER_DUP_FIELDNAME. */ er_dup_fieldname = 1060, /** * \brief Common server error. Error number: 1061, symbol: * ER_DUP_KEYNAME. */ er_dup_keyname = 1061, /** * \brief Common server error. Error number: 1062, symbol: * ER_DUP_ENTRY. */ er_dup_entry = 1062, /** * \brief Common server error. Error number: 1063, symbol: * ER_WRONG_FIELD_SPEC. */ er_wrong_field_spec = 1063, /** * \brief Common server error. Error number: 1064, symbol: * ER_PARSE_ERROR. */ er_parse_error = 1064, /** * \brief Common server error. Error number: 1065, symbol: * ER_EMPTY_QUERY. */ er_empty_query = 1065, /** * \brief Common server error. Error number: 1066, symbol: * ER_NONUNIQ_TABLE. */ er_nonuniq_table = 1066, /** * \brief Common server error. Error number: 1067, symbol: * ER_INVALID_DEFAULT. */ er_invalid_default = 1067, /** * \brief Common server error. Error number: 1068, symbol: * ER_MULTIPLE_PRI_KEY. */ er_multiple_pri_key = 1068, /** * \brief Common server error. Error number: 1069, symbol: * ER_TOO_MANY_KEYS. */ er_too_many_keys = 1069, /** * \brief Common server error. Error number: 1070, symbol: * ER_TOO_MANY_KEY_PARTS. */ er_too_many_key_parts = 1070, /** * \brief Common server error. Error number: 1071, symbol: * ER_TOO_LONG_KEY. */ er_too_long_key = 1071, /** * \brief Common server error. Error number: 1072, symbol: * ER_KEY_COLUMN_DOES_NOT_EXITS. */ er_key_column_does_not_exits = 1072, /** * \brief Common server error. Error number: 1073, symbol: * ER_BLOB_USED_AS_KEY. */ er_blob_used_as_key = 1073, /** * \brief Common server error. Error number: 1074, symbol: * ER_TOO_BIG_FIELDLENGTH. */ er_too_big_fieldlength = 1074, /** * \brief Common server error. Error number: 1075, symbol: * ER_WRONG_AUTO_KEY. */ er_wrong_auto_key = 1075, /** * \brief Common server error. Error number: 1077, symbol: * ER_NORMAL_SHUTDOWN. */ er_normal_shutdown = 1077, /** * \brief Common server error. Error number: 1078, symbol: * ER_GOT_SIGNAL. */ er_got_signal = 1078, /** * \brief Common server error. Error number: 1079, symbol: * ER_SHUTDOWN_COMPLETE. */ er_shutdown_complete = 1079, /** * \brief Common server error. Error number: 1080, symbol: * ER_FORCING_CLOSE. */ er_forcing_close = 1080, /** * \brief Common server error. Error number: 1081, symbol: * ER_IPSOCK_ERROR. */ er_ipsock_error = 1081, /** * \brief Common server error. Error number: 1082, symbol: * ER_NO_SUCH_INDEX. */ er_no_such_index = 1082, /** * \brief Common server error. Error number: 1083, symbol: * ER_WRONG_FIELD_TERMINATORS. */ er_wrong_field_terminators = 1083, /** * \brief Common server error. Error number: 1084, symbol: * ER_BLOBS_AND_NO_TERMINATED. */ er_blobs_and_no_terminated = 1084, /** * \brief Common server error. Error number: 1085, symbol: * ER_TEXTFILE_NOT_READABLE. */ er_textfile_not_readable = 1085, /** * \brief Common server error. Error number: 1086, symbol: * ER_FILE_EXISTS_ERROR. */ er_file_exists_error = 1086, /** * \brief Common server error. Error number: 1087, symbol: * ER_LOAD_INFO. */ er_load_info = 1087, /** * \brief Common server error. Error number: 1088, symbol: * ER_ALTER_INFO. */ er_alter_info = 1088, /** * \brief Common server error. Error number: 1089, symbol: * ER_WRONG_SUB_KEY. */ er_wrong_sub_key = 1089, /** * \brief Common server error. Error number: 1090, symbol: * ER_CANT_REMOVE_ALL_FIELDS. */ er_cant_remove_all_fields = 1090, /** * \brief Common server error. Error number: 1091, symbol: * ER_CANT_DROP_FIELD_OR_KEY. */ er_cant_drop_field_or_key = 1091, /** * \brief Common server error. Error number: 1092, symbol: * ER_INSERT_INFO. */ er_insert_info = 1092, /** * \brief Common server error. Error number: 1093, symbol: * ER_UPDATE_TABLE_USED. */ er_update_table_used = 1093, /** * \brief Common server error. Error number: 1094, symbol: * ER_NO_SUCH_THREAD. */ er_no_such_thread = 1094, /** * \brief Common server error. Error number: 1095, symbol: * ER_KILL_DENIED_ERROR. */ er_kill_denied_error = 1095, /** * \brief Common server error. Error number: 1096, symbol: * ER_NO_TABLES_USED. */ er_no_tables_used = 1096, /** * \brief Common server error. Error number: 1097, symbol: * ER_TOO_BIG_SET. */ er_too_big_set = 1097, /** * \brief Common server error. Error number: 1098, symbol: * ER_NO_UNIQUE_LOGFILE. */ er_no_unique_logfile = 1098, /** * \brief Common server error. Error number: 1099, symbol: * ER_TABLE_NOT_LOCKED_FOR_WRITE. */ er_table_not_locked_for_write = 1099, /** * \brief Common server error. Error number: 1100, symbol: * ER_TABLE_NOT_LOCKED. */ er_table_not_locked = 1100, /** * \brief Common server error. Error number: 1102, symbol: * ER_WRONG_DB_NAME. */ er_wrong_db_name = 1102, /** * \brief Common server error. Error number: 1103, symbol: * ER_WRONG_TABLE_NAME. */ er_wrong_table_name = 1103, /** * \brief Common server error. Error number: 1104, symbol: * ER_TOO_BIG_SELECT. */ er_too_big_select = 1104, /** * \brief Common server error. Error number: 1105, symbol: * ER_UNKNOWN_ERROR. */ er_unknown_error = 1105, /** * \brief Common server error. Error number: 1106, symbol: * ER_UNKNOWN_PROCEDURE. */ er_unknown_procedure = 1106, /** * \brief Common server error. Error number: 1107, symbol: * ER_WRONG_PARAMCOUNT_TO_PROCEDURE. */ er_wrong_paramcount_to_procedure = 1107, /** * \brief Common server error. Error number: 1108, symbol: * ER_WRONG_PARAMETERS_TO_PROCEDURE. */ er_wrong_parameters_to_procedure = 1108, /** * \brief Common server error. Error number: 1109, symbol: * ER_UNKNOWN_TABLE. */ er_unknown_table = 1109, /** * \brief Common server error. Error number: 1110, symbol: * ER_FIELD_SPECIFIED_TWICE. */ er_field_specified_twice = 1110, /** * \brief Common server error. Error number: 1111, symbol: * ER_INVALID_GROUP_FUNC_USE. */ er_invalid_group_func_use = 1111, /** * \brief Common server error. Error number: 1112, symbol: * ER_UNSUPPORTED_EXTENSION. */ er_unsupported_extension = 1112, /** * \brief Common server error. Error number: 1113, symbol: * ER_TABLE_MUST_HAVE_COLUMNS. */ er_table_must_have_columns = 1113, /** * \brief Common server error. Error number: 1114, symbol: * ER_RECORD_FILE_FULL. */ er_record_file_full = 1114, /** * \brief Common server error. Error number: 1115, symbol: * ER_UNKNOWN_CHARACTER_SET. */ er_unknown_character_set = 1115, /** * \brief Common server error. Error number: 1116, symbol: * ER_TOO_MANY_TABLES. */ er_too_many_tables = 1116, /** * \brief Common server error. Error number: 1117, symbol: * ER_TOO_MANY_FIELDS. */ er_too_many_fields = 1117, /** * \brief Common server error. Error number: 1118, symbol: * ER_TOO_BIG_ROWSIZE. */ er_too_big_rowsize = 1118, /** * \brief Common server error. Error number: 1119, symbol: * ER_STACK_OVERRUN. */ er_stack_overrun = 1119, /** * \brief Common server error. Error number: 1121, symbol: * ER_NULL_COLUMN_IN_INDEX. */ er_null_column_in_index = 1121, /** * \brief Common server error. Error number: 1122, symbol: * ER_CANT_FIND_UDF. */ er_cant_find_udf = 1122, /** * \brief Common server error. Error number: 1123, symbol: * ER_CANT_INITIALIZE_UDF. */ er_cant_initialize_udf = 1123, /** * \brief Common server error. Error number: 1124, symbol: * ER_UDF_NO_PATHS. */ er_udf_no_paths = 1124, /** * \brief Common server error. Error number: 1125, symbol: * ER_UDF_EXISTS. */ er_udf_exists = 1125, /** * \brief Common server error. Error number: 1126, symbol: * ER_CANT_OPEN_LIBRARY. */ er_cant_open_library = 1126, /** * \brief Common server error. Error number: 1127, symbol: * ER_CANT_FIND_DL_ENTRY. */ er_cant_find_dl_entry = 1127, /** * \brief Common server error. Error number: 1128, symbol: * ER_FUNCTION_NOT_DEFINED. */ er_function_not_defined = 1128, /** * \brief Common server error. Error number: 1129, symbol: * ER_HOST_IS_BLOCKED. */ er_host_is_blocked = 1129, /** * \brief Common server error. Error number: 1130, symbol: * ER_HOST_NOT_PRIVILEGED. */ er_host_not_privileged = 1130, /** * \brief Common server error. Error number: 1131, symbol: * ER_PASSWORD_ANONYMOUS_USER. */ er_password_anonymous_user = 1131, /** * \brief Common server error. Error number: 1132, symbol: * ER_PASSWORD_NOT_ALLOWED. */ er_password_not_allowed = 1132, /** * \brief Common server error. Error number: 1133, symbol: * ER_PASSWORD_NO_MATCH. */ er_password_no_match = 1133, /** * \brief Common server error. Error number: 1134, symbol: * ER_UPDATE_INFO. */ er_update_info = 1134, /** * \brief Common server error. Error number: 1135, symbol: * ER_CANT_CREATE_THREAD. */ er_cant_create_thread = 1135, /** * \brief Common server error. Error number: 1136, symbol: * ER_WRONG_VALUE_COUNT_ON_ROW. */ er_wrong_value_count_on_row = 1136, /** * \brief Common server error. Error number: 1137, symbol: * ER_CANT_REOPEN_TABLE. */ er_cant_reopen_table = 1137, /** * \brief Common server error. Error number: 1138, symbol: * ER_INVALID_USE_OF_NULL. */ er_invalid_use_of_null = 1138, /** * \brief Common server error. Error number: 1139, symbol: * ER_REGEXP_ERROR. */ er_regexp_error = 1139, /** * \brief Common server error. Error number: 1140, symbol: * ER_MIX_OF_GROUP_FUNC_AND_FIELDS. */ er_mix_of_group_func_and_fields = 1140, /** * \brief Common server error. Error number: 1141, symbol: * ER_NONEXISTING_GRANT. */ er_nonexisting_grant = 1141, /** * \brief Common server error. Error number: 1142, symbol: * ER_TABLEACCESS_DENIED_ERROR. */ er_tableaccess_denied_error = 1142, /** * \brief Common server error. Error number: 1143, symbol: * ER_COLUMNACCESS_DENIED_ERROR. */ er_columnaccess_denied_error = 1143, /** * \brief Common server error. Error number: 1144, symbol: * ER_ILLEGAL_GRANT_FOR_TABLE. */ er_illegal_grant_for_table = 1144, /** * \brief Common server error. Error number: 1145, symbol: * ER_GRANT_WRONG_HOST_OR_USER. */ er_grant_wrong_host_or_user = 1145, /** * \brief Common server error. Error number: 1146, symbol: * ER_NO_SUCH_TABLE. */ er_no_such_table = 1146, /** * \brief Common server error. Error number: 1147, symbol: * ER_NONEXISTING_TABLE_GRANT. */ er_nonexisting_table_grant = 1147, /** * \brief Common server error. Error number: 1148, symbol: * ER_NOT_ALLOWED_COMMAND. */ er_not_allowed_command = 1148, /** * \brief Common server error. Error number: 1149, symbol: * ER_SYNTAX_ERROR. */ er_syntax_error = 1149, /** * \brief Common server error. Error number: 1152, symbol: * ER_ABORTING_CONNECTION. */ er_aborting_connection = 1152, /** * \brief Common server error. Error number: 1153, symbol: * ER_NET_PACKET_TOO_LARGE. */ er_net_packet_too_large = 1153, /** * \brief Common server error. Error number: 1154, symbol: * ER_NET_READ_ERROR_FROM_PIPE. */ er_net_read_error_from_pipe = 1154, /** * \brief Common server error. Error number: 1155, symbol: * ER_NET_FCNTL_ERROR. */ er_net_fcntl_error = 1155, /** * \brief Common server error. Error number: 1156, symbol: * ER_NET_PACKETS_OUT_OF_ORDER. */ er_net_packets_out_of_order = 1156, /** * \brief Common server error. Error number: 1157, symbol: * ER_NET_UNCOMPRESS_ERROR. */ er_net_uncompress_error = 1157, /** * \brief Common server error. Error number: 1158, symbol: * ER_NET_READ_ERROR. */ er_net_read_error = 1158, /** * \brief Common server error. Error number: 1159, symbol: * ER_NET_READ_INTERRUPTED. */ er_net_read_interrupted = 1159, /** * \brief Common server error. Error number: 1160, symbol: * ER_NET_ERROR_ON_WRITE. */ er_net_error_on_write = 1160, /** * \brief Common server error. Error number: 1161, symbol: * ER_NET_WRITE_INTERRUPTED. */ er_net_write_interrupted = 1161, /** * \brief Common server error. Error number: 1162, symbol: * ER_TOO_LONG_STRING. */ er_too_long_string = 1162, /** * \brief Common server error. Error number: 1163, symbol: * ER_TABLE_CANT_HANDLE_BLOB. */ er_table_cant_handle_blob = 1163, /** * \brief Common server error. Error number: 1164, symbol: * ER_TABLE_CANT_HANDLE_AUTO_INCREMENT. */ er_table_cant_handle_auto_increment = 1164, /** * \brief Common server error. Error number: 1166, symbol: * ER_WRONG_COLUMN_NAME. */ er_wrong_column_name = 1166, /** * \brief Common server error. Error number: 1167, symbol: * ER_WRONG_KEY_COLUMN. */ er_wrong_key_column = 1167, /** * \brief Common server error. Error number: 1168, symbol: * ER_WRONG_MRG_TABLE. */ er_wrong_mrg_table = 1168, /** * \brief Common server error. Error number: 1169, symbol: * ER_DUP_UNIQUE. */ er_dup_unique = 1169, /** * \brief Common server error. Error number: 1170, symbol: * ER_BLOB_KEY_WITHOUT_LENGTH. */ er_blob_key_without_length = 1170, /** * \brief Common server error. Error number: 1171, symbol: * ER_PRIMARY_CANT_HAVE_NULL. */ er_primary_cant_have_null = 1171, /** * \brief Common server error. Error number: 1172, symbol: * ER_TOO_MANY_ROWS. */ er_too_many_rows = 1172, /** * \brief Common server error. Error number: 1173, symbol: * ER_REQUIRES_PRIMARY_KEY. */ er_requires_primary_key = 1173, /** * \brief Common server error. Error number: 1174, symbol: * ER_NO_RAID_COMPILED. */ er_no_raid_compiled = 1174, /** * \brief Common server error. Error number: 1175, symbol: * ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE. */ er_update_without_key_in_safe_mode = 1175, /** * \brief Common server error. Error number: 1177, symbol: * ER_CHECK_NO_SUCH_TABLE. */ er_check_no_such_table = 1177, /** * \brief Common server error. Error number: 1178, symbol: * ER_CHECK_NOT_IMPLEMENTED. */ er_check_not_implemented = 1178, /** * \brief Common server error. Error number: 1179, symbol: * ER_CANT_DO_THIS_DURING_AN_TRANSACTION. */ er_cant_do_this_during_an_transaction = 1179, /** * \brief Common server error. Error number: 1180, symbol: * ER_ERROR_DURING_COMMIT. */ er_error_during_commit = 1180, /** * \brief Common server error. Error number: 1181, symbol: * ER_ERROR_DURING_ROLLBACK. */ er_error_during_rollback = 1181, /** * \brief Common server error. Error number: 1182, symbol: * ER_ERROR_DURING_FLUSH_LOGS. */ er_error_during_flush_logs = 1182, /** * \brief Common server error. Error number: 1183, symbol: * ER_ERROR_DURING_CHECKPOINT. */ er_error_during_checkpoint = 1183, /** * \brief Common server error. Error number: 1184, symbol: * ER_NEW_ABORTING_CONNECTION. */ er_new_aborting_connection = 1184, /** * \brief Common server error. Error number: 1186, symbol: * ER_FLUSH_MASTER_BINLOG_CLOSED. */ er_flush_master_binlog_closed = 1186, /** * \brief Common server error. Error number: 1187, symbol: * ER_INDEX_REBUILD. */ er_index_rebuild = 1187, /** * \brief Common server error. Error number: 1188, symbol: * ER_MASTER. */ er_master = 1188, /** * \brief Common server error. Error number: 1189, symbol: * ER_MASTER_NET_READ. */ er_master_net_read = 1189, /** * \brief Common server error. Error number: 1190, symbol: * ER_MASTER_NET_WRITE. */ er_master_net_write = 1190, /** * \brief Common server error. Error number: 1191, symbol: * ER_FT_MATCHING_KEY_NOT_FOUND. */ er_ft_matching_key_not_found = 1191, /** * \brief Common server error. Error number: 1192, symbol: * ER_LOCK_OR_ACTIVE_TRANSACTION. */ er_lock_or_active_transaction = 1192, /** * \brief Common server error. Error number: 1193, symbol: * ER_UNKNOWN_SYSTEM_VARIABLE. */ er_unknown_system_variable = 1193, /** * \brief Common server error. Error number: 1194, symbol: * ER_CRASHED_ON_USAGE. */ er_crashed_on_usage = 1194, /** * \brief Common server error. Error number: 1195, symbol: * ER_CRASHED_ON_REPAIR. */ er_crashed_on_repair = 1195, /** * \brief Common server error. Error number: 1196, symbol: * ER_WARNING_NOT_COMPLETE_ROLLBACK. */ er_warning_not_complete_rollback = 1196, /** * \brief Common server error. Error number: 1197, symbol: * ER_TRANS_CACHE_FULL. */ er_trans_cache_full = 1197, /** * \brief Common server error. Error number: 1198, symbol: * ER_SLAVE_MUST_STOP. */ er_slave_must_stop = 1198, /** * \brief Common server error. Error number: 1199, symbol: * ER_SLAVE_NOT_RUNNING. */ er_slave_not_running = 1199, /** * \brief Common server error. Error number: 1200, symbol: * ER_BAD_SLAVE. */ er_bad_slave = 1200, /** * \brief Common server error. Error number: 1201, symbol: * ER_MASTER_INFO. */ er_master_info = 1201, /** * \brief Common server error. Error number: 1202, symbol: * ER_SLAVE_THREAD. */ er_slave_thread = 1202, /** * \brief Common server error. Error number: 1203, symbol: * ER_TOO_MANY_USER_CONNECTIONS. */ er_too_many_user_connections = 1203, /** * \brief Common server error. Error number: 1204, symbol: * ER_SET_CONSTANTS_ONLY. */ er_set_constants_only = 1204, /** * \brief Common server error. Error number: 1205, symbol: * ER_LOCK_WAIT_TIMEOUT. */ er_lock_wait_timeout = 1205, /** * \brief Common server error. Error number: 1206, symbol: * ER_LOCK_TABLE_FULL. */ er_lock_table_full = 1206, /** * \brief Common server error. Error number: 1207, symbol: * ER_READ_ONLY_TRANSACTION. */ er_read_only_transaction = 1207, /** * \brief Common server error. Error number: 1208, symbol: * ER_DROP_DB_WITH_READ_LOCK. */ er_drop_db_with_read_lock = 1208, /** * \brief Common server error. Error number: 1209, symbol: * ER_CREATE_DB_WITH_READ_LOCK. */ er_create_db_with_read_lock = 1209, /** * \brief Common server error. Error number: 1210, symbol: * ER_WRONG_ARGUMENTS. */ er_wrong_arguments = 1210, /** * \brief Common server error. Error number: 1211, symbol: * ER_NO_PERMISSION_TO_CREATE_USER. */ er_no_permission_to_create_user = 1211, /** * \brief Common server error. Error number: 1212, symbol: * ER_UNION_TABLES_IN_DIFFERENT_DIR. */ er_union_tables_in_different_dir = 1212, /** * \brief Common server error. Error number: 1213, symbol: * ER_LOCK_DEADLOCK. */ er_lock_deadlock = 1213, /** * \brief Common server error. Error number: 1214, symbol: * ER_TABLE_CANT_HANDLE_FT. */ er_table_cant_handle_ft = 1214, /** * \brief Common server error. Error number: 1215, symbol: * ER_CANNOT_ADD_FOREIGN. */ er_cannot_add_foreign = 1215, /** * \brief Common server error. Error number: 1216, symbol: * ER_NO_REFERENCED_ROW. */ er_no_referenced_row = 1216, /** * \brief Common server error. Error number: 1217, symbol: * ER_ROW_IS_REFERENCED. */ er_row_is_referenced = 1217, /** * \brief Common server error. Error number: 1218, symbol: * ER_CONNECT_TO_MASTER. */ er_connect_to_master = 1218, /** * \brief Common server error. Error number: 1219, symbol: * ER_QUERY_ON_MASTER. */ er_query_on_master = 1219, /** * \brief Common server error. Error number: 1220, symbol: * ER_ERROR_WHEN_EXECUTING_COMMAND. */ er_error_when_executing_command = 1220, /** * \brief Common server error. Error number: 1221, symbol: * ER_WRONG_USAGE. */ er_wrong_usage = 1221, /** * \brief Common server error. Error number: 1222, symbol: * ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT. */ er_wrong_number_of_columns_in_select = 1222, /** * \brief Common server error. Error number: 1223, symbol: * ER_CANT_UPDATE_WITH_READLOCK. */ er_cant_update_with_readlock = 1223, /** * \brief Common server error. Error number: 1224, symbol: * ER_MIXING_NOT_ALLOWED. */ er_mixing_not_allowed = 1224, /** * \brief Common server error. Error number: 1225, symbol: * ER_DUP_ARGUMENT. */ er_dup_argument = 1225, /** * \brief Common server error. Error number: 1226, symbol: * ER_USER_LIMIT_REACHED. */ er_user_limit_reached = 1226, /** * \brief Common server error. Error number: 1227, symbol: * ER_SPECIFIC_ACCESS_DENIED_ERROR. */ er_specific_access_denied_error = 1227, /** * \brief Common server error. Error number: 1228, symbol: * ER_LOCAL_VARIABLE. */ er_local_variable = 1228, /** * \brief Common server error. Error number: 1229, symbol: * ER_GLOBAL_VARIABLE. */ er_global_variable = 1229, /** * \brief Common server error. Error number: 1230, symbol: * ER_NO_DEFAULT. */ er_no_default = 1230, /** * \brief Common server error. Error number: 1231, symbol: * ER_WRONG_VALUE_FOR_VAR. */ er_wrong_value_for_var = 1231, /** * \brief Common server error. Error number: 1232, symbol: * ER_WRONG_TYPE_FOR_VAR. */ er_wrong_type_for_var = 1232, /** * \brief Common server error. Error number: 1233, symbol: * ER_VAR_CANT_BE_READ. */ er_var_cant_be_read = 1233, /** * \brief Common server error. Error number: 1234, symbol: * ER_CANT_USE_OPTION_HERE. */ er_cant_use_option_here = 1234, /** * \brief Common server error. Error number: 1235, symbol: * ER_NOT_SUPPORTED_YET. */ er_not_supported_yet = 1235, /** * \brief Common server error. Error number: 1236, symbol: * ER_MASTER_FATAL_ERROR_READING_BINLOG. */ er_master_fatal_error_reading_binlog = 1236, /** * \brief Common server error. Error number: 1237, symbol: * ER_SLAVE_IGNORED_TABLE. */ er_slave_ignored_table = 1237, /** * \brief Common server error. Error number: 1238, symbol: * ER_INCORRECT_GLOBAL_LOCAL_VAR. */ er_incorrect_global_local_var = 1238, /** * \brief Common server error. Error number: 1239, symbol: * ER_WRONG_FK_DEF. */ er_wrong_fk_def = 1239, /** * \brief Common server error. Error number: 1240, symbol: * ER_KEY_REF_DO_NOT_MATCH_TABLE_REF. */ er_key_ref_do_not_match_table_ref = 1240, /** * \brief Common server error. Error number: 1241, symbol: * ER_OPERAND_COLUMNS. */ er_operand_columns = 1241, /** * \brief Common server error. Error number: 1242, symbol: * ER_SUBQUERY_NO_1_ROW. */ er_subquery_no_1_row = 1242, /** * \brief Common server error. Error number: 1243, symbol: * ER_UNKNOWN_STMT_HANDLER. */ er_unknown_stmt_handler = 1243, /** * \brief Common server error. Error number: 1244, symbol: * ER_CORRUPT_HELP_DB. */ er_corrupt_help_db = 1244, /** * \brief Common server error. Error number: 1245, symbol: * ER_CYCLIC_REFERENCE. */ er_cyclic_reference = 1245, /** * \brief Common server error. Error number: 1246, symbol: * ER_AUTO_CONVERT. */ er_auto_convert = 1246, /** * \brief Common server error. Error number: 1247, symbol: * ER_ILLEGAL_REFERENCE. */ er_illegal_reference = 1247, /** * \brief Common server error. Error number: 1248, symbol: * ER_DERIVED_MUST_HAVE_ALIAS. */ er_derived_must_have_alias = 1248, /** * \brief Common server error. Error number: 1249, symbol: * ER_SELECT_REDUCED. */ er_select_reduced = 1249, /** * \brief Common server error. Error number: 1250, symbol: * ER_TABLENAME_NOT_ALLOWED_HERE. */ er_tablename_not_allowed_here = 1250, /** * \brief Common server error. Error number: 1251, symbol: * ER_NOT_SUPPORTED_AUTH_MODE. */ er_not_supported_auth_mode = 1251, /** * \brief Common server error. Error number: 1252, symbol: * ER_SPATIAL_CANT_HAVE_NULL. */ er_spatial_cant_have_null = 1252, /** * \brief Common server error. Error number: 1253, symbol: * ER_COLLATION_CHARSET_MISMATCH. */ er_collation_charset_mismatch = 1253, /** * \brief Common server error. Error number: 1254, symbol: * ER_SLAVE_WAS_RUNNING. */ er_slave_was_running = 1254, /** * \brief Common server error. Error number: 1255, symbol: * ER_SLAVE_WAS_NOT_RUNNING. */ er_slave_was_not_running = 1255, /** * \brief Common server error. Error number: 1256, symbol: * ER_TOO_BIG_FOR_UNCOMPRESS. */ er_too_big_for_uncompress = 1256, /** * \brief Common server error. Error number: 1257, symbol: * ER_ZLIB_Z_MEM_ERROR. */ er_zlib_z_mem_error = 1257, /** * \brief Common server error. Error number: 1258, symbol: * ER_ZLIB_Z_BUF_ERROR. */ er_zlib_z_buf_error = 1258, /** * \brief Common server error. Error number: 1259, symbol: * ER_ZLIB_Z_DATA_ERROR. */ er_zlib_z_data_error = 1259, /** * \brief Common server error. Error number: 1260, symbol: * ER_CUT_VALUE_GROUP_CONCAT. */ er_cut_value_group_concat = 1260, /** * \brief Common server error. Error number: 1261, symbol: * ER_WARN_TOO_FEW_RECORDS. */ er_warn_too_few_records = 1261, /** * \brief Common server error. Error number: 1262, symbol: * ER_WARN_TOO_MANY_RECORDS. */ er_warn_too_many_records = 1262, /** * \brief Common server error. Error number: 1263, symbol: * ER_WARN_NULL_TO_NOTNULL. */ er_warn_null_to_notnull = 1263, /** * \brief Common server error. Error number: 1264, symbol: * ER_WARN_DATA_OUT_OF_RANGE. */ er_warn_data_out_of_range = 1264, /** * \brief Common server error. Error number: 1265, symbol: * WARN_DATA_TRUNCATED. */ warn_data_truncated = 1265, /** * \brief Common server error. Error number: 1266, symbol: * ER_WARN_USING_OTHER_HANDLER. */ er_warn_using_other_handler = 1266, /** * \brief Common server error. Error number: 1267, symbol: * ER_CANT_AGGREGATE_2COLLATIONS. */ er_cant_aggregate_2collations = 1267, /** * \brief Common server error. Error number: 1268, symbol: * ER_DROP_USER. */ er_drop_user = 1268, /** * \brief Common server error. Error number: 1269, symbol: * ER_REVOKE_GRANTS. */ er_revoke_grants = 1269, /** * \brief Common server error. Error number: 1270, symbol: * ER_CANT_AGGREGATE_3COLLATIONS. */ er_cant_aggregate_3collations = 1270, /** * \brief Common server error. Error number: 1271, symbol: * ER_CANT_AGGREGATE_NCOLLATIONS. */ er_cant_aggregate_ncollations = 1271, /** * \brief Common server error. Error number: 1272, symbol: * ER_VARIABLE_IS_NOT_STRUCT. */ er_variable_is_not_struct = 1272, /** * \brief Common server error. Error number: 1273, symbol: * ER_UNKNOWN_COLLATION. */ er_unknown_collation = 1273, /** * \brief Common server error. Error number: 1274, symbol: * ER_SLAVE_IGNORED_SSL_PARAMS. */ er_slave_ignored_ssl_params = 1274, /** * \brief Common server error. Error number: 1275, symbol: * ER_SERVER_IS_IN_SECURE_AUTH_MODE. */ er_server_is_in_secure_auth_mode = 1275, /** * \brief Common server error. Error number: 1276, symbol: * ER_WARN_FIELD_RESOLVED. */ er_warn_field_resolved = 1276, /** * \brief Common server error. Error number: 1277, symbol: * ER_BAD_SLAVE_UNTIL_COND. */ er_bad_slave_until_cond = 1277, /** * \brief Common server error. Error number: 1278, symbol: * ER_MISSING_SKIP_SLAVE. */ er_missing_skip_slave = 1278, /** * \brief Common server error. Error number: 1279, symbol: * ER_UNTIL_COND_IGNORED. */ er_until_cond_ignored = 1279, /** * \brief Common server error. Error number: 1280, symbol: * ER_WRONG_NAME_FOR_INDEX. */ er_wrong_name_for_index = 1280, /** * \brief Common server error. Error number: 1281, symbol: * ER_WRONG_NAME_FOR_CATALOG. */ er_wrong_name_for_catalog = 1281, /** * \brief Common server error. Error number: 1282, symbol: * ER_WARN_QC_RESIZE. */ er_warn_qc_resize = 1282, /** * \brief Common server error. Error number: 1283, symbol: * ER_BAD_FT_COLUMN. */ er_bad_ft_column = 1283, /** * \brief Common server error. Error number: 1284, symbol: * ER_UNKNOWN_KEY_CACHE. */ er_unknown_key_cache = 1284, /** * \brief Common server error. Error number: 1285, symbol: * ER_WARN_HOSTNAME_WONT_WORK. */ er_warn_hostname_wont_work = 1285, /** * \brief Common server error. Error number: 1286, symbol: * ER_UNKNOWN_STORAGE_ENGINE. */ er_unknown_storage_engine = 1286, /** * \brief Common server error. Error number: 1287, symbol: * ER_WARN_DEPRECATED_SYNTAX. */ er_warn_deprecated_syntax = 1287, /** * \brief Common server error. Error number: 1288, symbol: * ER_NON_UPDATABLE_TABLE. */ er_non_updatable_table = 1288, /** * \brief Common server error. Error number: 1289, symbol: * ER_FEATURE_DISABLED. */ er_feature_disabled = 1289, /** * \brief Common server error. Error number: 1290, symbol: * ER_OPTION_PREVENTS_STATEMENT. */ er_option_prevents_statement = 1290, /** * \brief Common server error. Error number: 1291, symbol: * ER_DUPLICATED_VALUE_IN_TYPE. */ er_duplicated_value_in_type = 1291, /** * \brief Common server error. Error number: 1292, symbol: * ER_TRUNCATED_WRONG_VALUE. */ er_truncated_wrong_value = 1292, /** * \brief Common server error. Error number: 1293, symbol: * ER_TOO_MUCH_AUTO_TIMESTAMP_COLS. */ er_too_much_auto_timestamp_cols = 1293, /** * \brief Common server error. Error number: 1294, symbol: * ER_INVALID_ON_UPDATE. */ er_invalid_on_update = 1294, /** * \brief Common server error. Error number: 1295, symbol: * ER_UNSUPPORTED_PS. */ er_unsupported_ps = 1295, /** * \brief Common server error. Error number: 1296, symbol: * ER_GET_ERRMSG. */ er_get_errmsg = 1296, /** * \brief Common server error. Error number: 1297, symbol: * ER_GET_TEMPORARY_ERRMSG. */ er_get_temporary_errmsg = 1297, /** * \brief Common server error. Error number: 1298, symbol: * ER_UNKNOWN_TIME_ZONE. */ er_unknown_time_zone = 1298, /** * \brief Common server error. Error number: 1299, symbol: * ER_WARN_INVALID_TIMESTAMP. */ er_warn_invalid_timestamp = 1299, /** * \brief Common server error. Error number: 1300, symbol: * ER_INVALID_CHARACTER_STRING. */ er_invalid_character_string = 1300, /** * \brief Common server error. Error number: 1301, symbol: * ER_WARN_ALLOWED_PACKET_OVERFLOWED. */ er_warn_allowed_packet_overflowed = 1301, /** * \brief Common server error. Error number: 1302, symbol: * ER_CONFLICTING_DECLARATIONS. */ er_conflicting_declarations = 1302, /** * \brief Common server error. Error number: 1303, symbol: * ER_SP_NO_RECURSIVE_CREATE. */ er_sp_no_recursive_create = 1303, /** * \brief Common server error. Error number: 1304, symbol: * ER_SP_ALREADY_EXISTS. */ er_sp_already_exists = 1304, /** * \brief Common server error. Error number: 1305, symbol: * ER_SP_DOES_NOT_EXIST. */ er_sp_does_not_exist = 1305, /** * \brief Common server error. Error number: 1306, symbol: * ER_SP_DROP_FAILED. */ er_sp_drop_failed = 1306, /** * \brief Common server error. Error number: 1307, symbol: * ER_SP_STORE_FAILED. */ er_sp_store_failed = 1307, /** * \brief Common server error. Error number: 1308, symbol: * ER_SP_LILABEL_MISMATCH. */ er_sp_lilabel_mismatch = 1308, /** * \brief Common server error. Error number: 1309, symbol: * ER_SP_LABEL_REDEFINE. */ er_sp_label_redefine = 1309, /** * \brief Common server error. Error number: 1310, symbol: * ER_SP_LABEL_MISMATCH. */ er_sp_label_mismatch = 1310, /** * \brief Common server error. Error number: 1311, symbol: * ER_SP_UNINIT_VAR. */ er_sp_uninit_var = 1311, /** * \brief Common server error. Error number: 1312, symbol: * ER_SP_BADSELECT. */ er_sp_badselect = 1312, /** * \brief Common server error. Error number: 1313, symbol: * ER_SP_BADRETURN. */ er_sp_badreturn = 1313, /** * \brief Common server error. Error number: 1314, symbol: * ER_SP_BADSTATEMENT. */ er_sp_badstatement = 1314, /** * \brief Common server error. Error number: 1315, symbol: * ER_UPDATE_LOG_DEPRECATED_IGNORED. */ er_update_log_deprecated_ignored = 1315, /** * \brief Common server error. Error number: 1316, symbol: * ER_UPDATE_LOG_DEPRECATED_TRANSLATED. */ er_update_log_deprecated_translated = 1316, /** * \brief Common server error. Error number: 1317, symbol: * ER_QUERY_INTERRUPTED. */ er_query_interrupted = 1317, /** * \brief Common server error. Error number: 1318, symbol: * ER_SP_WRONG_NO_OF_ARGS. */ er_sp_wrong_no_of_args = 1318, /** * \brief Common server error. Error number: 1319, symbol: * ER_SP_COND_MISMATCH. */ er_sp_cond_mismatch = 1319, /** * \brief Common server error. Error number: 1320, symbol: * ER_SP_NORETURN. */ er_sp_noreturn = 1320, /** * \brief Common server error. Error number: 1321, symbol: * ER_SP_NORETURNEND. */ er_sp_noreturnend = 1321, /** * \brief Common server error. Error number: 1322, symbol: * ER_SP_BAD_CURSOR_QUERY. */ er_sp_bad_cursor_query = 1322, /** * \brief Common server error. Error number: 1323, symbol: * ER_SP_BAD_CURSOR_SELECT. */ er_sp_bad_cursor_select = 1323, /** * \brief Common server error. Error number: 1324, symbol: * ER_SP_CURSOR_MISMATCH. */ er_sp_cursor_mismatch = 1324, /** * \brief Common server error. Error number: 1325, symbol: * ER_SP_CURSOR_ALREADY_OPEN. */ er_sp_cursor_already_open = 1325, /** * \brief Common server error. Error number: 1326, symbol: * ER_SP_CURSOR_NOT_OPEN. */ er_sp_cursor_not_open = 1326, /** * \brief Common server error. Error number: 1327, symbol: * ER_SP_UNDECLARED_VAR. */ er_sp_undeclared_var = 1327, /** * \brief Common server error. Error number: 1328, symbol: * ER_SP_WRONG_NO_OF_FETCH_ARGS. */ er_sp_wrong_no_of_fetch_args = 1328, /** * \brief Common server error. Error number: 1329, symbol: * ER_SP_FETCH_NO_DATA. */ er_sp_fetch_no_data = 1329, /** * \brief Common server error. Error number: 1330, symbol: * ER_SP_DUP_PARAM. */ er_sp_dup_param = 1330, /** * \brief Common server error. Error number: 1331, symbol: * ER_SP_DUP_VAR. */ er_sp_dup_var = 1331, /** * \brief Common server error. Error number: 1332, symbol: * ER_SP_DUP_COND. */ er_sp_dup_cond = 1332, /** * \brief Common server error. Error number: 1333, symbol: * ER_SP_DUP_CURS. */ er_sp_dup_curs = 1333, /** * \brief Common server error. Error number: 1334, symbol: * ER_SP_CANT_ALTER. */ er_sp_cant_alter = 1334, /** * \brief Common server error. Error number: 1335, symbol: * ER_SP_SUBSELECT_NYI. */ er_sp_subselect_nyi = 1335, /** * \brief Common server error. Error number: 1336, symbol: * ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG. */ er_stmt_not_allowed_in_sf_or_trg = 1336, /** * \brief Common server error. Error number: 1337, symbol: * ER_SP_VARCOND_AFTER_CURSHNDLR. */ er_sp_varcond_after_curshndlr = 1337, /** * \brief Common server error. Error number: 1338, symbol: * ER_SP_CURSOR_AFTER_HANDLER. */ er_sp_cursor_after_handler = 1338, /** * \brief Common server error. Error number: 1339, symbol: * ER_SP_CASE_NOT_FOUND. */ er_sp_case_not_found = 1339, /** * \brief Common server error. Error number: 1340, symbol: * ER_FPARSER_TOO_BIG_FILE. */ er_fparser_too_big_file = 1340, /** * \brief Common server error. Error number: 1341, symbol: * ER_FPARSER_BAD_HEADER. */ er_fparser_bad_header = 1341, /** * \brief Common server error. Error number: 1342, symbol: * ER_FPARSER_EOF_IN_COMMENT. */ er_fparser_eof_in_comment = 1342, /** * \brief Common server error. Error number: 1343, symbol: * ER_FPARSER_ERROR_IN_PARAMETER. */ er_fparser_error_in_parameter = 1343, /** * \brief Common server error. Error number: 1344, symbol: * ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER. */ er_fparser_eof_in_unknown_parameter = 1344, /** * \brief Common server error. Error number: 1345, symbol: * ER_VIEW_NO_EXPLAIN. */ er_view_no_explain = 1345, /** * \brief Common server error. Error number: 1346, symbol: * ER_FRM_UNKNOWN_TYPE. */ er_frm_unknown_type = 1346, /** * \brief Common server error. Error number: 1347, symbol: * ER_WRONG_OBJECT. */ er_wrong_object = 1347, /** * \brief Common server error. Error number: 1348, symbol: * ER_NONUPDATEABLE_COLUMN. */ er_nonupdateable_column = 1348, /** * \brief Common server error. Error number: 1350, symbol: * ER_VIEW_SELECT_CLAUSE. */ er_view_select_clause = 1350, /** * \brief Common server error. Error number: 1351, symbol: * ER_VIEW_SELECT_VARIABLE. */ er_view_select_variable = 1351, /** * \brief Common server error. Error number: 1352, symbol: * ER_VIEW_SELECT_TMPTABLE. */ er_view_select_tmptable = 1352, /** * \brief Common server error. Error number: 1353, symbol: * ER_VIEW_WRONG_LIST. */ er_view_wrong_list = 1353, /** * \brief Common server error. Error number: 1354, symbol: * ER_WARN_VIEW_MERGE. */ er_warn_view_merge = 1354, /** * \brief Common server error. Error number: 1355, symbol: * ER_WARN_VIEW_WITHOUT_KEY. */ er_warn_view_without_key = 1355, /** * \brief Common server error. Error number: 1356, symbol: * ER_VIEW_INVALID. */ er_view_invalid = 1356, /** * \brief Common server error. Error number: 1357, symbol: * ER_SP_NO_DROP_SP. */ er_sp_no_drop_sp = 1357, /** * \brief Common server error. Error number: 1358, symbol: * ER_SP_GOTO_IN_HNDLR. */ er_sp_goto_in_hndlr = 1358, /** * \brief Common server error. Error number: 1359, symbol: * ER_TRG_ALREADY_EXISTS. */ er_trg_already_exists = 1359, /** * \brief Common server error. Error number: 1360, symbol: * ER_TRG_DOES_NOT_EXIST. */ er_trg_does_not_exist = 1360, /** * \brief Common server error. Error number: 1361, symbol: * ER_TRG_ON_VIEW_OR_TEMP_TABLE. */ er_trg_on_view_or_temp_table = 1361, /** * \brief Common server error. Error number: 1362, symbol: * ER_TRG_CANT_CHANGE_ROW. */ er_trg_cant_change_row = 1362, /** * \brief Common server error. Error number: 1363, symbol: * ER_TRG_NO_SUCH_ROW_IN_TRG. */ er_trg_no_such_row_in_trg = 1363, /** * \brief Common server error. Error number: 1364, symbol: * ER_NO_DEFAULT_FOR_FIELD. */ er_no_default_for_field = 1364, /** * \brief Common server error. Error number: 1365, symbol: * ER_DIVISION_BY_ZERO. */ er_division_by_zero = 1365, /** * \brief Common server error. Error number: 1366, symbol: * ER_TRUNCATED_WRONG_VALUE_FOR_FIELD. */ er_truncated_wrong_value_for_field = 1366, /** * \brief Common server error. Error number: 1367, symbol: * ER_ILLEGAL_VALUE_FOR_TYPE. */ er_illegal_value_for_type = 1367, /** * \brief Common server error. Error number: 1368, symbol: * ER_VIEW_NONUPD_CHECK. */ er_view_nonupd_check = 1368, /** * \brief Common server error. Error number: 1369, symbol: * ER_VIEW_CHECK_FAILED. */ er_view_check_failed = 1369, /** * \brief Common server error. Error number: 1370, symbol: * ER_PROCACCESS_DENIED_ERROR. */ er_procaccess_denied_error = 1370, /** * \brief Common server error. Error number: 1371, symbol: * ER_RELAY_LOG_FAIL. */ er_relay_log_fail = 1371, /** * \brief Common server error. Error number: 1372, symbol: * ER_PASSWD_LENGTH. */ er_passwd_length = 1372, /** * \brief Common server error. Error number: 1373, symbol: * ER_UNKNOWN_TARGET_BINLOG. */ er_unknown_target_binlog = 1373, /** * \brief Common server error. Error number: 1374, symbol: * ER_IO_ERR_LOG_INDEX_READ. */ er_io_err_log_index_read = 1374, /** * \brief Common server error. Error number: 1375, symbol: * ER_BINLOG_PURGE_PROHIBITED. */ er_binlog_purge_prohibited = 1375, /** * \brief Common server error. Error number: 1376, symbol: * ER_FSEEK_FAIL. */ er_fseek_fail = 1376, /** * \brief Common server error. Error number: 1377, symbol: * ER_BINLOG_PURGE_FATAL_ERR. */ er_binlog_purge_fatal_err = 1377, /** * \brief Common server error. Error number: 1378, symbol: * ER_LOG_IN_USE. */ er_log_in_use = 1378, /** * \brief Common server error. Error number: 1379, symbol: * ER_LOG_PURGE_UNKNOWN_ERR. */ er_log_purge_unknown_err = 1379, /** * \brief Common server error. Error number: 1380, symbol: * ER_RELAY_LOG_INIT. */ er_relay_log_init = 1380, /** * \brief Common server error. Error number: 1381, symbol: * ER_NO_BINARY_LOGGING. */ er_no_binary_logging = 1381, /** * \brief Common server error. Error number: 1382, symbol: * ER_RESERVED_SYNTAX. */ er_reserved_syntax = 1382, /** * \brief Common server error. Error number: 1383, symbol: * ER_WSAS_FAILED. */ er_wsas_failed = 1383, /** * \brief Common server error. Error number: 1384, symbol: * ER_DIFF_GROUPS_PROC. */ er_diff_groups_proc = 1384, /** * \brief Common server error. Error number: 1385, symbol: * ER_NO_GROUP_FOR_PROC. */ er_no_group_for_proc = 1385, /** * \brief Common server error. Error number: 1386, symbol: * ER_ORDER_WITH_PROC. */ er_order_with_proc = 1386, /** * \brief Common server error. Error number: 1387, symbol: * ER_LOGGING_PROHIBIT_CHANGING_OF. */ er_logging_prohibit_changing_of = 1387, /** * \brief Common server error. Error number: 1388, symbol: * ER_NO_FILE_MAPPING. */ er_no_file_mapping = 1388, /** * \brief Common server error. Error number: 1389, symbol: * ER_WRONG_MAGIC. */ er_wrong_magic = 1389, /** * \brief Common server error. Error number: 1390, symbol: * ER_PS_MANY_PARAM. */ er_ps_many_param = 1390, /** * \brief Common server error. Error number: 1391, symbol: * ER_KEY_PART_0. */ er_key_part_0 = 1391, /** * \brief Common server error. Error number: 1392, symbol: * ER_VIEW_CHECKSUM. */ er_view_checksum = 1392, /** * \brief Common server error. Error number: 1393, symbol: * ER_VIEW_MULTIUPDATE. */ er_view_multiupdate = 1393, /** * \brief Common server error. Error number: 1394, symbol: * ER_VIEW_NO_INSERT_FIELD_LIST. */ er_view_no_insert_field_list = 1394, /** * \brief Common server error. Error number: 1395, symbol: * ER_VIEW_DELETE_MERGE_VIEW. */ er_view_delete_merge_view = 1395, /** * \brief Common server error. Error number: 1396, symbol: * ER_CANNOT_USER. */ er_cannot_user = 1396, /** * \brief Common server error. Error number: 1397, symbol: * ER_XAER_NOTA. */ er_xaer_nota = 1397, /** * \brief Common server error. Error number: 1398, symbol: * ER_XAER_INVAL. */ er_xaer_inval = 1398, /** * \brief Common server error. Error number: 1399, symbol: * ER_XAER_RMFAIL. */ er_xaer_rmfail = 1399, /** * \brief Common server error. Error number: 1400, symbol: * ER_XAER_OUTSIDE. */ er_xaer_outside = 1400, /** * \brief Common server error. Error number: 1401, symbol: * ER_XAER_RMERR. */ er_xaer_rmerr = 1401, /** * \brief Common server error. Error number: 1402, symbol: * ER_XA_RBROLLBACK. */ er_xa_rbrollback = 1402, /** * \brief Common server error. Error number: 1403, symbol: * ER_NONEXISTING_PROC_GRANT. */ er_nonexisting_proc_grant = 1403, /** * \brief Common server error. Error number: 1404, symbol: * ER_PROC_AUTO_GRANT_FAIL. */ er_proc_auto_grant_fail = 1404, /** * \brief Common server error. Error number: 1405, symbol: * ER_PROC_AUTO_REVOKE_FAIL. */ er_proc_auto_revoke_fail = 1405, /** * \brief Common server error. Error number: 1406, symbol: * ER_DATA_TOO_LONG. */ er_data_too_long = 1406, /** * \brief Common server error. Error number: 1407, symbol: * ER_SP_BAD_SQLSTATE. */ er_sp_bad_sqlstate = 1407, /** * \brief Common server error. Error number: 1408, symbol: * ER_STARTUP. */ er_startup = 1408, /** * \brief Common server error. Error number: 1409, symbol: * ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR. */ er_load_from_fixed_size_rows_to_var = 1409, /** * \brief Common server error. Error number: 1410, symbol: * ER_CANT_CREATE_USER_WITH_GRANT. */ er_cant_create_user_with_grant = 1410, /** * \brief Common server error. Error number: 1411, symbol: * ER_WRONG_VALUE_FOR_TYPE. */ er_wrong_value_for_type = 1411, /** * \brief Common server error. Error number: 1412, symbol: * ER_TABLE_DEF_CHANGED. */ er_table_def_changed = 1412, /** * \brief Common server error. Error number: 1413, symbol: * ER_SP_DUP_HANDLER. */ er_sp_dup_handler = 1413, /** * \brief Common server error. Error number: 1414, symbol: * ER_SP_NOT_VAR_ARG. */ er_sp_not_var_arg = 1414, /** * \brief Common server error. Error number: 1415, symbol: * ER_SP_NO_RETSET. */ er_sp_no_retset = 1415, /** * \brief Common server error. Error number: 1416, symbol: * ER_CANT_CREATE_GEOMETRY_OBJECT. */ er_cant_create_geometry_object = 1416, /** * \brief Common server error. Error number: 1417, symbol: * ER_FAILED_ROUTINE_BREAK_BINLOG. */ er_failed_routine_break_binlog = 1417, /** * \brief Common server error. Error number: 1418, symbol: * ER_BINLOG_UNSAFE_ROUTINE. */ er_binlog_unsafe_routine = 1418, /** * \brief Common server error. Error number: 1419, symbol: * ER_BINLOG_CREATE_ROUTINE_NEED_SUPER. */ er_binlog_create_routine_need_super = 1419, /** * \brief Common server error. Error number: 1420, symbol: * ER_EXEC_STMT_WITH_OPEN_CURSOR. */ er_exec_stmt_with_open_cursor = 1420, /** * \brief Common server error. Error number: 1421, symbol: * ER_STMT_HAS_NO_OPEN_CURSOR. */ er_stmt_has_no_open_cursor = 1421, /** * \brief Common server error. Error number: 1422, symbol: * ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG. */ er_commit_not_allowed_in_sf_or_trg = 1422, /** * \brief Common server error. Error number: 1423, symbol: * ER_NO_DEFAULT_FOR_VIEW_FIELD. */ er_no_default_for_view_field = 1423, /** * \brief Common server error. Error number: 1424, symbol: * ER_SP_NO_RECURSION. */ er_sp_no_recursion = 1424, /** * \brief Common server error. Error number: 1425, symbol: * ER_TOO_BIG_SCALE. */ er_too_big_scale = 1425, /** * \brief Common server error. Error number: 1426, symbol: * ER_TOO_BIG_PRECISION. */ er_too_big_precision = 1426, /** * \brief Common server error. Error number: 1427, symbol: * ER_M_BIGGER_THAN_D. */ er_m_bigger_than_d = 1427, /** * \brief Common server error. Error number: 1428, symbol: * ER_WRONG_LOCK_OF_SYSTEM_TABLE. */ er_wrong_lock_of_system_table = 1428, /** * \brief Common server error. Error number: 1429, symbol: * ER_CONNECT_TO_FOREIGN_DATA_SOURCE. */ er_connect_to_foreign_data_source = 1429, /** * \brief Common server error. Error number: 1430, symbol: * ER_QUERY_ON_FOREIGN_DATA_SOURCE. */ er_query_on_foreign_data_source = 1430, /** * \brief Common server error. Error number: 1431, symbol: * ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST. */ er_foreign_data_source_doesnt_exist = 1431, /** * \brief Common server error. Error number: 1432, symbol: * ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE. */ er_foreign_data_string_invalid_cant_create = 1432, /** * \brief Common server error. Error number: 1433, symbol: * ER_FOREIGN_DATA_STRING_INVALID. */ er_foreign_data_string_invalid = 1433, /** * \brief Common server error. Error number: 1434, symbol: * ER_CANT_CREATE_FEDERATED_TABLE. */ er_cant_create_federated_table = 1434, /** * \brief Common server error. Error number: 1435, symbol: * ER_TRG_IN_WRONG_SCHEMA. */ er_trg_in_wrong_schema = 1435, /** * \brief Common server error. Error number: 1436, symbol: * ER_STACK_OVERRUN_NEED_MORE. */ er_stack_overrun_need_more = 1436, /** * \brief Common server error. Error number: 1437, symbol: * ER_TOO_LONG_BODY. */ er_too_long_body = 1437, /** * \brief Common server error. Error number: 1438, symbol: * ER_WARN_CANT_DROP_DEFAULT_KEYCACHE. */ er_warn_cant_drop_default_keycache = 1438, /** * \brief Common server error. Error number: 1439, symbol: * ER_TOO_BIG_DISPLAYWIDTH. */ er_too_big_displaywidth = 1439, /** * \brief Common server error. Error number: 1440, symbol: * ER_XAER_DUPID. */ er_xaer_dupid = 1440, /** * \brief Common server error. Error number: 1441, symbol: * ER_DATETIME_FUNCTION_OVERFLOW. */ er_datetime_function_overflow = 1441, /** * \brief Common server error. Error number: 1442, symbol: * ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG. */ er_cant_update_used_table_in_sf_or_trg = 1442, /** * \brief Common server error. Error number: 1443, symbol: * ER_VIEW_PREVENT_UPDATE. */ er_view_prevent_update = 1443, /** * \brief Common server error. Error number: 1444, symbol: * ER_PS_NO_RECURSION. */ er_ps_no_recursion = 1444, /** * \brief Common server error. Error number: 1445, symbol: * ER_SP_CANT_SET_AUTOCOMMIT. */ er_sp_cant_set_autocommit = 1445, /** * \brief Common server error. Error number: 1446, symbol: * ER_MALFORMED_DEFINER. */ er_malformed_definer = 1446, /** * \brief Common server error. Error number: 1447, symbol: * ER_VIEW_FRM_NO_USER. */ er_view_frm_no_user = 1447, /** * \brief Common server error. Error number: 1448, symbol: * ER_VIEW_OTHER_USER. */ er_view_other_user = 1448, /** * \brief Common server error. Error number: 1449, symbol: * ER_NO_SUCH_USER. */ er_no_such_user = 1449, /** * \brief Common server error. Error number: 1450, symbol: * ER_FORBID_SCHEMA_CHANGE. */ er_forbid_schema_change = 1450, /** * \brief Common server error. Error number: 1451, symbol: * ER_ROW_IS_REFERENCED_2. */ er_row_is_referenced_2 = 1451, /** * \brief Common server error. Error number: 1452, symbol: * ER_NO_REFERENCED_ROW_2. */ er_no_referenced_row_2 = 1452, /** * \brief Common server error. Error number: 1453, symbol: * ER_SP_BAD_VAR_SHADOW. */ er_sp_bad_var_shadow = 1453, /** * \brief Common server error. Error number: 1454, symbol: * ER_TRG_NO_DEFINER. */ er_trg_no_definer = 1454, /** * \brief Common server error. Error number: 1455, symbol: * ER_OLD_FILE_FORMAT. */ er_old_file_format = 1455, /** * \brief Common server error. Error number: 1456, symbol: * ER_SP_RECURSION_LIMIT. */ er_sp_recursion_limit = 1456, /** * \brief Common server error. Error number: 1457, symbol: * ER_SP_PROC_TABLE_CORRUPT. */ er_sp_proc_table_corrupt = 1457, /** * \brief Common server error. Error number: 1458, symbol: * ER_SP_WRONG_NAME. */ er_sp_wrong_name = 1458, /** * \brief Common server error. Error number: 1459, symbol: * ER_TABLE_NEEDS_UPGRADE. */ er_table_needs_upgrade = 1459, /** * \brief Common server error. Error number: 1460, symbol: * ER_SP_NO_AGGREGATE. */ er_sp_no_aggregate = 1460, /** * \brief Common server error. Error number: 1461, symbol: * ER_MAX_PREPARED_STMT_COUNT_REACHED. */ er_max_prepared_stmt_count_reached = 1461, /** * \brief Common server error. Error number: 1462, symbol: * ER_VIEW_RECURSIVE. */ er_view_recursive = 1462, /** * \brief Common server error. Error number: 1463, symbol: * ER_NON_GROUPING_FIELD_USED. */ er_non_grouping_field_used = 1463, /** * \brief Common server error. Error number: 1464, symbol: * ER_TABLE_CANT_HANDLE_SPKEYS. */ er_table_cant_handle_spkeys = 1464, /** * \brief Common server error. Error number: 1465, symbol: * ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA. */ er_no_triggers_on_system_schema = 1465, /** * \brief Common server error. Error number: 1466, symbol: * ER_REMOVED_SPACES. */ er_removed_spaces = 1466, /** * \brief Common server error. Error number: 1467, symbol: * ER_AUTOINC_READ_FAILED. */ er_autoinc_read_failed = 1467, /** * \brief Common server error. Error number: 1468, symbol: * ER_USERNAME. */ er_username = 1468, /** * \brief Common server error. Error number: 1469, symbol: * ER_HOSTNAME. */ er_hostname = 1469, /** * \brief Common server error. Error number: 1470, symbol: * ER_WRONG_STRING_LENGTH. */ er_wrong_string_length = 1470, /** * \brief Common server error. Error number: 1471, symbol: * ER_NON_INSERTABLE_TABLE. */ er_non_insertable_table = 1471, /** * \brief Common server error. Error number: 1472, symbol: * ER_ADMIN_WRONG_MRG_TABLE. */ er_admin_wrong_mrg_table = 1472, /** * \brief Common server error. Error number: 1473, symbol: * ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT. */ er_too_high_level_of_nesting_for_select = 1473, /** * \brief Common server error. Error number: 1474, symbol: * ER_NAME_BECOMES_EMPTY. */ er_name_becomes_empty = 1474, /** * \brief Common server error. Error number: 1475, symbol: * ER_AMBIGUOUS_FIELD_TERM. */ er_ambiguous_field_term = 1475, /** * \brief Common server error. Error number: 1476, symbol: * ER_FOREIGN_SERVER_EXISTS. */ er_foreign_server_exists = 1476, /** * \brief Common server error. Error number: 1477, symbol: * ER_FOREIGN_SERVER_DOESNT_EXIST. */ er_foreign_server_doesnt_exist = 1477, /** * \brief Common server error. Error number: 1478, symbol: * ER_ILLEGAL_HA_CREATE_OPTION. */ er_illegal_ha_create_option = 1478, /** * \brief Common server error. Error number: 1479, symbol: * ER_PARTITION_REQUIRES_VALUES_ERROR. */ er_partition_requires_values_error = 1479, /** * \brief Common server error. Error number: 1480, symbol: * ER_PARTITION_WRONG_VALUES_ERROR. */ er_partition_wrong_values_error = 1480, /** * \brief Common server error. Error number: 1481, symbol: * ER_PARTITION_MAXVALUE_ERROR. */ er_partition_maxvalue_error = 1481, /** * \brief Common server error. Error number: 1482, symbol: * ER_PARTITION_SUBPARTITION_ERROR. */ er_partition_subpartition_error = 1482, /** * \brief Common server error. Error number: 1483, symbol: * ER_PARTITION_SUBPART_MIX_ERROR. */ er_partition_subpart_mix_error = 1483, /** * \brief Common server error. Error number: 1484, symbol: * ER_PARTITION_WRONG_NO_PART_ERROR. */ er_partition_wrong_no_part_error = 1484, /** * \brief Common server error. Error number: 1485, symbol: * ER_PARTITION_WRONG_NO_SUBPART_ERROR. */ er_partition_wrong_no_subpart_error = 1485, /** * \brief Common server error. Error number: 1486, symbol: * ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR. */ er_wrong_expr_in_partition_func_error = 1486, /** * \brief Common server error. Error number: 1488, symbol: * ER_FIELD_NOT_FOUND_PART_ERROR. */ er_field_not_found_part_error = 1488, /** * \brief Common server error. Error number: 1489, symbol: * ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR. */ er_list_of_fields_only_in_hash_error = 1489, /** * \brief Common server error. Error number: 1490, symbol: * ER_INCONSISTENT_PARTITION_INFO_ERROR. */ er_inconsistent_partition_info_error = 1490, /** * \brief Common server error. Error number: 1491, symbol: * ER_PARTITION_FUNC_NOT_ALLOWED_ERROR. */ er_partition_func_not_allowed_error = 1491, /** * \brief Common server error. Error number: 1492, symbol: * ER_PARTITIONS_MUST_BE_DEFINED_ERROR. */ er_partitions_must_be_defined_error = 1492, /** * \brief Common server error. Error number: 1493, symbol: * ER_RANGE_NOT_INCREASING_ERROR. */ er_range_not_increasing_error = 1493, /** * \brief Common server error. Error number: 1494, symbol: * ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR. */ er_inconsistent_type_of_functions_error = 1494, /** * \brief Common server error. Error number: 1495, symbol: * ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR. */ er_multiple_def_const_in_list_part_error = 1495, /** * \brief Common server error. Error number: 1496, symbol: * ER_PARTITION_ENTRY_ERROR. */ er_partition_entry_error = 1496, /** * \brief Common server error. Error number: 1497, symbol: * ER_MIX_HANDLER_ERROR. */ er_mix_handler_error = 1497, /** * \brief Common server error. Error number: 1498, symbol: * ER_PARTITION_NOT_DEFINED_ERROR. */ er_partition_not_defined_error = 1498, /** * \brief Common server error. Error number: 1499, symbol: * ER_TOO_MANY_PARTITIONS_ERROR. */ er_too_many_partitions_error = 1499, /** * \brief Common server error. Error number: 1500, symbol: * ER_SUBPARTITION_ERROR. */ er_subpartition_error = 1500, /** * \brief Common server error. Error number: 1501, symbol: * ER_CANT_CREATE_HANDLER_FILE. */ er_cant_create_handler_file = 1501, /** * \brief Common server error. Error number: 1502, symbol: * ER_BLOB_FIELD_IN_PART_FUNC_ERROR. */ er_blob_field_in_part_func_error = 1502, /** * \brief Common server error. Error number: 1503, symbol: * ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF. */ er_unique_key_need_all_fields_in_pf = 1503, /** * \brief Common server error. Error number: 1504, symbol: * ER_NO_PARTS_ERROR. */ er_no_parts_error = 1504, /** * \brief Common server error. Error number: 1505, symbol: * ER_PARTITION_MGMT_ON_NONPARTITIONED. */ er_partition_mgmt_on_nonpartitioned = 1505, /** * \brief Common server error. Error number: 1507, symbol: * ER_DROP_PARTITION_NON_EXISTENT. */ er_drop_partition_non_existent = 1507, /** * \brief Common server error. Error number: 1508, symbol: * ER_DROP_LAST_PARTITION. */ er_drop_last_partition = 1508, /** * \brief Common server error. Error number: 1509, symbol: * ER_COALESCE_ONLY_ON_HASH_PARTITION. */ er_coalesce_only_on_hash_partition = 1509, /** * \brief Common server error. Error number: 1510, symbol: * ER_REORG_HASH_ONLY_ON_SAME_NO. */ er_reorg_hash_only_on_same_no = 1510, /** * \brief Common server error. Error number: 1511, symbol: * ER_REORG_NO_PARAM_ERROR. */ er_reorg_no_param_error = 1511, /** * \brief Common server error. Error number: 1512, symbol: * ER_ONLY_ON_RANGE_LIST_PARTITION. */ er_only_on_range_list_partition = 1512, /** * \brief Common server error. Error number: 1513, symbol: * ER_ADD_PARTITION_SUBPART_ERROR. */ er_add_partition_subpart_error = 1513, /** * \brief Common server error. Error number: 1514, symbol: * ER_ADD_PARTITION_NO_NEW_PARTITION. */ er_add_partition_no_new_partition = 1514, /** * \brief Common server error. Error number: 1515, symbol: * ER_COALESCE_PARTITION_NO_PARTITION. */ er_coalesce_partition_no_partition = 1515, /** * \brief Common server error. Error number: 1516, symbol: * ER_REORG_PARTITION_NOT_EXIST. */ er_reorg_partition_not_exist = 1516, /** * \brief Common server error. Error number: 1517, symbol: * ER_SAME_NAME_PARTITION. */ er_same_name_partition = 1517, /** * \brief Common server error. Error number: 1518, symbol: * ER_NO_BINLOG_ERROR. */ er_no_binlog_error = 1518, /** * \brief Common server error. Error number: 1519, symbol: * ER_CONSECUTIVE_REORG_PARTITIONS. */ er_consecutive_reorg_partitions = 1519, /** * \brief Common server error. Error number: 1520, symbol: * ER_REORG_OUTSIDE_RANGE. */ er_reorg_outside_range = 1520, /** * \brief Common server error. Error number: 1521, symbol: * ER_PARTITION_FUNCTION_FAILURE. */ er_partition_function_failure = 1521, /** * \brief Common server error. Error number: 1522, symbol: * ER_PART_STATE_ERROR. */ er_part_state_error = 1522, /** * \brief Common server error. Error number: 1523, symbol: * ER_LIMITED_PART_RANGE. */ er_limited_part_range = 1523, /** * \brief Common server error. Error number: 1524, symbol: * ER_PLUGIN_IS_NOT_LOADED. */ er_plugin_is_not_loaded = 1524, /** * \brief Common server error. Error number: 1525, symbol: * ER_WRONG_VALUE. */ er_wrong_value = 1525, /** * \brief Common server error. Error number: 1526, symbol: * ER_NO_PARTITION_FOR_GIVEN_VALUE. */ er_no_partition_for_given_value = 1526, /** * \brief Common server error. Error number: 1527, symbol: * ER_FILEGROUP_OPTION_ONLY_ONCE. */ er_filegroup_option_only_once = 1527, /** * \brief Common server error. Error number: 1528, symbol: * ER_CREATE_FILEGROUP_FAILED. */ er_create_filegroup_failed = 1528, /** * \brief Common server error. Error number: 1529, symbol: * ER_DROP_FILEGROUP_FAILED. */ er_drop_filegroup_failed = 1529, /** * \brief Common server error. Error number: 1530, symbol: * ER_TABLESPACE_AUTO_EXTEND_ERROR. */ er_tablespace_auto_extend_error = 1530, /** * \brief Common server error. Error number: 1531, symbol: * ER_WRONG_SIZE_NUMBER. */ er_wrong_size_number = 1531, /** * \brief Common server error. Error number: 1532, symbol: * ER_SIZE_OVERFLOW_ERROR. */ er_size_overflow_error = 1532, /** * \brief Common server error. Error number: 1533, symbol: * ER_ALTER_FILEGROUP_FAILED. */ er_alter_filegroup_failed = 1533, /** * \brief Common server error. Error number: 1534, symbol: * ER_BINLOG_ROW_LOGGING_FAILED. */ er_binlog_row_logging_failed = 1534, /** * \brief Common server error. Error number: 1535, symbol: * ER_BINLOG_ROW_WRONG_TABLE_DEF. */ er_binlog_row_wrong_table_def = 1535, /** * \brief Common server error. Error number: 1536, symbol: * ER_BINLOG_ROW_RBR_TO_SBR. */ er_binlog_row_rbr_to_sbr = 1536, /** * \brief Common server error. Error number: 1537, symbol: * ER_EVENT_ALREADY_EXISTS. */ er_event_already_exists = 1537, /** * \brief Common server error. Error number: 1538, symbol: * ER_EVENT_STORE_FAILED. */ er_event_store_failed = 1538, /** * \brief Common server error. Error number: 1539, symbol: * ER_EVENT_DOES_NOT_EXIST. */ er_event_does_not_exist = 1539, /** * \brief Common server error. Error number: 1540, symbol: * ER_EVENT_CANT_ALTER. */ er_event_cant_alter = 1540, /** * \brief Common server error. Error number: 1541, symbol: * ER_EVENT_DROP_FAILED. */ er_event_drop_failed = 1541, /** * \brief Common server error. Error number: 1542, symbol: * ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG. */ er_event_interval_not_positive_or_too_big = 1542, /** * \brief Common server error. Error number: 1543, symbol: * ER_EVENT_ENDS_BEFORE_STARTS. */ er_event_ends_before_starts = 1543, /** * \brief Common server error. Error number: 1544, symbol: * ER_EVENT_EXEC_TIME_IN_THE_PAST. */ er_event_exec_time_in_the_past = 1544, /** * \brief Common server error. Error number: 1545, symbol: * ER_EVENT_OPEN_TABLE_FAILED. */ er_event_open_table_failed = 1545, /** * \brief Common server error. Error number: 1546, symbol: * ER_EVENT_NEITHER_M_EXPR_NOR_M_AT. */ er_event_neither_m_expr_nor_m_at = 1546, /** * \brief Common server error. Error number: 1549, symbol: * ER_EVENT_CANNOT_DELETE. */ er_event_cannot_delete = 1549, /** * \brief Common server error. Error number: 1550, symbol: * ER_EVENT_COMPILE_ERROR. */ er_event_compile_error = 1550, /** * \brief Common server error. Error number: 1551, symbol: * ER_EVENT_SAME_NAME. */ er_event_same_name = 1551, /** * \brief Common server error. Error number: 1552, symbol: * ER_EVENT_DATA_TOO_LONG. */ er_event_data_too_long = 1552, /** * \brief Common server error. Error number: 1553, symbol: * ER_DROP_INDEX_FK. */ er_drop_index_fk = 1553, /** * \brief Common server error. Error number: 1554, symbol: * ER_WARN_DEPRECATED_SYNTAX_WITH_VER. */ er_warn_deprecated_syntax_with_ver = 1554, /** * \brief Common server error. Error number: 1555, symbol: * ER_CANT_WRITE_LOCK_LOG_TABLE. */ er_cant_write_lock_log_table = 1555, /** * \brief Common server error. Error number: 1556, symbol: * ER_CANT_LOCK_LOG_TABLE. */ er_cant_lock_log_table = 1556, /** * \brief Common server error. Error number: 1558, symbol: * ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE. */ er_col_count_doesnt_match_please_update = 1558, /** * \brief Common server error. Error number: 1559, symbol: * ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR. */ er_temp_table_prevents_switch_out_of_rbr = 1559, /** * \brief Common server error. Error number: 1560, symbol: * ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT. */ er_stored_function_prevents_switch_binlog_format = 1560, /** * \brief Common server error. Error number: 1562, symbol: * ER_PARTITION_NO_TEMPORARY. */ er_partition_no_temporary = 1562, /** * \brief Common server error. Error number: 1563, symbol: * ER_PARTITION_CONST_DOMAIN_ERROR. */ er_partition_const_domain_error = 1563, /** * \brief Common server error. Error number: 1564, symbol: * ER_PARTITION_FUNCTION_IS_NOT_ALLOWED. */ er_partition_function_is_not_allowed = 1564, /** * \brief Common server error. Error number: 1565, symbol: * ER_DDL_LOG_ERROR. */ er_ddl_log_error = 1565, /** * \brief Common server error. Error number: 1566, symbol: * ER_NULL_IN_VALUES_LESS_THAN. */ er_null_in_values_less_than = 1566, /** * \brief Common server error. Error number: 1567, symbol: * ER_WRONG_PARTITION_NAME. */ er_wrong_partition_name = 1567, /** * \brief Common server error. Error number: 1568, symbol: * ER_CANT_CHANGE_TX_CHARACTERISTICS. */ er_cant_change_tx_characteristics = 1568, /** * \brief Common server error. Error number: 1569, symbol: * ER_DUP_ENTRY_AUTOINCREMENT_CASE. */ er_dup_entry_autoincrement_case = 1569, /** * \brief Common server error. Error number: 1570, symbol: * ER_EVENT_MODIFY_QUEUE_ERROR. */ er_event_modify_queue_error = 1570, /** * \brief Common server error. Error number: 1571, symbol: * ER_EVENT_SET_VAR_ERROR. */ er_event_set_var_error = 1571, /** * \brief Common server error. Error number: 1572, symbol: * ER_PARTITION_MERGE_ERROR. */ er_partition_merge_error = 1572, /** * \brief Common server error. Error number: 1573, symbol: * ER_CANT_ACTIVATE_LOG. */ er_cant_activate_log = 1573, /** * \brief Common server error. Error number: 1574, symbol: * ER_RBR_NOT_AVAILABLE. */ er_rbr_not_available = 1574, /** * \brief Common server error. Error number: 1575, symbol: * ER_BASE64_DECODE_ERROR. */ er_base64_decode_error = 1575, /** * \brief Common server error. Error number: 1576, symbol: * ER_EVENT_RECURSION_FORBIDDEN. */ er_event_recursion_forbidden = 1576, /** * \brief Common server error. Error number: 1577, symbol: * ER_EVENTS_DB_ERROR. */ er_events_db_error = 1577, /** * \brief Common server error. Error number: 1578, symbol: * ER_ONLY_INTEGERS_ALLOWED. */ er_only_integers_allowed = 1578, /** * \brief Common server error. Error number: 1579, symbol: * ER_UNSUPORTED_LOG_ENGINE. */ er_unsuported_log_engine = 1579, /** * \brief Common server error. Error number: 1580, symbol: * ER_BAD_LOG_STATEMENT. */ er_bad_log_statement = 1580, /** * \brief Common server error. Error number: 1581, symbol: * ER_CANT_RENAME_LOG_TABLE. */ er_cant_rename_log_table = 1581, /** * \brief Common server error. Error number: 1582, symbol: * ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT. */ er_wrong_paramcount_to_native_fct = 1582, /** * \brief Common server error. Error number: 1583, symbol: * ER_WRONG_PARAMETERS_TO_NATIVE_FCT. */ er_wrong_parameters_to_native_fct = 1583, /** * \brief Common server error. Error number: 1584, symbol: * ER_WRONG_PARAMETERS_TO_STORED_FCT. */ er_wrong_parameters_to_stored_fct = 1584, /** * \brief Common server error. Error number: 1585, symbol: * ER_NATIVE_FCT_NAME_COLLISION. */ er_native_fct_name_collision = 1585, /** * \brief Common server error. Error number: 1586, symbol: * ER_DUP_ENTRY_WITH_KEY_NAME. */ er_dup_entry_with_key_name = 1586, /** * \brief Common server error. Error number: 1587, symbol: * ER_BINLOG_PURGE_EMFILE. */ er_binlog_purge_emfile = 1587, /** * \brief Common server error. Error number: 1588, symbol: * ER_EVENT_CANNOT_CREATE_IN_THE_PAST. */ er_event_cannot_create_in_the_past = 1588, /** * \brief Common server error. Error number: 1589, symbol: * ER_EVENT_CANNOT_ALTER_IN_THE_PAST. */ er_event_cannot_alter_in_the_past = 1589, /** * \brief Common server error. Error number: 1590, symbol: * ER_SLAVE_INCIDENT. */ er_slave_incident = 1590, /** * \brief Common server error. Error number: 1591, symbol: * ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT. */ er_no_partition_for_given_value_silent = 1591, /** * \brief Common server error. Error number: 1592, symbol: * ER_BINLOG_UNSAFE_STATEMENT. */ er_binlog_unsafe_statement = 1592, /** * \brief Common server error. Error number: 1594, symbol: * ER_SLAVE_RELAY_LOG_READ_FAILURE. */ er_slave_relay_log_read_failure = 1594, /** * \brief Common server error. Error number: 1595, symbol: * ER_SLAVE_RELAY_LOG_WRITE_FAILURE. */ er_slave_relay_log_write_failure = 1595, /** * \brief Common server error. Error number: 1596, symbol: * ER_SLAVE_CREATE_EVENT_FAILURE. */ er_slave_create_event_failure = 1596, /** * \brief Common server error. Error number: 1597, symbol: * ER_SLAVE_MASTER_COM_FAILURE. */ er_slave_master_com_failure = 1597, /** * \brief Common server error. Error number: 1598, symbol: * ER_BINLOG_LOGGING_IMPOSSIBLE. */ er_binlog_logging_impossible = 1598, /** * \brief Common server error. Error number: 1599, symbol: * ER_VIEW_NO_CREATION_CTX. */ er_view_no_creation_ctx = 1599, /** * \brief Common server error. Error number: 1600, symbol: * ER_VIEW_INVALID_CREATION_CTX. */ er_view_invalid_creation_ctx = 1600, /** * \brief Common server error. Error number: 1601, symbol: * ER_SR_INVALID_CREATION_CTX. */ er_sr_invalid_creation_ctx = 1601, /** * \brief Common server error. Error number: 1602, symbol: * ER_TRG_CORRUPTED_FILE. */ er_trg_corrupted_file = 1602, /** * \brief Common server error. Error number: 1603, symbol: * ER_TRG_NO_CREATION_CTX. */ er_trg_no_creation_ctx = 1603, /** * \brief Common server error. Error number: 1604, symbol: * ER_TRG_INVALID_CREATION_CTX. */ er_trg_invalid_creation_ctx = 1604, /** * \brief Common server error. Error number: 1605, symbol: * ER_EVENT_INVALID_CREATION_CTX. */ er_event_invalid_creation_ctx = 1605, /** * \brief Common server error. Error number: 1606, symbol: * ER_TRG_CANT_OPEN_TABLE. */ er_trg_cant_open_table = 1606, /** * \brief Common server error. Error number: 1607, symbol: * ER_CANT_CREATE_SROUTINE. */ er_cant_create_sroutine = 1607, /** * \brief Common server error. Error number: 1609, symbol: * ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT. */ er_no_format_description_event_before_binlog_statement = 1609, /** * \brief Common server error. Error number: 1610, symbol: * ER_SLAVE_CORRUPT_EVENT. */ er_slave_corrupt_event = 1610, /** * \brief Common server error. Error number: 1612, symbol: * ER_LOG_PURGE_NO_FILE. */ er_log_purge_no_file = 1612, /** * \brief Common server error. Error number: 1613, symbol: * ER_XA_RBTIMEOUT. */ er_xa_rbtimeout = 1613, /** * \brief Common server error. Error number: 1614, symbol: * ER_XA_RBDEADLOCK. */ er_xa_rbdeadlock = 1614, /** * \brief Common server error. Error number: 1615, symbol: * ER_NEED_REPREPARE. */ er_need_reprepare = 1615, /** * \brief Common server error. Error number: 1616, symbol: * ER_DELAYED_NOT_SUPPORTED. */ er_delayed_not_supported = 1616, /** * \brief Common server error. Error number: 1617, symbol: * WARN_NO_MASTER_INFO. */ warn_no_master_info = 1617, /** * \brief Common server error. Error number: 1618, symbol: * WARN_OPTION_IGNORED. */ warn_option_ignored = 1618, /** * \brief Common server error. Error number: 1619, symbol: * ER_PLUGIN_DELETE_BUILTIN. */ er_plugin_delete_builtin = 1619, /** * \brief Common server error. Error number: 1620, symbol: * WARN_PLUGIN_BUSY. */ warn_plugin_busy = 1620, /** * \brief Common server error. Error number: 1621, symbol: * ER_VARIABLE_IS_READONLY. */ er_variable_is_readonly = 1621, /** * \brief Common server error. Error number: 1622, symbol: * ER_WARN_ENGINE_TRANSACTION_ROLLBACK. */ er_warn_engine_transaction_rollback = 1622, /** * \brief Common server error. Error number: 1623, symbol: * ER_SLAVE_HEARTBEAT_FAILURE. */ er_slave_heartbeat_failure = 1623, /** * \brief Common server error. Error number: 1624, symbol: * ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE. */ er_slave_heartbeat_value_out_of_range = 1624, /** * \brief Common server error. Error number: 1626, symbol: * ER_CONFLICT_FN_PARSE_ERROR. */ er_conflict_fn_parse_error = 1626, /** * \brief Common server error. Error number: 1627, symbol: * ER_EXCEPTIONS_WRITE_ERROR. */ er_exceptions_write_error = 1627, /** * \brief Common server error. Error number: 1628, symbol: * ER_TOO_LONG_TABLE_COMMENT. */ er_too_long_table_comment = 1628, /** * \brief Common server error. Error number: 1629, symbol: * ER_TOO_LONG_FIELD_COMMENT. */ er_too_long_field_comment = 1629, /** * \brief Common server error. Error number: 1630, symbol: * ER_FUNC_INEXISTENT_NAME_COLLISION. */ er_func_inexistent_name_collision = 1630, /** * \brief Common server error. Error number: 1631, symbol: * ER_DATABASE_NAME. */ er_database_name = 1631, /** * \brief Common server error. Error number: 1632, symbol: * ER_TABLE_NAME. */ er_table_name = 1632, /** * \brief Common server error. Error number: 1633, symbol: * ER_PARTITION_NAME. */ er_partition_name = 1633, /** * \brief Common server error. Error number: 1634, symbol: * ER_SUBPARTITION_NAME. */ er_subpartition_name = 1634, /** * \brief Common server error. Error number: 1635, symbol: * ER_TEMPORARY_NAME. */ er_temporary_name = 1635, /** * \brief Common server error. Error number: 1636, symbol: * ER_RENAMED_NAME. */ er_renamed_name = 1636, /** * \brief Common server error. Error number: 1637, symbol: * ER_TOO_MANY_CONCURRENT_TRXS. */ er_too_many_concurrent_trxs = 1637, /** * \brief Common server error. Error number: 1638, symbol: * WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED. */ warn_non_ascii_separator_not_implemented = 1638, /** * \brief Common server error. Error number: 1639, symbol: * ER_DEBUG_SYNC_TIMEOUT. */ er_debug_sync_timeout = 1639, /** * \brief Common server error. Error number: 1640, symbol: * ER_DEBUG_SYNC_HIT_LIMIT. */ er_debug_sync_hit_limit = 1640, /** * \brief Common server error. Error number: 1641, symbol: * ER_DUP_SIGNAL_SET. */ er_dup_signal_set = 1641, /** * \brief Common server error. Error number: 1642, symbol: * ER_SIGNAL_WARN. */ er_signal_warn = 1642, /** * \brief Common server error. Error number: 1643, symbol: * ER_SIGNAL_NOT_FOUND. */ er_signal_not_found = 1643, /** * \brief Common server error. Error number: 1644, symbol: * ER_SIGNAL_EXCEPTION. */ er_signal_exception = 1644, /** * \brief Common server error. Error number: 1645, symbol: * ER_RESIGNAL_WITHOUT_ACTIVE_HANDLER. */ er_resignal_without_active_handler = 1645, /** * \brief Common server error. Error number: 1646, symbol: * ER_SIGNAL_BAD_CONDITION_TYPE. */ er_signal_bad_condition_type = 1646, /** * \brief Common server error. Error number: 1647, symbol: * WARN_COND_ITEM_TRUNCATED. */ warn_cond_item_truncated = 1647, /** * \brief Common server error. Error number: 1648, symbol: * ER_COND_ITEM_TOO_LONG. */ er_cond_item_too_long = 1648, /** * \brief Common server error. Error number: 1649, symbol: * ER_UNKNOWN_LOCALE. */ er_unknown_locale = 1649, /** * \brief Common server error. Error number: 1650, symbol: * ER_SLAVE_IGNORE_SERVER_IDS. */ er_slave_ignore_server_ids = 1650, /** * \brief Common server error. Error number: 1651, symbol: * ER_QUERY_CACHE_DISABLED. */ er_query_cache_disabled = 1651, /** * \brief Common server error. Error number: 1652, symbol: * ER_SAME_NAME_PARTITION_FIELD. */ er_same_name_partition_field = 1652, /** * \brief Common server error. Error number: 1653, symbol: * ER_PARTITION_COLUMN_LIST_ERROR. */ er_partition_column_list_error = 1653, /** * \brief Common server error. Error number: 1654, symbol: * ER_WRONG_TYPE_COLUMN_VALUE_ERROR. */ er_wrong_type_column_value_error = 1654, /** * \brief Common server error. Error number: 1655, symbol: * ER_TOO_MANY_PARTITION_FUNC_FIELDS_ERROR. */ er_too_many_partition_func_fields_error = 1655, /** * \brief Common server error. Error number: 1656, symbol: * ER_MAXVALUE_IN_VALUES_IN. */ er_maxvalue_in_values_in = 1656, /** * \brief Common server error. Error number: 1657, symbol: * ER_TOO_MANY_VALUES_ERROR. */ er_too_many_values_error = 1657, /** * \brief Common server error. Error number: 1658, symbol: * ER_ROW_SINGLE_PARTITION_FIELD_ERROR. */ er_row_single_partition_field_error = 1658, /** * \brief Common server error. Error number: 1659, symbol: * ER_FIELD_TYPE_NOT_ALLOWED_AS_PARTITION_FIELD. */ er_field_type_not_allowed_as_partition_field = 1659, /** * \brief Common server error. Error number: 1660, symbol: * ER_PARTITION_FIELDS_TOO_LONG. */ er_partition_fields_too_long = 1660, /** * \brief Common server error. Error number: 1661, symbol: * ER_BINLOG_ROW_ENGINE_AND_STMT_ENGINE. */ er_binlog_row_engine_and_stmt_engine = 1661, /** * \brief Common server error. Error number: 1662, symbol: * ER_BINLOG_ROW_MODE_AND_STMT_ENGINE. */ er_binlog_row_mode_and_stmt_engine = 1662, /** * \brief Common server error. Error number: 1663, symbol: * ER_BINLOG_UNSAFE_AND_STMT_ENGINE. */ er_binlog_unsafe_and_stmt_engine = 1663, /** * \brief Common server error. Error number: 1664, symbol: * ER_BINLOG_ROW_INJECTION_AND_STMT_ENGINE. */ er_binlog_row_injection_and_stmt_engine = 1664, /** * \brief Common server error. Error number: 1665, symbol: * ER_BINLOG_STMT_MODE_AND_ROW_ENGINE. */ er_binlog_stmt_mode_and_row_engine = 1665, /** * \brief Common server error. Error number: 1666, symbol: * ER_BINLOG_ROW_INJECTION_AND_STMT_MODE. */ er_binlog_row_injection_and_stmt_mode = 1666, /** * \brief Common server error. Error number: 1667, symbol: * ER_BINLOG_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE. */ er_binlog_multiple_engines_and_self_logging_engine = 1667, /** * \brief Common server error. Error number: 1668, symbol: * ER_BINLOG_UNSAFE_LIMIT. */ er_binlog_unsafe_limit = 1668, /** * \brief Common server error. Error number: 1670, symbol: * ER_BINLOG_UNSAFE_SYSTEM_TABLE. */ er_binlog_unsafe_system_table = 1670, /** * \brief Common server error. Error number: 1671, symbol: * ER_BINLOG_UNSAFE_AUTOINC_COLUMNS. */ er_binlog_unsafe_autoinc_columns = 1671, /** * \brief Common server error. Error number: 1672, symbol: * ER_BINLOG_UNSAFE_UDF. */ er_binlog_unsafe_udf = 1672, /** * \brief Common server error. Error number: 1673, symbol: * ER_BINLOG_UNSAFE_SYSTEM_VARIABLE. */ er_binlog_unsafe_system_variable = 1673, /** * \brief Common server error. Error number: 1674, symbol: * ER_BINLOG_UNSAFE_SYSTEM_FUNCTION. */ er_binlog_unsafe_system_function = 1674, /** * \brief Common server error. Error number: 1675, symbol: * ER_BINLOG_UNSAFE_NONTRANS_AFTER_TRANS. */ er_binlog_unsafe_nontrans_after_trans = 1675, /** * \brief Common server error. Error number: 1676, symbol: * ER_MESSAGE_AND_STATEMENT. */ er_message_and_statement = 1676, /** * \brief Common server error. Error number: 1677, symbol: * ER_SLAVE_CONVERSION_FAILED. */ er_slave_conversion_failed = 1677, /** * \brief Common server error. Error number: 1678, symbol: * ER_SLAVE_CANT_CREATE_CONVERSION. */ er_slave_cant_create_conversion = 1678, /** * \brief Common server error. Error number: 1679, symbol: * ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_FORMAT. */ er_inside_transaction_prevents_switch_binlog_format = 1679, /** * \brief Common server error. Error number: 1680, symbol: * ER_PATH_LENGTH. */ er_path_length = 1680, /** * \brief Common server error. Error number: 1681, symbol: * ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT. */ er_warn_deprecated_syntax_no_replacement = 1681, /** * \brief Common server error. Error number: 1682, symbol: * ER_WRONG_NATIVE_TABLE_STRUCTURE. */ er_wrong_native_table_structure = 1682, /** * \brief Common server error. Error number: 1683, symbol: * ER_WRONG_PERFSCHEMA_USAGE. */ er_wrong_perfschema_usage = 1683, /** * \brief Common server error. Error number: 1684, symbol: * ER_WARN_I_S_SKIPPED_TABLE. */ er_warn_i_s_skipped_table = 1684, /** * \brief Common server error. Error number: 1685, symbol: * ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_DIRECT. */ er_inside_transaction_prevents_switch_binlog_direct = 1685, /** * \brief Common server error. Error number: 1686, symbol: * ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_DIRECT. */ er_stored_function_prevents_switch_binlog_direct = 1686, /** * \brief Common server error. Error number: 1687, symbol: * ER_SPATIAL_MUST_HAVE_GEOM_COL. */ er_spatial_must_have_geom_col = 1687, /** * \brief Common server error. Error number: 1688, symbol: * ER_TOO_LONG_INDEX_COMMENT. */ er_too_long_index_comment = 1688, /** * \brief Common server error. Error number: 1689, symbol: * ER_LOCK_ABORTED. */ er_lock_aborted = 1689, /** * \brief Common server error. Error number: 1690, symbol: * ER_DATA_OUT_OF_RANGE. */ er_data_out_of_range = 1690, /** * \brief Common server error. Error number: 1691, symbol: * ER_WRONG_SPVAR_TYPE_IN_LIMIT. */ er_wrong_spvar_type_in_limit = 1691, /** * \brief Common server error. Error number: 1692, symbol: * ER_BINLOG_UNSAFE_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE. */ er_binlog_unsafe_multiple_engines_and_self_logging_engine = 1692, /** * \brief Common server error. Error number: 1693, symbol: * ER_BINLOG_UNSAFE_MIXED_STATEMENT. */ er_binlog_unsafe_mixed_statement = 1693, /** * \brief Common server error. Error number: 1694, symbol: * ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_SQL_LOG_BIN. */ er_inside_transaction_prevents_switch_sql_log_bin = 1694, /** * \brief Common server error. Error number: 1695, symbol: * ER_STORED_FUNCTION_PREVENTS_SWITCH_SQL_LOG_BIN. */ er_stored_function_prevents_switch_sql_log_bin = 1695, /** * \brief Common server error. Error number: 1696, symbol: * ER_FAILED_READ_FROM_PAR_FILE. */ er_failed_read_from_par_file = 1696, /** * \brief Common server error. Error number: 1697, symbol: * ER_VALUES_IS_NOT_INT_TYPE_ERROR. */ er_values_is_not_int_type_error = 1697, /** * \brief Common server error. Error number: 1698, symbol: * ER_ACCESS_DENIED_NO_PASSWORD_ERROR. */ er_access_denied_no_password_error = 1698, /** * \brief Common server error. Error number: 1699, symbol: * ER_SET_PASSWORD_AUTH_PLUGIN. */ er_set_password_auth_plugin = 1699, /** * \brief Common server error. Error number: 1700, symbol: * ER_GRANT_PLUGIN_USER_EXISTS. */ er_grant_plugin_user_exists = 1700, /** * \brief Common server error. Error number: 1701, symbol: * ER_TRUNCATE_ILLEGAL_FK. */ er_truncate_illegal_fk = 1701, /** * \brief Common server error. Error number: 1702, symbol: * ER_PLUGIN_IS_PERMANENT. */ er_plugin_is_permanent = 1702, /** * \brief Common server error. Error number: 1703, symbol: * ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN. */ er_slave_heartbeat_value_out_of_range_min = 1703, /** * \brief Common server error. Error number: 1704, symbol: * ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX. */ er_slave_heartbeat_value_out_of_range_max = 1704, /** * \brief Common server error. Error number: 1705, symbol: * ER_STMT_CACHE_FULL. */ er_stmt_cache_full = 1705, /** * \brief Common server error. Error number: 1706, symbol: * ER_MULTI_UPDATE_KEY_CONFLICT. */ er_multi_update_key_conflict = 1706, /** * \brief Common server error. Error number: 1707, symbol: * ER_TABLE_NEEDS_REBUILD. */ er_table_needs_rebuild = 1707, /** * \brief Common server error. Error number: 1708, symbol: * WARN_OPTION_BELOW_LIMIT. */ warn_option_below_limit = 1708, /** * \brief Common server error. Error number: 1709, symbol: * ER_INDEX_COLUMN_TOO_LONG. */ er_index_column_too_long = 1709, /** * \brief Common server error. Error number: 1710, symbol: * ER_ERROR_IN_TRIGGER_BODY. */ er_error_in_trigger_body = 1710, /** * \brief Common server error. Error number: 1711, symbol: * ER_ERROR_IN_UNKNOWN_TRIGGER_BODY. */ er_error_in_unknown_trigger_body = 1711, /** * \brief Common server error. Error number: 1712, symbol: * ER_INDEX_CORRUPT. */ er_index_corrupt = 1712, /** * \brief Common server error. Error number: 1713, symbol: * ER_UNDO_RECORD_TOO_BIG. */ er_undo_record_too_big = 1713, /** * \brief Common server error. Error number: 1714, symbol: * ER_BINLOG_UNSAFE_INSERT_IGNORE_SELECT. */ er_binlog_unsafe_insert_ignore_select = 1714, /** * \brief Common server error. Error number: 1715, symbol: * ER_BINLOG_UNSAFE_INSERT_SELECT_UPDATE. */ er_binlog_unsafe_insert_select_update = 1715, /** * \brief Common server error. Error number: 1716, symbol: * ER_BINLOG_UNSAFE_REPLACE_SELECT. */ er_binlog_unsafe_replace_select = 1716, /** * \brief Common server error. Error number: 1717, symbol: * ER_BINLOG_UNSAFE_CREATE_IGNORE_SELECT. */ er_binlog_unsafe_create_ignore_select = 1717, /** * \brief Common server error. Error number: 1718, symbol: * ER_BINLOG_UNSAFE_CREATE_REPLACE_SELECT. */ er_binlog_unsafe_create_replace_select = 1718, /** * \brief Common server error. Error number: 1719, symbol: * ER_BINLOG_UNSAFE_UPDATE_IGNORE. */ er_binlog_unsafe_update_ignore = 1719, /** * \brief Common server error. Error number: 1722, symbol: * ER_BINLOG_UNSAFE_WRITE_AUTOINC_SELECT. */ er_binlog_unsafe_write_autoinc_select = 1722, /** * \brief Common server error. Error number: 1723, symbol: * ER_BINLOG_UNSAFE_CREATE_SELECT_AUTOINC. */ er_binlog_unsafe_create_select_autoinc = 1723, /** * \brief Common server error. Error number: 1724, symbol: * ER_BINLOG_UNSAFE_INSERT_TWO_KEYS. */ er_binlog_unsafe_insert_two_keys = 1724, /** * \brief Common server error. Error number: 1727, symbol: * ER_BINLOG_UNSAFE_AUTOINC_NOT_FIRST. */ er_binlog_unsafe_autoinc_not_first = 1727, /** * \brief Common server error. Error number: 1728, symbol: * ER_CANNOT_LOAD_FROM_TABLE_V2. */ er_cannot_load_from_table_v2 = 1728, /** * \brief Common server error. Error number: 1729, symbol: * ER_MASTER_DELAY_VALUE_OUT_OF_RANGE. */ er_master_delay_value_out_of_range = 1729, /** * \brief Common server error. Error number: 1730, symbol: * ER_ONLY_FD_AND_RBR_EVENTS_ALLOWED_IN_BINLOG_STATEMENT. */ er_only_fd_and_rbr_events_allowed_in_binlog_statement = 1730, /** * \brief Common server error. Error number: 1731, symbol: * ER_PARTITION_EXCHANGE_DIFFERENT_OPTION. */ er_partition_exchange_different_option = 1731, /** * \brief Common server error. Error number: 1732, symbol: * ER_PARTITION_EXCHANGE_PART_TABLE. */ er_partition_exchange_part_table = 1732, /** * \brief Common server error. Error number: 1733, symbol: * ER_PARTITION_EXCHANGE_TEMP_TABLE. */ er_partition_exchange_temp_table = 1733, /** * \brief Common server error. Error number: 1734, symbol: * ER_PARTITION_INSTEAD_OF_SUBPARTITION. */ er_partition_instead_of_subpartition = 1734, /** * \brief Common server error. Error number: 1735, symbol: * ER_UNKNOWN_PARTITION. */ er_unknown_partition = 1735, /** * \brief Common server error. Error number: 1736, symbol: * ER_TABLES_DIFFERENT_METADATA. */ er_tables_different_metadata = 1736, /** * \brief Common server error. Error number: 1737, symbol: * ER_ROW_DOES_NOT_MATCH_PARTITION. */ er_row_does_not_match_partition = 1737, /** * \brief Common server error. Error number: 1738, symbol: * ER_BINLOG_CACHE_SIZE_GREATER_THAN_MAX. */ er_binlog_cache_size_greater_than_max = 1738, /** * \brief Common server error. Error number: 1739, symbol: * ER_WARN_INDEX_NOT_APPLICABLE. */ er_warn_index_not_applicable = 1739, /** * \brief Common server error. Error number: 1740, symbol: * ER_PARTITION_EXCHANGE_FOREIGN_KEY. */ er_partition_exchange_foreign_key = 1740, /** * \brief Common server error. Error number: 1741, symbol: * ER_NO_SUCH_KEY_VALUE. */ er_no_such_key_value = 1741, /** * \brief Common server error. Error number: 1743, symbol: * ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE. */ er_network_read_event_checksum_failure = 1743, /** * \brief Common server error. Error number: 1744, symbol: * ER_BINLOG_READ_EVENT_CHECKSUM_FAILURE. */ er_binlog_read_event_checksum_failure = 1744, /** * \brief Common server error. Error number: 1745, symbol: * ER_BINLOG_STMT_CACHE_SIZE_GREATER_THAN_MAX. */ er_binlog_stmt_cache_size_greater_than_max = 1745, /** * \brief Common server error. Error number: 1746, symbol: * ER_CANT_UPDATE_TABLE_IN_CREATE_TABLE_SELECT. */ er_cant_update_table_in_create_table_select = 1746, /** * \brief Common server error. Error number: 1747, symbol: * ER_PARTITION_CLAUSE_ON_NONPARTITIONED. */ er_partition_clause_on_nonpartitioned = 1747, /** * \brief Common server error. Error number: 1748, symbol: * ER_ROW_DOES_NOT_MATCH_GIVEN_PARTITION_SET. */ er_row_does_not_match_given_partition_set = 1748, /** * \brief Common server error. Error number: 1750, symbol: * ER_CHANGE_RPL_INFO_REPOSITORY_FAILURE. */ er_change_rpl_info_repository_failure = 1750, /** * \brief Common server error. Error number: 1751, symbol: * ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_CREATED_TEMP_TABLE. */ er_warning_not_complete_rollback_with_created_temp_table = 1751, /** * \brief Common server error. Error number: 1752, symbol: * ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_DROPPED_TEMP_TABLE. */ er_warning_not_complete_rollback_with_dropped_temp_table = 1752, /** * \brief Common server error. Error number: 1753, symbol: * ER_MTS_FEATURE_IS_NOT_SUPPORTED. */ er_mts_feature_is_not_supported = 1753, /** * \brief Common server error. Error number: 1754, symbol: * ER_MTS_UPDATED_DBS_GREATER_MAX. */ er_mts_updated_dbs_greater_max = 1754, /** * \brief Common server error. Error number: 1755, symbol: * ER_MTS_CANT_PARALLEL. */ er_mts_cant_parallel = 1755, /** * \brief Common server error. Error number: 1756, symbol: * ER_MTS_INCONSISTENT_DATA. */ er_mts_inconsistent_data = 1756, /** * \brief Common server error. Error number: 1757, symbol: * ER_FULLTEXT_NOT_SUPPORTED_WITH_PARTITIONING. */ er_fulltext_not_supported_with_partitioning = 1757, /** * \brief Common server error. Error number: 1758, symbol: * ER_DA_INVALID_CONDITION_NUMBER. */ er_da_invalid_condition_number = 1758, /** * \brief Common server error. Error number: 1759, symbol: * ER_INSECURE_PLAIN_TEXT. */ er_insecure_plain_text = 1759, /** * \brief Common server error. Error number: 1760, symbol: * ER_INSECURE_CHANGE_MASTER. */ er_insecure_change_master = 1760, /** * \brief Common server error. Error number: 1761, symbol: * ER_FOREIGN_DUPLICATE_KEY_WITH_CHILD_INFO. */ er_foreign_duplicate_key_with_child_info = 1761, /** * \brief Common server error. Error number: 1762, symbol: * ER_FOREIGN_DUPLICATE_KEY_WITHOUT_CHILD_INFO. */ er_foreign_duplicate_key_without_child_info = 1762, /** * \brief Common server error. Error number: 1763, symbol: * ER_SQLTHREAD_WITH_SECURE_SLAVE. */ er_sqlthread_with_secure_slave = 1763, /** * \brief Common server error. Error number: 1764, symbol: * ER_TABLE_HAS_NO_FT. */ er_table_has_no_ft = 1764, /** * \brief Common server error. Error number: 1765, symbol: * ER_VARIABLE_NOT_SETTABLE_IN_SF_OR_TRIGGER. */ er_variable_not_settable_in_sf_or_trigger = 1765, /** * \brief Common server error. Error number: 1766, symbol: * ER_VARIABLE_NOT_SETTABLE_IN_TRANSACTION. */ er_variable_not_settable_in_transaction = 1766, /** * \brief Common server error. Error number: 1767, symbol: * ER_GTID_NEXT_IS_NOT_IN_GTID_NEXT_LIST. */ er_gtid_next_is_not_in_gtid_next_list = 1767, /** * \brief Common server error. Error number: 1769, symbol: * ER_SET_STATEMENT_CANNOT_INVOKE_FUNCTION. */ er_set_statement_cannot_invoke_function = 1769, /** * \brief Common server error. Error number: 1770, symbol: * ER_GTID_NEXT_CANT_BE_AUTOMATIC_IF_GTID_NEXT_LIST_IS_NON_NULL. */ er_gtid_next_cant_be_automatic_if_gtid_next_list_is_non_null = 1770, /** * \brief Common server error. Error number: 1771, symbol: * ER_SKIPPING_LOGGED_TRANSACTION. */ er_skipping_logged_transaction = 1771, /** * \brief Common server error. Error number: 1772, symbol: * ER_MALFORMED_GTID_SET_SPECIFICATION. */ er_malformed_gtid_set_specification = 1772, /** * \brief Common server error. Error number: 1773, symbol: * ER_MALFORMED_GTID_SET_ENCODING. */ er_malformed_gtid_set_encoding = 1773, /** * \brief Common server error. Error number: 1774, symbol: * ER_MALFORMED_GTID_SPECIFICATION. */ er_malformed_gtid_specification = 1774, /** * \brief Common server error. Error number: 1775, symbol: * ER_GNO_EXHAUSTED. */ er_gno_exhausted = 1775, /** * \brief Common server error. Error number: 1776, symbol: * ER_BAD_SLAVE_AUTO_POSITION. */ er_bad_slave_auto_position = 1776, /** * \brief Common server error. Error number: 1778, symbol: * ER_CANT_DO_IMPLICIT_COMMIT_IN_TRX_WHEN_GTID_NEXT_IS_SET. */ er_cant_do_implicit_commit_in_trx_when_gtid_next_is_set = 1778, /** * \brief Common server error. Error number: 1780, symbol: * ER_GTID_MODE_REQUIRES_BINLOG. */ er_gtid_mode_requires_binlog = 1780, /** * \brief Common server error. Error number: 1781, symbol: * ER_CANT_SET_GTID_NEXT_TO_GTID_WHEN_GTID_MODE_IS_OFF. */ er_cant_set_gtid_next_to_gtid_when_gtid_mode_is_off = 1781, /** * \brief Common server error. Error number: 1782, symbol: * ER_CANT_SET_GTID_NEXT_TO_ANONYMOUS_WHEN_GTID_MODE_IS_ON. */ er_cant_set_gtid_next_to_anonymous_when_gtid_mode_is_on = 1782, /** * \brief Common server error. Error number: 1783, symbol: * ER_CANT_SET_GTID_NEXT_LIST_TO_NON_NULL_WHEN_GTID_MODE_IS_OFF. */ er_cant_set_gtid_next_list_to_non_null_when_gtid_mode_is_off = 1783, /** * \brief Common server error. Error number: 1785, symbol: * ER_GTID_UNSAFE_NON_TRANSACTIONAL_TABLE. */ er_gtid_unsafe_non_transactional_table = 1785, /** * \brief Common server error. Error number: 1786, symbol: * ER_GTID_UNSAFE_CREATE_SELECT. */ er_gtid_unsafe_create_select = 1786, /** * \brief Common server error. Error number: 1787, symbol: * ER_GTID_UNSAFE_CREATE_DROP_TEMPORARY_TABLE_IN_TRANSACTION. */ er_gtid_unsafe_create_drop_temporary_table_in_transaction = 1787, /** * \brief Common server error. Error number: 1788, symbol: * ER_GTID_MODE_CAN_ONLY_CHANGE_ONE_STEP_AT_A_TIME. */ er_gtid_mode_can_only_change_one_step_at_a_time = 1788, /** * \brief Common server error. Error number: 1789, symbol: * ER_MASTER_HAS_PURGED_REQUIRED_GTIDS. */ er_master_has_purged_required_gtids = 1789, /** * \brief Common server error. Error number: 1790, symbol: * ER_CANT_SET_GTID_NEXT_WHEN_OWNING_GTID. */ er_cant_set_gtid_next_when_owning_gtid = 1790, /** * \brief Common server error. Error number: 1791, symbol: * ER_UNKNOWN_EXPLAIN_FORMAT. */ er_unknown_explain_format = 1791, /** * \brief Common server error. Error number: 1792, symbol: * ER_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION. */ er_cant_execute_in_read_only_transaction = 1792, /** * \brief Common server error. Error number: 1793, symbol: * ER_TOO_LONG_TABLE_PARTITION_COMMENT. */ er_too_long_table_partition_comment = 1793, /** * \brief Common server error. Error number: 1794, symbol: * ER_SLAVE_CONFIGURATION. */ er_slave_configuration = 1794, /** * \brief Common server error. Error number: 1795, symbol: * ER_INNODB_FT_LIMIT. */ er_innodb_ft_limit = 1795, /** * \brief Common server error. Error number: 1796, symbol: * ER_INNODB_NO_FT_TEMP_TABLE. */ er_innodb_no_ft_temp_table = 1796, /** * \brief Common server error. Error number: 1797, symbol: * ER_INNODB_FT_WRONG_DOCID_COLUMN. */ er_innodb_ft_wrong_docid_column = 1797, /** * \brief Common server error. Error number: 1798, symbol: * ER_INNODB_FT_WRONG_DOCID_INDEX. */ er_innodb_ft_wrong_docid_index = 1798, /** * \brief Common server error. Error number: 1799, symbol: * ER_INNODB_ONLINE_LOG_TOO_BIG. */ er_innodb_online_log_too_big = 1799, /** * \brief Common server error. Error number: 1800, symbol: * ER_UNKNOWN_ALTER_ALGORITHM. */ er_unknown_alter_algorithm = 1800, /** * \brief Common server error. Error number: 1801, symbol: * ER_UNKNOWN_ALTER_LOCK. */ er_unknown_alter_lock = 1801, /** * \brief Common server error. Error number: 1802, symbol: * ER_MTS_CHANGE_MASTER_CANT_RUN_WITH_GAPS. */ er_mts_change_master_cant_run_with_gaps = 1802, /** * \brief Common server error. Error number: 1803, symbol: * ER_MTS_RECOVERY_FAILURE. */ er_mts_recovery_failure = 1803, /** * \brief Common server error. Error number: 1804, symbol: * ER_MTS_RESET_WORKERS. */ er_mts_reset_workers = 1804, /** * \brief Common server error. Error number: 1805, symbol: * ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2. */ er_col_count_doesnt_match_corrupted_v2 = 1805, /** * \brief Common server error. Error number: 1806, symbol: * ER_SLAVE_SILENT_RETRY_TRANSACTION. */ er_slave_silent_retry_transaction = 1806, /** * \brief Common server error. Error number: 1808, symbol: * ER_TABLE_SCHEMA_MISMATCH. */ er_table_schema_mismatch = 1808, /** * \brief Common server error. Error number: 1809, symbol: * ER_TABLE_IN_SYSTEM_TABLESPACE. */ er_table_in_system_tablespace = 1809, /** * \brief Common server error. Error number: 1810, symbol: * ER_IO_READ_ERROR. */ er_io_read_error = 1810, /** * \brief Common server error. Error number: 1811, symbol: * ER_IO_WRITE_ERROR. */ er_io_write_error = 1811, /** * \brief Common server error. Error number: 1812, symbol: * ER_TABLESPACE_MISSING. */ er_tablespace_missing = 1812, /** * \brief Common server error. Error number: 1813, symbol: * ER_TABLESPACE_EXISTS. */ er_tablespace_exists = 1813, /** * \brief Common server error. Error number: 1814, symbol: * ER_TABLESPACE_DISCARDED. */ er_tablespace_discarded = 1814, /** * \brief Common server error. Error number: 1815, symbol: * ER_INTERNAL_ERROR. */ er_internal_error = 1815, /** * \brief Common server error. Error number: 1816, symbol: * ER_INNODB_IMPORT_ERROR. */ er_innodb_import_error = 1816, /** * \brief Common server error. Error number: 1817, symbol: * ER_INNODB_INDEX_CORRUPT. */ er_innodb_index_corrupt = 1817, /** * \brief Common server error. Error number: 1818, symbol: * ER_INVALID_YEAR_COLUMN_LENGTH. */ er_invalid_year_column_length = 1818, /** * \brief Common server error. Error number: 1819, symbol: * ER_NOT_VALID_PASSWORD. */ er_not_valid_password = 1819, /** * \brief Common server error. Error number: 1820, symbol: * ER_MUST_CHANGE_PASSWORD. */ er_must_change_password = 1820, /** * \brief Common server error. Error number: 1821, symbol: * ER_FK_NO_INDEX_CHILD. */ er_fk_no_index_child = 1821, /** * \brief Common server error. Error number: 1822, symbol: * ER_FK_NO_INDEX_PARENT. */ er_fk_no_index_parent = 1822, /** * \brief Common server error. Error number: 1823, symbol: * ER_FK_FAIL_ADD_SYSTEM. */ er_fk_fail_add_system = 1823, /** * \brief Common server error. Error number: 1824, symbol: * ER_FK_CANNOT_OPEN_PARENT. */ er_fk_cannot_open_parent = 1824, /** * \brief Common server error. Error number: 1825, symbol: * ER_FK_INCORRECT_OPTION. */ er_fk_incorrect_option = 1825, /** * \brief Common server error. Error number: 1827, symbol: * ER_PASSWORD_FORMAT. */ er_password_format = 1827, /** * \brief Common server error. Error number: 1828, symbol: * ER_FK_COLUMN_CANNOT_DROP. */ er_fk_column_cannot_drop = 1828, /** * \brief Common server error. Error number: 1829, symbol: * ER_FK_COLUMN_CANNOT_DROP_CHILD. */ er_fk_column_cannot_drop_child = 1829, /** * \brief Common server error. Error number: 1830, symbol: * ER_FK_COLUMN_NOT_NULL. */ er_fk_column_not_null = 1830, /** * \brief Common server error. Error number: 1831, symbol: * ER_DUP_INDEX. */ er_dup_index = 1831, /** * \brief Common server error. Error number: 1832, symbol: * ER_FK_COLUMN_CANNOT_CHANGE. */ er_fk_column_cannot_change = 1832, /** * \brief Common server error. Error number: 1833, symbol: * ER_FK_COLUMN_CANNOT_CHANGE_CHILD. */ er_fk_column_cannot_change_child = 1833, /** * \brief Common server error. Error number: 1835, symbol: * ER_MALFORMED_PACKET. */ er_malformed_packet = 1835, /** * \brief Common server error. Error number: 1836, symbol: * ER_READ_ONLY_MODE. */ er_read_only_mode = 1836, /** * \brief Common server error. Error number: 1838, symbol: * ER_VARIABLE_NOT_SETTABLE_IN_SP. */ er_variable_not_settable_in_sp = 1838, /** * \brief Common server error. Error number: 1839, symbol: * ER_CANT_SET_GTID_PURGED_WHEN_GTID_MODE_IS_OFF. */ er_cant_set_gtid_purged_when_gtid_mode_is_off = 1839, /** * \brief Common server error. Error number: 1840, symbol: * ER_CANT_SET_GTID_PURGED_WHEN_GTID_EXECUTED_IS_NOT_EMPTY. */ er_cant_set_gtid_purged_when_gtid_executed_is_not_empty = 1840, /** * \brief Common server error. Error number: 1841, symbol: * ER_CANT_SET_GTID_PURGED_WHEN_OWNED_GTIDS_IS_NOT_EMPTY. */ er_cant_set_gtid_purged_when_owned_gtids_is_not_empty = 1841, /** * \brief Common server error. Error number: 1842, symbol: * ER_GTID_PURGED_WAS_CHANGED. */ er_gtid_purged_was_changed = 1842, /** * \brief Common server error. Error number: 1843, symbol: * ER_GTID_EXECUTED_WAS_CHANGED. */ er_gtid_executed_was_changed = 1843, /** * \brief Common server error. Error number: 1844, symbol: * ER_BINLOG_STMT_MODE_AND_NO_REPL_TABLES. */ er_binlog_stmt_mode_and_no_repl_tables = 1844, /** * \brief Common server error. Error number: 1845, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED. */ er_alter_operation_not_supported = 1845, /** * \brief Common server error. Error number: 1846, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON. */ er_alter_operation_not_supported_reason = 1846, /** * \brief Common server error. Error number: 1847, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COPY. */ er_alter_operation_not_supported_reason_copy = 1847, /** * \brief Common server error. Error number: 1848, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_PARTITION. */ er_alter_operation_not_supported_reason_partition = 1848, /** * \brief Common server error. Error number: 1849, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_RENAME. */ er_alter_operation_not_supported_reason_fk_rename = 1849, /** * \brief Common server error. Error number: 1850, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE. */ er_alter_operation_not_supported_reason_column_type = 1850, /** * \brief Common server error. Error number: 1851, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_CHECK. */ er_alter_operation_not_supported_reason_fk_check = 1851, /** * \brief Common server error. Error number: 1853, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOPK. */ er_alter_operation_not_supported_reason_nopk = 1853, /** * \brief Common server error. Error number: 1854, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_AUTOINC. */ er_alter_operation_not_supported_reason_autoinc = 1854, /** * \brief Common server error. Error number: 1855, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_HIDDEN_FTS. */ er_alter_operation_not_supported_reason_hidden_fts = 1855, /** * \brief Common server error. Error number: 1856, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_CHANGE_FTS. */ er_alter_operation_not_supported_reason_change_fts = 1856, /** * \brief Common server error. Error number: 1857, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FTS. */ er_alter_operation_not_supported_reason_fts = 1857, /** * \brief Common server error. Error number: 1858, symbol: * ER_SQL_SLAVE_SKIP_COUNTER_NOT_SETTABLE_IN_GTID_MODE. */ er_sql_slave_skip_counter_not_settable_in_gtid_mode = 1858, /** * \brief Common server error. Error number: 1859, symbol: * ER_DUP_UNKNOWN_IN_INDEX. */ er_dup_unknown_in_index = 1859, /** * \brief Common server error. Error number: 1860, symbol: * ER_IDENT_CAUSES_TOO_LONG_PATH. */ er_ident_causes_too_long_path = 1860, /** * \brief Common server error. Error number: 1861, symbol: * ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOT_NULL. */ er_alter_operation_not_supported_reason_not_null = 1861, /** * \brief Common server error. Error number: 1862, symbol: * ER_MUST_CHANGE_PASSWORD_LOGIN. */ er_must_change_password_login = 1862, /** * \brief Common server error. Error number: 1863, symbol: * ER_ROW_IN_WRONG_PARTITION. */ er_row_in_wrong_partition = 1863, /** * \brief Common server error. Error number: 1864, symbol: * ER_MTS_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX. */ er_mts_event_bigger_pending_jobs_size_max = 1864, /** * \brief Common server error. Error number: 1865, symbol: * ER_INNODB_NO_FT_USES_PARSER. */ er_innodb_no_ft_uses_parser = 1865, /** * \brief Common server error. Error number: 1866, symbol: * ER_BINLOG_LOGICAL_CORRUPTION. */ er_binlog_logical_corruption = 1866, /** * \brief Common server error. Error number: 1867, symbol: * ER_WARN_PURGE_LOG_IN_USE. */ er_warn_purge_log_in_use = 1867, /** * \brief Common server error. Error number: 1868, symbol: * ER_WARN_PURGE_LOG_IS_ACTIVE. */ er_warn_purge_log_is_active = 1868, /** * \brief Common server error. Error number: 1869, symbol: * ER_AUTO_INCREMENT_CONFLICT. */ er_auto_increment_conflict = 1869, /** * \brief Common server error. Error number: 1870, symbol: * WARN_ON_BLOCKHOLE_IN_RBR. */ warn_on_blockhole_in_rbr = 1870, /** * \brief Common server error. Error number: 1871, symbol: * ER_SLAVE_MI_INIT_REPOSITORY. */ er_slave_mi_init_repository = 1871, /** * \brief Common server error. Error number: 1872, symbol: * ER_SLAVE_RLI_INIT_REPOSITORY. */ er_slave_rli_init_repository = 1872, /** * \brief Common server error. Error number: 1873, symbol: * ER_ACCESS_DENIED_CHANGE_USER_ERROR. */ er_access_denied_change_user_error = 1873, /** * \brief Common server error. Error number: 1874, symbol: * ER_INNODB_READ_ONLY. */ er_innodb_read_only = 1874, /** * \brief Common server error. Error number: 1875, symbol: * ER_STOP_SLAVE_SQL_THREAD_TIMEOUT. */ er_stop_slave_sql_thread_timeout = 1875, /** * \brief Common server error. Error number: 1876, symbol: * ER_STOP_SLAVE_IO_THREAD_TIMEOUT. */ er_stop_slave_io_thread_timeout = 1876, /** * \brief Common server error. Error number: 1877, symbol: * ER_TABLE_CORRUPT. */ er_table_corrupt = 1877, /** * \brief Common server error. Error number: 1878, symbol: * ER_TEMP_FILE_WRITE_FAILURE. */ er_temp_file_write_failure = 1878, /** * \brief Common server error. Error number: 1879, symbol: * ER_INNODB_FT_AUX_NOT_HEX_ID. */ er_innodb_ft_aux_not_hex_id = 1879, }; BOOST_MYSQL_DECL const boost::system::error_category& get_common_server_category() noexcept; /// Creates an \ref error_code from a \ref common_server_errc. inline error_code make_error_code(common_server_errc error) { return error_code(static_cast(error), get_common_server_category()); } } // namespace mysql #ifndef BOOST_MYSQL_DOXYGEN namespace system { template <> struct is_error_code_enum<::boost::mysql::common_server_errc> { static constexpr bool value = true; }; } // namespace system #endif } // namespace boost #ifdef BOOST_MYSQL_HEADER_ONLY #include #endif #endif