Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-17 08:39:20

0001 //
0002 // Copyright (c) 2019-2025 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 
0008 #ifndef BOOST_MYSQL_COMMON_SERVER_ERRC_HPP
0009 #define BOOST_MYSQL_COMMON_SERVER_ERRC_HPP
0010 
0011 #include <boost/mysql/error_code.hpp>
0012 
0013 #include <boost/mysql/detail/config.hpp>
0014 
0015 #include <boost/system/error_category.hpp>
0016 
0017 namespace boost {
0018 namespace mysql {
0019 
0020 /**
0021  * \brief Server-defined error codes, shared between MySQL and MariaDB.
0022  * \details The numeric value and semantics match the ones described in the MySQL documentation.
0023  * For more info, consult the error reference for
0024  * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html">MySQL 8.0</a>, 
0025  * <a href="https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html">MySQL 5.7</a>,
0026  * <a href="https://mariadb.com/kb/en/mariadb-error-codes/">MariaDB</a>.
0027  */
0028 enum class common_server_errc : int
0029 {
0030 
0031     /**
0032      * \brief Common server error. Error number: 1000, symbol:
0033      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_hashchk">ER_HASHCHK</a>.
0034      */
0035     er_hashchk = 1000,
0036 
0037     /**
0038      * \brief Common server error. Error number: 1001, symbol:
0039      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nisamchk">ER_NISAMCHK</a>.
0040      */
0041     er_nisamchk = 1001,
0042 
0043     /**
0044      * \brief Common server error. Error number: 1002, symbol:
0045      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no">ER_NO</a>.
0046      */
0047     er_no = 1002,
0048 
0049     /**
0050      * \brief Common server error. Error number: 1003, symbol:
0051      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_yes">ER_YES</a>.
0052      */
0053     er_yes = 1003,
0054 
0055     /**
0056      * \brief Common server error. Error number: 1004, symbol:
0057      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_create_file">ER_CANT_CREATE_FILE</a>.
0058      */
0059     er_cant_create_file = 1004,
0060 
0061     /**
0062      * \brief Common server error. Error number: 1005, symbol:
0063      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_create_table">ER_CANT_CREATE_TABLE</a>.
0064      */
0065     er_cant_create_table = 1005,
0066 
0067     /**
0068      * \brief Common server error. Error number: 1006, symbol:
0069      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_create_db">ER_CANT_CREATE_DB</a>.
0070      */
0071     er_cant_create_db = 1006,
0072 
0073     /**
0074      * \brief Common server error. Error number: 1007, symbol:
0075      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_db_create_exists">ER_DB_CREATE_EXISTS</a>.
0076      */
0077     er_db_create_exists = 1007,
0078 
0079     /**
0080      * \brief Common server error. Error number: 1008, symbol:
0081      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_db_drop_exists">ER_DB_DROP_EXISTS</a>.
0082      */
0083     er_db_drop_exists = 1008,
0084 
0085     /**
0086      * \brief Common server error. Error number: 1009, symbol:
0087      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_db_drop_delete">ER_DB_DROP_DELETE</a>.
0088      */
0089     er_db_drop_delete = 1009,
0090 
0091     /**
0092      * \brief Common server error. Error number: 1010, symbol:
0093      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_db_drop_rmdir">ER_DB_DROP_RMDIR</a>.
0094      */
0095     er_db_drop_rmdir = 1010,
0096 
0097     /**
0098      * \brief Common server error. Error number: 1011, symbol:
0099      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_delete_file">ER_CANT_DELETE_FILE</a>.
0100      */
0101     er_cant_delete_file = 1011,
0102 
0103     /**
0104      * \brief Common server error. Error number: 1012, symbol:
0105      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_find_system_rec">ER_CANT_FIND_SYSTEM_REC</a>.
0106      */
0107     er_cant_find_system_rec = 1012,
0108 
0109     /**
0110      * \brief Common server error. Error number: 1013, symbol:
0111      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_get_stat">ER_CANT_GET_STAT</a>.
0112      */
0113     er_cant_get_stat = 1013,
0114 
0115     /**
0116      * \brief Common server error. Error number: 1014, symbol:
0117      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_get_wd">ER_CANT_GET_WD</a>.
0118      */
0119     er_cant_get_wd = 1014,
0120 
0121     /**
0122      * \brief Common server error. Error number: 1015, symbol:
0123      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_lock">ER_CANT_LOCK</a>.
0124      */
0125     er_cant_lock = 1015,
0126 
0127     /**
0128      * \brief Common server error. Error number: 1016, symbol:
0129      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_open_file">ER_CANT_OPEN_FILE</a>.
0130      */
0131     er_cant_open_file = 1016,
0132 
0133     /**
0134      * \brief Common server error. Error number: 1017, symbol:
0135      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_file_not_found">ER_FILE_NOT_FOUND</a>.
0136      */
0137     er_file_not_found = 1017,
0138 
0139     /**
0140      * \brief Common server error. Error number: 1018, symbol:
0141      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_read_dir">ER_CANT_READ_DIR</a>.
0142      */
0143     er_cant_read_dir = 1018,
0144 
0145     /**
0146      * \brief Common server error. Error number: 1019, symbol:
0147      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_set_wd">ER_CANT_SET_WD</a>.
0148      */
0149     er_cant_set_wd = 1019,
0150 
0151     /**
0152      * \brief Common server error. Error number: 1020, symbol:
0153      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_checkread">ER_CHECKREAD</a>.
0154      */
0155     er_checkread = 1020,
0156 
0157     /**
0158      * \brief Common server error. Error number: 1021, symbol:
0159      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_disk_full">ER_DISK_FULL</a>.
0160      */
0161     er_disk_full = 1021,
0162 
0163     /**
0164      * \brief Common server error. Error number: 1022, symbol:
0165      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_key">ER_DUP_KEY</a>.
0166      */
0167     er_dup_key = 1022,
0168 
0169     /**
0170      * \brief Common server error. Error number: 1023, symbol:
0171      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_on_close">ER_ERROR_ON_CLOSE</a>.
0172      */
0173     er_error_on_close = 1023,
0174 
0175     /**
0176      * \brief Common server error. Error number: 1024, symbol:
0177      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_on_read">ER_ERROR_ON_READ</a>.
0178      */
0179     er_error_on_read = 1024,
0180 
0181     /**
0182      * \brief Common server error. Error number: 1025, symbol:
0183      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_on_rename">ER_ERROR_ON_RENAME</a>.
0184      */
0185     er_error_on_rename = 1025,
0186 
0187     /**
0188      * \brief Common server error. Error number: 1026, symbol:
0189      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_on_write">ER_ERROR_ON_WRITE</a>.
0190      */
0191     er_error_on_write = 1026,
0192 
0193     /**
0194      * \brief Common server error. Error number: 1027, symbol:
0195      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_file_used">ER_FILE_USED</a>.
0196      */
0197     er_file_used = 1027,
0198 
0199     /**
0200      * \brief Common server error. Error number: 1028, symbol:
0201      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_filsort_abort">ER_FILSORT_ABORT</a>.
0202      */
0203     er_filsort_abort = 1028,
0204 
0205     /**
0206      * \brief Common server error. Error number: 1029, symbol:
0207      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_form_not_found">ER_FORM_NOT_FOUND</a>.
0208      */
0209     er_form_not_found = 1029,
0210 
0211     /**
0212      * \brief Common server error. Error number: 1030, symbol:
0213      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_get_errno">ER_GET_ERRNO</a>.
0214      */
0215     er_get_errno = 1030,
0216 
0217     /**
0218      * \brief Common server error. Error number: 1031, symbol:
0219      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_illegal_ha">ER_ILLEGAL_HA</a>.
0220      */
0221     er_illegal_ha = 1031,
0222 
0223     /**
0224      * \brief Common server error. Error number: 1032, symbol:
0225      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_key_not_found">ER_KEY_NOT_FOUND</a>.
0226      */
0227     er_key_not_found = 1032,
0228 
0229     /**
0230      * \brief Common server error. Error number: 1033, symbol:
0231      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_not_form_file">ER_NOT_FORM_FILE</a>.
0232      */
0233     er_not_form_file = 1033,
0234 
0235     /**
0236      * \brief Common server error. Error number: 1034, symbol:
0237      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_not_keyfile">ER_NOT_KEYFILE</a>.
0238      */
0239     er_not_keyfile = 1034,
0240 
0241     /**
0242      * \brief Common server error. Error number: 1035, symbol:
0243      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_old_keyfile">ER_OLD_KEYFILE</a>.
0244      */
0245     er_old_keyfile = 1035,
0246 
0247     /**
0248      * \brief Common server error. Error number: 1036, symbol:
0249      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_open_as_readonly">ER_OPEN_AS_READONLY</a>.
0250      */
0251     er_open_as_readonly = 1036,
0252 
0253     /**
0254      * \brief Common server error. Error number: 1037, symbol:
0255      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_outofmemory">ER_OUTOFMEMORY</a>.
0256      */
0257     er_outofmemory = 1037,
0258 
0259     /**
0260      * \brief Common server error. Error number: 1038, symbol:
0261      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_out_of_sortmemory">ER_OUT_OF_SORTMEMORY</a>.
0262      */
0263     er_out_of_sortmemory = 1038,
0264 
0265     /**
0266      * \brief Common server error. Error number: 1039, symbol:
0267      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unexpected_eof">ER_UNEXPECTED_EOF</a>.
0268      */
0269     er_unexpected_eof = 1039,
0270 
0271     /**
0272      * \brief Common server error. Error number: 1040, symbol:
0273      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_con_count_error">ER_CON_COUNT_ERROR</a>.
0274      */
0275     er_con_count_error = 1040,
0276 
0277     /**
0278      * \brief Common server error. Error number: 1041, symbol:
0279      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_out_of_resources">ER_OUT_OF_RESOURCES</a>.
0280      */
0281     er_out_of_resources = 1041,
0282 
0283     /**
0284      * \brief Common server error. Error number: 1042, symbol:
0285      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_host_error">ER_BAD_HOST_ERROR</a>.
0286      */
0287     er_bad_host_error = 1042,
0288 
0289     /**
0290      * \brief Common server error. Error number: 1043, symbol:
0291      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_handshake_error">ER_HANDSHAKE_ERROR</a>.
0292      */
0293     er_handshake_error = 1043,
0294 
0295     /**
0296      * \brief Common server error. Error number: 1044, symbol:
0297      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dbaccess_denied_error">ER_DBACCESS_DENIED_ERROR</a>.
0298      */
0299     er_dbaccess_denied_error = 1044,
0300 
0301     /**
0302      * \brief Common server error. Error number: 1045, symbol:
0303      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_access_denied_error">ER_ACCESS_DENIED_ERROR</a>.
0304      */
0305     er_access_denied_error = 1045,
0306 
0307     /**
0308      * \brief Common server error. Error number: 1046, symbol:
0309      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_db_error">ER_NO_DB_ERROR</a>.
0310      */
0311     er_no_db_error = 1046,
0312 
0313     /**
0314      * \brief Common server error. Error number: 1047, symbol:
0315      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_com_error">ER_UNKNOWN_COM_ERROR</a>.
0316      */
0317     er_unknown_com_error = 1047,
0318 
0319     /**
0320      * \brief Common server error. Error number: 1048, symbol:
0321      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_null_error">ER_BAD_NULL_ERROR</a>.
0322      */
0323     er_bad_null_error = 1048,
0324 
0325     /**
0326      * \brief Common server error. Error number: 1049, symbol:
0327      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_db_error">ER_BAD_DB_ERROR</a>.
0328      */
0329     er_bad_db_error = 1049,
0330 
0331     /**
0332      * \brief Common server error. Error number: 1050, symbol:
0333      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_exists_error">ER_TABLE_EXISTS_ERROR</a>.
0334      */
0335     er_table_exists_error = 1050,
0336 
0337     /**
0338      * \brief Common server error. Error number: 1051, symbol:
0339      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_table_error">ER_BAD_TABLE_ERROR</a>.
0340      */
0341     er_bad_table_error = 1051,
0342 
0343     /**
0344      * \brief Common server error. Error number: 1052, symbol:
0345      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_non_uniq_error">ER_NON_UNIQ_ERROR</a>.
0346      */
0347     er_non_uniq_error = 1052,
0348 
0349     /**
0350      * \brief Common server error. Error number: 1053, symbol:
0351      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_server_shutdown">ER_SERVER_SHUTDOWN</a>.
0352      */
0353     er_server_shutdown = 1053,
0354 
0355     /**
0356      * \brief Common server error. Error number: 1054, symbol:
0357      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_field_error">ER_BAD_FIELD_ERROR</a>.
0358      */
0359     er_bad_field_error = 1054,
0360 
0361     /**
0362      * \brief Common server error. Error number: 1055, symbol:
0363      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_field_with_group">ER_WRONG_FIELD_WITH_GROUP</a>.
0364      */
0365     er_wrong_field_with_group = 1055,
0366 
0367     /**
0368      * \brief Common server error. Error number: 1056, symbol:
0369      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_group_field">ER_WRONG_GROUP_FIELD</a>.
0370      */
0371     er_wrong_group_field = 1056,
0372 
0373     /**
0374      * \brief Common server error. Error number: 1057, symbol:
0375      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_sum_select">ER_WRONG_SUM_SELECT</a>.
0376      */
0377     er_wrong_sum_select = 1057,
0378 
0379     /**
0380      * \brief Common server error. Error number: 1058, symbol:
0381      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_value_count">ER_WRONG_VALUE_COUNT</a>.
0382      */
0383     er_wrong_value_count = 1058,
0384 
0385     /**
0386      * \brief Common server error. Error number: 1059, symbol:
0387      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_long_ident">ER_TOO_LONG_IDENT</a>.
0388      */
0389     er_too_long_ident = 1059,
0390 
0391     /**
0392      * \brief Common server error. Error number: 1060, symbol:
0393      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_fieldname">ER_DUP_FIELDNAME</a>.
0394      */
0395     er_dup_fieldname = 1060,
0396 
0397     /**
0398      * \brief Common server error. Error number: 1061, symbol:
0399      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_keyname">ER_DUP_KEYNAME</a>.
0400      */
0401     er_dup_keyname = 1061,
0402 
0403     /**
0404      * \brief Common server error. Error number: 1062, symbol:
0405      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_entry">ER_DUP_ENTRY</a>.
0406      */
0407     er_dup_entry = 1062,
0408 
0409     /**
0410      * \brief Common server error. Error number: 1063, symbol:
0411      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_field_spec">ER_WRONG_FIELD_SPEC</a>.
0412      */
0413     er_wrong_field_spec = 1063,
0414 
0415     /**
0416      * \brief Common server error. Error number: 1064, symbol:
0417      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_parse_error">ER_PARSE_ERROR</a>.
0418      */
0419     er_parse_error = 1064,
0420 
0421     /**
0422      * \brief Common server error. Error number: 1065, symbol:
0423      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_empty_query">ER_EMPTY_QUERY</a>.
0424      */
0425     er_empty_query = 1065,
0426 
0427     /**
0428      * \brief Common server error. Error number: 1066, symbol:
0429      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nonuniq_table">ER_NONUNIQ_TABLE</a>.
0430      */
0431     er_nonuniq_table = 1066,
0432 
0433     /**
0434      * \brief Common server error. Error number: 1067, symbol:
0435      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_invalid_default">ER_INVALID_DEFAULT</a>.
0436      */
0437     er_invalid_default = 1067,
0438 
0439     /**
0440      * \brief Common server error. Error number: 1068, symbol:
0441      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_multiple_pri_key">ER_MULTIPLE_PRI_KEY</a>.
0442      */
0443     er_multiple_pri_key = 1068,
0444 
0445     /**
0446      * \brief Common server error. Error number: 1069, symbol:
0447      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_keys">ER_TOO_MANY_KEYS</a>.
0448      */
0449     er_too_many_keys = 1069,
0450 
0451     /**
0452      * \brief Common server error. Error number: 1070, symbol:
0453      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_key_parts">ER_TOO_MANY_KEY_PARTS</a>.
0454      */
0455     er_too_many_key_parts = 1070,
0456 
0457     /**
0458      * \brief Common server error. Error number: 1071, symbol:
0459      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_long_key">ER_TOO_LONG_KEY</a>.
0460      */
0461     er_too_long_key = 1071,
0462 
0463     /**
0464      * \brief Common server error. Error number: 1072, symbol:
0465      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_key_column_does_not_exits">ER_KEY_COLUMN_DOES_NOT_EXITS</a>.
0466      */
0467     er_key_column_does_not_exits = 1072,
0468 
0469     /**
0470      * \brief Common server error. Error number: 1073, symbol:
0471      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_blob_used_as_key">ER_BLOB_USED_AS_KEY</a>.
0472      */
0473     er_blob_used_as_key = 1073,
0474 
0475     /**
0476      * \brief Common server error. Error number: 1074, symbol:
0477      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_big_fieldlength">ER_TOO_BIG_FIELDLENGTH</a>.
0478      */
0479     er_too_big_fieldlength = 1074,
0480 
0481     /**
0482      * \brief Common server error. Error number: 1075, symbol:
0483      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_auto_key">ER_WRONG_AUTO_KEY</a>.
0484      */
0485     er_wrong_auto_key = 1075,
0486 
0487     /**
0488      * \brief Common server error. Error number: 1077, symbol:
0489      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_normal_shutdown">ER_NORMAL_SHUTDOWN</a>.
0490      */
0491     er_normal_shutdown = 1077,
0492 
0493     /**
0494      * \brief Common server error. Error number: 1078, symbol:
0495      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_got_signal">ER_GOT_SIGNAL</a>.
0496      */
0497     er_got_signal = 1078,
0498 
0499     /**
0500      * \brief Common server error. Error number: 1079, symbol:
0501      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_shutdown_complete">ER_SHUTDOWN_COMPLETE</a>.
0502      */
0503     er_shutdown_complete = 1079,
0504 
0505     /**
0506      * \brief Common server error. Error number: 1080, symbol:
0507      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_forcing_close">ER_FORCING_CLOSE</a>.
0508      */
0509     er_forcing_close = 1080,
0510 
0511     /**
0512      * \brief Common server error. Error number: 1081, symbol:
0513      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_ipsock_error">ER_IPSOCK_ERROR</a>.
0514      */
0515     er_ipsock_error = 1081,
0516 
0517     /**
0518      * \brief Common server error. Error number: 1082, symbol:
0519      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_such_index">ER_NO_SUCH_INDEX</a>.
0520      */
0521     er_no_such_index = 1082,
0522 
0523     /**
0524      * \brief Common server error. Error number: 1083, symbol:
0525      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_field_terminators">ER_WRONG_FIELD_TERMINATORS</a>.
0526      */
0527     er_wrong_field_terminators = 1083,
0528 
0529     /**
0530      * \brief Common server error. Error number: 1084, symbol:
0531      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_blobs_and_no_terminated">ER_BLOBS_AND_NO_TERMINATED</a>.
0532      */
0533     er_blobs_and_no_terminated = 1084,
0534 
0535     /**
0536      * \brief Common server error. Error number: 1085, symbol:
0537      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_textfile_not_readable">ER_TEXTFILE_NOT_READABLE</a>.
0538      */
0539     er_textfile_not_readable = 1085,
0540 
0541     /**
0542      * \brief Common server error. Error number: 1086, symbol:
0543      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_file_exists_error">ER_FILE_EXISTS_ERROR</a>.
0544      */
0545     er_file_exists_error = 1086,
0546 
0547     /**
0548      * \brief Common server error. Error number: 1087, symbol:
0549      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_load_info">ER_LOAD_INFO</a>.
0550      */
0551     er_load_info = 1087,
0552 
0553     /**
0554      * \brief Common server error. Error number: 1088, symbol:
0555      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_info">ER_ALTER_INFO</a>.
0556      */
0557     er_alter_info = 1088,
0558 
0559     /**
0560      * \brief Common server error. Error number: 1089, symbol:
0561      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_sub_key">ER_WRONG_SUB_KEY</a>.
0562      */
0563     er_wrong_sub_key = 1089,
0564 
0565     /**
0566      * \brief Common server error. Error number: 1090, symbol:
0567      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_remove_all_fields">ER_CANT_REMOVE_ALL_FIELDS</a>.
0568      */
0569     er_cant_remove_all_fields = 1090,
0570 
0571     /**
0572      * \brief Common server error. Error number: 1091, symbol:
0573      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_drop_field_or_key">ER_CANT_DROP_FIELD_OR_KEY</a>.
0574      */
0575     er_cant_drop_field_or_key = 1091,
0576 
0577     /**
0578      * \brief Common server error. Error number: 1092, symbol:
0579      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_insert_info">ER_INSERT_INFO</a>.
0580      */
0581     er_insert_info = 1092,
0582 
0583     /**
0584      * \brief Common server error. Error number: 1093, symbol:
0585      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_update_table_used">ER_UPDATE_TABLE_USED</a>.
0586      */
0587     er_update_table_used = 1093,
0588 
0589     /**
0590      * \brief Common server error. Error number: 1094, symbol:
0591      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_such_thread">ER_NO_SUCH_THREAD</a>.
0592      */
0593     er_no_such_thread = 1094,
0594 
0595     /**
0596      * \brief Common server error. Error number: 1095, symbol:
0597      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_kill_denied_error">ER_KILL_DENIED_ERROR</a>.
0598      */
0599     er_kill_denied_error = 1095,
0600 
0601     /**
0602      * \brief Common server error. Error number: 1096, symbol:
0603      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_tables_used">ER_NO_TABLES_USED</a>.
0604      */
0605     er_no_tables_used = 1096,
0606 
0607     /**
0608      * \brief Common server error. Error number: 1097, symbol:
0609      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_big_set">ER_TOO_BIG_SET</a>.
0610      */
0611     er_too_big_set = 1097,
0612 
0613     /**
0614      * \brief Common server error. Error number: 1098, symbol:
0615      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_unique_logfile">ER_NO_UNIQUE_LOGFILE</a>.
0616      */
0617     er_no_unique_logfile = 1098,
0618 
0619     /**
0620      * \brief Common server error. Error number: 1099, symbol:
0621      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_not_locked_for_write">ER_TABLE_NOT_LOCKED_FOR_WRITE</a>.
0622      */
0623     er_table_not_locked_for_write = 1099,
0624 
0625     /**
0626      * \brief Common server error. Error number: 1100, symbol:
0627      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_not_locked">ER_TABLE_NOT_LOCKED</a>.
0628      */
0629     er_table_not_locked = 1100,
0630 
0631     /**
0632      * \brief Common server error. Error number: 1102, symbol:
0633      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_db_name">ER_WRONG_DB_NAME</a>.
0634      */
0635     er_wrong_db_name = 1102,
0636 
0637     /**
0638      * \brief Common server error. Error number: 1103, symbol:
0639      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_table_name">ER_WRONG_TABLE_NAME</a>.
0640      */
0641     er_wrong_table_name = 1103,
0642 
0643     /**
0644      * \brief Common server error. Error number: 1104, symbol:
0645      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_big_select">ER_TOO_BIG_SELECT</a>.
0646      */
0647     er_too_big_select = 1104,
0648 
0649     /**
0650      * \brief Common server error. Error number: 1105, symbol:
0651      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_error">ER_UNKNOWN_ERROR</a>.
0652      */
0653     er_unknown_error = 1105,
0654 
0655     /**
0656      * \brief Common server error. Error number: 1106, symbol:
0657      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_procedure">ER_UNKNOWN_PROCEDURE</a>.
0658      */
0659     er_unknown_procedure = 1106,
0660 
0661     /**
0662      * \brief Common server error. Error number: 1107, symbol:
0663      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_paramcount_to_procedure">ER_WRONG_PARAMCOUNT_TO_PROCEDURE</a>.
0664      */
0665     er_wrong_paramcount_to_procedure = 1107,
0666 
0667     /**
0668      * \brief Common server error. Error number: 1108, symbol:
0669      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_parameters_to_procedure">ER_WRONG_PARAMETERS_TO_PROCEDURE</a>.
0670      */
0671     er_wrong_parameters_to_procedure = 1108,
0672 
0673     /**
0674      * \brief Common server error. Error number: 1109, symbol:
0675      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_table">ER_UNKNOWN_TABLE</a>.
0676      */
0677     er_unknown_table = 1109,
0678 
0679     /**
0680      * \brief Common server error. Error number: 1110, symbol:
0681      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_field_specified_twice">ER_FIELD_SPECIFIED_TWICE</a>.
0682      */
0683     er_field_specified_twice = 1110,
0684 
0685     /**
0686      * \brief Common server error. Error number: 1111, symbol:
0687      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_invalid_group_func_use">ER_INVALID_GROUP_FUNC_USE</a>.
0688      */
0689     er_invalid_group_func_use = 1111,
0690 
0691     /**
0692      * \brief Common server error. Error number: 1112, symbol:
0693      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unsupported_extension">ER_UNSUPPORTED_EXTENSION</a>.
0694      */
0695     er_unsupported_extension = 1112,
0696 
0697     /**
0698      * \brief Common server error. Error number: 1113, symbol:
0699      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_must_have_columns">ER_TABLE_MUST_HAVE_COLUMNS</a>.
0700      */
0701     er_table_must_have_columns = 1113,
0702 
0703     /**
0704      * \brief Common server error. Error number: 1114, symbol:
0705      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_record_file_full">ER_RECORD_FILE_FULL</a>.
0706      */
0707     er_record_file_full = 1114,
0708 
0709     /**
0710      * \brief Common server error. Error number: 1115, symbol:
0711      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_character_set">ER_UNKNOWN_CHARACTER_SET</a>.
0712      */
0713     er_unknown_character_set = 1115,
0714 
0715     /**
0716      * \brief Common server error. Error number: 1116, symbol:
0717      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_tables">ER_TOO_MANY_TABLES</a>.
0718      */
0719     er_too_many_tables = 1116,
0720 
0721     /**
0722      * \brief Common server error. Error number: 1117, symbol:
0723      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_fields">ER_TOO_MANY_FIELDS</a>.
0724      */
0725     er_too_many_fields = 1117,
0726 
0727     /**
0728      * \brief Common server error. Error number: 1118, symbol:
0729      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_big_rowsize">ER_TOO_BIG_ROWSIZE</a>.
0730      */
0731     er_too_big_rowsize = 1118,
0732 
0733     /**
0734      * \brief Common server error. Error number: 1119, symbol:
0735      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stack_overrun">ER_STACK_OVERRUN</a>.
0736      */
0737     er_stack_overrun = 1119,
0738 
0739     /**
0740      * \brief Common server error. Error number: 1121, symbol:
0741      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_null_column_in_index">ER_NULL_COLUMN_IN_INDEX</a>.
0742      */
0743     er_null_column_in_index = 1121,
0744 
0745     /**
0746      * \brief Common server error. Error number: 1122, symbol:
0747      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_find_udf">ER_CANT_FIND_UDF</a>.
0748      */
0749     er_cant_find_udf = 1122,
0750 
0751     /**
0752      * \brief Common server error. Error number: 1123, symbol:
0753      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_initialize_udf">ER_CANT_INITIALIZE_UDF</a>.
0754      */
0755     er_cant_initialize_udf = 1123,
0756 
0757     /**
0758      * \brief Common server error. Error number: 1124, symbol:
0759      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_udf_no_paths">ER_UDF_NO_PATHS</a>.
0760      */
0761     er_udf_no_paths = 1124,
0762 
0763     /**
0764      * \brief Common server error. Error number: 1125, symbol:
0765      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_udf_exists">ER_UDF_EXISTS</a>.
0766      */
0767     er_udf_exists = 1125,
0768 
0769     /**
0770      * \brief Common server error. Error number: 1126, symbol:
0771      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_open_library">ER_CANT_OPEN_LIBRARY</a>.
0772      */
0773     er_cant_open_library = 1126,
0774 
0775     /**
0776      * \brief Common server error. Error number: 1127, symbol:
0777      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_find_dl_entry">ER_CANT_FIND_DL_ENTRY</a>.
0778      */
0779     er_cant_find_dl_entry = 1127,
0780 
0781     /**
0782      * \brief Common server error. Error number: 1128, symbol:
0783      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_function_not_defined">ER_FUNCTION_NOT_DEFINED</a>.
0784      */
0785     er_function_not_defined = 1128,
0786 
0787     /**
0788      * \brief Common server error. Error number: 1129, symbol:
0789      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_host_is_blocked">ER_HOST_IS_BLOCKED</a>.
0790      */
0791     er_host_is_blocked = 1129,
0792 
0793     /**
0794      * \brief Common server error. Error number: 1130, symbol:
0795      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_host_not_privileged">ER_HOST_NOT_PRIVILEGED</a>.
0796      */
0797     er_host_not_privileged = 1130,
0798 
0799     /**
0800      * \brief Common server error. Error number: 1131, symbol:
0801      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_password_anonymous_user">ER_PASSWORD_ANONYMOUS_USER</a>.
0802      */
0803     er_password_anonymous_user = 1131,
0804 
0805     /**
0806      * \brief Common server error. Error number: 1132, symbol:
0807      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_password_not_allowed">ER_PASSWORD_NOT_ALLOWED</a>.
0808      */
0809     er_password_not_allowed = 1132,
0810 
0811     /**
0812      * \brief Common server error. Error number: 1133, symbol:
0813      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_password_no_match">ER_PASSWORD_NO_MATCH</a>.
0814      */
0815     er_password_no_match = 1133,
0816 
0817     /**
0818      * \brief Common server error. Error number: 1134, symbol:
0819      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_update_info">ER_UPDATE_INFO</a>.
0820      */
0821     er_update_info = 1134,
0822 
0823     /**
0824      * \brief Common server error. Error number: 1135, symbol:
0825      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_create_thread">ER_CANT_CREATE_THREAD</a>.
0826      */
0827     er_cant_create_thread = 1135,
0828 
0829     /**
0830      * \brief Common server error. Error number: 1136, symbol:
0831      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_value_count_on_row">ER_WRONG_VALUE_COUNT_ON_ROW</a>.
0832      */
0833     er_wrong_value_count_on_row = 1136,
0834 
0835     /**
0836      * \brief Common server error. Error number: 1137, symbol:
0837      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_reopen_table">ER_CANT_REOPEN_TABLE</a>.
0838      */
0839     er_cant_reopen_table = 1137,
0840 
0841     /**
0842      * \brief Common server error. Error number: 1138, symbol:
0843      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_invalid_use_of_null">ER_INVALID_USE_OF_NULL</a>.
0844      */
0845     er_invalid_use_of_null = 1138,
0846 
0847     /**
0848      * \brief Common server error. Error number: 1139, symbol:
0849      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_regexp_error">ER_REGEXP_ERROR</a>.
0850      */
0851     er_regexp_error = 1139,
0852 
0853     /**
0854      * \brief Common server error. Error number: 1140, symbol:
0855      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mix_of_group_func_and_fields">ER_MIX_OF_GROUP_FUNC_AND_FIELDS</a>.
0856      */
0857     er_mix_of_group_func_and_fields = 1140,
0858 
0859     /**
0860      * \brief Common server error. Error number: 1141, symbol:
0861      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nonexisting_grant">ER_NONEXISTING_GRANT</a>.
0862      */
0863     er_nonexisting_grant = 1141,
0864 
0865     /**
0866      * \brief Common server error. Error number: 1142, symbol:
0867      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tableaccess_denied_error">ER_TABLEACCESS_DENIED_ERROR</a>.
0868      */
0869     er_tableaccess_denied_error = 1142,
0870 
0871     /**
0872      * \brief Common server error. Error number: 1143, symbol:
0873      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_columnaccess_denied_error">ER_COLUMNACCESS_DENIED_ERROR</a>.
0874      */
0875     er_columnaccess_denied_error = 1143,
0876 
0877     /**
0878      * \brief Common server error. Error number: 1144, symbol:
0879      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_illegal_grant_for_table">ER_ILLEGAL_GRANT_FOR_TABLE</a>.
0880      */
0881     er_illegal_grant_for_table = 1144,
0882 
0883     /**
0884      * \brief Common server error. Error number: 1145, symbol:
0885      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_grant_wrong_host_or_user">ER_GRANT_WRONG_HOST_OR_USER</a>.
0886      */
0887     er_grant_wrong_host_or_user = 1145,
0888 
0889     /**
0890      * \brief Common server error. Error number: 1146, symbol:
0891      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_such_table">ER_NO_SUCH_TABLE</a>.
0892      */
0893     er_no_such_table = 1146,
0894 
0895     /**
0896      * \brief Common server error. Error number: 1147, symbol:
0897      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nonexisting_table_grant">ER_NONEXISTING_TABLE_GRANT</a>.
0898      */
0899     er_nonexisting_table_grant = 1147,
0900 
0901     /**
0902      * \brief Common server error. Error number: 1148, symbol:
0903      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_not_allowed_command">ER_NOT_ALLOWED_COMMAND</a>.
0904      */
0905     er_not_allowed_command = 1148,
0906 
0907     /**
0908      * \brief Common server error. Error number: 1149, symbol:
0909      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_syntax_error">ER_SYNTAX_ERROR</a>.
0910      */
0911     er_syntax_error = 1149,
0912 
0913     /**
0914      * \brief Common server error. Error number: 1152, symbol:
0915      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_aborting_connection">ER_ABORTING_CONNECTION</a>.
0916      */
0917     er_aborting_connection = 1152,
0918 
0919     /**
0920      * \brief Common server error. Error number: 1153, symbol:
0921      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_net_packet_too_large">ER_NET_PACKET_TOO_LARGE</a>.
0922      */
0923     er_net_packet_too_large = 1153,
0924 
0925     /**
0926      * \brief Common server error. Error number: 1154, symbol:
0927      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_net_read_error_from_pipe">ER_NET_READ_ERROR_FROM_PIPE</a>.
0928      */
0929     er_net_read_error_from_pipe = 1154,
0930 
0931     /**
0932      * \brief Common server error. Error number: 1155, symbol:
0933      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_net_fcntl_error">ER_NET_FCNTL_ERROR</a>.
0934      */
0935     er_net_fcntl_error = 1155,
0936 
0937     /**
0938      * \brief Common server error. Error number: 1156, symbol:
0939      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_net_packets_out_of_order">ER_NET_PACKETS_OUT_OF_ORDER</a>.
0940      */
0941     er_net_packets_out_of_order = 1156,
0942 
0943     /**
0944      * \brief Common server error. Error number: 1157, symbol:
0945      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_net_uncompress_error">ER_NET_UNCOMPRESS_ERROR</a>.
0946      */
0947     er_net_uncompress_error = 1157,
0948 
0949     /**
0950      * \brief Common server error. Error number: 1158, symbol:
0951      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_net_read_error">ER_NET_READ_ERROR</a>.
0952      */
0953     er_net_read_error = 1158,
0954 
0955     /**
0956      * \brief Common server error. Error number: 1159, symbol:
0957      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_net_read_interrupted">ER_NET_READ_INTERRUPTED</a>.
0958      */
0959     er_net_read_interrupted = 1159,
0960 
0961     /**
0962      * \brief Common server error. Error number: 1160, symbol:
0963      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_net_error_on_write">ER_NET_ERROR_ON_WRITE</a>.
0964      */
0965     er_net_error_on_write = 1160,
0966 
0967     /**
0968      * \brief Common server error. Error number: 1161, symbol:
0969      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_net_write_interrupted">ER_NET_WRITE_INTERRUPTED</a>.
0970      */
0971     er_net_write_interrupted = 1161,
0972 
0973     /**
0974      * \brief Common server error. Error number: 1162, symbol:
0975      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_long_string">ER_TOO_LONG_STRING</a>.
0976      */
0977     er_too_long_string = 1162,
0978 
0979     /**
0980      * \brief Common server error. Error number: 1163, symbol:
0981      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_cant_handle_blob">ER_TABLE_CANT_HANDLE_BLOB</a>.
0982      */
0983     er_table_cant_handle_blob = 1163,
0984 
0985     /**
0986      * \brief Common server error. Error number: 1164, symbol:
0987      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_cant_handle_auto_increment">ER_TABLE_CANT_HANDLE_AUTO_INCREMENT</a>.
0988      */
0989     er_table_cant_handle_auto_increment = 1164,
0990 
0991     /**
0992      * \brief Common server error. Error number: 1166, symbol:
0993      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_column_name">ER_WRONG_COLUMN_NAME</a>.
0994      */
0995     er_wrong_column_name = 1166,
0996 
0997     /**
0998      * \brief Common server error. Error number: 1167, symbol:
0999      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_key_column">ER_WRONG_KEY_COLUMN</a>.
1000      */
1001     er_wrong_key_column = 1167,
1002 
1003     /**
1004      * \brief Common server error. Error number: 1168, symbol:
1005      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_mrg_table">ER_WRONG_MRG_TABLE</a>.
1006      */
1007     er_wrong_mrg_table = 1168,
1008 
1009     /**
1010      * \brief Common server error. Error number: 1169, symbol:
1011      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_unique">ER_DUP_UNIQUE</a>.
1012      */
1013     er_dup_unique = 1169,
1014 
1015     /**
1016      * \brief Common server error. Error number: 1170, symbol:
1017      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_blob_key_without_length">ER_BLOB_KEY_WITHOUT_LENGTH</a>.
1018      */
1019     er_blob_key_without_length = 1170,
1020 
1021     /**
1022      * \brief Common server error. Error number: 1171, symbol:
1023      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_primary_cant_have_null">ER_PRIMARY_CANT_HAVE_NULL</a>.
1024      */
1025     er_primary_cant_have_null = 1171,
1026 
1027     /**
1028      * \brief Common server error. Error number: 1172, symbol:
1029      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_rows">ER_TOO_MANY_ROWS</a>.
1030      */
1031     er_too_many_rows = 1172,
1032 
1033     /**
1034      * \brief Common server error. Error number: 1173, symbol:
1035      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_requires_primary_key">ER_REQUIRES_PRIMARY_KEY</a>.
1036      */
1037     er_requires_primary_key = 1173,
1038 
1039     /**
1040      * \brief Common server error. Error number: 1174, symbol:
1041      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_raid_compiled">ER_NO_RAID_COMPILED</a>.
1042      */
1043     er_no_raid_compiled = 1174,
1044 
1045     /**
1046      * \brief Common server error. Error number: 1175, symbol:
1047      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_update_without_key_in_safe_mode">ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE</a>.
1048      */
1049     er_update_without_key_in_safe_mode = 1175,
1050 
1051     /**
1052      * \brief Common server error. Error number: 1177, symbol:
1053      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_check_no_such_table">ER_CHECK_NO_SUCH_TABLE</a>.
1054      */
1055     er_check_no_such_table = 1177,
1056 
1057     /**
1058      * \brief Common server error. Error number: 1178, symbol:
1059      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_check_not_implemented">ER_CHECK_NOT_IMPLEMENTED</a>.
1060      */
1061     er_check_not_implemented = 1178,
1062 
1063     /**
1064      * \brief Common server error. Error number: 1179, symbol:
1065      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_do_this_during_an_transaction">ER_CANT_DO_THIS_DURING_AN_TRANSACTION</a>.
1066      */
1067     er_cant_do_this_during_an_transaction = 1179,
1068 
1069     /**
1070      * \brief Common server error. Error number: 1180, symbol:
1071      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_during_commit">ER_ERROR_DURING_COMMIT</a>.
1072      */
1073     er_error_during_commit = 1180,
1074 
1075     /**
1076      * \brief Common server error. Error number: 1181, symbol:
1077      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_during_rollback">ER_ERROR_DURING_ROLLBACK</a>.
1078      */
1079     er_error_during_rollback = 1181,
1080 
1081     /**
1082      * \brief Common server error. Error number: 1182, symbol:
1083      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_during_flush_logs">ER_ERROR_DURING_FLUSH_LOGS</a>.
1084      */
1085     er_error_during_flush_logs = 1182,
1086 
1087     /**
1088      * \brief Common server error. Error number: 1183, symbol:
1089      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_during_checkpoint">ER_ERROR_DURING_CHECKPOINT</a>.
1090      */
1091     er_error_during_checkpoint = 1183,
1092 
1093     /**
1094      * \brief Common server error. Error number: 1184, symbol:
1095      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_new_aborting_connection">ER_NEW_ABORTING_CONNECTION</a>.
1096      */
1097     er_new_aborting_connection = 1184,
1098 
1099     /**
1100      * \brief Common server error. Error number: 1186, symbol:
1101      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_flush_master_binlog_closed">ER_FLUSH_MASTER_BINLOG_CLOSED</a>.
1102      */
1103     er_flush_master_binlog_closed = 1186,
1104 
1105     /**
1106      * \brief Common server error. Error number: 1187, symbol:
1107      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_index_rebuild">ER_INDEX_REBUILD</a>.
1108      */
1109     er_index_rebuild = 1187,
1110 
1111     /**
1112      * \brief Common server error. Error number: 1188, symbol:
1113      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_master">ER_MASTER</a>.
1114      */
1115     er_master = 1188,
1116 
1117     /**
1118      * \brief Common server error. Error number: 1189, symbol:
1119      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_master_net_read">ER_MASTER_NET_READ</a>.
1120      */
1121     er_master_net_read = 1189,
1122 
1123     /**
1124      * \brief Common server error. Error number: 1190, symbol:
1125      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_master_net_write">ER_MASTER_NET_WRITE</a>.
1126      */
1127     er_master_net_write = 1190,
1128 
1129     /**
1130      * \brief Common server error. Error number: 1191, symbol:
1131      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_ft_matching_key_not_found">ER_FT_MATCHING_KEY_NOT_FOUND</a>.
1132      */
1133     er_ft_matching_key_not_found = 1191,
1134 
1135     /**
1136      * \brief Common server error. Error number: 1192, symbol:
1137      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_lock_or_active_transaction">ER_LOCK_OR_ACTIVE_TRANSACTION</a>.
1138      */
1139     er_lock_or_active_transaction = 1192,
1140 
1141     /**
1142      * \brief Common server error. Error number: 1193, symbol:
1143      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_system_variable">ER_UNKNOWN_SYSTEM_VARIABLE</a>.
1144      */
1145     er_unknown_system_variable = 1193,
1146 
1147     /**
1148      * \brief Common server error. Error number: 1194, symbol:
1149      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_crashed_on_usage">ER_CRASHED_ON_USAGE</a>.
1150      */
1151     er_crashed_on_usage = 1194,
1152 
1153     /**
1154      * \brief Common server error. Error number: 1195, symbol:
1155      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_crashed_on_repair">ER_CRASHED_ON_REPAIR</a>.
1156      */
1157     er_crashed_on_repair = 1195,
1158 
1159     /**
1160      * \brief Common server error. Error number: 1196, symbol:
1161      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warning_not_complete_rollback">ER_WARNING_NOT_COMPLETE_ROLLBACK</a>.
1162      */
1163     er_warning_not_complete_rollback = 1196,
1164 
1165     /**
1166      * \brief Common server error. Error number: 1197, symbol:
1167      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trans_cache_full">ER_TRANS_CACHE_FULL</a>.
1168      */
1169     er_trans_cache_full = 1197,
1170 
1171     /**
1172      * \brief Common server error. Error number: 1198, symbol:
1173      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_must_stop">ER_SLAVE_MUST_STOP</a>.
1174      */
1175     er_slave_must_stop = 1198,
1176 
1177     /**
1178      * \brief Common server error. Error number: 1199, symbol:
1179      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_not_running">ER_SLAVE_NOT_RUNNING</a>.
1180      */
1181     er_slave_not_running = 1199,
1182 
1183     /**
1184      * \brief Common server error. Error number: 1200, symbol:
1185      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_slave">ER_BAD_SLAVE</a>.
1186      */
1187     er_bad_slave = 1200,
1188 
1189     /**
1190      * \brief Common server error. Error number: 1201, symbol:
1191      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_master_info">ER_MASTER_INFO</a>.
1192      */
1193     er_master_info = 1201,
1194 
1195     /**
1196      * \brief Common server error. Error number: 1202, symbol:
1197      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_thread">ER_SLAVE_THREAD</a>.
1198      */
1199     er_slave_thread = 1202,
1200 
1201     /**
1202      * \brief Common server error. Error number: 1203, symbol:
1203      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_user_connections">ER_TOO_MANY_USER_CONNECTIONS</a>.
1204      */
1205     er_too_many_user_connections = 1203,
1206 
1207     /**
1208      * \brief Common server error. Error number: 1204, symbol:
1209      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_set_constants_only">ER_SET_CONSTANTS_ONLY</a>.
1210      */
1211     er_set_constants_only = 1204,
1212 
1213     /**
1214      * \brief Common server error. Error number: 1205, symbol:
1215      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_lock_wait_timeout">ER_LOCK_WAIT_TIMEOUT</a>.
1216      */
1217     er_lock_wait_timeout = 1205,
1218 
1219     /**
1220      * \brief Common server error. Error number: 1206, symbol:
1221      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_lock_table_full">ER_LOCK_TABLE_FULL</a>.
1222      */
1223     er_lock_table_full = 1206,
1224 
1225     /**
1226      * \brief Common server error. Error number: 1207, symbol:
1227      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_read_only_transaction">ER_READ_ONLY_TRANSACTION</a>.
1228      */
1229     er_read_only_transaction = 1207,
1230 
1231     /**
1232      * \brief Common server error. Error number: 1208, symbol:
1233      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_drop_db_with_read_lock">ER_DROP_DB_WITH_READ_LOCK</a>.
1234      */
1235     er_drop_db_with_read_lock = 1208,
1236 
1237     /**
1238      * \brief Common server error. Error number: 1209, symbol:
1239      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_create_db_with_read_lock">ER_CREATE_DB_WITH_READ_LOCK</a>.
1240      */
1241     er_create_db_with_read_lock = 1209,
1242 
1243     /**
1244      * \brief Common server error. Error number: 1210, symbol:
1245      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_arguments">ER_WRONG_ARGUMENTS</a>.
1246      */
1247     er_wrong_arguments = 1210,
1248 
1249     /**
1250      * \brief Common server error. Error number: 1211, symbol:
1251      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_permission_to_create_user">ER_NO_PERMISSION_TO_CREATE_USER</a>.
1252      */
1253     er_no_permission_to_create_user = 1211,
1254 
1255     /**
1256      * \brief Common server error. Error number: 1212, symbol:
1257      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_union_tables_in_different_dir">ER_UNION_TABLES_IN_DIFFERENT_DIR</a>.
1258      */
1259     er_union_tables_in_different_dir = 1212,
1260 
1261     /**
1262      * \brief Common server error. Error number: 1213, symbol:
1263      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_lock_deadlock">ER_LOCK_DEADLOCK</a>.
1264      */
1265     er_lock_deadlock = 1213,
1266 
1267     /**
1268      * \brief Common server error. Error number: 1214, symbol:
1269      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_cant_handle_ft">ER_TABLE_CANT_HANDLE_FT</a>.
1270      */
1271     er_table_cant_handle_ft = 1214,
1272 
1273     /**
1274      * \brief Common server error. Error number: 1215, symbol:
1275      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cannot_add_foreign">ER_CANNOT_ADD_FOREIGN</a>.
1276      */
1277     er_cannot_add_foreign = 1215,
1278 
1279     /**
1280      * \brief Common server error. Error number: 1216, symbol:
1281      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_referenced_row">ER_NO_REFERENCED_ROW</a>.
1282      */
1283     er_no_referenced_row = 1216,
1284 
1285     /**
1286      * \brief Common server error. Error number: 1217, symbol:
1287      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_row_is_referenced">ER_ROW_IS_REFERENCED</a>.
1288      */
1289     er_row_is_referenced = 1217,
1290 
1291     /**
1292      * \brief Common server error. Error number: 1218, symbol:
1293      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_connect_to_master">ER_CONNECT_TO_MASTER</a>.
1294      */
1295     er_connect_to_master = 1218,
1296 
1297     /**
1298      * \brief Common server error. Error number: 1219, symbol:
1299      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_query_on_master">ER_QUERY_ON_MASTER</a>.
1300      */
1301     er_query_on_master = 1219,
1302 
1303     /**
1304      * \brief Common server error. Error number: 1220, symbol:
1305      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_when_executing_command">ER_ERROR_WHEN_EXECUTING_COMMAND</a>.
1306      */
1307     er_error_when_executing_command = 1220,
1308 
1309     /**
1310      * \brief Common server error. Error number: 1221, symbol:
1311      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_usage">ER_WRONG_USAGE</a>.
1312      */
1313     er_wrong_usage = 1221,
1314 
1315     /**
1316      * \brief Common server error. Error number: 1222, symbol:
1317      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_number_of_columns_in_select">ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT</a>.
1318      */
1319     er_wrong_number_of_columns_in_select = 1222,
1320 
1321     /**
1322      * \brief Common server error. Error number: 1223, symbol:
1323      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_update_with_readlock">ER_CANT_UPDATE_WITH_READLOCK</a>.
1324      */
1325     er_cant_update_with_readlock = 1223,
1326 
1327     /**
1328      * \brief Common server error. Error number: 1224, symbol:
1329      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mixing_not_allowed">ER_MIXING_NOT_ALLOWED</a>.
1330      */
1331     er_mixing_not_allowed = 1224,
1332 
1333     /**
1334      * \brief Common server error. Error number: 1225, symbol:
1335      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_argument">ER_DUP_ARGUMENT</a>.
1336      */
1337     er_dup_argument = 1225,
1338 
1339     /**
1340      * \brief Common server error. Error number: 1226, symbol:
1341      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_user_limit_reached">ER_USER_LIMIT_REACHED</a>.
1342      */
1343     er_user_limit_reached = 1226,
1344 
1345     /**
1346      * \brief Common server error. Error number: 1227, symbol:
1347      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_specific_access_denied_error">ER_SPECIFIC_ACCESS_DENIED_ERROR</a>.
1348      */
1349     er_specific_access_denied_error = 1227,
1350 
1351     /**
1352      * \brief Common server error. Error number: 1228, symbol:
1353      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_local_variable">ER_LOCAL_VARIABLE</a>.
1354      */
1355     er_local_variable = 1228,
1356 
1357     /**
1358      * \brief Common server error. Error number: 1229, symbol:
1359      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_global_variable">ER_GLOBAL_VARIABLE</a>.
1360      */
1361     er_global_variable = 1229,
1362 
1363     /**
1364      * \brief Common server error. Error number: 1230, symbol:
1365      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_default">ER_NO_DEFAULT</a>.
1366      */
1367     er_no_default = 1230,
1368 
1369     /**
1370      * \brief Common server error. Error number: 1231, symbol:
1371      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_value_for_var">ER_WRONG_VALUE_FOR_VAR</a>.
1372      */
1373     er_wrong_value_for_var = 1231,
1374 
1375     /**
1376      * \brief Common server error. Error number: 1232, symbol:
1377      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_type_for_var">ER_WRONG_TYPE_FOR_VAR</a>.
1378      */
1379     er_wrong_type_for_var = 1232,
1380 
1381     /**
1382      * \brief Common server error. Error number: 1233, symbol:
1383      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_var_cant_be_read">ER_VAR_CANT_BE_READ</a>.
1384      */
1385     er_var_cant_be_read = 1233,
1386 
1387     /**
1388      * \brief Common server error. Error number: 1234, symbol:
1389      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_use_option_here">ER_CANT_USE_OPTION_HERE</a>.
1390      */
1391     er_cant_use_option_here = 1234,
1392 
1393     /**
1394      * \brief Common server error. Error number: 1235, symbol:
1395      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_not_supported_yet">ER_NOT_SUPPORTED_YET</a>.
1396      */
1397     er_not_supported_yet = 1235,
1398 
1399     /**
1400      * \brief Common server error. Error number: 1236, symbol:
1401      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_master_fatal_error_reading_binlog">ER_MASTER_FATAL_ERROR_READING_BINLOG</a>.
1402      */
1403     er_master_fatal_error_reading_binlog = 1236,
1404 
1405     /**
1406      * \brief Common server error. Error number: 1237, symbol:
1407      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_ignored_table">ER_SLAVE_IGNORED_TABLE</a>.
1408      */
1409     er_slave_ignored_table = 1237,
1410 
1411     /**
1412      * \brief Common server error. Error number: 1238, symbol:
1413      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_incorrect_global_local_var">ER_INCORRECT_GLOBAL_LOCAL_VAR</a>.
1414      */
1415     er_incorrect_global_local_var = 1238,
1416 
1417     /**
1418      * \brief Common server error. Error number: 1239, symbol:
1419      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_fk_def">ER_WRONG_FK_DEF</a>.
1420      */
1421     er_wrong_fk_def = 1239,
1422 
1423     /**
1424      * \brief Common server error. Error number: 1240, symbol:
1425      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_key_ref_do_not_match_table_ref">ER_KEY_REF_DO_NOT_MATCH_TABLE_REF</a>.
1426      */
1427     er_key_ref_do_not_match_table_ref = 1240,
1428 
1429     /**
1430      * \brief Common server error. Error number: 1241, symbol:
1431      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_operand_columns">ER_OPERAND_COLUMNS</a>.
1432      */
1433     er_operand_columns = 1241,
1434 
1435     /**
1436      * \brief Common server error. Error number: 1242, symbol:
1437      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_subquery_no_1_row">ER_SUBQUERY_NO_1_ROW</a>.
1438      */
1439     er_subquery_no_1_row = 1242,
1440 
1441     /**
1442      * \brief Common server error. Error number: 1243, symbol:
1443      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_stmt_handler">ER_UNKNOWN_STMT_HANDLER</a>.
1444      */
1445     er_unknown_stmt_handler = 1243,
1446 
1447     /**
1448      * \brief Common server error. Error number: 1244, symbol:
1449      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_corrupt_help_db">ER_CORRUPT_HELP_DB</a>.
1450      */
1451     er_corrupt_help_db = 1244,
1452 
1453     /**
1454      * \brief Common server error. Error number: 1245, symbol:
1455      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cyclic_reference">ER_CYCLIC_REFERENCE</a>.
1456      */
1457     er_cyclic_reference = 1245,
1458 
1459     /**
1460      * \brief Common server error. Error number: 1246, symbol:
1461      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_auto_convert">ER_AUTO_CONVERT</a>.
1462      */
1463     er_auto_convert = 1246,
1464 
1465     /**
1466      * \brief Common server error. Error number: 1247, symbol:
1467      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_illegal_reference">ER_ILLEGAL_REFERENCE</a>.
1468      */
1469     er_illegal_reference = 1247,
1470 
1471     /**
1472      * \brief Common server error. Error number: 1248, symbol:
1473      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_derived_must_have_alias">ER_DERIVED_MUST_HAVE_ALIAS</a>.
1474      */
1475     er_derived_must_have_alias = 1248,
1476 
1477     /**
1478      * \brief Common server error. Error number: 1249, symbol:
1479      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_select_reduced">ER_SELECT_REDUCED</a>.
1480      */
1481     er_select_reduced = 1249,
1482 
1483     /**
1484      * \brief Common server error. Error number: 1250, symbol:
1485      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tablename_not_allowed_here">ER_TABLENAME_NOT_ALLOWED_HERE</a>.
1486      */
1487     er_tablename_not_allowed_here = 1250,
1488 
1489     /**
1490      * \brief Common server error. Error number: 1251, symbol:
1491      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_not_supported_auth_mode">ER_NOT_SUPPORTED_AUTH_MODE</a>.
1492      */
1493     er_not_supported_auth_mode = 1251,
1494 
1495     /**
1496      * \brief Common server error. Error number: 1252, symbol:
1497      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_spatial_cant_have_null">ER_SPATIAL_CANT_HAVE_NULL</a>.
1498      */
1499     er_spatial_cant_have_null = 1252,
1500 
1501     /**
1502      * \brief Common server error. Error number: 1253, symbol:
1503      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_collation_charset_mismatch">ER_COLLATION_CHARSET_MISMATCH</a>.
1504      */
1505     er_collation_charset_mismatch = 1253,
1506 
1507     /**
1508      * \brief Common server error. Error number: 1254, symbol:
1509      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_was_running">ER_SLAVE_WAS_RUNNING</a>.
1510      */
1511     er_slave_was_running = 1254,
1512 
1513     /**
1514      * \brief Common server error. Error number: 1255, symbol:
1515      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_was_not_running">ER_SLAVE_WAS_NOT_RUNNING</a>.
1516      */
1517     er_slave_was_not_running = 1255,
1518 
1519     /**
1520      * \brief Common server error. Error number: 1256, symbol:
1521      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_big_for_uncompress">ER_TOO_BIG_FOR_UNCOMPRESS</a>.
1522      */
1523     er_too_big_for_uncompress = 1256,
1524 
1525     /**
1526      * \brief Common server error. Error number: 1257, symbol:
1527      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_zlib_z_mem_error">ER_ZLIB_Z_MEM_ERROR</a>.
1528      */
1529     er_zlib_z_mem_error = 1257,
1530 
1531     /**
1532      * \brief Common server error. Error number: 1258, symbol:
1533      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_zlib_z_buf_error">ER_ZLIB_Z_BUF_ERROR</a>.
1534      */
1535     er_zlib_z_buf_error = 1258,
1536 
1537     /**
1538      * \brief Common server error. Error number: 1259, symbol:
1539      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_zlib_z_data_error">ER_ZLIB_Z_DATA_ERROR</a>.
1540      */
1541     er_zlib_z_data_error = 1259,
1542 
1543     /**
1544      * \brief Common server error. Error number: 1260, symbol:
1545      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cut_value_group_concat">ER_CUT_VALUE_GROUP_CONCAT</a>.
1546      */
1547     er_cut_value_group_concat = 1260,
1548 
1549     /**
1550      * \brief Common server error. Error number: 1261, symbol:
1551      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_too_few_records">ER_WARN_TOO_FEW_RECORDS</a>.
1552      */
1553     er_warn_too_few_records = 1261,
1554 
1555     /**
1556      * \brief Common server error. Error number: 1262, symbol:
1557      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_too_many_records">ER_WARN_TOO_MANY_RECORDS</a>.
1558      */
1559     er_warn_too_many_records = 1262,
1560 
1561     /**
1562      * \brief Common server error. Error number: 1263, symbol:
1563      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_null_to_notnull">ER_WARN_NULL_TO_NOTNULL</a>.
1564      */
1565     er_warn_null_to_notnull = 1263,
1566 
1567     /**
1568      * \brief Common server error. Error number: 1264, symbol:
1569      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_data_out_of_range">ER_WARN_DATA_OUT_OF_RANGE</a>.
1570      */
1571     er_warn_data_out_of_range = 1264,
1572 
1573     /**
1574      * \brief Common server error. Error number: 1265, symbol:
1575      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_data_truncated">WARN_DATA_TRUNCATED</a>.
1576      */
1577     warn_data_truncated = 1265,
1578 
1579     /**
1580      * \brief Common server error. Error number: 1266, symbol:
1581      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_using_other_handler">ER_WARN_USING_OTHER_HANDLER</a>.
1582      */
1583     er_warn_using_other_handler = 1266,
1584 
1585     /**
1586      * \brief Common server error. Error number: 1267, symbol:
1587      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_aggregate_2collations">ER_CANT_AGGREGATE_2COLLATIONS</a>.
1588      */
1589     er_cant_aggregate_2collations = 1267,
1590 
1591     /**
1592      * \brief Common server error. Error number: 1268, symbol:
1593      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_drop_user">ER_DROP_USER</a>.
1594      */
1595     er_drop_user = 1268,
1596 
1597     /**
1598      * \brief Common server error. Error number: 1269, symbol:
1599      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_revoke_grants">ER_REVOKE_GRANTS</a>.
1600      */
1601     er_revoke_grants = 1269,
1602 
1603     /**
1604      * \brief Common server error. Error number: 1270, symbol:
1605      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_aggregate_3collations">ER_CANT_AGGREGATE_3COLLATIONS</a>.
1606      */
1607     er_cant_aggregate_3collations = 1270,
1608 
1609     /**
1610      * \brief Common server error. Error number: 1271, symbol:
1611      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_aggregate_ncollations">ER_CANT_AGGREGATE_NCOLLATIONS</a>.
1612      */
1613     er_cant_aggregate_ncollations = 1271,
1614 
1615     /**
1616      * \brief Common server error. Error number: 1272, symbol:
1617      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_variable_is_not_struct">ER_VARIABLE_IS_NOT_STRUCT</a>.
1618      */
1619     er_variable_is_not_struct = 1272,
1620 
1621     /**
1622      * \brief Common server error. Error number: 1273, symbol:
1623      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_collation">ER_UNKNOWN_COLLATION</a>.
1624      */
1625     er_unknown_collation = 1273,
1626 
1627     /**
1628      * \brief Common server error. Error number: 1274, symbol:
1629      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_ignored_ssl_params">ER_SLAVE_IGNORED_SSL_PARAMS</a>.
1630      */
1631     er_slave_ignored_ssl_params = 1274,
1632 
1633     /**
1634      * \brief Common server error. Error number: 1275, symbol:
1635      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_server_is_in_secure_auth_mode">ER_SERVER_IS_IN_SECURE_AUTH_MODE</a>.
1636      */
1637     er_server_is_in_secure_auth_mode = 1275,
1638 
1639     /**
1640      * \brief Common server error. Error number: 1276, symbol:
1641      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_field_resolved">ER_WARN_FIELD_RESOLVED</a>.
1642      */
1643     er_warn_field_resolved = 1276,
1644 
1645     /**
1646      * \brief Common server error. Error number: 1277, symbol:
1647      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_slave_until_cond">ER_BAD_SLAVE_UNTIL_COND</a>.
1648      */
1649     er_bad_slave_until_cond = 1277,
1650 
1651     /**
1652      * \brief Common server error. Error number: 1278, symbol:
1653      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_missing_skip_slave">ER_MISSING_SKIP_SLAVE</a>.
1654      */
1655     er_missing_skip_slave = 1278,
1656 
1657     /**
1658      * \brief Common server error. Error number: 1279, symbol:
1659      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_until_cond_ignored">ER_UNTIL_COND_IGNORED</a>.
1660      */
1661     er_until_cond_ignored = 1279,
1662 
1663     /**
1664      * \brief Common server error. Error number: 1280, symbol:
1665      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_name_for_index">ER_WRONG_NAME_FOR_INDEX</a>.
1666      */
1667     er_wrong_name_for_index = 1280,
1668 
1669     /**
1670      * \brief Common server error. Error number: 1281, symbol:
1671      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_name_for_catalog">ER_WRONG_NAME_FOR_CATALOG</a>.
1672      */
1673     er_wrong_name_for_catalog = 1281,
1674 
1675     /**
1676      * \brief Common server error. Error number: 1282, symbol:
1677      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_qc_resize">ER_WARN_QC_RESIZE</a>.
1678      */
1679     er_warn_qc_resize = 1282,
1680 
1681     /**
1682      * \brief Common server error. Error number: 1283, symbol:
1683      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_ft_column">ER_BAD_FT_COLUMN</a>.
1684      */
1685     er_bad_ft_column = 1283,
1686 
1687     /**
1688      * \brief Common server error. Error number: 1284, symbol:
1689      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_key_cache">ER_UNKNOWN_KEY_CACHE</a>.
1690      */
1691     er_unknown_key_cache = 1284,
1692 
1693     /**
1694      * \brief Common server error. Error number: 1285, symbol:
1695      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_hostname_wont_work">ER_WARN_HOSTNAME_WONT_WORK</a>.
1696      */
1697     er_warn_hostname_wont_work = 1285,
1698 
1699     /**
1700      * \brief Common server error. Error number: 1286, symbol:
1701      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_storage_engine">ER_UNKNOWN_STORAGE_ENGINE</a>.
1702      */
1703     er_unknown_storage_engine = 1286,
1704 
1705     /**
1706      * \brief Common server error. Error number: 1287, symbol:
1707      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_deprecated_syntax">ER_WARN_DEPRECATED_SYNTAX</a>.
1708      */
1709     er_warn_deprecated_syntax = 1287,
1710 
1711     /**
1712      * \brief Common server error. Error number: 1288, symbol:
1713      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_non_updatable_table">ER_NON_UPDATABLE_TABLE</a>.
1714      */
1715     er_non_updatable_table = 1288,
1716 
1717     /**
1718      * \brief Common server error. Error number: 1289, symbol:
1719      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_feature_disabled">ER_FEATURE_DISABLED</a>.
1720      */
1721     er_feature_disabled = 1289,
1722 
1723     /**
1724      * \brief Common server error. Error number: 1290, symbol:
1725      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_option_prevents_statement">ER_OPTION_PREVENTS_STATEMENT</a>.
1726      */
1727     er_option_prevents_statement = 1290,
1728 
1729     /**
1730      * \brief Common server error. Error number: 1291, symbol:
1731      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_duplicated_value_in_type">ER_DUPLICATED_VALUE_IN_TYPE</a>.
1732      */
1733     er_duplicated_value_in_type = 1291,
1734 
1735     /**
1736      * \brief Common server error. Error number: 1292, symbol:
1737      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_truncated_wrong_value">ER_TRUNCATED_WRONG_VALUE</a>.
1738      */
1739     er_truncated_wrong_value = 1292,
1740 
1741     /**
1742      * \brief Common server error. Error number: 1293, symbol:
1743      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_much_auto_timestamp_cols">ER_TOO_MUCH_AUTO_TIMESTAMP_COLS</a>.
1744      */
1745     er_too_much_auto_timestamp_cols = 1293,
1746 
1747     /**
1748      * \brief Common server error. Error number: 1294, symbol:
1749      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_invalid_on_update">ER_INVALID_ON_UPDATE</a>.
1750      */
1751     er_invalid_on_update = 1294,
1752 
1753     /**
1754      * \brief Common server error. Error number: 1295, symbol:
1755      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unsupported_ps">ER_UNSUPPORTED_PS</a>.
1756      */
1757     er_unsupported_ps = 1295,
1758 
1759     /**
1760      * \brief Common server error. Error number: 1296, symbol:
1761      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_get_errmsg">ER_GET_ERRMSG</a>.
1762      */
1763     er_get_errmsg = 1296,
1764 
1765     /**
1766      * \brief Common server error. Error number: 1297, symbol:
1767      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_get_temporary_errmsg">ER_GET_TEMPORARY_ERRMSG</a>.
1768      */
1769     er_get_temporary_errmsg = 1297,
1770 
1771     /**
1772      * \brief Common server error. Error number: 1298, symbol:
1773      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_time_zone">ER_UNKNOWN_TIME_ZONE</a>.
1774      */
1775     er_unknown_time_zone = 1298,
1776 
1777     /**
1778      * \brief Common server error. Error number: 1299, symbol:
1779      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_invalid_timestamp">ER_WARN_INVALID_TIMESTAMP</a>.
1780      */
1781     er_warn_invalid_timestamp = 1299,
1782 
1783     /**
1784      * \brief Common server error. Error number: 1300, symbol:
1785      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_invalid_character_string">ER_INVALID_CHARACTER_STRING</a>.
1786      */
1787     er_invalid_character_string = 1300,
1788 
1789     /**
1790      * \brief Common server error. Error number: 1301, symbol:
1791      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_allowed_packet_overflowed">ER_WARN_ALLOWED_PACKET_OVERFLOWED</a>.
1792      */
1793     er_warn_allowed_packet_overflowed = 1301,
1794 
1795     /**
1796      * \brief Common server error. Error number: 1302, symbol:
1797      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_conflicting_declarations">ER_CONFLICTING_DECLARATIONS</a>.
1798      */
1799     er_conflicting_declarations = 1302,
1800 
1801     /**
1802      * \brief Common server error. Error number: 1303, symbol:
1803      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_no_recursive_create">ER_SP_NO_RECURSIVE_CREATE</a>.
1804      */
1805     er_sp_no_recursive_create = 1303,
1806 
1807     /**
1808      * \brief Common server error. Error number: 1304, symbol:
1809      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_already_exists">ER_SP_ALREADY_EXISTS</a>.
1810      */
1811     er_sp_already_exists = 1304,
1812 
1813     /**
1814      * \brief Common server error. Error number: 1305, symbol:
1815      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_does_not_exist">ER_SP_DOES_NOT_EXIST</a>.
1816      */
1817     er_sp_does_not_exist = 1305,
1818 
1819     /**
1820      * \brief Common server error. Error number: 1306, symbol:
1821      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_drop_failed">ER_SP_DROP_FAILED</a>.
1822      */
1823     er_sp_drop_failed = 1306,
1824 
1825     /**
1826      * \brief Common server error. Error number: 1307, symbol:
1827      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_store_failed">ER_SP_STORE_FAILED</a>.
1828      */
1829     er_sp_store_failed = 1307,
1830 
1831     /**
1832      * \brief Common server error. Error number: 1308, symbol:
1833      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_lilabel_mismatch">ER_SP_LILABEL_MISMATCH</a>.
1834      */
1835     er_sp_lilabel_mismatch = 1308,
1836 
1837     /**
1838      * \brief Common server error. Error number: 1309, symbol:
1839      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_label_redefine">ER_SP_LABEL_REDEFINE</a>.
1840      */
1841     er_sp_label_redefine = 1309,
1842 
1843     /**
1844      * \brief Common server error. Error number: 1310, symbol:
1845      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_label_mismatch">ER_SP_LABEL_MISMATCH</a>.
1846      */
1847     er_sp_label_mismatch = 1310,
1848 
1849     /**
1850      * \brief Common server error. Error number: 1311, symbol:
1851      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_uninit_var">ER_SP_UNINIT_VAR</a>.
1852      */
1853     er_sp_uninit_var = 1311,
1854 
1855     /**
1856      * \brief Common server error. Error number: 1312, symbol:
1857      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_badselect">ER_SP_BADSELECT</a>.
1858      */
1859     er_sp_badselect = 1312,
1860 
1861     /**
1862      * \brief Common server error. Error number: 1313, symbol:
1863      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_badreturn">ER_SP_BADRETURN</a>.
1864      */
1865     er_sp_badreturn = 1313,
1866 
1867     /**
1868      * \brief Common server error. Error number: 1314, symbol:
1869      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_badstatement">ER_SP_BADSTATEMENT</a>.
1870      */
1871     er_sp_badstatement = 1314,
1872 
1873     /**
1874      * \brief Common server error. Error number: 1315, symbol:
1875      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_update_log_deprecated_ignored">ER_UPDATE_LOG_DEPRECATED_IGNORED</a>.
1876      */
1877     er_update_log_deprecated_ignored = 1315,
1878 
1879     /**
1880      * \brief Common server error. Error number: 1316, symbol:
1881      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_update_log_deprecated_translated">ER_UPDATE_LOG_DEPRECATED_TRANSLATED</a>.
1882      */
1883     er_update_log_deprecated_translated = 1316,
1884 
1885     /**
1886      * \brief Common server error. Error number: 1317, symbol:
1887      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_query_interrupted">ER_QUERY_INTERRUPTED</a>.
1888      */
1889     er_query_interrupted = 1317,
1890 
1891     /**
1892      * \brief Common server error. Error number: 1318, symbol:
1893      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_wrong_no_of_args">ER_SP_WRONG_NO_OF_ARGS</a>.
1894      */
1895     er_sp_wrong_no_of_args = 1318,
1896 
1897     /**
1898      * \brief Common server error. Error number: 1319, symbol:
1899      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_cond_mismatch">ER_SP_COND_MISMATCH</a>.
1900      */
1901     er_sp_cond_mismatch = 1319,
1902 
1903     /**
1904      * \brief Common server error. Error number: 1320, symbol:
1905      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_noreturn">ER_SP_NORETURN</a>.
1906      */
1907     er_sp_noreturn = 1320,
1908 
1909     /**
1910      * \brief Common server error. Error number: 1321, symbol:
1911      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_noreturnend">ER_SP_NORETURNEND</a>.
1912      */
1913     er_sp_noreturnend = 1321,
1914 
1915     /**
1916      * \brief Common server error. Error number: 1322, symbol:
1917      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_bad_cursor_query">ER_SP_BAD_CURSOR_QUERY</a>.
1918      */
1919     er_sp_bad_cursor_query = 1322,
1920 
1921     /**
1922      * \brief Common server error. Error number: 1323, symbol:
1923      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_bad_cursor_select">ER_SP_BAD_CURSOR_SELECT</a>.
1924      */
1925     er_sp_bad_cursor_select = 1323,
1926 
1927     /**
1928      * \brief Common server error. Error number: 1324, symbol:
1929      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_cursor_mismatch">ER_SP_CURSOR_MISMATCH</a>.
1930      */
1931     er_sp_cursor_mismatch = 1324,
1932 
1933     /**
1934      * \brief Common server error. Error number: 1325, symbol:
1935      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_cursor_already_open">ER_SP_CURSOR_ALREADY_OPEN</a>.
1936      */
1937     er_sp_cursor_already_open = 1325,
1938 
1939     /**
1940      * \brief Common server error. Error number: 1326, symbol:
1941      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_cursor_not_open">ER_SP_CURSOR_NOT_OPEN</a>.
1942      */
1943     er_sp_cursor_not_open = 1326,
1944 
1945     /**
1946      * \brief Common server error. Error number: 1327, symbol:
1947      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_undeclared_var">ER_SP_UNDECLARED_VAR</a>.
1948      */
1949     er_sp_undeclared_var = 1327,
1950 
1951     /**
1952      * \brief Common server error. Error number: 1328, symbol:
1953      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_wrong_no_of_fetch_args">ER_SP_WRONG_NO_OF_FETCH_ARGS</a>.
1954      */
1955     er_sp_wrong_no_of_fetch_args = 1328,
1956 
1957     /**
1958      * \brief Common server error. Error number: 1329, symbol:
1959      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_fetch_no_data">ER_SP_FETCH_NO_DATA</a>.
1960      */
1961     er_sp_fetch_no_data = 1329,
1962 
1963     /**
1964      * \brief Common server error. Error number: 1330, symbol:
1965      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_dup_param">ER_SP_DUP_PARAM</a>.
1966      */
1967     er_sp_dup_param = 1330,
1968 
1969     /**
1970      * \brief Common server error. Error number: 1331, symbol:
1971      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_dup_var">ER_SP_DUP_VAR</a>.
1972      */
1973     er_sp_dup_var = 1331,
1974 
1975     /**
1976      * \brief Common server error. Error number: 1332, symbol:
1977      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_dup_cond">ER_SP_DUP_COND</a>.
1978      */
1979     er_sp_dup_cond = 1332,
1980 
1981     /**
1982      * \brief Common server error. Error number: 1333, symbol:
1983      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_dup_curs">ER_SP_DUP_CURS</a>.
1984      */
1985     er_sp_dup_curs = 1333,
1986 
1987     /**
1988      * \brief Common server error. Error number: 1334, symbol:
1989      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_cant_alter">ER_SP_CANT_ALTER</a>.
1990      */
1991     er_sp_cant_alter = 1334,
1992 
1993     /**
1994      * \brief Common server error. Error number: 1335, symbol:
1995      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_subselect_nyi">ER_SP_SUBSELECT_NYI</a>.
1996      */
1997     er_sp_subselect_nyi = 1335,
1998 
1999     /**
2000      * \brief Common server error. Error number: 1336, symbol:
2001      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stmt_not_allowed_in_sf_or_trg">ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG</a>.
2002      */
2003     er_stmt_not_allowed_in_sf_or_trg = 1336,
2004 
2005     /**
2006      * \brief Common server error. Error number: 1337, symbol:
2007      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_varcond_after_curshndlr">ER_SP_VARCOND_AFTER_CURSHNDLR</a>.
2008      */
2009     er_sp_varcond_after_curshndlr = 1337,
2010 
2011     /**
2012      * \brief Common server error. Error number: 1338, symbol:
2013      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_cursor_after_handler">ER_SP_CURSOR_AFTER_HANDLER</a>.
2014      */
2015     er_sp_cursor_after_handler = 1338,
2016 
2017     /**
2018      * \brief Common server error. Error number: 1339, symbol:
2019      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_case_not_found">ER_SP_CASE_NOT_FOUND</a>.
2020      */
2021     er_sp_case_not_found = 1339,
2022 
2023     /**
2024      * \brief Common server error. Error number: 1340, symbol:
2025      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fparser_too_big_file">ER_FPARSER_TOO_BIG_FILE</a>.
2026      */
2027     er_fparser_too_big_file = 1340,
2028 
2029     /**
2030      * \brief Common server error. Error number: 1341, symbol:
2031      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fparser_bad_header">ER_FPARSER_BAD_HEADER</a>.
2032      */
2033     er_fparser_bad_header = 1341,
2034 
2035     /**
2036      * \brief Common server error. Error number: 1342, symbol:
2037      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fparser_eof_in_comment">ER_FPARSER_EOF_IN_COMMENT</a>.
2038      */
2039     er_fparser_eof_in_comment = 1342,
2040 
2041     /**
2042      * \brief Common server error. Error number: 1343, symbol:
2043      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fparser_error_in_parameter">ER_FPARSER_ERROR_IN_PARAMETER</a>.
2044      */
2045     er_fparser_error_in_parameter = 1343,
2046 
2047     /**
2048      * \brief Common server error. Error number: 1344, symbol:
2049      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fparser_eof_in_unknown_parameter">ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER</a>.
2050      */
2051     er_fparser_eof_in_unknown_parameter = 1344,
2052 
2053     /**
2054      * \brief Common server error. Error number: 1345, symbol:
2055      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_no_explain">ER_VIEW_NO_EXPLAIN</a>.
2056      */
2057     er_view_no_explain = 1345,
2058 
2059     /**
2060      * \brief Common server error. Error number: 1346, symbol:
2061      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_frm_unknown_type">ER_FRM_UNKNOWN_TYPE</a>.
2062      */
2063     er_frm_unknown_type = 1346,
2064 
2065     /**
2066      * \brief Common server error. Error number: 1347, symbol:
2067      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_object">ER_WRONG_OBJECT</a>.
2068      */
2069     er_wrong_object = 1347,
2070 
2071     /**
2072      * \brief Common server error. Error number: 1348, symbol:
2073      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nonupdateable_column">ER_NONUPDATEABLE_COLUMN</a>.
2074      */
2075     er_nonupdateable_column = 1348,
2076 
2077     /**
2078      * \brief Common server error. Error number: 1350, symbol:
2079      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_select_clause">ER_VIEW_SELECT_CLAUSE</a>.
2080      */
2081     er_view_select_clause = 1350,
2082 
2083     /**
2084      * \brief Common server error. Error number: 1351, symbol:
2085      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_select_variable">ER_VIEW_SELECT_VARIABLE</a>.
2086      */
2087     er_view_select_variable = 1351,
2088 
2089     /**
2090      * \brief Common server error. Error number: 1352, symbol:
2091      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_select_tmptable">ER_VIEW_SELECT_TMPTABLE</a>.
2092      */
2093     er_view_select_tmptable = 1352,
2094 
2095     /**
2096      * \brief Common server error. Error number: 1353, symbol:
2097      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_wrong_list">ER_VIEW_WRONG_LIST</a>.
2098      */
2099     er_view_wrong_list = 1353,
2100 
2101     /**
2102      * \brief Common server error. Error number: 1354, symbol:
2103      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_view_merge">ER_WARN_VIEW_MERGE</a>.
2104      */
2105     er_warn_view_merge = 1354,
2106 
2107     /**
2108      * \brief Common server error. Error number: 1355, symbol:
2109      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_view_without_key">ER_WARN_VIEW_WITHOUT_KEY</a>.
2110      */
2111     er_warn_view_without_key = 1355,
2112 
2113     /**
2114      * \brief Common server error. Error number: 1356, symbol:
2115      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_invalid">ER_VIEW_INVALID</a>.
2116      */
2117     er_view_invalid = 1356,
2118 
2119     /**
2120      * \brief Common server error. Error number: 1357, symbol:
2121      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_no_drop_sp">ER_SP_NO_DROP_SP</a>.
2122      */
2123     er_sp_no_drop_sp = 1357,
2124 
2125     /**
2126      * \brief Common server error. Error number: 1358, symbol:
2127      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_goto_in_hndlr">ER_SP_GOTO_IN_HNDLR</a>.
2128      */
2129     er_sp_goto_in_hndlr = 1358,
2130 
2131     /**
2132      * \brief Common server error. Error number: 1359, symbol:
2133      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_already_exists">ER_TRG_ALREADY_EXISTS</a>.
2134      */
2135     er_trg_already_exists = 1359,
2136 
2137     /**
2138      * \brief Common server error. Error number: 1360, symbol:
2139      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_does_not_exist">ER_TRG_DOES_NOT_EXIST</a>.
2140      */
2141     er_trg_does_not_exist = 1360,
2142 
2143     /**
2144      * \brief Common server error. Error number: 1361, symbol:
2145      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_on_view_or_temp_table">ER_TRG_ON_VIEW_OR_TEMP_TABLE</a>.
2146      */
2147     er_trg_on_view_or_temp_table = 1361,
2148 
2149     /**
2150      * \brief Common server error. Error number: 1362, symbol:
2151      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_cant_change_row">ER_TRG_CANT_CHANGE_ROW</a>.
2152      */
2153     er_trg_cant_change_row = 1362,
2154 
2155     /**
2156      * \brief Common server error. Error number: 1363, symbol:
2157      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_no_such_row_in_trg">ER_TRG_NO_SUCH_ROW_IN_TRG</a>.
2158      */
2159     er_trg_no_such_row_in_trg = 1363,
2160 
2161     /**
2162      * \brief Common server error. Error number: 1364, symbol:
2163      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_default_for_field">ER_NO_DEFAULT_FOR_FIELD</a>.
2164      */
2165     er_no_default_for_field = 1364,
2166 
2167     /**
2168      * \brief Common server error. Error number: 1365, symbol:
2169      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_division_by_zero">ER_DIVISION_BY_ZERO</a>.
2170      */
2171     er_division_by_zero = 1365,
2172 
2173     /**
2174      * \brief Common server error. Error number: 1366, symbol:
2175      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_truncated_wrong_value_for_field">ER_TRUNCATED_WRONG_VALUE_FOR_FIELD</a>.
2176      */
2177     er_truncated_wrong_value_for_field = 1366,
2178 
2179     /**
2180      * \brief Common server error. Error number: 1367, symbol:
2181      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_illegal_value_for_type">ER_ILLEGAL_VALUE_FOR_TYPE</a>.
2182      */
2183     er_illegal_value_for_type = 1367,
2184 
2185     /**
2186      * \brief Common server error. Error number: 1368, symbol:
2187      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_nonupd_check">ER_VIEW_NONUPD_CHECK</a>.
2188      */
2189     er_view_nonupd_check = 1368,
2190 
2191     /**
2192      * \brief Common server error. Error number: 1369, symbol:
2193      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_check_failed">ER_VIEW_CHECK_FAILED</a>.
2194      */
2195     er_view_check_failed = 1369,
2196 
2197     /**
2198      * \brief Common server error. Error number: 1370, symbol:
2199      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_procaccess_denied_error">ER_PROCACCESS_DENIED_ERROR</a>.
2200      */
2201     er_procaccess_denied_error = 1370,
2202 
2203     /**
2204      * \brief Common server error. Error number: 1371, symbol:
2205      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_relay_log_fail">ER_RELAY_LOG_FAIL</a>.
2206      */
2207     er_relay_log_fail = 1371,
2208 
2209     /**
2210      * \brief Common server error. Error number: 1372, symbol:
2211      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_passwd_length">ER_PASSWD_LENGTH</a>.
2212      */
2213     er_passwd_length = 1372,
2214 
2215     /**
2216      * \brief Common server error. Error number: 1373, symbol:
2217      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_target_binlog">ER_UNKNOWN_TARGET_BINLOG</a>.
2218      */
2219     er_unknown_target_binlog = 1373,
2220 
2221     /**
2222      * \brief Common server error. Error number: 1374, symbol:
2223      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_io_err_log_index_read">ER_IO_ERR_LOG_INDEX_READ</a>.
2224      */
2225     er_io_err_log_index_read = 1374,
2226 
2227     /**
2228      * \brief Common server error. Error number: 1375, symbol:
2229      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_purge_prohibited">ER_BINLOG_PURGE_PROHIBITED</a>.
2230      */
2231     er_binlog_purge_prohibited = 1375,
2232 
2233     /**
2234      * \brief Common server error. Error number: 1376, symbol:
2235      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fseek_fail">ER_FSEEK_FAIL</a>.
2236      */
2237     er_fseek_fail = 1376,
2238 
2239     /**
2240      * \brief Common server error. Error number: 1377, symbol:
2241      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_purge_fatal_err">ER_BINLOG_PURGE_FATAL_ERR</a>.
2242      */
2243     er_binlog_purge_fatal_err = 1377,
2244 
2245     /**
2246      * \brief Common server error. Error number: 1378, symbol:
2247      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_log_in_use">ER_LOG_IN_USE</a>.
2248      */
2249     er_log_in_use = 1378,
2250 
2251     /**
2252      * \brief Common server error. Error number: 1379, symbol:
2253      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_log_purge_unknown_err">ER_LOG_PURGE_UNKNOWN_ERR</a>.
2254      */
2255     er_log_purge_unknown_err = 1379,
2256 
2257     /**
2258      * \brief Common server error. Error number: 1380, symbol:
2259      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_relay_log_init">ER_RELAY_LOG_INIT</a>.
2260      */
2261     er_relay_log_init = 1380,
2262 
2263     /**
2264      * \brief Common server error. Error number: 1381, symbol:
2265      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_binary_logging">ER_NO_BINARY_LOGGING</a>.
2266      */
2267     er_no_binary_logging = 1381,
2268 
2269     /**
2270      * \brief Common server error. Error number: 1382, symbol:
2271      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_reserved_syntax">ER_RESERVED_SYNTAX</a>.
2272      */
2273     er_reserved_syntax = 1382,
2274 
2275     /**
2276      * \brief Common server error. Error number: 1383, symbol:
2277      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wsas_failed">ER_WSAS_FAILED</a>.
2278      */
2279     er_wsas_failed = 1383,
2280 
2281     /**
2282      * \brief Common server error. Error number: 1384, symbol:
2283      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_diff_groups_proc">ER_DIFF_GROUPS_PROC</a>.
2284      */
2285     er_diff_groups_proc = 1384,
2286 
2287     /**
2288      * \brief Common server error. Error number: 1385, symbol:
2289      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_group_for_proc">ER_NO_GROUP_FOR_PROC</a>.
2290      */
2291     er_no_group_for_proc = 1385,
2292 
2293     /**
2294      * \brief Common server error. Error number: 1386, symbol:
2295      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_order_with_proc">ER_ORDER_WITH_PROC</a>.
2296      */
2297     er_order_with_proc = 1386,
2298 
2299     /**
2300      * \brief Common server error. Error number: 1387, symbol:
2301      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_logging_prohibit_changing_of">ER_LOGGING_PROHIBIT_CHANGING_OF</a>.
2302      */
2303     er_logging_prohibit_changing_of = 1387,
2304 
2305     /**
2306      * \brief Common server error. Error number: 1388, symbol:
2307      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_file_mapping">ER_NO_FILE_MAPPING</a>.
2308      */
2309     er_no_file_mapping = 1388,
2310 
2311     /**
2312      * \brief Common server error. Error number: 1389, symbol:
2313      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_magic">ER_WRONG_MAGIC</a>.
2314      */
2315     er_wrong_magic = 1389,
2316 
2317     /**
2318      * \brief Common server error. Error number: 1390, symbol:
2319      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_ps_many_param">ER_PS_MANY_PARAM</a>.
2320      */
2321     er_ps_many_param = 1390,
2322 
2323     /**
2324      * \brief Common server error. Error number: 1391, symbol:
2325      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_key_part_0">ER_KEY_PART_0</a>.
2326      */
2327     er_key_part_0 = 1391,
2328 
2329     /**
2330      * \brief Common server error. Error number: 1392, symbol:
2331      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_checksum">ER_VIEW_CHECKSUM</a>.
2332      */
2333     er_view_checksum = 1392,
2334 
2335     /**
2336      * \brief Common server error. Error number: 1393, symbol:
2337      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_multiupdate">ER_VIEW_MULTIUPDATE</a>.
2338      */
2339     er_view_multiupdate = 1393,
2340 
2341     /**
2342      * \brief Common server error. Error number: 1394, symbol:
2343      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_no_insert_field_list">ER_VIEW_NO_INSERT_FIELD_LIST</a>.
2344      */
2345     er_view_no_insert_field_list = 1394,
2346 
2347     /**
2348      * \brief Common server error. Error number: 1395, symbol:
2349      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_delete_merge_view">ER_VIEW_DELETE_MERGE_VIEW</a>.
2350      */
2351     er_view_delete_merge_view = 1395,
2352 
2353     /**
2354      * \brief Common server error. Error number: 1396, symbol:
2355      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cannot_user">ER_CANNOT_USER</a>.
2356      */
2357     er_cannot_user = 1396,
2358 
2359     /**
2360      * \brief Common server error. Error number: 1397, symbol:
2361      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_nota">ER_XAER_NOTA</a>.
2362      */
2363     er_xaer_nota = 1397,
2364 
2365     /**
2366      * \brief Common server error. Error number: 1398, symbol:
2367      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_inval">ER_XAER_INVAL</a>.
2368      */
2369     er_xaer_inval = 1398,
2370 
2371     /**
2372      * \brief Common server error. Error number: 1399, symbol:
2373      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_rmfail">ER_XAER_RMFAIL</a>.
2374      */
2375     er_xaer_rmfail = 1399,
2376 
2377     /**
2378      * \brief Common server error. Error number: 1400, symbol:
2379      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_outside">ER_XAER_OUTSIDE</a>.
2380      */
2381     er_xaer_outside = 1400,
2382 
2383     /**
2384      * \brief Common server error. Error number: 1401, symbol:
2385      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_rmerr">ER_XAER_RMERR</a>.
2386      */
2387     er_xaer_rmerr = 1401,
2388 
2389     /**
2390      * \brief Common server error. Error number: 1402, symbol:
2391      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xa_rbrollback">ER_XA_RBROLLBACK</a>.
2392      */
2393     er_xa_rbrollback = 1402,
2394 
2395     /**
2396      * \brief Common server error. Error number: 1403, symbol:
2397      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nonexisting_proc_grant">ER_NONEXISTING_PROC_GRANT</a>.
2398      */
2399     er_nonexisting_proc_grant = 1403,
2400 
2401     /**
2402      * \brief Common server error. Error number: 1404, symbol:
2403      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_proc_auto_grant_fail">ER_PROC_AUTO_GRANT_FAIL</a>.
2404      */
2405     er_proc_auto_grant_fail = 1404,
2406 
2407     /**
2408      * \brief Common server error. Error number: 1405, symbol:
2409      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_proc_auto_revoke_fail">ER_PROC_AUTO_REVOKE_FAIL</a>.
2410      */
2411     er_proc_auto_revoke_fail = 1405,
2412 
2413     /**
2414      * \brief Common server error. Error number: 1406, symbol:
2415      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_data_too_long">ER_DATA_TOO_LONG</a>.
2416      */
2417     er_data_too_long = 1406,
2418 
2419     /**
2420      * \brief Common server error. Error number: 1407, symbol:
2421      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_bad_sqlstate">ER_SP_BAD_SQLSTATE</a>.
2422      */
2423     er_sp_bad_sqlstate = 1407,
2424 
2425     /**
2426      * \brief Common server error. Error number: 1408, symbol:
2427      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_startup">ER_STARTUP</a>.
2428      */
2429     er_startup = 1408,
2430 
2431     /**
2432      * \brief Common server error. Error number: 1409, symbol:
2433      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_load_from_fixed_size_rows_to_var">ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR</a>.
2434      */
2435     er_load_from_fixed_size_rows_to_var = 1409,
2436 
2437     /**
2438      * \brief Common server error. Error number: 1410, symbol:
2439      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_create_user_with_grant">ER_CANT_CREATE_USER_WITH_GRANT</a>.
2440      */
2441     er_cant_create_user_with_grant = 1410,
2442 
2443     /**
2444      * \brief Common server error. Error number: 1411, symbol:
2445      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_value_for_type">ER_WRONG_VALUE_FOR_TYPE</a>.
2446      */
2447     er_wrong_value_for_type = 1411,
2448 
2449     /**
2450      * \brief Common server error. Error number: 1412, symbol:
2451      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_def_changed">ER_TABLE_DEF_CHANGED</a>.
2452      */
2453     er_table_def_changed = 1412,
2454 
2455     /**
2456      * \brief Common server error. Error number: 1413, symbol:
2457      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_dup_handler">ER_SP_DUP_HANDLER</a>.
2458      */
2459     er_sp_dup_handler = 1413,
2460 
2461     /**
2462      * \brief Common server error. Error number: 1414, symbol:
2463      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_not_var_arg">ER_SP_NOT_VAR_ARG</a>.
2464      */
2465     er_sp_not_var_arg = 1414,
2466 
2467     /**
2468      * \brief Common server error. Error number: 1415, symbol:
2469      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_no_retset">ER_SP_NO_RETSET</a>.
2470      */
2471     er_sp_no_retset = 1415,
2472 
2473     /**
2474      * \brief Common server error. Error number: 1416, symbol:
2475      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_create_geometry_object">ER_CANT_CREATE_GEOMETRY_OBJECT</a>.
2476      */
2477     er_cant_create_geometry_object = 1416,
2478 
2479     /**
2480      * \brief Common server error. Error number: 1417, symbol:
2481      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_failed_routine_break_binlog">ER_FAILED_ROUTINE_BREAK_BINLOG</a>.
2482      */
2483     er_failed_routine_break_binlog = 1417,
2484 
2485     /**
2486      * \brief Common server error. Error number: 1418, symbol:
2487      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_routine">ER_BINLOG_UNSAFE_ROUTINE</a>.
2488      */
2489     er_binlog_unsafe_routine = 1418,
2490 
2491     /**
2492      * \brief Common server error. Error number: 1419, symbol:
2493      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_create_routine_need_super">ER_BINLOG_CREATE_ROUTINE_NEED_SUPER</a>.
2494      */
2495     er_binlog_create_routine_need_super = 1419,
2496 
2497     /**
2498      * \brief Common server error. Error number: 1420, symbol:
2499      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_exec_stmt_with_open_cursor">ER_EXEC_STMT_WITH_OPEN_CURSOR</a>.
2500      */
2501     er_exec_stmt_with_open_cursor = 1420,
2502 
2503     /**
2504      * \brief Common server error. Error number: 1421, symbol:
2505      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stmt_has_no_open_cursor">ER_STMT_HAS_NO_OPEN_CURSOR</a>.
2506      */
2507     er_stmt_has_no_open_cursor = 1421,
2508 
2509     /**
2510      * \brief Common server error. Error number: 1422, symbol:
2511      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_commit_not_allowed_in_sf_or_trg">ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG</a>.
2512      */
2513     er_commit_not_allowed_in_sf_or_trg = 1422,
2514 
2515     /**
2516      * \brief Common server error. Error number: 1423, symbol:
2517      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_default_for_view_field">ER_NO_DEFAULT_FOR_VIEW_FIELD</a>.
2518      */
2519     er_no_default_for_view_field = 1423,
2520 
2521     /**
2522      * \brief Common server error. Error number: 1424, symbol:
2523      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_no_recursion">ER_SP_NO_RECURSION</a>.
2524      */
2525     er_sp_no_recursion = 1424,
2526 
2527     /**
2528      * \brief Common server error. Error number: 1425, symbol:
2529      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_big_scale">ER_TOO_BIG_SCALE</a>.
2530      */
2531     er_too_big_scale = 1425,
2532 
2533     /**
2534      * \brief Common server error. Error number: 1426, symbol:
2535      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_big_precision">ER_TOO_BIG_PRECISION</a>.
2536      */
2537     er_too_big_precision = 1426,
2538 
2539     /**
2540      * \brief Common server error. Error number: 1427, symbol:
2541      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_m_bigger_than_d">ER_M_BIGGER_THAN_D</a>.
2542      */
2543     er_m_bigger_than_d = 1427,
2544 
2545     /**
2546      * \brief Common server error. Error number: 1428, symbol:
2547      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_lock_of_system_table">ER_WRONG_LOCK_OF_SYSTEM_TABLE</a>.
2548      */
2549     er_wrong_lock_of_system_table = 1428,
2550 
2551     /**
2552      * \brief Common server error. Error number: 1429, symbol:
2553      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_connect_to_foreign_data_source">ER_CONNECT_TO_FOREIGN_DATA_SOURCE</a>.
2554      */
2555     er_connect_to_foreign_data_source = 1429,
2556 
2557     /**
2558      * \brief Common server error. Error number: 1430, symbol:
2559      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_query_on_foreign_data_source">ER_QUERY_ON_FOREIGN_DATA_SOURCE</a>.
2560      */
2561     er_query_on_foreign_data_source = 1430,
2562 
2563     /**
2564      * \brief Common server error. Error number: 1431, symbol:
2565      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_foreign_data_source_doesnt_exist">ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST</a>.
2566      */
2567     er_foreign_data_source_doesnt_exist = 1431,
2568 
2569     /**
2570      * \brief Common server error. Error number: 1432, symbol:
2571      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_foreign_data_string_invalid_cant_create">ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE</a>.
2572      */
2573     er_foreign_data_string_invalid_cant_create = 1432,
2574 
2575     /**
2576      * \brief Common server error. Error number: 1433, symbol:
2577      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_foreign_data_string_invalid">ER_FOREIGN_DATA_STRING_INVALID</a>.
2578      */
2579     er_foreign_data_string_invalid = 1433,
2580 
2581     /**
2582      * \brief Common server error. Error number: 1434, symbol:
2583      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_create_federated_table">ER_CANT_CREATE_FEDERATED_TABLE</a>.
2584      */
2585     er_cant_create_federated_table = 1434,
2586 
2587     /**
2588      * \brief Common server error. Error number: 1435, symbol:
2589      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_in_wrong_schema">ER_TRG_IN_WRONG_SCHEMA</a>.
2590      */
2591     er_trg_in_wrong_schema = 1435,
2592 
2593     /**
2594      * \brief Common server error. Error number: 1436, symbol:
2595      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stack_overrun_need_more">ER_STACK_OVERRUN_NEED_MORE</a>.
2596      */
2597     er_stack_overrun_need_more = 1436,
2598 
2599     /**
2600      * \brief Common server error. Error number: 1437, symbol:
2601      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_long_body">ER_TOO_LONG_BODY</a>.
2602      */
2603     er_too_long_body = 1437,
2604 
2605     /**
2606      * \brief Common server error. Error number: 1438, symbol:
2607      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_cant_drop_default_keycache">ER_WARN_CANT_DROP_DEFAULT_KEYCACHE</a>.
2608      */
2609     er_warn_cant_drop_default_keycache = 1438,
2610 
2611     /**
2612      * \brief Common server error. Error number: 1439, symbol:
2613      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_big_displaywidth">ER_TOO_BIG_DISPLAYWIDTH</a>.
2614      */
2615     er_too_big_displaywidth = 1439,
2616 
2617     /**
2618      * \brief Common server error. Error number: 1440, symbol:
2619      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_dupid">ER_XAER_DUPID</a>.
2620      */
2621     er_xaer_dupid = 1440,
2622 
2623     /**
2624      * \brief Common server error. Error number: 1441, symbol:
2625      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_datetime_function_overflow">ER_DATETIME_FUNCTION_OVERFLOW</a>.
2626      */
2627     er_datetime_function_overflow = 1441,
2628 
2629     /**
2630      * \brief Common server error. Error number: 1442, symbol:
2631      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_update_used_table_in_sf_or_trg">ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG</a>.
2632      */
2633     er_cant_update_used_table_in_sf_or_trg = 1442,
2634 
2635     /**
2636      * \brief Common server error. Error number: 1443, symbol:
2637      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_prevent_update">ER_VIEW_PREVENT_UPDATE</a>.
2638      */
2639     er_view_prevent_update = 1443,
2640 
2641     /**
2642      * \brief Common server error. Error number: 1444, symbol:
2643      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_ps_no_recursion">ER_PS_NO_RECURSION</a>.
2644      */
2645     er_ps_no_recursion = 1444,
2646 
2647     /**
2648      * \brief Common server error. Error number: 1445, symbol:
2649      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_cant_set_autocommit">ER_SP_CANT_SET_AUTOCOMMIT</a>.
2650      */
2651     er_sp_cant_set_autocommit = 1445,
2652 
2653     /**
2654      * \brief Common server error. Error number: 1446, symbol:
2655      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_malformed_definer">ER_MALFORMED_DEFINER</a>.
2656      */
2657     er_malformed_definer = 1446,
2658 
2659     /**
2660      * \brief Common server error. Error number: 1447, symbol:
2661      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_frm_no_user">ER_VIEW_FRM_NO_USER</a>.
2662      */
2663     er_view_frm_no_user = 1447,
2664 
2665     /**
2666      * \brief Common server error. Error number: 1448, symbol:
2667      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_other_user">ER_VIEW_OTHER_USER</a>.
2668      */
2669     er_view_other_user = 1448,
2670 
2671     /**
2672      * \brief Common server error. Error number: 1449, symbol:
2673      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_such_user">ER_NO_SUCH_USER</a>.
2674      */
2675     er_no_such_user = 1449,
2676 
2677     /**
2678      * \brief Common server error. Error number: 1450, symbol:
2679      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_forbid_schema_change">ER_FORBID_SCHEMA_CHANGE</a>.
2680      */
2681     er_forbid_schema_change = 1450,
2682 
2683     /**
2684      * \brief Common server error. Error number: 1451, symbol:
2685      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_row_is_referenced_2">ER_ROW_IS_REFERENCED_2</a>.
2686      */
2687     er_row_is_referenced_2 = 1451,
2688 
2689     /**
2690      * \brief Common server error. Error number: 1452, symbol:
2691      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_referenced_row_2">ER_NO_REFERENCED_ROW_2</a>.
2692      */
2693     er_no_referenced_row_2 = 1452,
2694 
2695     /**
2696      * \brief Common server error. Error number: 1453, symbol:
2697      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_bad_var_shadow">ER_SP_BAD_VAR_SHADOW</a>.
2698      */
2699     er_sp_bad_var_shadow = 1453,
2700 
2701     /**
2702      * \brief Common server error. Error number: 1454, symbol:
2703      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_no_definer">ER_TRG_NO_DEFINER</a>.
2704      */
2705     er_trg_no_definer = 1454,
2706 
2707     /**
2708      * \brief Common server error. Error number: 1455, symbol:
2709      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_old_file_format">ER_OLD_FILE_FORMAT</a>.
2710      */
2711     er_old_file_format = 1455,
2712 
2713     /**
2714      * \brief Common server error. Error number: 1456, symbol:
2715      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_recursion_limit">ER_SP_RECURSION_LIMIT</a>.
2716      */
2717     er_sp_recursion_limit = 1456,
2718 
2719     /**
2720      * \brief Common server error. Error number: 1457, symbol:
2721      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_proc_table_corrupt">ER_SP_PROC_TABLE_CORRUPT</a>.
2722      */
2723     er_sp_proc_table_corrupt = 1457,
2724 
2725     /**
2726      * \brief Common server error. Error number: 1458, symbol:
2727      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_wrong_name">ER_SP_WRONG_NAME</a>.
2728      */
2729     er_sp_wrong_name = 1458,
2730 
2731     /**
2732      * \brief Common server error. Error number: 1459, symbol:
2733      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_needs_upgrade">ER_TABLE_NEEDS_UPGRADE</a>.
2734      */
2735     er_table_needs_upgrade = 1459,
2736 
2737     /**
2738      * \brief Common server error. Error number: 1460, symbol:
2739      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_no_aggregate">ER_SP_NO_AGGREGATE</a>.
2740      */
2741     er_sp_no_aggregate = 1460,
2742 
2743     /**
2744      * \brief Common server error. Error number: 1461, symbol:
2745      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_max_prepared_stmt_count_reached">ER_MAX_PREPARED_STMT_COUNT_REACHED</a>.
2746      */
2747     er_max_prepared_stmt_count_reached = 1461,
2748 
2749     /**
2750      * \brief Common server error. Error number: 1462, symbol:
2751      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_recursive">ER_VIEW_RECURSIVE</a>.
2752      */
2753     er_view_recursive = 1462,
2754 
2755     /**
2756      * \brief Common server error. Error number: 1463, symbol:
2757      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_non_grouping_field_used">ER_NON_GROUPING_FIELD_USED</a>.
2758      */
2759     er_non_grouping_field_used = 1463,
2760 
2761     /**
2762      * \brief Common server error. Error number: 1464, symbol:
2763      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_cant_handle_spkeys">ER_TABLE_CANT_HANDLE_SPKEYS</a>.
2764      */
2765     er_table_cant_handle_spkeys = 1464,
2766 
2767     /**
2768      * \brief Common server error. Error number: 1465, symbol:
2769      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_triggers_on_system_schema">ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA</a>.
2770      */
2771     er_no_triggers_on_system_schema = 1465,
2772 
2773     /**
2774      * \brief Common server error. Error number: 1466, symbol:
2775      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_removed_spaces">ER_REMOVED_SPACES</a>.
2776      */
2777     er_removed_spaces = 1466,
2778 
2779     /**
2780      * \brief Common server error. Error number: 1467, symbol:
2781      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_autoinc_read_failed">ER_AUTOINC_READ_FAILED</a>.
2782      */
2783     er_autoinc_read_failed = 1467,
2784 
2785     /**
2786      * \brief Common server error. Error number: 1468, symbol:
2787      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_username">ER_USERNAME</a>.
2788      */
2789     er_username = 1468,
2790 
2791     /**
2792      * \brief Common server error. Error number: 1469, symbol:
2793      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_hostname">ER_HOSTNAME</a>.
2794      */
2795     er_hostname = 1469,
2796 
2797     /**
2798      * \brief Common server error. Error number: 1470, symbol:
2799      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_string_length">ER_WRONG_STRING_LENGTH</a>.
2800      */
2801     er_wrong_string_length = 1470,
2802 
2803     /**
2804      * \brief Common server error. Error number: 1471, symbol:
2805      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_non_insertable_table">ER_NON_INSERTABLE_TABLE</a>.
2806      */
2807     er_non_insertable_table = 1471,
2808 
2809     /**
2810      * \brief Common server error. Error number: 1472, symbol:
2811      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_admin_wrong_mrg_table">ER_ADMIN_WRONG_MRG_TABLE</a>.
2812      */
2813     er_admin_wrong_mrg_table = 1472,
2814 
2815     /**
2816      * \brief Common server error. Error number: 1473, symbol:
2817      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_high_level_of_nesting_for_select">ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT</a>.
2818      */
2819     er_too_high_level_of_nesting_for_select = 1473,
2820 
2821     /**
2822      * \brief Common server error. Error number: 1474, symbol:
2823      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_name_becomes_empty">ER_NAME_BECOMES_EMPTY</a>.
2824      */
2825     er_name_becomes_empty = 1474,
2826 
2827     /**
2828      * \brief Common server error. Error number: 1475, symbol:
2829      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_ambiguous_field_term">ER_AMBIGUOUS_FIELD_TERM</a>.
2830      */
2831     er_ambiguous_field_term = 1475,
2832 
2833     /**
2834      * \brief Common server error. Error number: 1476, symbol:
2835      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_foreign_server_exists">ER_FOREIGN_SERVER_EXISTS</a>.
2836      */
2837     er_foreign_server_exists = 1476,
2838 
2839     /**
2840      * \brief Common server error. Error number: 1477, symbol:
2841      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_foreign_server_doesnt_exist">ER_FOREIGN_SERVER_DOESNT_EXIST</a>.
2842      */
2843     er_foreign_server_doesnt_exist = 1477,
2844 
2845     /**
2846      * \brief Common server error. Error number: 1478, symbol:
2847      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_illegal_ha_create_option">ER_ILLEGAL_HA_CREATE_OPTION</a>.
2848      */
2849     er_illegal_ha_create_option = 1478,
2850 
2851     /**
2852      * \brief Common server error. Error number: 1479, symbol:
2853      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_requires_values_error">ER_PARTITION_REQUIRES_VALUES_ERROR</a>.
2854      */
2855     er_partition_requires_values_error = 1479,
2856 
2857     /**
2858      * \brief Common server error. Error number: 1480, symbol:
2859      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_wrong_values_error">ER_PARTITION_WRONG_VALUES_ERROR</a>.
2860      */
2861     er_partition_wrong_values_error = 1480,
2862 
2863     /**
2864      * \brief Common server error. Error number: 1481, symbol:
2865      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_maxvalue_error">ER_PARTITION_MAXVALUE_ERROR</a>.
2866      */
2867     er_partition_maxvalue_error = 1481,
2868 
2869     /**
2870      * \brief Common server error. Error number: 1482, symbol:
2871      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_subpartition_error">ER_PARTITION_SUBPARTITION_ERROR</a>.
2872      */
2873     er_partition_subpartition_error = 1482,
2874 
2875     /**
2876      * \brief Common server error. Error number: 1483, symbol:
2877      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_subpart_mix_error">ER_PARTITION_SUBPART_MIX_ERROR</a>.
2878      */
2879     er_partition_subpart_mix_error = 1483,
2880 
2881     /**
2882      * \brief Common server error. Error number: 1484, symbol:
2883      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_wrong_no_part_error">ER_PARTITION_WRONG_NO_PART_ERROR</a>.
2884      */
2885     er_partition_wrong_no_part_error = 1484,
2886 
2887     /**
2888      * \brief Common server error. Error number: 1485, symbol:
2889      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_wrong_no_subpart_error">ER_PARTITION_WRONG_NO_SUBPART_ERROR</a>.
2890      */
2891     er_partition_wrong_no_subpart_error = 1485,
2892 
2893     /**
2894      * \brief Common server error. Error number: 1486, symbol:
2895      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_expr_in_partition_func_error">ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR</a>.
2896      */
2897     er_wrong_expr_in_partition_func_error = 1486,
2898 
2899     /**
2900      * \brief Common server error. Error number: 1488, symbol:
2901      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_field_not_found_part_error">ER_FIELD_NOT_FOUND_PART_ERROR</a>.
2902      */
2903     er_field_not_found_part_error = 1488,
2904 
2905     /**
2906      * \brief Common server error. Error number: 1489, symbol:
2907      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_list_of_fields_only_in_hash_error">ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR</a>.
2908      */
2909     er_list_of_fields_only_in_hash_error = 1489,
2910 
2911     /**
2912      * \brief Common server error. Error number: 1490, symbol:
2913      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_inconsistent_partition_info_error">ER_INCONSISTENT_PARTITION_INFO_ERROR</a>.
2914      */
2915     er_inconsistent_partition_info_error = 1490,
2916 
2917     /**
2918      * \brief Common server error. Error number: 1491, symbol:
2919      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_func_not_allowed_error">ER_PARTITION_FUNC_NOT_ALLOWED_ERROR</a>.
2920      */
2921     er_partition_func_not_allowed_error = 1491,
2922 
2923     /**
2924      * \brief Common server error. Error number: 1492, symbol:
2925      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partitions_must_be_defined_error">ER_PARTITIONS_MUST_BE_DEFINED_ERROR</a>.
2926      */
2927     er_partitions_must_be_defined_error = 1492,
2928 
2929     /**
2930      * \brief Common server error. Error number: 1493, symbol:
2931      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_range_not_increasing_error">ER_RANGE_NOT_INCREASING_ERROR</a>.
2932      */
2933     er_range_not_increasing_error = 1493,
2934 
2935     /**
2936      * \brief Common server error. Error number: 1494, symbol:
2937      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_inconsistent_type_of_functions_error">ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR</a>.
2938      */
2939     er_inconsistent_type_of_functions_error = 1494,
2940 
2941     /**
2942      * \brief Common server error. Error number: 1495, symbol:
2943      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_multiple_def_const_in_list_part_error">ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR</a>.
2944      */
2945     er_multiple_def_const_in_list_part_error = 1495,
2946 
2947     /**
2948      * \brief Common server error. Error number: 1496, symbol:
2949      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_entry_error">ER_PARTITION_ENTRY_ERROR</a>.
2950      */
2951     er_partition_entry_error = 1496,
2952 
2953     /**
2954      * \brief Common server error. Error number: 1497, symbol:
2955      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mix_handler_error">ER_MIX_HANDLER_ERROR</a>.
2956      */
2957     er_mix_handler_error = 1497,
2958 
2959     /**
2960      * \brief Common server error. Error number: 1498, symbol:
2961      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_not_defined_error">ER_PARTITION_NOT_DEFINED_ERROR</a>.
2962      */
2963     er_partition_not_defined_error = 1498,
2964 
2965     /**
2966      * \brief Common server error. Error number: 1499, symbol:
2967      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_partitions_error">ER_TOO_MANY_PARTITIONS_ERROR</a>.
2968      */
2969     er_too_many_partitions_error = 1499,
2970 
2971     /**
2972      * \brief Common server error. Error number: 1500, symbol:
2973      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_subpartition_error">ER_SUBPARTITION_ERROR</a>.
2974      */
2975     er_subpartition_error = 1500,
2976 
2977     /**
2978      * \brief Common server error. Error number: 1501, symbol:
2979      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_create_handler_file">ER_CANT_CREATE_HANDLER_FILE</a>.
2980      */
2981     er_cant_create_handler_file = 1501,
2982 
2983     /**
2984      * \brief Common server error. Error number: 1502, symbol:
2985      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_blob_field_in_part_func_error">ER_BLOB_FIELD_IN_PART_FUNC_ERROR</a>.
2986      */
2987     er_blob_field_in_part_func_error = 1502,
2988 
2989     /**
2990      * \brief Common server error. Error number: 1503, symbol:
2991      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unique_key_need_all_fields_in_pf">ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF</a>.
2992      */
2993     er_unique_key_need_all_fields_in_pf = 1503,
2994 
2995     /**
2996      * \brief Common server error. Error number: 1504, symbol:
2997      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_parts_error">ER_NO_PARTS_ERROR</a>.
2998      */
2999     er_no_parts_error = 1504,
3000 
3001     /**
3002      * \brief Common server error. Error number: 1505, symbol:
3003      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_mgmt_on_nonpartitioned">ER_PARTITION_MGMT_ON_NONPARTITIONED</a>.
3004      */
3005     er_partition_mgmt_on_nonpartitioned = 1505,
3006 
3007     /**
3008      * \brief Common server error. Error number: 1507, symbol:
3009      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_drop_partition_non_existent">ER_DROP_PARTITION_NON_EXISTENT</a>.
3010      */
3011     er_drop_partition_non_existent = 1507,
3012 
3013     /**
3014      * \brief Common server error. Error number: 1508, symbol:
3015      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_drop_last_partition">ER_DROP_LAST_PARTITION</a>.
3016      */
3017     er_drop_last_partition = 1508,
3018 
3019     /**
3020      * \brief Common server error. Error number: 1509, symbol:
3021      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_coalesce_only_on_hash_partition">ER_COALESCE_ONLY_ON_HASH_PARTITION</a>.
3022      */
3023     er_coalesce_only_on_hash_partition = 1509,
3024 
3025     /**
3026      * \brief Common server error. Error number: 1510, symbol:
3027      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_reorg_hash_only_on_same_no">ER_REORG_HASH_ONLY_ON_SAME_NO</a>.
3028      */
3029     er_reorg_hash_only_on_same_no = 1510,
3030 
3031     /**
3032      * \brief Common server error. Error number: 1511, symbol:
3033      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_reorg_no_param_error">ER_REORG_NO_PARAM_ERROR</a>.
3034      */
3035     er_reorg_no_param_error = 1511,
3036 
3037     /**
3038      * \brief Common server error. Error number: 1512, symbol:
3039      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_only_on_range_list_partition">ER_ONLY_ON_RANGE_LIST_PARTITION</a>.
3040      */
3041     er_only_on_range_list_partition = 1512,
3042 
3043     /**
3044      * \brief Common server error. Error number: 1513, symbol:
3045      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_add_partition_subpart_error">ER_ADD_PARTITION_SUBPART_ERROR</a>.
3046      */
3047     er_add_partition_subpart_error = 1513,
3048 
3049     /**
3050      * \brief Common server error. Error number: 1514, symbol:
3051      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_add_partition_no_new_partition">ER_ADD_PARTITION_NO_NEW_PARTITION</a>.
3052      */
3053     er_add_partition_no_new_partition = 1514,
3054 
3055     /**
3056      * \brief Common server error. Error number: 1515, symbol:
3057      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_coalesce_partition_no_partition">ER_COALESCE_PARTITION_NO_PARTITION</a>.
3058      */
3059     er_coalesce_partition_no_partition = 1515,
3060 
3061     /**
3062      * \brief Common server error. Error number: 1516, symbol:
3063      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_reorg_partition_not_exist">ER_REORG_PARTITION_NOT_EXIST</a>.
3064      */
3065     er_reorg_partition_not_exist = 1516,
3066 
3067     /**
3068      * \brief Common server error. Error number: 1517, symbol:
3069      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_same_name_partition">ER_SAME_NAME_PARTITION</a>.
3070      */
3071     er_same_name_partition = 1517,
3072 
3073     /**
3074      * \brief Common server error. Error number: 1518, symbol:
3075      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_binlog_error">ER_NO_BINLOG_ERROR</a>.
3076      */
3077     er_no_binlog_error = 1518,
3078 
3079     /**
3080      * \brief Common server error. Error number: 1519, symbol:
3081      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_consecutive_reorg_partitions">ER_CONSECUTIVE_REORG_PARTITIONS</a>.
3082      */
3083     er_consecutive_reorg_partitions = 1519,
3084 
3085     /**
3086      * \brief Common server error. Error number: 1520, symbol:
3087      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_reorg_outside_range">ER_REORG_OUTSIDE_RANGE</a>.
3088      */
3089     er_reorg_outside_range = 1520,
3090 
3091     /**
3092      * \brief Common server error. Error number: 1521, symbol:
3093      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_function_failure">ER_PARTITION_FUNCTION_FAILURE</a>.
3094      */
3095     er_partition_function_failure = 1521,
3096 
3097     /**
3098      * \brief Common server error. Error number: 1522, symbol:
3099      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_part_state_error">ER_PART_STATE_ERROR</a>.
3100      */
3101     er_part_state_error = 1522,
3102 
3103     /**
3104      * \brief Common server error. Error number: 1523, symbol:
3105      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_limited_part_range">ER_LIMITED_PART_RANGE</a>.
3106      */
3107     er_limited_part_range = 1523,
3108 
3109     /**
3110      * \brief Common server error. Error number: 1524, symbol:
3111      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_plugin_is_not_loaded">ER_PLUGIN_IS_NOT_LOADED</a>.
3112      */
3113     er_plugin_is_not_loaded = 1524,
3114 
3115     /**
3116      * \brief Common server error. Error number: 1525, symbol:
3117      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_value">ER_WRONG_VALUE</a>.
3118      */
3119     er_wrong_value = 1525,
3120 
3121     /**
3122      * \brief Common server error. Error number: 1526, symbol:
3123      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_partition_for_given_value">ER_NO_PARTITION_FOR_GIVEN_VALUE</a>.
3124      */
3125     er_no_partition_for_given_value = 1526,
3126 
3127     /**
3128      * \brief Common server error. Error number: 1527, symbol:
3129      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_filegroup_option_only_once">ER_FILEGROUP_OPTION_ONLY_ONCE</a>.
3130      */
3131     er_filegroup_option_only_once = 1527,
3132 
3133     /**
3134      * \brief Common server error. Error number: 1528, symbol:
3135      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_create_filegroup_failed">ER_CREATE_FILEGROUP_FAILED</a>.
3136      */
3137     er_create_filegroup_failed = 1528,
3138 
3139     /**
3140      * \brief Common server error. Error number: 1529, symbol:
3141      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_drop_filegroup_failed">ER_DROP_FILEGROUP_FAILED</a>.
3142      */
3143     er_drop_filegroup_failed = 1529,
3144 
3145     /**
3146      * \brief Common server error. Error number: 1530, symbol:
3147      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tablespace_auto_extend_error">ER_TABLESPACE_AUTO_EXTEND_ERROR</a>.
3148      */
3149     er_tablespace_auto_extend_error = 1530,
3150 
3151     /**
3152      * \brief Common server error. Error number: 1531, symbol:
3153      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_size_number">ER_WRONG_SIZE_NUMBER</a>.
3154      */
3155     er_wrong_size_number = 1531,
3156 
3157     /**
3158      * \brief Common server error. Error number: 1532, symbol:
3159      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_size_overflow_error">ER_SIZE_OVERFLOW_ERROR</a>.
3160      */
3161     er_size_overflow_error = 1532,
3162 
3163     /**
3164      * \brief Common server error. Error number: 1533, symbol:
3165      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_filegroup_failed">ER_ALTER_FILEGROUP_FAILED</a>.
3166      */
3167     er_alter_filegroup_failed = 1533,
3168 
3169     /**
3170      * \brief Common server error. Error number: 1534, symbol:
3171      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_row_logging_failed">ER_BINLOG_ROW_LOGGING_FAILED</a>.
3172      */
3173     er_binlog_row_logging_failed = 1534,
3174 
3175     /**
3176      * \brief Common server error. Error number: 1535, symbol:
3177      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_row_wrong_table_def">ER_BINLOG_ROW_WRONG_TABLE_DEF</a>.
3178      */
3179     er_binlog_row_wrong_table_def = 1535,
3180 
3181     /**
3182      * \brief Common server error. Error number: 1536, symbol:
3183      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_row_rbr_to_sbr">ER_BINLOG_ROW_RBR_TO_SBR</a>.
3184      */
3185     er_binlog_row_rbr_to_sbr = 1536,
3186 
3187     /**
3188      * \brief Common server error. Error number: 1537, symbol:
3189      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_already_exists">ER_EVENT_ALREADY_EXISTS</a>.
3190      */
3191     er_event_already_exists = 1537,
3192 
3193     /**
3194      * \brief Common server error. Error number: 1538, symbol:
3195      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_store_failed">ER_EVENT_STORE_FAILED</a>.
3196      */
3197     er_event_store_failed = 1538,
3198 
3199     /**
3200      * \brief Common server error. Error number: 1539, symbol:
3201      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_does_not_exist">ER_EVENT_DOES_NOT_EXIST</a>.
3202      */
3203     er_event_does_not_exist = 1539,
3204 
3205     /**
3206      * \brief Common server error. Error number: 1540, symbol:
3207      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_cant_alter">ER_EVENT_CANT_ALTER</a>.
3208      */
3209     er_event_cant_alter = 1540,
3210 
3211     /**
3212      * \brief Common server error. Error number: 1541, symbol:
3213      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_drop_failed">ER_EVENT_DROP_FAILED</a>.
3214      */
3215     er_event_drop_failed = 1541,
3216 
3217     /**
3218      * \brief Common server error. Error number: 1542, symbol:
3219      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_interval_not_positive_or_too_big">ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG</a>.
3220      */
3221     er_event_interval_not_positive_or_too_big = 1542,
3222 
3223     /**
3224      * \brief Common server error. Error number: 1543, symbol:
3225      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_ends_before_starts">ER_EVENT_ENDS_BEFORE_STARTS</a>.
3226      */
3227     er_event_ends_before_starts = 1543,
3228 
3229     /**
3230      * \brief Common server error. Error number: 1544, symbol:
3231      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_exec_time_in_the_past">ER_EVENT_EXEC_TIME_IN_THE_PAST</a>.
3232      */
3233     er_event_exec_time_in_the_past = 1544,
3234 
3235     /**
3236      * \brief Common server error. Error number: 1545, symbol:
3237      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_open_table_failed">ER_EVENT_OPEN_TABLE_FAILED</a>.
3238      */
3239     er_event_open_table_failed = 1545,
3240 
3241     /**
3242      * \brief Common server error. Error number: 1546, symbol:
3243      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_neither_m_expr_nor_m_at">ER_EVENT_NEITHER_M_EXPR_NOR_M_AT</a>.
3244      */
3245     er_event_neither_m_expr_nor_m_at = 1546,
3246 
3247     /**
3248      * \brief Common server error. Error number: 1549, symbol:
3249      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_cannot_delete">ER_EVENT_CANNOT_DELETE</a>.
3250      */
3251     er_event_cannot_delete = 1549,
3252 
3253     /**
3254      * \brief Common server error. Error number: 1550, symbol:
3255      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_compile_error">ER_EVENT_COMPILE_ERROR</a>.
3256      */
3257     er_event_compile_error = 1550,
3258 
3259     /**
3260      * \brief Common server error. Error number: 1551, symbol:
3261      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_same_name">ER_EVENT_SAME_NAME</a>.
3262      */
3263     er_event_same_name = 1551,
3264 
3265     /**
3266      * \brief Common server error. Error number: 1552, symbol:
3267      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_data_too_long">ER_EVENT_DATA_TOO_LONG</a>.
3268      */
3269     er_event_data_too_long = 1552,
3270 
3271     /**
3272      * \brief Common server error. Error number: 1553, symbol:
3273      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_drop_index_fk">ER_DROP_INDEX_FK</a>.
3274      */
3275     er_drop_index_fk = 1553,
3276 
3277     /**
3278      * \brief Common server error. Error number: 1554, symbol:
3279      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_deprecated_syntax_with_ver">ER_WARN_DEPRECATED_SYNTAX_WITH_VER</a>.
3280      */
3281     er_warn_deprecated_syntax_with_ver = 1554,
3282 
3283     /**
3284      * \brief Common server error. Error number: 1555, symbol:
3285      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_write_lock_log_table">ER_CANT_WRITE_LOCK_LOG_TABLE</a>.
3286      */
3287     er_cant_write_lock_log_table = 1555,
3288 
3289     /**
3290      * \brief Common server error. Error number: 1556, symbol:
3291      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_lock_log_table">ER_CANT_LOCK_LOG_TABLE</a>.
3292      */
3293     er_cant_lock_log_table = 1556,
3294 
3295     /**
3296      * \brief Common server error. Error number: 1558, symbol:
3297      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_col_count_doesnt_match_please_update">ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE</a>.
3298      */
3299     er_col_count_doesnt_match_please_update = 1558,
3300 
3301     /**
3302      * \brief Common server error. Error number: 1559, symbol:
3303      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_temp_table_prevents_switch_out_of_rbr">ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR</a>.
3304      */
3305     er_temp_table_prevents_switch_out_of_rbr = 1559,
3306 
3307     /**
3308      * \brief Common server error. Error number: 1560, symbol:
3309      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stored_function_prevents_switch_binlog_format">ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT</a>.
3310      */
3311     er_stored_function_prevents_switch_binlog_format = 1560,
3312 
3313     /**
3314      * \brief Common server error. Error number: 1562, symbol:
3315      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_no_temporary">ER_PARTITION_NO_TEMPORARY</a>.
3316      */
3317     er_partition_no_temporary = 1562,
3318 
3319     /**
3320      * \brief Common server error. Error number: 1563, symbol:
3321      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_const_domain_error">ER_PARTITION_CONST_DOMAIN_ERROR</a>.
3322      */
3323     er_partition_const_domain_error = 1563,
3324 
3325     /**
3326      * \brief Common server error. Error number: 1564, symbol:
3327      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_function_is_not_allowed">ER_PARTITION_FUNCTION_IS_NOT_ALLOWED</a>.
3328      */
3329     er_partition_function_is_not_allowed = 1564,
3330 
3331     /**
3332      * \brief Common server error. Error number: 1565, symbol:
3333      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_ddl_log_error">ER_DDL_LOG_ERROR</a>.
3334      */
3335     er_ddl_log_error = 1565,
3336 
3337     /**
3338      * \brief Common server error. Error number: 1566, symbol:
3339      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_null_in_values_less_than">ER_NULL_IN_VALUES_LESS_THAN</a>.
3340      */
3341     er_null_in_values_less_than = 1566,
3342 
3343     /**
3344      * \brief Common server error. Error number: 1567, symbol:
3345      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_partition_name">ER_WRONG_PARTITION_NAME</a>.
3346      */
3347     er_wrong_partition_name = 1567,
3348 
3349     /**
3350      * \brief Common server error. Error number: 1568, symbol:
3351      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_change_tx_characteristics">ER_CANT_CHANGE_TX_CHARACTERISTICS</a>.
3352      */
3353     er_cant_change_tx_characteristics = 1568,
3354 
3355     /**
3356      * \brief Common server error. Error number: 1569, symbol:
3357      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_entry_autoincrement_case">ER_DUP_ENTRY_AUTOINCREMENT_CASE</a>.
3358      */
3359     er_dup_entry_autoincrement_case = 1569,
3360 
3361     /**
3362      * \brief Common server error. Error number: 1570, symbol:
3363      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_modify_queue_error">ER_EVENT_MODIFY_QUEUE_ERROR</a>.
3364      */
3365     er_event_modify_queue_error = 1570,
3366 
3367     /**
3368      * \brief Common server error. Error number: 1571, symbol:
3369      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_set_var_error">ER_EVENT_SET_VAR_ERROR</a>.
3370      */
3371     er_event_set_var_error = 1571,
3372 
3373     /**
3374      * \brief Common server error. Error number: 1572, symbol:
3375      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_merge_error">ER_PARTITION_MERGE_ERROR</a>.
3376      */
3377     er_partition_merge_error = 1572,
3378 
3379     /**
3380      * \brief Common server error. Error number: 1573, symbol:
3381      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_activate_log">ER_CANT_ACTIVATE_LOG</a>.
3382      */
3383     er_cant_activate_log = 1573,
3384 
3385     /**
3386      * \brief Common server error. Error number: 1574, symbol:
3387      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_rbr_not_available">ER_RBR_NOT_AVAILABLE</a>.
3388      */
3389     er_rbr_not_available = 1574,
3390 
3391     /**
3392      * \brief Common server error. Error number: 1575, symbol:
3393      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_base64_decode_error">ER_BASE64_DECODE_ERROR</a>.
3394      */
3395     er_base64_decode_error = 1575,
3396 
3397     /**
3398      * \brief Common server error. Error number: 1576, symbol:
3399      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_recursion_forbidden">ER_EVENT_RECURSION_FORBIDDEN</a>.
3400      */
3401     er_event_recursion_forbidden = 1576,
3402 
3403     /**
3404      * \brief Common server error. Error number: 1577, symbol:
3405      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_events_db_error">ER_EVENTS_DB_ERROR</a>.
3406      */
3407     er_events_db_error = 1577,
3408 
3409     /**
3410      * \brief Common server error. Error number: 1578, symbol:
3411      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_only_integers_allowed">ER_ONLY_INTEGERS_ALLOWED</a>.
3412      */
3413     er_only_integers_allowed = 1578,
3414 
3415     /**
3416      * \brief Common server error. Error number: 1579, symbol:
3417      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unsuported_log_engine">ER_UNSUPORTED_LOG_ENGINE</a>.
3418      */
3419     er_unsuported_log_engine = 1579,
3420 
3421     /**
3422      * \brief Common server error. Error number: 1580, symbol:
3423      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_log_statement">ER_BAD_LOG_STATEMENT</a>.
3424      */
3425     er_bad_log_statement = 1580,
3426 
3427     /**
3428      * \brief Common server error. Error number: 1581, symbol:
3429      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_rename_log_table">ER_CANT_RENAME_LOG_TABLE</a>.
3430      */
3431     er_cant_rename_log_table = 1581,
3432 
3433     /**
3434      * \brief Common server error. Error number: 1582, symbol:
3435      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_paramcount_to_native_fct">ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT</a>.
3436      */
3437     er_wrong_paramcount_to_native_fct = 1582,
3438 
3439     /**
3440      * \brief Common server error. Error number: 1583, symbol:
3441      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_parameters_to_native_fct">ER_WRONG_PARAMETERS_TO_NATIVE_FCT</a>.
3442      */
3443     er_wrong_parameters_to_native_fct = 1583,
3444 
3445     /**
3446      * \brief Common server error. Error number: 1584, symbol:
3447      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_parameters_to_stored_fct">ER_WRONG_PARAMETERS_TO_STORED_FCT</a>.
3448      */
3449     er_wrong_parameters_to_stored_fct = 1584,
3450 
3451     /**
3452      * \brief Common server error. Error number: 1585, symbol:
3453      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_native_fct_name_collision">ER_NATIVE_FCT_NAME_COLLISION</a>.
3454      */
3455     er_native_fct_name_collision = 1585,
3456 
3457     /**
3458      * \brief Common server error. Error number: 1586, symbol:
3459      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_entry_with_key_name">ER_DUP_ENTRY_WITH_KEY_NAME</a>.
3460      */
3461     er_dup_entry_with_key_name = 1586,
3462 
3463     /**
3464      * \brief Common server error. Error number: 1587, symbol:
3465      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_purge_emfile">ER_BINLOG_PURGE_EMFILE</a>.
3466      */
3467     er_binlog_purge_emfile = 1587,
3468 
3469     /**
3470      * \brief Common server error. Error number: 1588, symbol:
3471      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_cannot_create_in_the_past">ER_EVENT_CANNOT_CREATE_IN_THE_PAST</a>.
3472      */
3473     er_event_cannot_create_in_the_past = 1588,
3474 
3475     /**
3476      * \brief Common server error. Error number: 1589, symbol:
3477      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_cannot_alter_in_the_past">ER_EVENT_CANNOT_ALTER_IN_THE_PAST</a>.
3478      */
3479     er_event_cannot_alter_in_the_past = 1589,
3480 
3481     /**
3482      * \brief Common server error. Error number: 1590, symbol:
3483      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_incident">ER_SLAVE_INCIDENT</a>.
3484      */
3485     er_slave_incident = 1590,
3486 
3487     /**
3488      * \brief Common server error. Error number: 1591, symbol:
3489      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_partition_for_given_value_silent">ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT</a>.
3490      */
3491     er_no_partition_for_given_value_silent = 1591,
3492 
3493     /**
3494      * \brief Common server error. Error number: 1592, symbol:
3495      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_statement">ER_BINLOG_UNSAFE_STATEMENT</a>.
3496      */
3497     er_binlog_unsafe_statement = 1592,
3498 
3499     /**
3500      * \brief Common server error. Error number: 1594, symbol:
3501      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_relay_log_read_failure">ER_SLAVE_RELAY_LOG_READ_FAILURE</a>.
3502      */
3503     er_slave_relay_log_read_failure = 1594,
3504 
3505     /**
3506      * \brief Common server error. Error number: 1595, symbol:
3507      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_relay_log_write_failure">ER_SLAVE_RELAY_LOG_WRITE_FAILURE</a>.
3508      */
3509     er_slave_relay_log_write_failure = 1595,
3510 
3511     /**
3512      * \brief Common server error. Error number: 1596, symbol:
3513      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_create_event_failure">ER_SLAVE_CREATE_EVENT_FAILURE</a>.
3514      */
3515     er_slave_create_event_failure = 1596,
3516 
3517     /**
3518      * \brief Common server error. Error number: 1597, symbol:
3519      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_master_com_failure">ER_SLAVE_MASTER_COM_FAILURE</a>.
3520      */
3521     er_slave_master_com_failure = 1597,
3522 
3523     /**
3524      * \brief Common server error. Error number: 1598, symbol:
3525      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_logging_impossible">ER_BINLOG_LOGGING_IMPOSSIBLE</a>.
3526      */
3527     er_binlog_logging_impossible = 1598,
3528 
3529     /**
3530      * \brief Common server error. Error number: 1599, symbol:
3531      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_no_creation_ctx">ER_VIEW_NO_CREATION_CTX</a>.
3532      */
3533     er_view_no_creation_ctx = 1599,
3534 
3535     /**
3536      * \brief Common server error. Error number: 1600, symbol:
3537      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_invalid_creation_ctx">ER_VIEW_INVALID_CREATION_CTX</a>.
3538      */
3539     er_view_invalid_creation_ctx = 1600,
3540 
3541     /**
3542      * \brief Common server error. Error number: 1601, symbol:
3543      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sr_invalid_creation_ctx">ER_SR_INVALID_CREATION_CTX</a>.
3544      */
3545     er_sr_invalid_creation_ctx = 1601,
3546 
3547     /**
3548      * \brief Common server error. Error number: 1602, symbol:
3549      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_corrupted_file">ER_TRG_CORRUPTED_FILE</a>.
3550      */
3551     er_trg_corrupted_file = 1602,
3552 
3553     /**
3554      * \brief Common server error. Error number: 1603, symbol:
3555      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_no_creation_ctx">ER_TRG_NO_CREATION_CTX</a>.
3556      */
3557     er_trg_no_creation_ctx = 1603,
3558 
3559     /**
3560      * \brief Common server error. Error number: 1604, symbol:
3561      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_invalid_creation_ctx">ER_TRG_INVALID_CREATION_CTX</a>.
3562      */
3563     er_trg_invalid_creation_ctx = 1604,
3564 
3565     /**
3566      * \brief Common server error. Error number: 1605, symbol:
3567      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_event_invalid_creation_ctx">ER_EVENT_INVALID_CREATION_CTX</a>.
3568      */
3569     er_event_invalid_creation_ctx = 1605,
3570 
3571     /**
3572      * \brief Common server error. Error number: 1606, symbol:
3573      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_trg_cant_open_table">ER_TRG_CANT_OPEN_TABLE</a>.
3574      */
3575     er_trg_cant_open_table = 1606,
3576 
3577     /**
3578      * \brief Common server error. Error number: 1607, symbol:
3579      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_create_sroutine">ER_CANT_CREATE_SROUTINE</a>.
3580      */
3581     er_cant_create_sroutine = 1607,
3582 
3583     /**
3584      * \brief Common server error. Error number: 1609, symbol:
3585      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_format_description_event_before_binlog_statement">ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT</a>.
3586      */
3587     er_no_format_description_event_before_binlog_statement = 1609,
3588 
3589     /**
3590      * \brief Common server error. Error number: 1610, symbol:
3591      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_corrupt_event">ER_SLAVE_CORRUPT_EVENT</a>.
3592      */
3593     er_slave_corrupt_event = 1610,
3594 
3595     /**
3596      * \brief Common server error. Error number: 1612, symbol:
3597      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_log_purge_no_file">ER_LOG_PURGE_NO_FILE</a>.
3598      */
3599     er_log_purge_no_file = 1612,
3600 
3601     /**
3602      * \brief Common server error. Error number: 1613, symbol:
3603      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xa_rbtimeout">ER_XA_RBTIMEOUT</a>.
3604      */
3605     er_xa_rbtimeout = 1613,
3606 
3607     /**
3608      * \brief Common server error. Error number: 1614, symbol:
3609      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xa_rbdeadlock">ER_XA_RBDEADLOCK</a>.
3610      */
3611     er_xa_rbdeadlock = 1614,
3612 
3613     /**
3614      * \brief Common server error. Error number: 1615, symbol:
3615      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_need_reprepare">ER_NEED_REPREPARE</a>.
3616      */
3617     er_need_reprepare = 1615,
3618 
3619     /**
3620      * \brief Common server error. Error number: 1616, symbol:
3621      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_delayed_not_supported">ER_DELAYED_NOT_SUPPORTED</a>.
3622      */
3623     er_delayed_not_supported = 1616,
3624 
3625     /**
3626      * \brief Common server error. Error number: 1617, symbol:
3627      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_no_master_info">WARN_NO_MASTER_INFO</a>.
3628      */
3629     warn_no_master_info = 1617,
3630 
3631     /**
3632      * \brief Common server error. Error number: 1618, symbol:
3633      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_option_ignored">WARN_OPTION_IGNORED</a>.
3634      */
3635     warn_option_ignored = 1618,
3636 
3637     /**
3638      * \brief Common server error. Error number: 1619, symbol:
3639      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_plugin_delete_builtin">ER_PLUGIN_DELETE_BUILTIN</a>.
3640      */
3641     er_plugin_delete_builtin = 1619,
3642 
3643     /**
3644      * \brief Common server error. Error number: 1620, symbol:
3645      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_plugin_busy">WARN_PLUGIN_BUSY</a>.
3646      */
3647     warn_plugin_busy = 1620,
3648 
3649     /**
3650      * \brief Common server error. Error number: 1621, symbol:
3651      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_variable_is_readonly">ER_VARIABLE_IS_READONLY</a>.
3652      */
3653     er_variable_is_readonly = 1621,
3654 
3655     /**
3656      * \brief Common server error. Error number: 1622, symbol:
3657      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_engine_transaction_rollback">ER_WARN_ENGINE_TRANSACTION_ROLLBACK</a>.
3658      */
3659     er_warn_engine_transaction_rollback = 1622,
3660 
3661     /**
3662      * \brief Common server error. Error number: 1623, symbol:
3663      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_heartbeat_failure">ER_SLAVE_HEARTBEAT_FAILURE</a>.
3664      */
3665     er_slave_heartbeat_failure = 1623,
3666 
3667     /**
3668      * \brief Common server error. Error number: 1624, symbol:
3669      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_heartbeat_value_out_of_range">ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE</a>.
3670      */
3671     er_slave_heartbeat_value_out_of_range = 1624,
3672 
3673     /**
3674      * \brief Common server error. Error number: 1626, symbol:
3675      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_conflict_fn_parse_error">ER_CONFLICT_FN_PARSE_ERROR</a>.
3676      */
3677     er_conflict_fn_parse_error = 1626,
3678 
3679     /**
3680      * \brief Common server error. Error number: 1627, symbol:
3681      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_exceptions_write_error">ER_EXCEPTIONS_WRITE_ERROR</a>.
3682      */
3683     er_exceptions_write_error = 1627,
3684 
3685     /**
3686      * \brief Common server error. Error number: 1628, symbol:
3687      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_long_table_comment">ER_TOO_LONG_TABLE_COMMENT</a>.
3688      */
3689     er_too_long_table_comment = 1628,
3690 
3691     /**
3692      * \brief Common server error. Error number: 1629, symbol:
3693      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_long_field_comment">ER_TOO_LONG_FIELD_COMMENT</a>.
3694      */
3695     er_too_long_field_comment = 1629,
3696 
3697     /**
3698      * \brief Common server error. Error number: 1630, symbol:
3699      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_func_inexistent_name_collision">ER_FUNC_INEXISTENT_NAME_COLLISION</a>.
3700      */
3701     er_func_inexistent_name_collision = 1630,
3702 
3703     /**
3704      * \brief Common server error. Error number: 1631, symbol:
3705      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_database_name">ER_DATABASE_NAME</a>.
3706      */
3707     er_database_name = 1631,
3708 
3709     /**
3710      * \brief Common server error. Error number: 1632, symbol:
3711      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_name">ER_TABLE_NAME</a>.
3712      */
3713     er_table_name = 1632,
3714 
3715     /**
3716      * \brief Common server error. Error number: 1633, symbol:
3717      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_name">ER_PARTITION_NAME</a>.
3718      */
3719     er_partition_name = 1633,
3720 
3721     /**
3722      * \brief Common server error. Error number: 1634, symbol:
3723      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_subpartition_name">ER_SUBPARTITION_NAME</a>.
3724      */
3725     er_subpartition_name = 1634,
3726 
3727     /**
3728      * \brief Common server error. Error number: 1635, symbol:
3729      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_temporary_name">ER_TEMPORARY_NAME</a>.
3730      */
3731     er_temporary_name = 1635,
3732 
3733     /**
3734      * \brief Common server error. Error number: 1636, symbol:
3735      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_renamed_name">ER_RENAMED_NAME</a>.
3736      */
3737     er_renamed_name = 1636,
3738 
3739     /**
3740      * \brief Common server error. Error number: 1637, symbol:
3741      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_concurrent_trxs">ER_TOO_MANY_CONCURRENT_TRXS</a>.
3742      */
3743     er_too_many_concurrent_trxs = 1637,
3744 
3745     /**
3746      * \brief Common server error. Error number: 1638, symbol:
3747      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_non_ascii_separator_not_implemented">WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED</a>.
3748      */
3749     warn_non_ascii_separator_not_implemented = 1638,
3750 
3751     /**
3752      * \brief Common server error. Error number: 1639, symbol:
3753      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_debug_sync_timeout">ER_DEBUG_SYNC_TIMEOUT</a>.
3754      */
3755     er_debug_sync_timeout = 1639,
3756 
3757     /**
3758      * \brief Common server error. Error number: 1640, symbol:
3759      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_debug_sync_hit_limit">ER_DEBUG_SYNC_HIT_LIMIT</a>.
3760      */
3761     er_debug_sync_hit_limit = 1640,
3762 
3763     /**
3764      * \brief Common server error. Error number: 1641, symbol:
3765      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_signal_set">ER_DUP_SIGNAL_SET</a>.
3766      */
3767     er_dup_signal_set = 1641,
3768 
3769     /**
3770      * \brief Common server error. Error number: 1642, symbol:
3771      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_signal_warn">ER_SIGNAL_WARN</a>.
3772      */
3773     er_signal_warn = 1642,
3774 
3775     /**
3776      * \brief Common server error. Error number: 1643, symbol:
3777      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_signal_not_found">ER_SIGNAL_NOT_FOUND</a>.
3778      */
3779     er_signal_not_found = 1643,
3780 
3781     /**
3782      * \brief Common server error. Error number: 1644, symbol:
3783      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_signal_exception">ER_SIGNAL_EXCEPTION</a>.
3784      */
3785     er_signal_exception = 1644,
3786 
3787     /**
3788      * \brief Common server error. Error number: 1645, symbol:
3789      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_resignal_without_active_handler">ER_RESIGNAL_WITHOUT_ACTIVE_HANDLER</a>.
3790      */
3791     er_resignal_without_active_handler = 1645,
3792 
3793     /**
3794      * \brief Common server error. Error number: 1646, symbol:
3795      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_signal_bad_condition_type">ER_SIGNAL_BAD_CONDITION_TYPE</a>.
3796      */
3797     er_signal_bad_condition_type = 1646,
3798 
3799     /**
3800      * \brief Common server error. Error number: 1647, symbol:
3801      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_cond_item_truncated">WARN_COND_ITEM_TRUNCATED</a>.
3802      */
3803     warn_cond_item_truncated = 1647,
3804 
3805     /**
3806      * \brief Common server error. Error number: 1648, symbol:
3807      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cond_item_too_long">ER_COND_ITEM_TOO_LONG</a>.
3808      */
3809     er_cond_item_too_long = 1648,
3810 
3811     /**
3812      * \brief Common server error. Error number: 1649, symbol:
3813      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_locale">ER_UNKNOWN_LOCALE</a>.
3814      */
3815     er_unknown_locale = 1649,
3816 
3817     /**
3818      * \brief Common server error. Error number: 1650, symbol:
3819      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_ignore_server_ids">ER_SLAVE_IGNORE_SERVER_IDS</a>.
3820      */
3821     er_slave_ignore_server_ids = 1650,
3822 
3823     /**
3824      * \brief Common server error. Error number: 1651, symbol:
3825      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_query_cache_disabled">ER_QUERY_CACHE_DISABLED</a>.
3826      */
3827     er_query_cache_disabled = 1651,
3828 
3829     /**
3830      * \brief Common server error. Error number: 1652, symbol:
3831      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_same_name_partition_field">ER_SAME_NAME_PARTITION_FIELD</a>.
3832      */
3833     er_same_name_partition_field = 1652,
3834 
3835     /**
3836      * \brief Common server error. Error number: 1653, symbol:
3837      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_column_list_error">ER_PARTITION_COLUMN_LIST_ERROR</a>.
3838      */
3839     er_partition_column_list_error = 1653,
3840 
3841     /**
3842      * \brief Common server error. Error number: 1654, symbol:
3843      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_type_column_value_error">ER_WRONG_TYPE_COLUMN_VALUE_ERROR</a>.
3844      */
3845     er_wrong_type_column_value_error = 1654,
3846 
3847     /**
3848      * \brief Common server error. Error number: 1655, symbol:
3849      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_partition_func_fields_error">ER_TOO_MANY_PARTITION_FUNC_FIELDS_ERROR</a>.
3850      */
3851     er_too_many_partition_func_fields_error = 1655,
3852 
3853     /**
3854      * \brief Common server error. Error number: 1656, symbol:
3855      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_maxvalue_in_values_in">ER_MAXVALUE_IN_VALUES_IN</a>.
3856      */
3857     er_maxvalue_in_values_in = 1656,
3858 
3859     /**
3860      * \brief Common server error. Error number: 1657, symbol:
3861      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_many_values_error">ER_TOO_MANY_VALUES_ERROR</a>.
3862      */
3863     er_too_many_values_error = 1657,
3864 
3865     /**
3866      * \brief Common server error. Error number: 1658, symbol:
3867      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_row_single_partition_field_error">ER_ROW_SINGLE_PARTITION_FIELD_ERROR</a>.
3868      */
3869     er_row_single_partition_field_error = 1658,
3870 
3871     /**
3872      * \brief Common server error. Error number: 1659, symbol:
3873      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_field_type_not_allowed_as_partition_field">ER_FIELD_TYPE_NOT_ALLOWED_AS_PARTITION_FIELD</a>.
3874      */
3875     er_field_type_not_allowed_as_partition_field = 1659,
3876 
3877     /**
3878      * \brief Common server error. Error number: 1660, symbol:
3879      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_fields_too_long">ER_PARTITION_FIELDS_TOO_LONG</a>.
3880      */
3881     er_partition_fields_too_long = 1660,
3882 
3883     /**
3884      * \brief Common server error. Error number: 1661, symbol:
3885      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_row_engine_and_stmt_engine">ER_BINLOG_ROW_ENGINE_AND_STMT_ENGINE</a>.
3886      */
3887     er_binlog_row_engine_and_stmt_engine = 1661,
3888 
3889     /**
3890      * \brief Common server error. Error number: 1662, symbol:
3891      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_row_mode_and_stmt_engine">ER_BINLOG_ROW_MODE_AND_STMT_ENGINE</a>.
3892      */
3893     er_binlog_row_mode_and_stmt_engine = 1662,
3894 
3895     /**
3896      * \brief Common server error. Error number: 1663, symbol:
3897      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_and_stmt_engine">ER_BINLOG_UNSAFE_AND_STMT_ENGINE</a>.
3898      */
3899     er_binlog_unsafe_and_stmt_engine = 1663,
3900 
3901     /**
3902      * \brief Common server error. Error number: 1664, symbol:
3903      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_row_injection_and_stmt_engine">ER_BINLOG_ROW_INJECTION_AND_STMT_ENGINE</a>.
3904      */
3905     er_binlog_row_injection_and_stmt_engine = 1664,
3906 
3907     /**
3908      * \brief Common server error. Error number: 1665, symbol:
3909      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_stmt_mode_and_row_engine">ER_BINLOG_STMT_MODE_AND_ROW_ENGINE</a>.
3910      */
3911     er_binlog_stmt_mode_and_row_engine = 1665,
3912 
3913     /**
3914      * \brief Common server error. Error number: 1666, symbol:
3915      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_row_injection_and_stmt_mode">ER_BINLOG_ROW_INJECTION_AND_STMT_MODE</a>.
3916      */
3917     er_binlog_row_injection_and_stmt_mode = 1666,
3918 
3919     /**
3920      * \brief Common server error. Error number: 1667, symbol:
3921      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_multiple_engines_and_self_logging_engine">ER_BINLOG_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE</a>.
3922      */
3923     er_binlog_multiple_engines_and_self_logging_engine = 1667,
3924 
3925     /**
3926      * \brief Common server error. Error number: 1668, symbol:
3927      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_limit">ER_BINLOG_UNSAFE_LIMIT</a>.
3928      */
3929     er_binlog_unsafe_limit = 1668,
3930 
3931     /**
3932      * \brief Common server error. Error number: 1670, symbol:
3933      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_system_table">ER_BINLOG_UNSAFE_SYSTEM_TABLE</a>.
3934      */
3935     er_binlog_unsafe_system_table = 1670,
3936 
3937     /**
3938      * \brief Common server error. Error number: 1671, symbol:
3939      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_autoinc_columns">ER_BINLOG_UNSAFE_AUTOINC_COLUMNS</a>.
3940      */
3941     er_binlog_unsafe_autoinc_columns = 1671,
3942 
3943     /**
3944      * \brief Common server error. Error number: 1672, symbol:
3945      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_udf">ER_BINLOG_UNSAFE_UDF</a>.
3946      */
3947     er_binlog_unsafe_udf = 1672,
3948 
3949     /**
3950      * \brief Common server error. Error number: 1673, symbol:
3951      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_system_variable">ER_BINLOG_UNSAFE_SYSTEM_VARIABLE</a>.
3952      */
3953     er_binlog_unsafe_system_variable = 1673,
3954 
3955     /**
3956      * \brief Common server error. Error number: 1674, symbol:
3957      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_system_function">ER_BINLOG_UNSAFE_SYSTEM_FUNCTION</a>.
3958      */
3959     er_binlog_unsafe_system_function = 1674,
3960 
3961     /**
3962      * \brief Common server error. Error number: 1675, symbol:
3963      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_nontrans_after_trans">ER_BINLOG_UNSAFE_NONTRANS_AFTER_TRANS</a>.
3964      */
3965     er_binlog_unsafe_nontrans_after_trans = 1675,
3966 
3967     /**
3968      * \brief Common server error. Error number: 1676, symbol:
3969      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_message_and_statement">ER_MESSAGE_AND_STATEMENT</a>.
3970      */
3971     er_message_and_statement = 1676,
3972 
3973     /**
3974      * \brief Common server error. Error number: 1677, symbol:
3975      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_conversion_failed">ER_SLAVE_CONVERSION_FAILED</a>.
3976      */
3977     er_slave_conversion_failed = 1677,
3978 
3979     /**
3980      * \brief Common server error. Error number: 1678, symbol:
3981      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_cant_create_conversion">ER_SLAVE_CANT_CREATE_CONVERSION</a>.
3982      */
3983     er_slave_cant_create_conversion = 1678,
3984 
3985     /**
3986      * \brief Common server error. Error number: 1679, symbol:
3987      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_inside_transaction_prevents_switch_binlog_format">ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_FORMAT</a>.
3988      */
3989     er_inside_transaction_prevents_switch_binlog_format = 1679,
3990 
3991     /**
3992      * \brief Common server error. Error number: 1680, symbol:
3993      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_path_length">ER_PATH_LENGTH</a>.
3994      */
3995     er_path_length = 1680,
3996 
3997     /**
3998      * \brief Common server error. Error number: 1681, symbol:
3999      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_deprecated_syntax_no_replacement">ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT</a>.
4000      */
4001     er_warn_deprecated_syntax_no_replacement = 1681,
4002 
4003     /**
4004      * \brief Common server error. Error number: 1682, symbol:
4005      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_native_table_structure">ER_WRONG_NATIVE_TABLE_STRUCTURE</a>.
4006      */
4007     er_wrong_native_table_structure = 1682,
4008 
4009     /**
4010      * \brief Common server error. Error number: 1683, symbol:
4011      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_perfschema_usage">ER_WRONG_PERFSCHEMA_USAGE</a>.
4012      */
4013     er_wrong_perfschema_usage = 1683,
4014 
4015     /**
4016      * \brief Common server error. Error number: 1684, symbol:
4017      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_i_s_skipped_table">ER_WARN_I_S_SKIPPED_TABLE</a>.
4018      */
4019     er_warn_i_s_skipped_table = 1684,
4020 
4021     /**
4022      * \brief Common server error. Error number: 1685, symbol:
4023      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_inside_transaction_prevents_switch_binlog_direct">ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_DIRECT</a>.
4024      */
4025     er_inside_transaction_prevents_switch_binlog_direct = 1685,
4026 
4027     /**
4028      * \brief Common server error. Error number: 1686, symbol:
4029      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stored_function_prevents_switch_binlog_direct">ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_DIRECT</a>.
4030      */
4031     er_stored_function_prevents_switch_binlog_direct = 1686,
4032 
4033     /**
4034      * \brief Common server error. Error number: 1687, symbol:
4035      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_spatial_must_have_geom_col">ER_SPATIAL_MUST_HAVE_GEOM_COL</a>.
4036      */
4037     er_spatial_must_have_geom_col = 1687,
4038 
4039     /**
4040      * \brief Common server error. Error number: 1688, symbol:
4041      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_long_index_comment">ER_TOO_LONG_INDEX_COMMENT</a>.
4042      */
4043     er_too_long_index_comment = 1688,
4044 
4045     /**
4046      * \brief Common server error. Error number: 1689, symbol:
4047      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_lock_aborted">ER_LOCK_ABORTED</a>.
4048      */
4049     er_lock_aborted = 1689,
4050 
4051     /**
4052      * \brief Common server error. Error number: 1690, symbol:
4053      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_data_out_of_range">ER_DATA_OUT_OF_RANGE</a>.
4054      */
4055     er_data_out_of_range = 1690,
4056 
4057     /**
4058      * \brief Common server error. Error number: 1691, symbol:
4059      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_spvar_type_in_limit">ER_WRONG_SPVAR_TYPE_IN_LIMIT</a>.
4060      */
4061     er_wrong_spvar_type_in_limit = 1691,
4062 
4063     /**
4064      * \brief Common server error. Error number: 1692, symbol:
4065      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_multiple_engines_and_self_logging_engine">ER_BINLOG_UNSAFE_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE</a>.
4066      */
4067     er_binlog_unsafe_multiple_engines_and_self_logging_engine = 1692,
4068 
4069     /**
4070      * \brief Common server error. Error number: 1693, symbol:
4071      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_mixed_statement">ER_BINLOG_UNSAFE_MIXED_STATEMENT</a>.
4072      */
4073     er_binlog_unsafe_mixed_statement = 1693,
4074 
4075     /**
4076      * \brief Common server error. Error number: 1694, symbol:
4077      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_inside_transaction_prevents_switch_sql_log_bin">ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_SQL_LOG_BIN</a>.
4078      */
4079     er_inside_transaction_prevents_switch_sql_log_bin = 1694,
4080 
4081     /**
4082      * \brief Common server error. Error number: 1695, symbol:
4083      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stored_function_prevents_switch_sql_log_bin">ER_STORED_FUNCTION_PREVENTS_SWITCH_SQL_LOG_BIN</a>.
4084      */
4085     er_stored_function_prevents_switch_sql_log_bin = 1695,
4086 
4087     /**
4088      * \brief Common server error. Error number: 1696, symbol:
4089      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_failed_read_from_par_file">ER_FAILED_READ_FROM_PAR_FILE</a>.
4090      */
4091     er_failed_read_from_par_file = 1696,
4092 
4093     /**
4094      * \brief Common server error. Error number: 1697, symbol:
4095      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_values_is_not_int_type_error">ER_VALUES_IS_NOT_INT_TYPE_ERROR</a>.
4096      */
4097     er_values_is_not_int_type_error = 1697,
4098 
4099     /**
4100      * \brief Common server error. Error number: 1698, symbol:
4101      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_access_denied_no_password_error">ER_ACCESS_DENIED_NO_PASSWORD_ERROR</a>.
4102      */
4103     er_access_denied_no_password_error = 1698,
4104 
4105     /**
4106      * \brief Common server error. Error number: 1699, symbol:
4107      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_set_password_auth_plugin">ER_SET_PASSWORD_AUTH_PLUGIN</a>.
4108      */
4109     er_set_password_auth_plugin = 1699,
4110 
4111     /**
4112      * \brief Common server error. Error number: 1700, symbol:
4113      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_grant_plugin_user_exists">ER_GRANT_PLUGIN_USER_EXISTS</a>.
4114      */
4115     er_grant_plugin_user_exists = 1700,
4116 
4117     /**
4118      * \brief Common server error. Error number: 1701, symbol:
4119      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_truncate_illegal_fk">ER_TRUNCATE_ILLEGAL_FK</a>.
4120      */
4121     er_truncate_illegal_fk = 1701,
4122 
4123     /**
4124      * \brief Common server error. Error number: 1702, symbol:
4125      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_plugin_is_permanent">ER_PLUGIN_IS_PERMANENT</a>.
4126      */
4127     er_plugin_is_permanent = 1702,
4128 
4129     /**
4130      * \brief Common server error. Error number: 1703, symbol:
4131      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_heartbeat_value_out_of_range_min">ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN</a>.
4132      */
4133     er_slave_heartbeat_value_out_of_range_min = 1703,
4134 
4135     /**
4136      * \brief Common server error. Error number: 1704, symbol:
4137      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_heartbeat_value_out_of_range_max">ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX</a>.
4138      */
4139     er_slave_heartbeat_value_out_of_range_max = 1704,
4140 
4141     /**
4142      * \brief Common server error. Error number: 1705, symbol:
4143      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stmt_cache_full">ER_STMT_CACHE_FULL</a>.
4144      */
4145     er_stmt_cache_full = 1705,
4146 
4147     /**
4148      * \brief Common server error. Error number: 1706, symbol:
4149      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_multi_update_key_conflict">ER_MULTI_UPDATE_KEY_CONFLICT</a>.
4150      */
4151     er_multi_update_key_conflict = 1706,
4152 
4153     /**
4154      * \brief Common server error. Error number: 1707, symbol:
4155      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_needs_rebuild">ER_TABLE_NEEDS_REBUILD</a>.
4156      */
4157     er_table_needs_rebuild = 1707,
4158 
4159     /**
4160      * \brief Common server error. Error number: 1708, symbol:
4161      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_option_below_limit">WARN_OPTION_BELOW_LIMIT</a>.
4162      */
4163     warn_option_below_limit = 1708,
4164 
4165     /**
4166      * \brief Common server error. Error number: 1709, symbol:
4167      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_index_column_too_long">ER_INDEX_COLUMN_TOO_LONG</a>.
4168      */
4169     er_index_column_too_long = 1709,
4170 
4171     /**
4172      * \brief Common server error. Error number: 1710, symbol:
4173      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_in_trigger_body">ER_ERROR_IN_TRIGGER_BODY</a>.
4174      */
4175     er_error_in_trigger_body = 1710,
4176 
4177     /**
4178      * \brief Common server error. Error number: 1711, symbol:
4179      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_error_in_unknown_trigger_body">ER_ERROR_IN_UNKNOWN_TRIGGER_BODY</a>.
4180      */
4181     er_error_in_unknown_trigger_body = 1711,
4182 
4183     /**
4184      * \brief Common server error. Error number: 1712, symbol:
4185      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_index_corrupt">ER_INDEX_CORRUPT</a>.
4186      */
4187     er_index_corrupt = 1712,
4188 
4189     /**
4190      * \brief Common server error. Error number: 1713, symbol:
4191      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_undo_record_too_big">ER_UNDO_RECORD_TOO_BIG</a>.
4192      */
4193     er_undo_record_too_big = 1713,
4194 
4195     /**
4196      * \brief Common server error. Error number: 1714, symbol:
4197      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_insert_ignore_select">ER_BINLOG_UNSAFE_INSERT_IGNORE_SELECT</a>.
4198      */
4199     er_binlog_unsafe_insert_ignore_select = 1714,
4200 
4201     /**
4202      * \brief Common server error. Error number: 1715, symbol:
4203      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_insert_select_update">ER_BINLOG_UNSAFE_INSERT_SELECT_UPDATE</a>.
4204      */
4205     er_binlog_unsafe_insert_select_update = 1715,
4206 
4207     /**
4208      * \brief Common server error. Error number: 1716, symbol:
4209      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_replace_select">ER_BINLOG_UNSAFE_REPLACE_SELECT</a>.
4210      */
4211     er_binlog_unsafe_replace_select = 1716,
4212 
4213     /**
4214      * \brief Common server error. Error number: 1717, symbol:
4215      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_create_ignore_select">ER_BINLOG_UNSAFE_CREATE_IGNORE_SELECT</a>.
4216      */
4217     er_binlog_unsafe_create_ignore_select = 1717,
4218 
4219     /**
4220      * \brief Common server error. Error number: 1718, symbol:
4221      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_create_replace_select">ER_BINLOG_UNSAFE_CREATE_REPLACE_SELECT</a>.
4222      */
4223     er_binlog_unsafe_create_replace_select = 1718,
4224 
4225     /**
4226      * \brief Common server error. Error number: 1719, symbol:
4227      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_update_ignore">ER_BINLOG_UNSAFE_UPDATE_IGNORE</a>.
4228      */
4229     er_binlog_unsafe_update_ignore = 1719,
4230 
4231     /**
4232      * \brief Common server error. Error number: 1722, symbol:
4233      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_write_autoinc_select">ER_BINLOG_UNSAFE_WRITE_AUTOINC_SELECT</a>.
4234      */
4235     er_binlog_unsafe_write_autoinc_select = 1722,
4236 
4237     /**
4238      * \brief Common server error. Error number: 1723, symbol:
4239      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_create_select_autoinc">ER_BINLOG_UNSAFE_CREATE_SELECT_AUTOINC</a>.
4240      */
4241     er_binlog_unsafe_create_select_autoinc = 1723,
4242 
4243     /**
4244      * \brief Common server error. Error number: 1724, symbol:
4245      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_insert_two_keys">ER_BINLOG_UNSAFE_INSERT_TWO_KEYS</a>.
4246      */
4247     er_binlog_unsafe_insert_two_keys = 1724,
4248 
4249     /**
4250      * \brief Common server error. Error number: 1727, symbol:
4251      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_unsafe_autoinc_not_first">ER_BINLOG_UNSAFE_AUTOINC_NOT_FIRST</a>.
4252      */
4253     er_binlog_unsafe_autoinc_not_first = 1727,
4254 
4255     /**
4256      * \brief Common server error. Error number: 1728, symbol:
4257      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cannot_load_from_table_v2">ER_CANNOT_LOAD_FROM_TABLE_V2</a>.
4258      */
4259     er_cannot_load_from_table_v2 = 1728,
4260 
4261     /**
4262      * \brief Common server error. Error number: 1729, symbol:
4263      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_master_delay_value_out_of_range">ER_MASTER_DELAY_VALUE_OUT_OF_RANGE</a>.
4264      */
4265     er_master_delay_value_out_of_range = 1729,
4266 
4267     /**
4268      * \brief Common server error. Error number: 1730, symbol:
4269      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_only_fd_and_rbr_events_allowed_in_binlog_statement">ER_ONLY_FD_AND_RBR_EVENTS_ALLOWED_IN_BINLOG_STATEMENT</a>.
4270      */
4271     er_only_fd_and_rbr_events_allowed_in_binlog_statement = 1730,
4272 
4273     /**
4274      * \brief Common server error. Error number: 1731, symbol:
4275      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_exchange_different_option">ER_PARTITION_EXCHANGE_DIFFERENT_OPTION</a>.
4276      */
4277     er_partition_exchange_different_option = 1731,
4278 
4279     /**
4280      * \brief Common server error. Error number: 1732, symbol:
4281      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_exchange_part_table">ER_PARTITION_EXCHANGE_PART_TABLE</a>.
4282      */
4283     er_partition_exchange_part_table = 1732,
4284 
4285     /**
4286      * \brief Common server error. Error number: 1733, symbol:
4287      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_exchange_temp_table">ER_PARTITION_EXCHANGE_TEMP_TABLE</a>.
4288      */
4289     er_partition_exchange_temp_table = 1733,
4290 
4291     /**
4292      * \brief Common server error. Error number: 1734, symbol:
4293      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_instead_of_subpartition">ER_PARTITION_INSTEAD_OF_SUBPARTITION</a>.
4294      */
4295     er_partition_instead_of_subpartition = 1734,
4296 
4297     /**
4298      * \brief Common server error. Error number: 1735, symbol:
4299      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_partition">ER_UNKNOWN_PARTITION</a>.
4300      */
4301     er_unknown_partition = 1735,
4302 
4303     /**
4304      * \brief Common server error. Error number: 1736, symbol:
4305      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tables_different_metadata">ER_TABLES_DIFFERENT_METADATA</a>.
4306      */
4307     er_tables_different_metadata = 1736,
4308 
4309     /**
4310      * \brief Common server error. Error number: 1737, symbol:
4311      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_row_does_not_match_partition">ER_ROW_DOES_NOT_MATCH_PARTITION</a>.
4312      */
4313     er_row_does_not_match_partition = 1737,
4314 
4315     /**
4316      * \brief Common server error. Error number: 1738, symbol:
4317      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_cache_size_greater_than_max">ER_BINLOG_CACHE_SIZE_GREATER_THAN_MAX</a>.
4318      */
4319     er_binlog_cache_size_greater_than_max = 1738,
4320 
4321     /**
4322      * \brief Common server error. Error number: 1739, symbol:
4323      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_index_not_applicable">ER_WARN_INDEX_NOT_APPLICABLE</a>.
4324      */
4325     er_warn_index_not_applicable = 1739,
4326 
4327     /**
4328      * \brief Common server error. Error number: 1740, symbol:
4329      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_exchange_foreign_key">ER_PARTITION_EXCHANGE_FOREIGN_KEY</a>.
4330      */
4331     er_partition_exchange_foreign_key = 1740,
4332 
4333     /**
4334      * \brief Common server error. Error number: 1741, symbol:
4335      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_such_key_value">ER_NO_SUCH_KEY_VALUE</a>.
4336      */
4337     er_no_such_key_value = 1741,
4338 
4339     /**
4340      * \brief Common server error. Error number: 1743, symbol:
4341      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_network_read_event_checksum_failure">ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE</a>.
4342      */
4343     er_network_read_event_checksum_failure = 1743,
4344 
4345     /**
4346      * \brief Common server error. Error number: 1744, symbol:
4347      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_read_event_checksum_failure">ER_BINLOG_READ_EVENT_CHECKSUM_FAILURE</a>.
4348      */
4349     er_binlog_read_event_checksum_failure = 1744,
4350 
4351     /**
4352      * \brief Common server error. Error number: 1745, symbol:
4353      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_stmt_cache_size_greater_than_max">ER_BINLOG_STMT_CACHE_SIZE_GREATER_THAN_MAX</a>.
4354      */
4355     er_binlog_stmt_cache_size_greater_than_max = 1745,
4356 
4357     /**
4358      * \brief Common server error. Error number: 1746, symbol:
4359      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_update_table_in_create_table_select">ER_CANT_UPDATE_TABLE_IN_CREATE_TABLE_SELECT</a>.
4360      */
4361     er_cant_update_table_in_create_table_select = 1746,
4362 
4363     /**
4364      * \brief Common server error. Error number: 1747, symbol:
4365      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_clause_on_nonpartitioned">ER_PARTITION_CLAUSE_ON_NONPARTITIONED</a>.
4366      */
4367     er_partition_clause_on_nonpartitioned = 1747,
4368 
4369     /**
4370      * \brief Common server error. Error number: 1748, symbol:
4371      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_row_does_not_match_given_partition_set">ER_ROW_DOES_NOT_MATCH_GIVEN_PARTITION_SET</a>.
4372      */
4373     er_row_does_not_match_given_partition_set = 1748,
4374 
4375     /**
4376      * \brief Common server error. Error number: 1750, symbol:
4377      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_change_rpl_info_repository_failure">ER_CHANGE_RPL_INFO_REPOSITORY_FAILURE</a>.
4378      */
4379     er_change_rpl_info_repository_failure = 1750,
4380 
4381     /**
4382      * \brief Common server error. Error number: 1751, symbol:
4383      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warning_not_complete_rollback_with_created_temp_table">ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_CREATED_TEMP_TABLE</a>.
4384      */
4385     er_warning_not_complete_rollback_with_created_temp_table = 1751,
4386 
4387     /**
4388      * \brief Common server error. Error number: 1752, symbol:
4389      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warning_not_complete_rollback_with_dropped_temp_table">ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_DROPPED_TEMP_TABLE</a>.
4390      */
4391     er_warning_not_complete_rollback_with_dropped_temp_table = 1752,
4392 
4393     /**
4394      * \brief Common server error. Error number: 1753, symbol:
4395      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mts_feature_is_not_supported">ER_MTS_FEATURE_IS_NOT_SUPPORTED</a>.
4396      */
4397     er_mts_feature_is_not_supported = 1753,
4398 
4399     /**
4400      * \brief Common server error. Error number: 1754, symbol:
4401      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mts_updated_dbs_greater_max">ER_MTS_UPDATED_DBS_GREATER_MAX</a>.
4402      */
4403     er_mts_updated_dbs_greater_max = 1754,
4404 
4405     /**
4406      * \brief Common server error. Error number: 1755, symbol:
4407      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mts_cant_parallel">ER_MTS_CANT_PARALLEL</a>.
4408      */
4409     er_mts_cant_parallel = 1755,
4410 
4411     /**
4412      * \brief Common server error. Error number: 1756, symbol:
4413      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mts_inconsistent_data">ER_MTS_INCONSISTENT_DATA</a>.
4414      */
4415     er_mts_inconsistent_data = 1756,
4416 
4417     /**
4418      * \brief Common server error. Error number: 1757, symbol:
4419      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fulltext_not_supported_with_partitioning">ER_FULLTEXT_NOT_SUPPORTED_WITH_PARTITIONING</a>.
4420      */
4421     er_fulltext_not_supported_with_partitioning = 1757,
4422 
4423     /**
4424      * \brief Common server error. Error number: 1758, symbol:
4425      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_da_invalid_condition_number">ER_DA_INVALID_CONDITION_NUMBER</a>.
4426      */
4427     er_da_invalid_condition_number = 1758,
4428 
4429     /**
4430      * \brief Common server error. Error number: 1759, symbol:
4431      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_insecure_plain_text">ER_INSECURE_PLAIN_TEXT</a>.
4432      */
4433     er_insecure_plain_text = 1759,
4434 
4435     /**
4436      * \brief Common server error. Error number: 1760, symbol:
4437      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_insecure_change_master">ER_INSECURE_CHANGE_MASTER</a>.
4438      */
4439     er_insecure_change_master = 1760,
4440 
4441     /**
4442      * \brief Common server error. Error number: 1761, symbol:
4443      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_foreign_duplicate_key_with_child_info">ER_FOREIGN_DUPLICATE_KEY_WITH_CHILD_INFO</a>.
4444      */
4445     er_foreign_duplicate_key_with_child_info = 1761,
4446 
4447     /**
4448      * \brief Common server error. Error number: 1762, symbol:
4449      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_foreign_duplicate_key_without_child_info">ER_FOREIGN_DUPLICATE_KEY_WITHOUT_CHILD_INFO</a>.
4450      */
4451     er_foreign_duplicate_key_without_child_info = 1762,
4452 
4453     /**
4454      * \brief Common server error. Error number: 1763, symbol:
4455      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sqlthread_with_secure_slave">ER_SQLTHREAD_WITH_SECURE_SLAVE</a>.
4456      */
4457     er_sqlthread_with_secure_slave = 1763,
4458 
4459     /**
4460      * \brief Common server error. Error number: 1764, symbol:
4461      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_has_no_ft">ER_TABLE_HAS_NO_FT</a>.
4462      */
4463     er_table_has_no_ft = 1764,
4464 
4465     /**
4466      * \brief Common server error. Error number: 1765, symbol:
4467      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_variable_not_settable_in_sf_or_trigger">ER_VARIABLE_NOT_SETTABLE_IN_SF_OR_TRIGGER</a>.
4468      */
4469     er_variable_not_settable_in_sf_or_trigger = 1765,
4470 
4471     /**
4472      * \brief Common server error. Error number: 1766, symbol:
4473      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_variable_not_settable_in_transaction">ER_VARIABLE_NOT_SETTABLE_IN_TRANSACTION</a>.
4474      */
4475     er_variable_not_settable_in_transaction = 1766,
4476 
4477     /**
4478      * \brief Common server error. Error number: 1767, symbol:
4479      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gtid_next_is_not_in_gtid_next_list">ER_GTID_NEXT_IS_NOT_IN_GTID_NEXT_LIST</a>.
4480      */
4481     er_gtid_next_is_not_in_gtid_next_list = 1767,
4482 
4483     /**
4484      * \brief Common server error. Error number: 1769, symbol:
4485      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_set_statement_cannot_invoke_function">ER_SET_STATEMENT_CANNOT_INVOKE_FUNCTION</a>.
4486      */
4487     er_set_statement_cannot_invoke_function = 1769,
4488 
4489     /**
4490      * \brief Common server error. Error number: 1770, symbol:
4491      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_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</a>.
4492      */
4493     er_gtid_next_cant_be_automatic_if_gtid_next_list_is_non_null = 1770,
4494 
4495     /**
4496      * \brief Common server error. Error number: 1771, symbol:
4497      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_skipping_logged_transaction">ER_SKIPPING_LOGGED_TRANSACTION</a>.
4498      */
4499     er_skipping_logged_transaction = 1771,
4500 
4501     /**
4502      * \brief Common server error. Error number: 1772, symbol:
4503      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_malformed_gtid_set_specification">ER_MALFORMED_GTID_SET_SPECIFICATION</a>.
4504      */
4505     er_malformed_gtid_set_specification = 1772,
4506 
4507     /**
4508      * \brief Common server error. Error number: 1773, symbol:
4509      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_malformed_gtid_set_encoding">ER_MALFORMED_GTID_SET_ENCODING</a>.
4510      */
4511     er_malformed_gtid_set_encoding = 1773,
4512 
4513     /**
4514      * \brief Common server error. Error number: 1774, symbol:
4515      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_malformed_gtid_specification">ER_MALFORMED_GTID_SPECIFICATION</a>.
4516      */
4517     er_malformed_gtid_specification = 1774,
4518 
4519     /**
4520      * \brief Common server error. Error number: 1775, symbol:
4521      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gno_exhausted">ER_GNO_EXHAUSTED</a>.
4522      */
4523     er_gno_exhausted = 1775,
4524 
4525     /**
4526      * \brief Common server error. Error number: 1776, symbol:
4527      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_slave_auto_position">ER_BAD_SLAVE_AUTO_POSITION</a>.
4528      */
4529     er_bad_slave_auto_position = 1776,
4530 
4531     /**
4532      * \brief Common server error. Error number: 1778, symbol:
4533      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_do_implicit_commit_in_trx_when_gtid_next_is_set">ER_CANT_DO_IMPLICIT_COMMIT_IN_TRX_WHEN_GTID_NEXT_IS_SET</a>.
4534      */
4535     er_cant_do_implicit_commit_in_trx_when_gtid_next_is_set = 1778,
4536 
4537     /**
4538      * \brief Common server error. Error number: 1780, symbol:
4539      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gtid_mode_requires_binlog">ER_GTID_MODE_REQUIRES_BINLOG</a>.
4540      */
4541     er_gtid_mode_requires_binlog = 1780,
4542 
4543     /**
4544      * \brief Common server error. Error number: 1781, symbol:
4545      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_set_gtid_next_to_gtid_when_gtid_mode_is_off">ER_CANT_SET_GTID_NEXT_TO_GTID_WHEN_GTID_MODE_IS_OFF</a>.
4546      */
4547     er_cant_set_gtid_next_to_gtid_when_gtid_mode_is_off = 1781,
4548 
4549     /**
4550      * \brief Common server error. Error number: 1782, symbol:
4551      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_set_gtid_next_to_anonymous_when_gtid_mode_is_on">ER_CANT_SET_GTID_NEXT_TO_ANONYMOUS_WHEN_GTID_MODE_IS_ON</a>.
4552      */
4553     er_cant_set_gtid_next_to_anonymous_when_gtid_mode_is_on = 1782,
4554 
4555     /**
4556      * \brief Common server error. Error number: 1783, symbol:
4557      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_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</a>.
4558      */
4559     er_cant_set_gtid_next_list_to_non_null_when_gtid_mode_is_off = 1783,
4560 
4561     /**
4562      * \brief Common server error. Error number: 1785, symbol:
4563      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gtid_unsafe_non_transactional_table">ER_GTID_UNSAFE_NON_TRANSACTIONAL_TABLE</a>.
4564      */
4565     er_gtid_unsafe_non_transactional_table = 1785,
4566 
4567     /**
4568      * \brief Common server error. Error number: 1786, symbol:
4569      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gtid_unsafe_create_select">ER_GTID_UNSAFE_CREATE_SELECT</a>.
4570      */
4571     er_gtid_unsafe_create_select = 1786,
4572 
4573     /**
4574      * \brief Common server error. Error number: 1787, symbol:
4575      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gtid_unsafe_create_drop_temporary_table_in_transaction">ER_GTID_UNSAFE_CREATE_DROP_TEMPORARY_TABLE_IN_TRANSACTION</a>.
4576      */
4577     er_gtid_unsafe_create_drop_temporary_table_in_transaction = 1787,
4578 
4579     /**
4580      * \brief Common server error. Error number: 1788, symbol:
4581      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gtid_mode_can_only_change_one_step_at_a_time">ER_GTID_MODE_CAN_ONLY_CHANGE_ONE_STEP_AT_A_TIME</a>.
4582      */
4583     er_gtid_mode_can_only_change_one_step_at_a_time = 1788,
4584 
4585     /**
4586      * \brief Common server error. Error number: 1789, symbol:
4587      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_master_has_purged_required_gtids">ER_MASTER_HAS_PURGED_REQUIRED_GTIDS</a>.
4588      */
4589     er_master_has_purged_required_gtids = 1789,
4590 
4591     /**
4592      * \brief Common server error. Error number: 1790, symbol:
4593      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_set_gtid_next_when_owning_gtid">ER_CANT_SET_GTID_NEXT_WHEN_OWNING_GTID</a>.
4594      */
4595     er_cant_set_gtid_next_when_owning_gtid = 1790,
4596 
4597     /**
4598      * \brief Common server error. Error number: 1791, symbol:
4599      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_explain_format">ER_UNKNOWN_EXPLAIN_FORMAT</a>.
4600      */
4601     er_unknown_explain_format = 1791,
4602 
4603     /**
4604      * \brief Common server error. Error number: 1792, symbol:
4605      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_execute_in_read_only_transaction">ER_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION</a>.
4606      */
4607     er_cant_execute_in_read_only_transaction = 1792,
4608 
4609     /**
4610      * \brief Common server error. Error number: 1793, symbol:
4611      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_too_long_table_partition_comment">ER_TOO_LONG_TABLE_PARTITION_COMMENT</a>.
4612      */
4613     er_too_long_table_partition_comment = 1793,
4614 
4615     /**
4616      * \brief Common server error. Error number: 1794, symbol:
4617      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_configuration">ER_SLAVE_CONFIGURATION</a>.
4618      */
4619     er_slave_configuration = 1794,
4620 
4621     /**
4622      * \brief Common server error. Error number: 1795, symbol:
4623      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_ft_limit">ER_INNODB_FT_LIMIT</a>.
4624      */
4625     er_innodb_ft_limit = 1795,
4626 
4627     /**
4628      * \brief Common server error. Error number: 1796, symbol:
4629      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_no_ft_temp_table">ER_INNODB_NO_FT_TEMP_TABLE</a>.
4630      */
4631     er_innodb_no_ft_temp_table = 1796,
4632 
4633     /**
4634      * \brief Common server error. Error number: 1797, symbol:
4635      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_ft_wrong_docid_column">ER_INNODB_FT_WRONG_DOCID_COLUMN</a>.
4636      */
4637     er_innodb_ft_wrong_docid_column = 1797,
4638 
4639     /**
4640      * \brief Common server error. Error number: 1798, symbol:
4641      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_ft_wrong_docid_index">ER_INNODB_FT_WRONG_DOCID_INDEX</a>.
4642      */
4643     er_innodb_ft_wrong_docid_index = 1798,
4644 
4645     /**
4646      * \brief Common server error. Error number: 1799, symbol:
4647      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_online_log_too_big">ER_INNODB_ONLINE_LOG_TOO_BIG</a>.
4648      */
4649     er_innodb_online_log_too_big = 1799,
4650 
4651     /**
4652      * \brief Common server error. Error number: 1800, symbol:
4653      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_alter_algorithm">ER_UNKNOWN_ALTER_ALGORITHM</a>.
4654      */
4655     er_unknown_alter_algorithm = 1800,
4656 
4657     /**
4658      * \brief Common server error. Error number: 1801, symbol:
4659      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_alter_lock">ER_UNKNOWN_ALTER_LOCK</a>.
4660      */
4661     er_unknown_alter_lock = 1801,
4662 
4663     /**
4664      * \brief Common server error. Error number: 1802, symbol:
4665      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mts_change_master_cant_run_with_gaps">ER_MTS_CHANGE_MASTER_CANT_RUN_WITH_GAPS</a>.
4666      */
4667     er_mts_change_master_cant_run_with_gaps = 1802,
4668 
4669     /**
4670      * \brief Common server error. Error number: 1803, symbol:
4671      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mts_recovery_failure">ER_MTS_RECOVERY_FAILURE</a>.
4672      */
4673     er_mts_recovery_failure = 1803,
4674 
4675     /**
4676      * \brief Common server error. Error number: 1804, symbol:
4677      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mts_reset_workers">ER_MTS_RESET_WORKERS</a>.
4678      */
4679     er_mts_reset_workers = 1804,
4680 
4681     /**
4682      * \brief Common server error. Error number: 1805, symbol:
4683      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_col_count_doesnt_match_corrupted_v2">ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2</a>.
4684      */
4685     er_col_count_doesnt_match_corrupted_v2 = 1805,
4686 
4687     /**
4688      * \brief Common server error. Error number: 1806, symbol:
4689      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_silent_retry_transaction">ER_SLAVE_SILENT_RETRY_TRANSACTION</a>.
4690      */
4691     er_slave_silent_retry_transaction = 1806,
4692 
4693     /**
4694      * \brief Common server error. Error number: 1808, symbol:
4695      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_schema_mismatch">ER_TABLE_SCHEMA_MISMATCH</a>.
4696      */
4697     er_table_schema_mismatch = 1808,
4698 
4699     /**
4700      * \brief Common server error. Error number: 1809, symbol:
4701      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_in_system_tablespace">ER_TABLE_IN_SYSTEM_TABLESPACE</a>.
4702      */
4703     er_table_in_system_tablespace = 1809,
4704 
4705     /**
4706      * \brief Common server error. Error number: 1810, symbol:
4707      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_io_read_error">ER_IO_READ_ERROR</a>.
4708      */
4709     er_io_read_error = 1810,
4710 
4711     /**
4712      * \brief Common server error. Error number: 1811, symbol:
4713      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_io_write_error">ER_IO_WRITE_ERROR</a>.
4714      */
4715     er_io_write_error = 1811,
4716 
4717     /**
4718      * \brief Common server error. Error number: 1812, symbol:
4719      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tablespace_missing">ER_TABLESPACE_MISSING</a>.
4720      */
4721     er_tablespace_missing = 1812,
4722 
4723     /**
4724      * \brief Common server error. Error number: 1813, symbol:
4725      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tablespace_exists">ER_TABLESPACE_EXISTS</a>.
4726      */
4727     er_tablespace_exists = 1813,
4728 
4729     /**
4730      * \brief Common server error. Error number: 1814, symbol:
4731      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tablespace_discarded">ER_TABLESPACE_DISCARDED</a>.
4732      */
4733     er_tablespace_discarded = 1814,
4734 
4735     /**
4736      * \brief Common server error. Error number: 1815, symbol:
4737      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_internal_error">ER_INTERNAL_ERROR</a>.
4738      */
4739     er_internal_error = 1815,
4740 
4741     /**
4742      * \brief Common server error. Error number: 1816, symbol:
4743      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_import_error">ER_INNODB_IMPORT_ERROR</a>.
4744      */
4745     er_innodb_import_error = 1816,
4746 
4747     /**
4748      * \brief Common server error. Error number: 1817, symbol:
4749      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_index_corrupt">ER_INNODB_INDEX_CORRUPT</a>.
4750      */
4751     er_innodb_index_corrupt = 1817,
4752 
4753     /**
4754      * \brief Common server error. Error number: 1818, symbol:
4755      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_invalid_year_column_length">ER_INVALID_YEAR_COLUMN_LENGTH</a>.
4756      */
4757     er_invalid_year_column_length = 1818,
4758 
4759     /**
4760      * \brief Common server error. Error number: 1819, symbol:
4761      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_not_valid_password">ER_NOT_VALID_PASSWORD</a>.
4762      */
4763     er_not_valid_password = 1819,
4764 
4765     /**
4766      * \brief Common server error. Error number: 1820, symbol:
4767      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_must_change_password">ER_MUST_CHANGE_PASSWORD</a>.
4768      */
4769     er_must_change_password = 1820,
4770 
4771     /**
4772      * \brief Common server error. Error number: 1821, symbol:
4773      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_no_index_child">ER_FK_NO_INDEX_CHILD</a>.
4774      */
4775     er_fk_no_index_child = 1821,
4776 
4777     /**
4778      * \brief Common server error. Error number: 1822, symbol:
4779      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_no_index_parent">ER_FK_NO_INDEX_PARENT</a>.
4780      */
4781     er_fk_no_index_parent = 1822,
4782 
4783     /**
4784      * \brief Common server error. Error number: 1823, symbol:
4785      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_fail_add_system">ER_FK_FAIL_ADD_SYSTEM</a>.
4786      */
4787     er_fk_fail_add_system = 1823,
4788 
4789     /**
4790      * \brief Common server error. Error number: 1824, symbol:
4791      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_cannot_open_parent">ER_FK_CANNOT_OPEN_PARENT</a>.
4792      */
4793     er_fk_cannot_open_parent = 1824,
4794 
4795     /**
4796      * \brief Common server error. Error number: 1825, symbol:
4797      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_incorrect_option">ER_FK_INCORRECT_OPTION</a>.
4798      */
4799     er_fk_incorrect_option = 1825,
4800 
4801     /**
4802      * \brief Common server error. Error number: 1827, symbol:
4803      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_password_format">ER_PASSWORD_FORMAT</a>.
4804      */
4805     er_password_format = 1827,
4806 
4807     /**
4808      * \brief Common server error. Error number: 1828, symbol:
4809      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_column_cannot_drop">ER_FK_COLUMN_CANNOT_DROP</a>.
4810      */
4811     er_fk_column_cannot_drop = 1828,
4812 
4813     /**
4814      * \brief Common server error. Error number: 1829, symbol:
4815      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_column_cannot_drop_child">ER_FK_COLUMN_CANNOT_DROP_CHILD</a>.
4816      */
4817     er_fk_column_cannot_drop_child = 1829,
4818 
4819     /**
4820      * \brief Common server error. Error number: 1830, symbol:
4821      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_column_not_null">ER_FK_COLUMN_NOT_NULL</a>.
4822      */
4823     er_fk_column_not_null = 1830,
4824 
4825     /**
4826      * \brief Common server error. Error number: 1831, symbol:
4827      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_index">ER_DUP_INDEX</a>.
4828      */
4829     er_dup_index = 1831,
4830 
4831     /**
4832      * \brief Common server error. Error number: 1832, symbol:
4833      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_column_cannot_change">ER_FK_COLUMN_CANNOT_CHANGE</a>.
4834      */
4835     er_fk_column_cannot_change = 1832,
4836 
4837     /**
4838      * \brief Common server error. Error number: 1833, symbol:
4839      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fk_column_cannot_change_child">ER_FK_COLUMN_CANNOT_CHANGE_CHILD</a>.
4840      */
4841     er_fk_column_cannot_change_child = 1833,
4842 
4843     /**
4844      * \brief Common server error. Error number: 1835, symbol:
4845      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_malformed_packet">ER_MALFORMED_PACKET</a>.
4846      */
4847     er_malformed_packet = 1835,
4848 
4849     /**
4850      * \brief Common server error. Error number: 1836, symbol:
4851      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_read_only_mode">ER_READ_ONLY_MODE</a>.
4852      */
4853     er_read_only_mode = 1836,
4854 
4855     /**
4856      * \brief Common server error. Error number: 1838, symbol:
4857      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_variable_not_settable_in_sp">ER_VARIABLE_NOT_SETTABLE_IN_SP</a>.
4858      */
4859     er_variable_not_settable_in_sp = 1838,
4860 
4861     /**
4862      * \brief Common server error. Error number: 1839, symbol:
4863      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_set_gtid_purged_when_gtid_mode_is_off">ER_CANT_SET_GTID_PURGED_WHEN_GTID_MODE_IS_OFF</a>.
4864      */
4865     er_cant_set_gtid_purged_when_gtid_mode_is_off = 1839,
4866 
4867     /**
4868      * \brief Common server error. Error number: 1840, symbol:
4869      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_set_gtid_purged_when_gtid_executed_is_not_empty">ER_CANT_SET_GTID_PURGED_WHEN_GTID_EXECUTED_IS_NOT_EMPTY</a>.
4870      */
4871     er_cant_set_gtid_purged_when_gtid_executed_is_not_empty = 1840,
4872 
4873     /**
4874      * \brief Common server error. Error number: 1841, symbol:
4875      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_set_gtid_purged_when_owned_gtids_is_not_empty">ER_CANT_SET_GTID_PURGED_WHEN_OWNED_GTIDS_IS_NOT_EMPTY</a>.
4876      */
4877     er_cant_set_gtid_purged_when_owned_gtids_is_not_empty = 1841,
4878 
4879     /**
4880      * \brief Common server error. Error number: 1842, symbol:
4881      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gtid_purged_was_changed">ER_GTID_PURGED_WAS_CHANGED</a>.
4882      */
4883     er_gtid_purged_was_changed = 1842,
4884 
4885     /**
4886      * \brief Common server error. Error number: 1843, symbol:
4887      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gtid_executed_was_changed">ER_GTID_EXECUTED_WAS_CHANGED</a>.
4888      */
4889     er_gtid_executed_was_changed = 1843,
4890 
4891     /**
4892      * \brief Common server error. Error number: 1844, symbol:
4893      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_stmt_mode_and_no_repl_tables">ER_BINLOG_STMT_MODE_AND_NO_REPL_TABLES</a>.
4894      */
4895     er_binlog_stmt_mode_and_no_repl_tables = 1844,
4896 
4897     /**
4898      * \brief Common server error. Error number: 1845, symbol:
4899      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported">ER_ALTER_OPERATION_NOT_SUPPORTED</a>.
4900      */
4901     er_alter_operation_not_supported = 1845,
4902 
4903     /**
4904      * \brief Common server error. Error number: 1846, symbol:
4905      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON</a>.
4906      */
4907     er_alter_operation_not_supported_reason = 1846,
4908 
4909     /**
4910      * \brief Common server error. Error number: 1847, symbol:
4911      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_copy">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COPY</a>.
4912      */
4913     er_alter_operation_not_supported_reason_copy = 1847,
4914 
4915     /**
4916      * \brief Common server error. Error number: 1848, symbol:
4917      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_partition">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_PARTITION</a>.
4918      */
4919     er_alter_operation_not_supported_reason_partition = 1848,
4920 
4921     /**
4922      * \brief Common server error. Error number: 1849, symbol:
4923      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_fk_rename">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_RENAME</a>.
4924      */
4925     er_alter_operation_not_supported_reason_fk_rename = 1849,
4926 
4927     /**
4928      * \brief Common server error. Error number: 1850, symbol:
4929      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_column_type">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE</a>.
4930      */
4931     er_alter_operation_not_supported_reason_column_type = 1850,
4932 
4933     /**
4934      * \brief Common server error. Error number: 1851, symbol:
4935      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_fk_check">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_CHECK</a>.
4936      */
4937     er_alter_operation_not_supported_reason_fk_check = 1851,
4938 
4939     /**
4940      * \brief Common server error. Error number: 1853, symbol:
4941      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_nopk">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOPK</a>.
4942      */
4943     er_alter_operation_not_supported_reason_nopk = 1853,
4944 
4945     /**
4946      * \brief Common server error. Error number: 1854, symbol:
4947      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_autoinc">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_AUTOINC</a>.
4948      */
4949     er_alter_operation_not_supported_reason_autoinc = 1854,
4950 
4951     /**
4952      * \brief Common server error. Error number: 1855, symbol:
4953      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_hidden_fts">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_HIDDEN_FTS</a>.
4954      */
4955     er_alter_operation_not_supported_reason_hidden_fts = 1855,
4956 
4957     /**
4958      * \brief Common server error. Error number: 1856, symbol:
4959      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_change_fts">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_CHANGE_FTS</a>.
4960      */
4961     er_alter_operation_not_supported_reason_change_fts = 1856,
4962 
4963     /**
4964      * \brief Common server error. Error number: 1857, symbol:
4965      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_fts">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FTS</a>.
4966      */
4967     er_alter_operation_not_supported_reason_fts = 1857,
4968 
4969     /**
4970      * \brief Common server error. Error number: 1858, symbol:
4971      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sql_slave_skip_counter_not_settable_in_gtid_mode">ER_SQL_SLAVE_SKIP_COUNTER_NOT_SETTABLE_IN_GTID_MODE</a>.
4972      */
4973     er_sql_slave_skip_counter_not_settable_in_gtid_mode = 1858,
4974 
4975     /**
4976      * \brief Common server error. Error number: 1859, symbol:
4977      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_unknown_in_index">ER_DUP_UNKNOWN_IN_INDEX</a>.
4978      */
4979     er_dup_unknown_in_index = 1859,
4980 
4981     /**
4982      * \brief Common server error. Error number: 1860, symbol:
4983      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_ident_causes_too_long_path">ER_IDENT_CAUSES_TOO_LONG_PATH</a>.
4984      */
4985     er_ident_causes_too_long_path = 1860,
4986 
4987     /**
4988      * \brief Common server error. Error number: 1861, symbol:
4989      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_operation_not_supported_reason_not_null">ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOT_NULL</a>.
4990      */
4991     er_alter_operation_not_supported_reason_not_null = 1861,
4992 
4993     /**
4994      * \brief Common server error. Error number: 1862, symbol:
4995      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_must_change_password_login">ER_MUST_CHANGE_PASSWORD_LOGIN</a>.
4996      */
4997     er_must_change_password_login = 1862,
4998 
4999     /**
5000      * \brief Common server error. Error number: 1863, symbol:
5001      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_row_in_wrong_partition">ER_ROW_IN_WRONG_PARTITION</a>.
5002      */
5003     er_row_in_wrong_partition = 1863,
5004 
5005     /**
5006      * \brief Common server error. Error number: 1864, symbol:
5007      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_mts_event_bigger_pending_jobs_size_max">ER_MTS_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX</a>.
5008      */
5009     er_mts_event_bigger_pending_jobs_size_max = 1864,
5010 
5011     /**
5012      * \brief Common server error. Error number: 1865, symbol:
5013      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_no_ft_uses_parser">ER_INNODB_NO_FT_USES_PARSER</a>.
5014      */
5015     er_innodb_no_ft_uses_parser = 1865,
5016 
5017     /**
5018      * \brief Common server error. Error number: 1866, symbol:
5019      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_binlog_logical_corruption">ER_BINLOG_LOGICAL_CORRUPTION</a>.
5020      */
5021     er_binlog_logical_corruption = 1866,
5022 
5023     /**
5024      * \brief Common server error. Error number: 1867, symbol:
5025      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_purge_log_in_use">ER_WARN_PURGE_LOG_IN_USE</a>.
5026      */
5027     er_warn_purge_log_in_use = 1867,
5028 
5029     /**
5030      * \brief Common server error. Error number: 1868, symbol:
5031      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_warn_purge_log_is_active">ER_WARN_PURGE_LOG_IS_ACTIVE</a>.
5032      */
5033     er_warn_purge_log_is_active = 1868,
5034 
5035     /**
5036      * \brief Common server error. Error number: 1869, symbol:
5037      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_auto_increment_conflict">ER_AUTO_INCREMENT_CONFLICT</a>.
5038      */
5039     er_auto_increment_conflict = 1869,
5040 
5041     /**
5042      * \brief Common server error. Error number: 1870, symbol:
5043      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_on_blockhole_in_rbr">WARN_ON_BLOCKHOLE_IN_RBR</a>.
5044      */
5045     warn_on_blockhole_in_rbr = 1870,
5046 
5047     /**
5048      * \brief Common server error. Error number: 1871, symbol:
5049      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_mi_init_repository">ER_SLAVE_MI_INIT_REPOSITORY</a>.
5050      */
5051     er_slave_mi_init_repository = 1871,
5052 
5053     /**
5054      * \brief Common server error. Error number: 1872, symbol:
5055      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_rli_init_repository">ER_SLAVE_RLI_INIT_REPOSITORY</a>.
5056      */
5057     er_slave_rli_init_repository = 1872,
5058 
5059     /**
5060      * \brief Common server error. Error number: 1873, symbol:
5061      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_access_denied_change_user_error">ER_ACCESS_DENIED_CHANGE_USER_ERROR</a>.
5062      */
5063     er_access_denied_change_user_error = 1873,
5064 
5065     /**
5066      * \brief Common server error. Error number: 1874, symbol:
5067      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_read_only">ER_INNODB_READ_ONLY</a>.
5068      */
5069     er_innodb_read_only = 1874,
5070 
5071     /**
5072      * \brief Common server error. Error number: 1875, symbol:
5073      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stop_slave_sql_thread_timeout">ER_STOP_SLAVE_SQL_THREAD_TIMEOUT</a>.
5074      */
5075     er_stop_slave_sql_thread_timeout = 1875,
5076 
5077     /**
5078      * \brief Common server error. Error number: 1876, symbol:
5079      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stop_slave_io_thread_timeout">ER_STOP_SLAVE_IO_THREAD_TIMEOUT</a>.
5080      */
5081     er_stop_slave_io_thread_timeout = 1876,
5082 
5083     /**
5084      * \brief Common server error. Error number: 1877, symbol:
5085      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_corrupt">ER_TABLE_CORRUPT</a>.
5086      */
5087     er_table_corrupt = 1877,
5088 
5089     /**
5090      * \brief Common server error. Error number: 1878, symbol:
5091      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_temp_file_write_failure">ER_TEMP_FILE_WRITE_FAILURE</a>.
5092      */
5093     er_temp_file_write_failure = 1878,
5094 
5095     /**
5096      * \brief Common server error. Error number: 1879, symbol:
5097      * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_innodb_ft_aux_not_hex_id">ER_INNODB_FT_AUX_NOT_HEX_ID</a>.
5098      */
5099     er_innodb_ft_aux_not_hex_id = 1879,
5100 
5101 };
5102 
5103 BOOST_MYSQL_DECL
5104 const boost::system::error_category& get_common_server_category() noexcept;
5105 
5106 /// Creates an \ref error_code from a \ref common_server_errc.
5107 inline error_code make_error_code(common_server_errc error)
5108 {
5109     return error_code(static_cast<int>(error), get_common_server_category());
5110 }
5111 
5112 }  // namespace mysql
5113 
5114 #ifndef BOOST_MYSQL_DOXYGEN
5115 namespace system {
5116 
5117 template <>
5118 struct is_error_code_enum<::boost::mysql::common_server_errc>
5119 {
5120     static constexpr bool value = true;
5121 };
5122 
5123 }  // namespace system
5124 #endif
5125 
5126 }  // namespace boost
5127 
5128 #ifdef BOOST_MYSQL_HEADER_ONLY
5129 #include <boost/mysql/impl/error_categories.ipp>
5130 #endif
5131 
5132 #endif