mariadb_server_errc.hpp 55 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064
  1. //
  2. // Copyright (c) 2019-2024 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. #ifndef BOOST_MYSQL_MARIADB_SERVER_ERRC_HPP
  8. #define BOOST_MYSQL_MARIADB_SERVER_ERRC_HPP
  9. #include <boost/config.hpp>
  10. namespace boost {
  11. namespace mysql {
  12. namespace mariadb_server_errc {
  13. /// Server error specific to mariadb. Error number: 1076, symbol: ER_BINLOG_CANT_DELETE_GTID_DOMAIN.
  14. BOOST_INLINE_CONSTEXPR int er_binlog_cant_delete_gtid_domain = 1076;
  15. /// Server error specific to mariadb. Error number: 1120, symbol: ER_WRONG_OUTER_JOIN.
  16. BOOST_INLINE_CONSTEXPR int er_wrong_outer_join = 1120;
  17. /// Server error specific to mariadb. Error number: 1150, symbol: ER_DELAYED_CANT_CHANGE_LOCK.
  18. BOOST_INLINE_CONSTEXPR int er_delayed_cant_change_lock = 1150;
  19. /// Server error specific to mariadb. Error number: 1151, symbol: ER_TOO_MANY_DELAYED_THREADS.
  20. BOOST_INLINE_CONSTEXPR int er_too_many_delayed_threads = 1151;
  21. /// Server error specific to mariadb. Error number: 1165, symbol: ER_DELAYED_INSERT_TABLE_LOCKED.
  22. BOOST_INLINE_CONSTEXPR int er_delayed_insert_table_locked = 1165;
  23. /// Server error specific to mariadb. Error number: 1176, symbol: ER_KEY_DOES_NOT_EXISTS.
  24. BOOST_INLINE_CONSTEXPR int er_key_does_not_exists = 1176;
  25. /// Server error specific to mariadb. Error number: 1349, symbol: ER_VIEW_SELECT_DERIVED.
  26. BOOST_INLINE_CONSTEXPR int er_view_select_derived = 1349;
  27. /// Server error specific to mariadb. Error number: 1487, symbol: ER_NOT_CONSTANT_EXPRESSION.
  28. BOOST_INLINE_CONSTEXPR int er_not_constant_expression = 1487;
  29. /// Server error specific to mariadb. Error number: 1506, symbol: ER_FEATURE_NOT_SUPPORTED_WITH_PARTITIONING.
  30. BOOST_INLINE_CONSTEXPR int er_feature_not_supported_with_partitioning = 1506;
  31. /// Server error specific to mariadb. Error number: 1593, symbol: ER_SLAVE_FATAL_ERROR.
  32. BOOST_INLINE_CONSTEXPR int er_slave_fatal_error = 1593;
  33. /// Server error specific to mariadb. Error number: 1611, symbol: ER_LOAD_DATA_INVALID_COLUMN.
  34. BOOST_INLINE_CONSTEXPR int er_load_data_invalid_column = 1611;
  35. /// Server error specific to mariadb. Error number: 1669, symbol: ER_BINLOG_UNSAFE_INSERT_DELAYED.
  36. BOOST_INLINE_CONSTEXPR int er_binlog_unsafe_insert_delayed = 1669;
  37. /// Server error specific to mariadb. Error number: 1726, symbol: ER_VERS_NOT_ALLOWED.
  38. BOOST_INLINE_CONSTEXPR int er_vers_not_allowed = 1726;
  39. /// Server error specific to mariadb. Error number: 1742, symbol: ER_VALUE_TOO_LONG.
  40. BOOST_INLINE_CONSTEXPR int er_value_too_long = 1742;
  41. /// Server error specific to mariadb. Error number: 1768, symbol: ER_CANT_CHANGE_GTID_NEXT_IN_TRANSACTION_WHEN_GTID_NEXT_LIST_IS_NULL.
  42. BOOST_INLINE_CONSTEXPR int er_cant_change_gtid_next_in_transaction_when_gtid_next_list_is_null = 1768;
  43. /// Server error specific to mariadb. Error number: 1777, symbol: ER_AUTO_POSITION_REQUIRES_GTID_MODE_ON.
  44. BOOST_INLINE_CONSTEXPR int er_auto_position_requires_gtid_mode_on = 1777;
  45. /// Server error specific to mariadb. Error number: 1779, symbol: ER_GTID_MODE_2_OR_3_REQUIRES_ENFORCE_GTID_CONSISTENCY_ON.
  46. BOOST_INLINE_CONSTEXPR int er_gtid_mode_2_or_3_requires_enforce_gtid_consistency_on = 1779;
  47. /// Server error specific to mariadb. Error number: 1784, symbol: ER_FOUND_GTID_EVENT_WHEN_GTID_MODE_IS_OFF.
  48. BOOST_INLINE_CONSTEXPR int er_found_gtid_event_when_gtid_mode_is_off = 1784;
  49. /// Server error specific to mariadb. Error number: 1826, symbol: ER_DUP_CONSTRAINT_NAME.
  50. BOOST_INLINE_CONSTEXPR int er_dup_constraint_name = 1826;
  51. /// Server error specific to mariadb. Error number: 1834, symbol: ER_FK_CANNOT_DELETE_PARENT.
  52. BOOST_INLINE_CONSTEXPR int er_fk_cannot_delete_parent = 1834;
  53. /// Server error specific to mariadb. Error number: 1837, symbol: ER_GTID_NEXT_TYPE_UNDEFINED_GROUP.
  54. BOOST_INLINE_CONSTEXPR int er_gtid_next_type_undefined_group = 1837;
  55. /// Server error specific to mariadb. Error number: 1852, symbol: ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_IGNORE.
  56. BOOST_INLINE_CONSTEXPR int er_alter_operation_not_supported_reason_ignore = 1852;
  57. /// Server error specific to mariadb. Error number: 1901, symbol: ER_GENERATED_COLUMN_FUNCTION_IS_NOT_ALLOWED.
  58. BOOST_INLINE_CONSTEXPR int er_generated_column_function_is_not_allowed = 1901;
  59. /// Server error specific to mariadb. Error number: 1903, symbol: ER_PRIMARY_KEY_BASED_ON_GENERATED_COLUMN.
  60. BOOST_INLINE_CONSTEXPR int er_primary_key_based_on_generated_column = 1903;
  61. /// Server error specific to mariadb. Error number: 1904, symbol: ER_KEY_BASED_ON_GENERATED_VIRTUAL_COLUMN.
  62. BOOST_INLINE_CONSTEXPR int er_key_based_on_generated_virtual_column = 1904;
  63. /// Server error specific to mariadb. Error number: 1905, symbol: ER_WRONG_FK_OPTION_FOR_GENERATED_COLUMN.
  64. BOOST_INLINE_CONSTEXPR int er_wrong_fk_option_for_generated_column = 1905;
  65. /// Server error specific to mariadb. Error number: 1906, symbol: ER_WARNING_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN.
  66. BOOST_INLINE_CONSTEXPR int er_warning_non_default_value_for_generated_column = 1906;
  67. /// Server error specific to mariadb. Error number: 1907, symbol: ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN.
  68. BOOST_INLINE_CONSTEXPR int er_unsupported_action_on_generated_column = 1907;
  69. /// Server error specific to mariadb. Error number: 1910, symbol: ER_UNSUPPORTED_ENGINE_FOR_GENERATED_COLUMNS.
  70. BOOST_INLINE_CONSTEXPR int er_unsupported_engine_for_generated_columns = 1910;
  71. /// Server error specific to mariadb. Error number: 1911, symbol: ER_UNKNOWN_OPTION.
  72. BOOST_INLINE_CONSTEXPR int er_unknown_option = 1911;
  73. /// Server error specific to mariadb. Error number: 1912, symbol: ER_BAD_OPTION_VALUE.
  74. BOOST_INLINE_CONSTEXPR int er_bad_option_value = 1912;
  75. /// Server error specific to mariadb. Error number: 1916, symbol: ER_DATA_OVERFLOW.
  76. BOOST_INLINE_CONSTEXPR int er_data_overflow = 1916;
  77. /// Server error specific to mariadb. Error number: 1917, symbol: ER_DATA_TRUNCATED.
  78. BOOST_INLINE_CONSTEXPR int er_data_truncated = 1917;
  79. /// Server error specific to mariadb. Error number: 1918, symbol: ER_BAD_DATA.
  80. BOOST_INLINE_CONSTEXPR int er_bad_data = 1918;
  81. /// Server error specific to mariadb. Error number: 1919, symbol: ER_DYN_COL_WRONG_FORMAT.
  82. BOOST_INLINE_CONSTEXPR int er_dyn_col_wrong_format = 1919;
  83. /// Server error specific to mariadb. Error number: 1920, symbol: ER_DYN_COL_IMPLEMENTATION_LIMIT.
  84. BOOST_INLINE_CONSTEXPR int er_dyn_col_implementation_limit = 1920;
  85. /// Server error specific to mariadb. Error number: 1921, symbol: ER_DYN_COL_DATA.
  86. BOOST_INLINE_CONSTEXPR int er_dyn_col_data = 1921;
  87. /// Server error specific to mariadb. Error number: 1922, symbol: ER_DYN_COL_WRONG_CHARSET.
  88. BOOST_INLINE_CONSTEXPR int er_dyn_col_wrong_charset = 1922;
  89. /// Server error specific to mariadb. Error number: 1923, symbol: ER_ILLEGAL_SUBQUERY_OPTIMIZER_SWITCHES.
  90. BOOST_INLINE_CONSTEXPR int er_illegal_subquery_optimizer_switches = 1923;
  91. /// Server error specific to mariadb. Error number: 1924, symbol: ER_QUERY_CACHE_IS_DISABLED.
  92. BOOST_INLINE_CONSTEXPR int er_query_cache_is_disabled = 1924;
  93. /// Server error specific to mariadb. Error number: 1925, symbol: ER_QUERY_CACHE_IS_GLOBALY_DISABLED.
  94. BOOST_INLINE_CONSTEXPR int er_query_cache_is_globaly_disabled = 1925;
  95. /// Server error specific to mariadb. Error number: 1926, symbol: ER_VIEW_ORDERBY_IGNORED.
  96. BOOST_INLINE_CONSTEXPR int er_view_orderby_ignored = 1926;
  97. /// Server error specific to mariadb. Error number: 1927, symbol: ER_CONNECTION_KILLED.
  98. BOOST_INLINE_CONSTEXPR int er_connection_killed = 1927;
  99. /// Server error specific to mariadb. Error number: 1929, symbol: ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_SKIP_REPLICATION.
  100. BOOST_INLINE_CONSTEXPR int er_inside_transaction_prevents_switch_skip_replication = 1929;
  101. /// Server error specific to mariadb. Error number: 1930, symbol: ER_STORED_FUNCTION_PREVENTS_SWITCH_SKIP_REPLICATION.
  102. BOOST_INLINE_CONSTEXPR int er_stored_function_prevents_switch_skip_replication = 1930;
  103. /// Server error specific to mariadb. Error number: 1931, symbol: ER_QUERY_EXCEEDED_ROWS_EXAMINED_LIMIT.
  104. BOOST_INLINE_CONSTEXPR int er_query_exceeded_rows_examined_limit = 1931;
  105. /// Server error specific to mariadb. Error number: 1932, symbol: ER_NO_SUCH_TABLE_IN_ENGINE.
  106. BOOST_INLINE_CONSTEXPR int er_no_such_table_in_engine = 1932;
  107. /// Server error specific to mariadb. Error number: 1933, symbol: ER_TARGET_NOT_EXPLAINABLE.
  108. BOOST_INLINE_CONSTEXPR int er_target_not_explainable = 1933;
  109. /// Server error specific to mariadb. Error number: 1934, symbol: ER_CONNECTION_ALREADY_EXISTS.
  110. BOOST_INLINE_CONSTEXPR int er_connection_already_exists = 1934;
  111. /// Server error specific to mariadb. Error number: 1935, symbol: ER_MASTER_LOG_PREFIX.
  112. BOOST_INLINE_CONSTEXPR int er_master_log_prefix = 1935;
  113. /// Server error specific to mariadb. Error number: 1936, symbol: ER_CANT_START_STOP_SLAVE.
  114. BOOST_INLINE_CONSTEXPR int er_cant_start_stop_slave = 1936;
  115. /// Server error specific to mariadb. Error number: 1937, symbol: ER_SLAVE_STARTED.
  116. BOOST_INLINE_CONSTEXPR int er_slave_started = 1937;
  117. /// Server error specific to mariadb. Error number: 1938, symbol: ER_SLAVE_STOPPED.
  118. BOOST_INLINE_CONSTEXPR int er_slave_stopped = 1938;
  119. /// Server error specific to mariadb. Error number: 1939, symbol: ER_SQL_DISCOVER_ERROR.
  120. BOOST_INLINE_CONSTEXPR int er_sql_discover_error = 1939;
  121. /// Server error specific to mariadb. Error number: 1940, symbol: ER_FAILED_GTID_STATE_INIT.
  122. BOOST_INLINE_CONSTEXPR int er_failed_gtid_state_init = 1940;
  123. /// Server error specific to mariadb. Error number: 1941, symbol: ER_INCORRECT_GTID_STATE.
  124. BOOST_INLINE_CONSTEXPR int er_incorrect_gtid_state = 1941;
  125. /// Server error specific to mariadb. Error number: 1942, symbol: ER_CANNOT_UPDATE_GTID_STATE.
  126. BOOST_INLINE_CONSTEXPR int er_cannot_update_gtid_state = 1942;
  127. /// Server error specific to mariadb. Error number: 1943, symbol: ER_DUPLICATE_GTID_DOMAIN.
  128. BOOST_INLINE_CONSTEXPR int er_duplicate_gtid_domain = 1943;
  129. /// Server error specific to mariadb. Error number: 1944, symbol: ER_GTID_OPEN_TABLE_FAILED.
  130. BOOST_INLINE_CONSTEXPR int er_gtid_open_table_failed = 1944;
  131. /// Server error specific to mariadb. Error number: 1945, symbol: ER_GTID_POSITION_NOT_FOUND_IN_BINLOG.
  132. BOOST_INLINE_CONSTEXPR int er_gtid_position_not_found_in_binlog = 1945;
  133. /// Server error specific to mariadb. Error number: 1946, symbol: ER_CANNOT_LOAD_SLAVE_GTID_STATE.
  134. BOOST_INLINE_CONSTEXPR int er_cannot_load_slave_gtid_state = 1946;
  135. /// Server error specific to mariadb. Error number: 1947, symbol: ER_MASTER_GTID_POS_CONFLICTS_WITH_BINLOG.
  136. BOOST_INLINE_CONSTEXPR int er_master_gtid_pos_conflicts_with_binlog = 1947;
  137. /// Server error specific to mariadb. Error number: 1948, symbol: ER_MASTER_GTID_POS_MISSING_DOMAIN.
  138. BOOST_INLINE_CONSTEXPR int er_master_gtid_pos_missing_domain = 1948;
  139. /// Server error specific to mariadb. Error number: 1949, symbol: ER_UNTIL_REQUIRES_USING_GTID.
  140. BOOST_INLINE_CONSTEXPR int er_until_requires_using_gtid = 1949;
  141. /// Server error specific to mariadb. Error number: 1950, symbol: ER_GTID_STRICT_OUT_OF_ORDER.
  142. BOOST_INLINE_CONSTEXPR int er_gtid_strict_out_of_order = 1950;
  143. /// Server error specific to mariadb. Error number: 1951, symbol: ER_GTID_START_FROM_BINLOG_HOLE.
  144. BOOST_INLINE_CONSTEXPR int er_gtid_start_from_binlog_hole = 1951;
  145. /// Server error specific to mariadb. Error number: 1952, symbol: ER_SLAVE_UNEXPECTED_MASTER_SWITCH.
  146. BOOST_INLINE_CONSTEXPR int er_slave_unexpected_master_switch = 1952;
  147. /// Server error specific to mariadb. Error number: 1953, symbol: ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_GTID_DOMAIN_ID_SEQ_NO.
  148. BOOST_INLINE_CONSTEXPR int er_inside_transaction_prevents_switch_gtid_domain_id_seq_no = 1953;
  149. /// Server error specific to mariadb. Error number: 1954, symbol: ER_STORED_FUNCTION_PREVENTS_SWITCH_GTID_DOMAIN_ID_SEQ_NO.
  150. BOOST_INLINE_CONSTEXPR int er_stored_function_prevents_switch_gtid_domain_id_seq_no = 1954;
  151. /// Server error specific to mariadb. Error number: 1955, symbol: ER_GTID_POSITION_NOT_FOUND_IN_BINLOG2.
  152. BOOST_INLINE_CONSTEXPR int er_gtid_position_not_found_in_binlog2 = 1955;
  153. /// Server error specific to mariadb. Error number: 1956, symbol: ER_BINLOG_MUST_BE_EMPTY.
  154. BOOST_INLINE_CONSTEXPR int er_binlog_must_be_empty = 1956;
  155. /// Server error specific to mariadb. Error number: 1957, symbol: ER_NO_SUCH_QUERY.
  156. BOOST_INLINE_CONSTEXPR int er_no_such_query = 1957;
  157. /// Server error specific to mariadb. Error number: 1958, symbol: ER_BAD_BASE64_DATA.
  158. BOOST_INLINE_CONSTEXPR int er_bad_base64_data = 1958;
  159. /// Server error specific to mariadb. Error number: 1959, symbol: ER_INVALID_ROLE.
  160. BOOST_INLINE_CONSTEXPR int er_invalid_role = 1959;
  161. /// Server error specific to mariadb. Error number: 1960, symbol: ER_INVALID_CURRENT_USER.
  162. BOOST_INLINE_CONSTEXPR int er_invalid_current_user = 1960;
  163. /// Server error specific to mariadb. Error number: 1961, symbol: ER_CANNOT_GRANT_ROLE.
  164. BOOST_INLINE_CONSTEXPR int er_cannot_grant_role = 1961;
  165. /// Server error specific to mariadb. Error number: 1962, symbol: ER_CANNOT_REVOKE_ROLE.
  166. BOOST_INLINE_CONSTEXPR int er_cannot_revoke_role = 1962;
  167. /// Server error specific to mariadb. Error number: 1963, symbol: ER_CHANGE_SLAVE_PARALLEL_THREADS_ACTIVE.
  168. BOOST_INLINE_CONSTEXPR int er_change_slave_parallel_threads_active = 1963;
  169. /// Server error specific to mariadb. Error number: 1964, symbol: ER_PRIOR_COMMIT_FAILED.
  170. BOOST_INLINE_CONSTEXPR int er_prior_commit_failed = 1964;
  171. /// Server error specific to mariadb. Error number: 1965, symbol: ER_IT_IS_A_VIEW.
  172. BOOST_INLINE_CONSTEXPR int er_it_is_a_view = 1965;
  173. /// Server error specific to mariadb. Error number: 1966, symbol: ER_SLAVE_SKIP_NOT_IN_GTID.
  174. BOOST_INLINE_CONSTEXPR int er_slave_skip_not_in_gtid = 1966;
  175. /// Server error specific to mariadb. Error number: 1967, symbol: ER_TABLE_DEFINITION_TOO_BIG.
  176. BOOST_INLINE_CONSTEXPR int er_table_definition_too_big = 1967;
  177. /// Server error specific to mariadb. Error number: 1968, symbol: ER_PLUGIN_INSTALLED.
  178. BOOST_INLINE_CONSTEXPR int er_plugin_installed = 1968;
  179. /// Server error specific to mariadb. Error number: 1969, symbol: ER_STATEMENT_TIMEOUT.
  180. BOOST_INLINE_CONSTEXPR int er_statement_timeout = 1969;
  181. /// Server error specific to mariadb. Error number: 1970, symbol: ER_SUBQUERIES_NOT_SUPPORTED.
  182. BOOST_INLINE_CONSTEXPR int er_subqueries_not_supported = 1970;
  183. /// Server error specific to mariadb. Error number: 1971, symbol: ER_SET_STATEMENT_NOT_SUPPORTED.
  184. BOOST_INLINE_CONSTEXPR int er_set_statement_not_supported = 1971;
  185. /// Server error specific to mariadb. Error number: 1973, symbol: ER_USER_CREATE_EXISTS.
  186. BOOST_INLINE_CONSTEXPR int er_user_create_exists = 1973;
  187. /// Server error specific to mariadb. Error number: 1974, symbol: ER_USER_DROP_EXISTS.
  188. BOOST_INLINE_CONSTEXPR int er_user_drop_exists = 1974;
  189. /// Server error specific to mariadb. Error number: 1975, symbol: ER_ROLE_CREATE_EXISTS.
  190. BOOST_INLINE_CONSTEXPR int er_role_create_exists = 1975;
  191. /// Server error specific to mariadb. Error number: 1976, symbol: ER_ROLE_DROP_EXISTS.
  192. BOOST_INLINE_CONSTEXPR int er_role_drop_exists = 1976;
  193. /// Server error specific to mariadb. Error number: 1977, symbol: ER_CANNOT_CONVERT_CHARACTER.
  194. BOOST_INLINE_CONSTEXPR int er_cannot_convert_character = 1977;
  195. /// Server error specific to mariadb. Error number: 1978, symbol: ER_INVALID_DEFAULT_VALUE_FOR_FIELD.
  196. BOOST_INLINE_CONSTEXPR int er_invalid_default_value_for_field = 1978;
  197. /// Server error specific to mariadb. Error number: 1979, symbol: ER_KILL_QUERY_DENIED_ERROR.
  198. BOOST_INLINE_CONSTEXPR int er_kill_query_denied_error = 1979;
  199. /// Server error specific to mariadb. Error number: 1980, symbol: ER_NO_EIS_FOR_FIELD.
  200. BOOST_INLINE_CONSTEXPR int er_no_eis_for_field = 1980;
  201. /// Server error specific to mariadb. Error number: 1981, symbol: ER_WARN_AGGFUNC_DEPENDENCE.
  202. BOOST_INLINE_CONSTEXPR int er_warn_aggfunc_dependence = 1981;
  203. /// Server error specific to mariadb. Error number: 1982, symbol: WARN_INNODB_PARTITION_OPTION_IGNORED.
  204. BOOST_INLINE_CONSTEXPR int warn_innodb_partition_option_ignored = 1982;
  205. /// Server error specific to mariadb. Error number: 3000, symbol: ER_FILE_CORRUPT.
  206. BOOST_INLINE_CONSTEXPR int er_file_corrupt = 3000;
  207. /// Server error specific to mariadb. Error number: 3001, symbol: ER_ERROR_ON_MASTER.
  208. BOOST_INLINE_CONSTEXPR int er_error_on_master = 3001;
  209. /// Server error specific to mariadb. Error number: 3002, symbol: ER_INCONSISTENT_ERROR.
  210. BOOST_INLINE_CONSTEXPR int er_inconsistent_error = 3002;
  211. /// Server error specific to mariadb. Error number: 3003, symbol: ER_STORAGE_ENGINE_NOT_LOADED.
  212. BOOST_INLINE_CONSTEXPR int er_storage_engine_not_loaded = 3003;
  213. /// Server error specific to mariadb. Error number: 3004, symbol: ER_GET_STACKED_DA_WITHOUT_ACTIVE_HANDLER.
  214. BOOST_INLINE_CONSTEXPR int er_get_stacked_da_without_active_handler = 3004;
  215. /// Server error specific to mariadb. Error number: 3005, symbol: ER_WARN_LEGACY_SYNTAX_CONVERTED.
  216. BOOST_INLINE_CONSTEXPR int er_warn_legacy_syntax_converted = 3005;
  217. /// Server error specific to mariadb. Error number: 3006, symbol: ER_BINLOG_UNSAFE_FULLTEXT_PLUGIN.
  218. BOOST_INLINE_CONSTEXPR int er_binlog_unsafe_fulltext_plugin = 3006;
  219. /// Server error specific to mariadb. Error number: 3007, symbol: ER_CANNOT_DISCARD_TEMPORARY_TABLE.
  220. BOOST_INLINE_CONSTEXPR int er_cannot_discard_temporary_table = 3007;
  221. /// Server error specific to mariadb. Error number: 3008, symbol: ER_FK_DEPTH_EXCEEDED.
  222. BOOST_INLINE_CONSTEXPR int er_fk_depth_exceeded = 3008;
  223. /// Server error specific to mariadb. Error number: 3009, symbol: ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE_V2.
  224. BOOST_INLINE_CONSTEXPR int er_col_count_doesnt_match_please_update_v2 = 3009;
  225. /// Server error specific to mariadb. Error number: 3010, symbol: ER_WARN_TRIGGER_DOESNT_HAVE_CREATED.
  226. BOOST_INLINE_CONSTEXPR int er_warn_trigger_doesnt_have_created = 3010;
  227. /// Server error specific to mariadb. Error number: 3011, symbol: ER_REFERENCED_TRG_DOES_NOT_EXIST_MYSQL.
  228. BOOST_INLINE_CONSTEXPR int er_referenced_trg_does_not_exist_mysql = 3011;
  229. /// Server error specific to mariadb. Error number: 3012, symbol: ER_EXPLAIN_NOT_SUPPORTED.
  230. BOOST_INLINE_CONSTEXPR int er_explain_not_supported = 3012;
  231. /// Server error specific to mariadb. Error number: 3013, symbol: ER_INVALID_FIELD_SIZE.
  232. BOOST_INLINE_CONSTEXPR int er_invalid_field_size = 3013;
  233. /// Server error specific to mariadb. Error number: 3014, symbol: ER_MISSING_HA_CREATE_OPTION.
  234. BOOST_INLINE_CONSTEXPR int er_missing_ha_create_option = 3014;
  235. /// Server error specific to mariadb. Error number: 3015, symbol: ER_ENGINE_OUT_OF_MEMORY.
  236. BOOST_INLINE_CONSTEXPR int er_engine_out_of_memory = 3015;
  237. /// Server error specific to mariadb. Error number: 3016, symbol: ER_PASSWORD_EXPIRE_ANONYMOUS_USER.
  238. BOOST_INLINE_CONSTEXPR int er_password_expire_anonymous_user = 3016;
  239. /// Server error specific to mariadb. Error number: 3017, symbol: ER_SLAVE_SQL_THREAD_MUST_STOP.
  240. BOOST_INLINE_CONSTEXPR int er_slave_sql_thread_must_stop = 3017;
  241. /// Server error specific to mariadb. Error number: 3018, symbol: ER_NO_FT_MATERIALIZED_SUBQUERY.
  242. BOOST_INLINE_CONSTEXPR int er_no_ft_materialized_subquery = 3018;
  243. /// Server error specific to mariadb. Error number: 3019, symbol: ER_INNODB_UNDO_LOG_FULL.
  244. BOOST_INLINE_CONSTEXPR int er_innodb_undo_log_full = 3019;
  245. /// Server error specific to mariadb. Error number: 3020, symbol: ER_INVALID_ARGUMENT_FOR_LOGARITHM.
  246. BOOST_INLINE_CONSTEXPR int er_invalid_argument_for_logarithm = 3020;
  247. /// Server error specific to mariadb. Error number: 3021, symbol: ER_SLAVE_CHANNEL_IO_THREAD_MUST_STOP.
  248. BOOST_INLINE_CONSTEXPR int er_slave_channel_io_thread_must_stop = 3021;
  249. /// Server error specific to mariadb. Error number: 3022, symbol: ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO.
  250. BOOST_INLINE_CONSTEXPR int er_warn_open_temp_tables_must_be_zero = 3022;
  251. /// Server error specific to mariadb. Error number: 3023, symbol: ER_WARN_ONLY_MASTER_LOG_FILE_NO_POS.
  252. BOOST_INLINE_CONSTEXPR int er_warn_only_master_log_file_no_pos = 3023;
  253. /// Server error specific to mariadb. Error number: 3024, symbol: ER_QUERY_TIMEOUT.
  254. BOOST_INLINE_CONSTEXPR int er_query_timeout = 3024;
  255. /// Server error specific to mariadb. Error number: 3025, symbol: ER_NON_RO_SELECT_DISABLE_TIMER.
  256. BOOST_INLINE_CONSTEXPR int er_non_ro_select_disable_timer = 3025;
  257. /// Server error specific to mariadb. Error number: 3026, symbol: ER_DUP_LIST_ENTRY.
  258. BOOST_INLINE_CONSTEXPR int er_dup_list_entry = 3026;
  259. /// Server error specific to mariadb. Error number: 3027, symbol: ER_SQL_MODE_NO_EFFECT.
  260. BOOST_INLINE_CONSTEXPR int er_sql_mode_no_effect = 3027;
  261. /// Server error specific to mariadb. Error number: 3028, symbol: ER_AGGREGATE_ORDER_FOR_UNION.
  262. BOOST_INLINE_CONSTEXPR int er_aggregate_order_for_union = 3028;
  263. /// Server error specific to mariadb. Error number: 3029, symbol: ER_AGGREGATE_ORDER_NON_AGG_QUERY.
  264. BOOST_INLINE_CONSTEXPR int er_aggregate_order_non_agg_query = 3029;
  265. /// Server error specific to mariadb. Error number: 3030, symbol: ER_SLAVE_WORKER_STOPPED_PREVIOUS_THD_ERROR.
  266. BOOST_INLINE_CONSTEXPR int er_slave_worker_stopped_previous_thd_error = 3030;
  267. /// Server error specific to mariadb. Error number: 3031, symbol: ER_DONT_SUPPORT_SLAVE_PRESERVE_COMMIT_ORDER.
  268. BOOST_INLINE_CONSTEXPR int er_dont_support_slave_preserve_commit_order = 3031;
  269. /// Server error specific to mariadb. Error number: 3032, symbol: ER_SERVER_OFFLINE_MODE.
  270. BOOST_INLINE_CONSTEXPR int er_server_offline_mode = 3032;
  271. /// Server error specific to mariadb. Error number: 3033, symbol: ER_GIS_DIFFERENT_SRIDS.
  272. BOOST_INLINE_CONSTEXPR int er_gis_different_srids = 3033;
  273. /// Server error specific to mariadb. Error number: 3034, symbol: ER_GIS_UNSUPPORTED_ARGUMENT.
  274. BOOST_INLINE_CONSTEXPR int er_gis_unsupported_argument = 3034;
  275. /// Server error specific to mariadb. Error number: 3035, symbol: ER_GIS_UNKNOWN_ERROR.
  276. BOOST_INLINE_CONSTEXPR int er_gis_unknown_error = 3035;
  277. /// Server error specific to mariadb. Error number: 3036, symbol: ER_GIS_UNKNOWN_EXCEPTION.
  278. BOOST_INLINE_CONSTEXPR int er_gis_unknown_exception = 3036;
  279. /// Server error specific to mariadb. Error number: 3037, symbol: ER_GIS_INVALID_DATA.
  280. BOOST_INLINE_CONSTEXPR int er_gis_invalid_data = 3037;
  281. /// Server error specific to mariadb. Error number: 3038, symbol: ER_BOOST_GEOMETRY_EMPTY_INPUT_EXCEPTION.
  282. BOOST_INLINE_CONSTEXPR int er_boost_geometry_empty_input_exception = 3038;
  283. /// Server error specific to mariadb. Error number: 3039, symbol: ER_BOOST_GEOMETRY_CENTROID_EXCEPTION.
  284. BOOST_INLINE_CONSTEXPR int er_boost_geometry_centroid_exception = 3039;
  285. /// Server error specific to mariadb. Error number: 3040, symbol: ER_BOOST_GEOMETRY_OVERLAY_INVALID_INPUT_EXCEPTION.
  286. BOOST_INLINE_CONSTEXPR int er_boost_geometry_overlay_invalid_input_exception = 3040;
  287. /// Server error specific to mariadb. Error number: 3041, symbol: ER_BOOST_GEOMETRY_TURN_INFO_EXCEPTION.
  288. BOOST_INLINE_CONSTEXPR int er_boost_geometry_turn_info_exception = 3041;
  289. /// Server error specific to mariadb. Error number: 3042, symbol: ER_BOOST_GEOMETRY_SELF_INTERSECTION_POINT_EXCEPTION.
  290. BOOST_INLINE_CONSTEXPR int er_boost_geometry_self_intersection_point_exception = 3042;
  291. /// Server error specific to mariadb. Error number: 3043, symbol: ER_BOOST_GEOMETRY_UNKNOWN_EXCEPTION.
  292. BOOST_INLINE_CONSTEXPR int er_boost_geometry_unknown_exception = 3043;
  293. /// Server error specific to mariadb. Error number: 3044, symbol: ER_STD_BAD_ALLOC_ERROR.
  294. BOOST_INLINE_CONSTEXPR int er_std_bad_alloc_error = 3044;
  295. /// Server error specific to mariadb. Error number: 3045, symbol: ER_STD_DOMAIN_ERROR.
  296. BOOST_INLINE_CONSTEXPR int er_std_domain_error = 3045;
  297. /// Server error specific to mariadb. Error number: 3046, symbol: ER_STD_LENGTH_ERROR.
  298. BOOST_INLINE_CONSTEXPR int er_std_length_error = 3046;
  299. /// Server error specific to mariadb. Error number: 3047, symbol: ER_STD_INVALID_ARGUMENT.
  300. BOOST_INLINE_CONSTEXPR int er_std_invalid_argument = 3047;
  301. /// Server error specific to mariadb. Error number: 3048, symbol: ER_STD_OUT_OF_RANGE_ERROR.
  302. BOOST_INLINE_CONSTEXPR int er_std_out_of_range_error = 3048;
  303. /// Server error specific to mariadb. Error number: 3049, symbol: ER_STD_OVERFLOW_ERROR.
  304. BOOST_INLINE_CONSTEXPR int er_std_overflow_error = 3049;
  305. /// Server error specific to mariadb. Error number: 3050, symbol: ER_STD_RANGE_ERROR.
  306. BOOST_INLINE_CONSTEXPR int er_std_range_error = 3050;
  307. /// Server error specific to mariadb. Error number: 3051, symbol: ER_STD_UNDERFLOW_ERROR.
  308. BOOST_INLINE_CONSTEXPR int er_std_underflow_error = 3051;
  309. /// Server error specific to mariadb. Error number: 3052, symbol: ER_STD_LOGIC_ERROR.
  310. BOOST_INLINE_CONSTEXPR int er_std_logic_error = 3052;
  311. /// Server error specific to mariadb. Error number: 3053, symbol: ER_STD_RUNTIME_ERROR.
  312. BOOST_INLINE_CONSTEXPR int er_std_runtime_error = 3053;
  313. /// Server error specific to mariadb. Error number: 3054, symbol: ER_STD_UNKNOWN_EXCEPTION.
  314. BOOST_INLINE_CONSTEXPR int er_std_unknown_exception = 3054;
  315. /// Server error specific to mariadb. Error number: 3055, symbol: ER_GIS_DATA_WRONG_ENDIANESS.
  316. BOOST_INLINE_CONSTEXPR int er_gis_data_wrong_endianess = 3055;
  317. /// Server error specific to mariadb. Error number: 3056, symbol: ER_CHANGE_MASTER_PASSWORD_LENGTH.
  318. BOOST_INLINE_CONSTEXPR int er_change_master_password_length = 3056;
  319. /// Server error specific to mariadb. Error number: 3057, symbol: ER_USER_LOCK_WRONG_NAME.
  320. BOOST_INLINE_CONSTEXPR int er_user_lock_wrong_name = 3057;
  321. /// Server error specific to mariadb. Error number: 3058, symbol: ER_USER_LOCK_DEADLOCK.
  322. BOOST_INLINE_CONSTEXPR int er_user_lock_deadlock = 3058;
  323. /// Server error specific to mariadb. Error number: 3059, symbol: ER_REPLACE_INACCESSIBLE_ROWS.
  324. BOOST_INLINE_CONSTEXPR int er_replace_inaccessible_rows = 3059;
  325. /// Server error specific to mariadb. Error number: 3060, symbol: ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_GIS.
  326. BOOST_INLINE_CONSTEXPR int er_alter_operation_not_supported_reason_gis = 3060;
  327. /// Server error specific to mariadb. Error number: 4002, symbol: ER_WITH_COL_WRONG_LIST.
  328. BOOST_INLINE_CONSTEXPR int er_with_col_wrong_list = 4002;
  329. /// Server error specific to mariadb. Error number: 4003, symbol: ER_TOO_MANY_DEFINITIONS_IN_WITH_CLAUSE.
  330. BOOST_INLINE_CONSTEXPR int er_too_many_definitions_in_with_clause = 4003;
  331. /// Server error specific to mariadb. Error number: 4004, symbol: ER_DUP_QUERY_NAME.
  332. BOOST_INLINE_CONSTEXPR int er_dup_query_name = 4004;
  333. /// Server error specific to mariadb. Error number: 4005, symbol: ER_RECURSIVE_WITHOUT_ANCHORS.
  334. BOOST_INLINE_CONSTEXPR int er_recursive_without_anchors = 4005;
  335. /// Server error specific to mariadb. Error number: 4006, symbol: ER_UNACCEPTABLE_MUTUAL_RECURSION.
  336. BOOST_INLINE_CONSTEXPR int er_unacceptable_mutual_recursion = 4006;
  337. /// Server error specific to mariadb. Error number: 4007, symbol: ER_REF_TO_RECURSIVE_WITH_TABLE_IN_DERIVED.
  338. BOOST_INLINE_CONSTEXPR int er_ref_to_recursive_with_table_in_derived = 4007;
  339. /// Server error specific to mariadb. Error number: 4008, symbol: ER_NOT_STANDARD_COMPLIANT_RECURSIVE.
  340. BOOST_INLINE_CONSTEXPR int er_not_standard_compliant_recursive = 4008;
  341. /// Server error specific to mariadb. Error number: 4009, symbol: ER_WRONG_WINDOW_SPEC_NAME.
  342. BOOST_INLINE_CONSTEXPR int er_wrong_window_spec_name = 4009;
  343. /// Server error specific to mariadb. Error number: 4010, symbol: ER_DUP_WINDOW_NAME.
  344. BOOST_INLINE_CONSTEXPR int er_dup_window_name = 4010;
  345. /// Server error specific to mariadb. Error number: 4011, symbol: ER_PARTITION_LIST_IN_REFERENCING_WINDOW_SPEC.
  346. BOOST_INLINE_CONSTEXPR int er_partition_list_in_referencing_window_spec = 4011;
  347. /// Server error specific to mariadb. Error number: 4012, symbol: ER_ORDER_LIST_IN_REFERENCING_WINDOW_SPEC.
  348. BOOST_INLINE_CONSTEXPR int er_order_list_in_referencing_window_spec = 4012;
  349. /// Server error specific to mariadb. Error number: 4013, symbol: ER_WINDOW_FRAME_IN_REFERENCED_WINDOW_SPEC.
  350. BOOST_INLINE_CONSTEXPR int er_window_frame_in_referenced_window_spec = 4013;
  351. /// Server error specific to mariadb. Error number: 4014, symbol: ER_BAD_COMBINATION_OF_WINDOW_FRAME_BOUND_SPECS.
  352. BOOST_INLINE_CONSTEXPR int er_bad_combination_of_window_frame_bound_specs = 4014;
  353. /// Server error specific to mariadb. Error number: 4015, symbol: ER_WRONG_PLACEMENT_OF_WINDOW_FUNCTION.
  354. BOOST_INLINE_CONSTEXPR int er_wrong_placement_of_window_function = 4015;
  355. /// Server error specific to mariadb. Error number: 4016, symbol: ER_WINDOW_FUNCTION_IN_WINDOW_SPEC.
  356. BOOST_INLINE_CONSTEXPR int er_window_function_in_window_spec = 4016;
  357. /// Server error specific to mariadb. Error number: 4017, symbol: ER_NOT_ALLOWED_WINDOW_FRAME.
  358. BOOST_INLINE_CONSTEXPR int er_not_allowed_window_frame = 4017;
  359. /// Server error specific to mariadb. Error number: 4018, symbol: ER_NO_ORDER_LIST_IN_WINDOW_SPEC.
  360. BOOST_INLINE_CONSTEXPR int er_no_order_list_in_window_spec = 4018;
  361. /// Server error specific to mariadb. Error number: 4019, symbol: ER_RANGE_FRAME_NEEDS_SIMPLE_ORDERBY.
  362. BOOST_INLINE_CONSTEXPR int er_range_frame_needs_simple_orderby = 4019;
  363. /// Server error specific to mariadb. Error number: 4020, symbol: ER_WRONG_TYPE_FOR_ROWS_FRAME.
  364. BOOST_INLINE_CONSTEXPR int er_wrong_type_for_rows_frame = 4020;
  365. /// Server error specific to mariadb. Error number: 4021, symbol: ER_WRONG_TYPE_FOR_RANGE_FRAME.
  366. BOOST_INLINE_CONSTEXPR int er_wrong_type_for_range_frame = 4021;
  367. /// Server error specific to mariadb. Error number: 4022, symbol: ER_FRAME_EXCLUSION_NOT_SUPPORTED.
  368. BOOST_INLINE_CONSTEXPR int er_frame_exclusion_not_supported = 4022;
  369. /// Server error specific to mariadb. Error number: 4023, symbol: ER_WINDOW_FUNCTION_DONT_HAVE_FRAME.
  370. BOOST_INLINE_CONSTEXPR int er_window_function_dont_have_frame = 4023;
  371. /// Server error specific to mariadb. Error number: 4024, symbol: ER_INVALID_NTILE_ARGUMENT.
  372. BOOST_INLINE_CONSTEXPR int er_invalid_ntile_argument = 4024;
  373. /// Server error specific to mariadb. Error number: 4025, symbol: ER_CONSTRAINT_FAILED.
  374. BOOST_INLINE_CONSTEXPR int er_constraint_failed = 4025;
  375. /// Server error specific to mariadb. Error number: 4026, symbol: ER_EXPRESSION_IS_TOO_BIG.
  376. BOOST_INLINE_CONSTEXPR int er_expression_is_too_big = 4026;
  377. /// Server error specific to mariadb. Error number: 4027, symbol: ER_ERROR_EVALUATING_EXPRESSION.
  378. BOOST_INLINE_CONSTEXPR int er_error_evaluating_expression = 4027;
  379. /// Server error specific to mariadb. Error number: 4028, symbol: ER_CALCULATING_DEFAULT_VALUE.
  380. BOOST_INLINE_CONSTEXPR int er_calculating_default_value = 4028;
  381. /// Server error specific to mariadb. Error number: 4029, symbol: ER_EXPRESSION_REFERS_TO_UNINIT_FIELD.
  382. BOOST_INLINE_CONSTEXPR int er_expression_refers_to_uninit_field = 4029;
  383. /// Server error specific to mariadb. Error number: 4030, symbol: ER_PARTITION_DEFAULT_ERROR.
  384. BOOST_INLINE_CONSTEXPR int er_partition_default_error = 4030;
  385. /// Server error specific to mariadb. Error number: 4031, symbol: ER_REFERENCED_TRG_DOES_NOT_EXIST.
  386. BOOST_INLINE_CONSTEXPR int er_referenced_trg_does_not_exist = 4031;
  387. /// Server error specific to mariadb. Error number: 4032, symbol: ER_INVALID_DEFAULT_PARAM.
  388. BOOST_INLINE_CONSTEXPR int er_invalid_default_param = 4032;
  389. /// Server error specific to mariadb. Error number: 4033, symbol: ER_BINLOG_NON_SUPPORTED_BULK.
  390. BOOST_INLINE_CONSTEXPR int er_binlog_non_supported_bulk = 4033;
  391. /// Server error specific to mariadb. Error number: 4034, symbol: ER_BINLOG_UNCOMPRESS_ERROR.
  392. BOOST_INLINE_CONSTEXPR int er_binlog_uncompress_error = 4034;
  393. /// Server error specific to mariadb. Error number: 4035, symbol: ER_JSON_BAD_CHR.
  394. BOOST_INLINE_CONSTEXPR int er_json_bad_chr = 4035;
  395. /// Server error specific to mariadb. Error number: 4036, symbol: ER_JSON_NOT_JSON_CHR.
  396. BOOST_INLINE_CONSTEXPR int er_json_not_json_chr = 4036;
  397. /// Server error specific to mariadb. Error number: 4037, symbol: ER_JSON_EOS.
  398. BOOST_INLINE_CONSTEXPR int er_json_eos = 4037;
  399. /// Server error specific to mariadb. Error number: 4038, symbol: ER_JSON_SYNTAX.
  400. BOOST_INLINE_CONSTEXPR int er_json_syntax = 4038;
  401. /// Server error specific to mariadb. Error number: 4039, symbol: ER_JSON_ESCAPING.
  402. BOOST_INLINE_CONSTEXPR int er_json_escaping = 4039;
  403. /// Server error specific to mariadb. Error number: 4040, symbol: ER_JSON_DEPTH.
  404. BOOST_INLINE_CONSTEXPR int er_json_depth = 4040;
  405. /// Server error specific to mariadb. Error number: 4041, symbol: ER_JSON_PATH_EOS.
  406. BOOST_INLINE_CONSTEXPR int er_json_path_eos = 4041;
  407. /// Server error specific to mariadb. Error number: 4042, symbol: ER_JSON_PATH_SYNTAX.
  408. BOOST_INLINE_CONSTEXPR int er_json_path_syntax = 4042;
  409. /// Server error specific to mariadb. Error number: 4043, symbol: ER_JSON_PATH_DEPTH.
  410. BOOST_INLINE_CONSTEXPR int er_json_path_depth = 4043;
  411. /// Server error specific to mariadb. Error number: 4044, symbol: ER_JSON_PATH_NO_WILDCARD.
  412. BOOST_INLINE_CONSTEXPR int er_json_path_no_wildcard = 4044;
  413. /// Server error specific to mariadb. Error number: 4045, symbol: ER_JSON_PATH_ARRAY.
  414. BOOST_INLINE_CONSTEXPR int er_json_path_array = 4045;
  415. /// Server error specific to mariadb. Error number: 4046, symbol: ER_JSON_ONE_OR_ALL.
  416. BOOST_INLINE_CONSTEXPR int er_json_one_or_all = 4046;
  417. /// Server error specific to mariadb. Error number: 4047, symbol: ER_UNSUPPORTED_COMPRESSED_TABLE.
  418. BOOST_INLINE_CONSTEXPR int er_unsupported_compressed_table = 4047;
  419. /// Server error specific to mariadb. Error number: 4048, symbol: ER_GEOJSON_INCORRECT.
  420. BOOST_INLINE_CONSTEXPR int er_geojson_incorrect = 4048;
  421. /// Server error specific to mariadb. Error number: 4049, symbol: ER_GEOJSON_TOO_FEW_POINTS.
  422. BOOST_INLINE_CONSTEXPR int er_geojson_too_few_points = 4049;
  423. /// Server error specific to mariadb. Error number: 4050, symbol: ER_GEOJSON_NOT_CLOSED.
  424. BOOST_INLINE_CONSTEXPR int er_geojson_not_closed = 4050;
  425. /// Server error specific to mariadb. Error number: 4051, symbol: ER_JSON_PATH_EMPTY.
  426. BOOST_INLINE_CONSTEXPR int er_json_path_empty = 4051;
  427. /// Server error specific to mariadb. Error number: 4052, symbol: ER_SLAVE_SAME_ID.
  428. BOOST_INLINE_CONSTEXPR int er_slave_same_id = 4052;
  429. /// Server error specific to mariadb. Error number: 4053, symbol: ER_FLASHBACK_NOT_SUPPORTED.
  430. BOOST_INLINE_CONSTEXPR int er_flashback_not_supported = 4053;
  431. /// Server error specific to mariadb. Error number: 4054, symbol: ER_KEYS_OUT_OF_ORDER.
  432. BOOST_INLINE_CONSTEXPR int er_keys_out_of_order = 4054;
  433. /// Server error specific to mariadb. Error number: 4055, symbol: ER_OVERLAPPING_KEYS.
  434. BOOST_INLINE_CONSTEXPR int er_overlapping_keys = 4055;
  435. /// Server error specific to mariadb. Error number: 4056, symbol: ER_REQUIRE_ROW_BINLOG_FORMAT.
  436. BOOST_INLINE_CONSTEXPR int er_require_row_binlog_format = 4056;
  437. /// Server error specific to mariadb. Error number: 4057, symbol: ER_ISOLATION_MODE_NOT_SUPPORTED.
  438. BOOST_INLINE_CONSTEXPR int er_isolation_mode_not_supported = 4057;
  439. /// Server error specific to mariadb. Error number: 4058, symbol: ER_ON_DUPLICATE_DISABLED.
  440. BOOST_INLINE_CONSTEXPR int er_on_duplicate_disabled = 4058;
  441. /// Server error specific to mariadb. Error number: 4059, symbol: ER_UPDATES_WITH_CONSISTENT_SNAPSHOT.
  442. BOOST_INLINE_CONSTEXPR int er_updates_with_consistent_snapshot = 4059;
  443. /// Server error specific to mariadb. Error number: 4060, symbol: ER_ROLLBACK_ONLY.
  444. BOOST_INLINE_CONSTEXPR int er_rollback_only = 4060;
  445. /// Server error specific to mariadb. Error number: 4061, symbol: ER_ROLLBACK_TO_SAVEPOINT.
  446. BOOST_INLINE_CONSTEXPR int er_rollback_to_savepoint = 4061;
  447. /// Server error specific to mariadb. Error number: 4062, symbol: ER_ISOLATION_LEVEL_WITH_CONSISTENT_SNAPSHOT.
  448. BOOST_INLINE_CONSTEXPR int er_isolation_level_with_consistent_snapshot = 4062;
  449. /// Server error specific to mariadb. Error number: 4063, symbol: ER_UNSUPPORTED_COLLATION.
  450. BOOST_INLINE_CONSTEXPR int er_unsupported_collation = 4063;
  451. /// Server error specific to mariadb. Error number: 4064, symbol: ER_METADATA_INCONSISTENCY.
  452. BOOST_INLINE_CONSTEXPR int er_metadata_inconsistency = 4064;
  453. /// Server error specific to mariadb. Error number: 4065, symbol: ER_CF_DIFFERENT.
  454. BOOST_INLINE_CONSTEXPR int er_cf_different = 4065;
  455. /// Server error specific to mariadb. Error number: 4066, symbol: ER_RDB_TTL_DURATION_FORMAT.
  456. BOOST_INLINE_CONSTEXPR int er_rdb_ttl_duration_format = 4066;
  457. /// Server error specific to mariadb. Error number: 4067, symbol: ER_RDB_STATUS_GENERAL.
  458. BOOST_INLINE_CONSTEXPR int er_rdb_status_general = 4067;
  459. /// Server error specific to mariadb. Error number: 4068, symbol: ER_RDB_STATUS_MSG.
  460. BOOST_INLINE_CONSTEXPR int er_rdb_status_msg = 4068;
  461. /// Server error specific to mariadb. Error number: 4069, symbol: ER_RDB_TTL_UNSUPPORTED.
  462. BOOST_INLINE_CONSTEXPR int er_rdb_ttl_unsupported = 4069;
  463. /// Server error specific to mariadb. Error number: 4070, symbol: ER_RDB_TTL_COL_FORMAT.
  464. BOOST_INLINE_CONSTEXPR int er_rdb_ttl_col_format = 4070;
  465. /// Server error specific to mariadb. Error number: 4071, symbol: ER_PER_INDEX_CF_DEPRECATED.
  466. BOOST_INLINE_CONSTEXPR int er_per_index_cf_deprecated = 4071;
  467. /// Server error specific to mariadb. Error number: 4072, symbol: ER_KEY_CREATE_DURING_ALTER.
  468. BOOST_INLINE_CONSTEXPR int er_key_create_during_alter = 4072;
  469. /// Server error specific to mariadb. Error number: 4073, symbol: ER_SK_POPULATE_DURING_ALTER.
  470. BOOST_INLINE_CONSTEXPR int er_sk_populate_during_alter = 4073;
  471. /// Server error specific to mariadb. Error number: 4074, symbol: ER_SUM_FUNC_WITH_WINDOW_FUNC_AS_ARG.
  472. BOOST_INLINE_CONSTEXPR int er_sum_func_with_window_func_as_arg = 4074;
  473. /// Server error specific to mariadb. Error number: 4075, symbol: ER_NET_OK_PACKET_TOO_LARGE.
  474. BOOST_INLINE_CONSTEXPR int er_net_ok_packet_too_large = 4075;
  475. /// Server error specific to mariadb. Error number: 4076, symbol: ER_GEOJSON_EMPTY_COORDINATES.
  476. BOOST_INLINE_CONSTEXPR int er_geojson_empty_coordinates = 4076;
  477. /// Server error specific to mariadb. Error number: 4077, symbol: ER_MYROCKS_CANT_NOPAD_COLLATION.
  478. BOOST_INLINE_CONSTEXPR int er_myrocks_cant_nopad_collation = 4077;
  479. /// Server error specific to mariadb. Error number: 4078, symbol: ER_ILLEGAL_PARAMETER_DATA_TYPES2_FOR_OPERATION.
  480. BOOST_INLINE_CONSTEXPR int er_illegal_parameter_data_types2_for_operation = 4078;
  481. /// Server error specific to mariadb. Error number: 4079, symbol: ER_ILLEGAL_PARAMETER_DATA_TYPE_FOR_OPERATION.
  482. BOOST_INLINE_CONSTEXPR int er_illegal_parameter_data_type_for_operation = 4079;
  483. /// Server error specific to mariadb. Error number: 4080, symbol: ER_WRONG_PARAMCOUNT_TO_CURSOR.
  484. BOOST_INLINE_CONSTEXPR int er_wrong_paramcount_to_cursor = 4080;
  485. /// Server error specific to mariadb. Error number: 4081, symbol: ER_UNKNOWN_STRUCTURED_VARIABLE.
  486. BOOST_INLINE_CONSTEXPR int er_unknown_structured_variable = 4081;
  487. /// Server error specific to mariadb. Error number: 4082, symbol: ER_ROW_VARIABLE_DOES_NOT_HAVE_FIELD.
  488. BOOST_INLINE_CONSTEXPR int er_row_variable_does_not_have_field = 4082;
  489. /// Server error specific to mariadb. Error number: 4083, symbol: ER_END_IDENTIFIER_DOES_NOT_MATCH.
  490. BOOST_INLINE_CONSTEXPR int er_end_identifier_does_not_match = 4083;
  491. /// Server error specific to mariadb. Error number: 4084, symbol: ER_SEQUENCE_RUN_OUT.
  492. BOOST_INLINE_CONSTEXPR int er_sequence_run_out = 4084;
  493. /// Server error specific to mariadb. Error number: 4085, symbol: ER_SEQUENCE_INVALID_DATA.
  494. BOOST_INLINE_CONSTEXPR int er_sequence_invalid_data = 4085;
  495. /// Server error specific to mariadb. Error number: 4086, symbol: ER_SEQUENCE_INVALID_TABLE_STRUCTURE.
  496. BOOST_INLINE_CONSTEXPR int er_sequence_invalid_table_structure = 4086;
  497. /// Server error specific to mariadb. Error number: 4087, symbol: ER_SEQUENCE_ACCESS_ERROR.
  498. BOOST_INLINE_CONSTEXPR int er_sequence_access_error = 4087;
  499. /// Server error specific to mariadb. Error number: 4088, symbol: ER_SEQUENCE_BINLOG_FORMAT.
  500. BOOST_INLINE_CONSTEXPR int er_sequence_binlog_format = 4088;
  501. /// Server error specific to mariadb. Error number: 4089, symbol: ER_NOT_SEQUENCE.
  502. BOOST_INLINE_CONSTEXPR int er_not_sequence = 4089;
  503. /// Server error specific to mariadb. Error number: 4090, symbol: ER_NOT_SEQUENCE2.
  504. BOOST_INLINE_CONSTEXPR int er_not_sequence2 = 4090;
  505. /// Server error specific to mariadb. Error number: 4091, symbol: ER_UNKNOWN_SEQUENCES.
  506. BOOST_INLINE_CONSTEXPR int er_unknown_sequences = 4091;
  507. /// Server error specific to mariadb. Error number: 4092, symbol: ER_UNKNOWN_VIEW.
  508. BOOST_INLINE_CONSTEXPR int er_unknown_view = 4092;
  509. /// Server error specific to mariadb. Error number: 4093, symbol: ER_WRONG_INSERT_INTO_SEQUENCE.
  510. BOOST_INLINE_CONSTEXPR int er_wrong_insert_into_sequence = 4093;
  511. /// Server error specific to mariadb. Error number: 4094, symbol: ER_SP_STACK_TRACE.
  512. BOOST_INLINE_CONSTEXPR int er_sp_stack_trace = 4094;
  513. /// Server error specific to mariadb. Error number: 4095, symbol: ER_PACKAGE_ROUTINE_IN_SPEC_NOT_DEFINED_IN_BODY.
  514. BOOST_INLINE_CONSTEXPR int er_package_routine_in_spec_not_defined_in_body = 4095;
  515. /// Server error specific to mariadb. Error number: 4096, symbol: ER_PACKAGE_ROUTINE_FORWARD_DECLARATION_NOT_DEFINED.
  516. BOOST_INLINE_CONSTEXPR int er_package_routine_forward_declaration_not_defined = 4096;
  517. /// Server error specific to mariadb. Error number: 4097, symbol: ER_COMPRESSED_COLUMN_USED_AS_KEY.
  518. BOOST_INLINE_CONSTEXPR int er_compressed_column_used_as_key = 4097;
  519. /// Server error specific to mariadb. Error number: 4098, symbol: ER_UNKNOWN_COMPRESSION_METHOD.
  520. BOOST_INLINE_CONSTEXPR int er_unknown_compression_method = 4098;
  521. /// Server error specific to mariadb. Error number: 4099, symbol: ER_WRONG_NUMBER_OF_VALUES_IN_TVC.
  522. BOOST_INLINE_CONSTEXPR int er_wrong_number_of_values_in_tvc = 4099;
  523. /// Server error specific to mariadb. Error number: 4100, symbol: ER_FIELD_REFERENCE_IN_TVC.
  524. BOOST_INLINE_CONSTEXPR int er_field_reference_in_tvc = 4100;
  525. /// Server error specific to mariadb. Error number: 4101, symbol: ER_WRONG_TYPE_FOR_PERCENTILE_FUNC.
  526. BOOST_INLINE_CONSTEXPR int er_wrong_type_for_percentile_func = 4101;
  527. /// Server error specific to mariadb. Error number: 4102, symbol: ER_ARGUMENT_NOT_CONSTANT.
  528. BOOST_INLINE_CONSTEXPR int er_argument_not_constant = 4102;
  529. /// Server error specific to mariadb. Error number: 4103, symbol: ER_ARGUMENT_OUT_OF_RANGE.
  530. BOOST_INLINE_CONSTEXPR int er_argument_out_of_range = 4103;
  531. /// Server error specific to mariadb. Error number: 4104, symbol: ER_WRONG_TYPE_OF_ARGUMENT.
  532. BOOST_INLINE_CONSTEXPR int er_wrong_type_of_argument = 4104;
  533. /// Server error specific to mariadb. Error number: 4105, symbol: ER_NOT_AGGREGATE_FUNCTION.
  534. BOOST_INLINE_CONSTEXPR int er_not_aggregate_function = 4105;
  535. /// Server error specific to mariadb. Error number: 4106, symbol: ER_INVALID_AGGREGATE_FUNCTION.
  536. BOOST_INLINE_CONSTEXPR int er_invalid_aggregate_function = 4106;
  537. /// Server error specific to mariadb. Error number: 4107, symbol: ER_INVALID_VALUE_TO_LIMIT.
  538. BOOST_INLINE_CONSTEXPR int er_invalid_value_to_limit = 4107;
  539. /// Server error specific to mariadb. Error number: 4108, symbol: ER_INVISIBLE_NOT_NULL_WITHOUT_DEFAULT.
  540. BOOST_INLINE_CONSTEXPR int er_invisible_not_null_without_default = 4108;
  541. /// Server error specific to mariadb. Error number: 4109, symbol: ER_UPDATE_INFO_WITH_SYSTEM_VERSIONING.
  542. BOOST_INLINE_CONSTEXPR int er_update_info_with_system_versioning = 4109;
  543. /// Server error specific to mariadb. Error number: 4110, symbol: ER_VERS_FIELD_WRONG_TYPE.
  544. BOOST_INLINE_CONSTEXPR int er_vers_field_wrong_type = 4110;
  545. /// Server error specific to mariadb. Error number: 4111, symbol: ER_VERS_ENGINE_UNSUPPORTED.
  546. BOOST_INLINE_CONSTEXPR int er_vers_engine_unsupported = 4111;
  547. /// Server error specific to mariadb. Error number: 4113, symbol: ER_PARTITION_WRONG_TYPE.
  548. BOOST_INLINE_CONSTEXPR int er_partition_wrong_type = 4113;
  549. /// Server error specific to mariadb. Error number: 4114, symbol: WARN_VERS_PART_FULL.
  550. BOOST_INLINE_CONSTEXPR int warn_vers_part_full = 4114;
  551. /// Server error specific to mariadb. Error number: 4115, symbol: WARN_VERS_PARAMETERS.
  552. BOOST_INLINE_CONSTEXPR int warn_vers_parameters = 4115;
  553. /// Server error specific to mariadb. Error number: 4116, symbol: ER_VERS_DROP_PARTITION_INTERVAL.
  554. BOOST_INLINE_CONSTEXPR int er_vers_drop_partition_interval = 4116;
  555. /// Server error specific to mariadb. Error number: 4118, symbol: WARN_VERS_PART_NON_HISTORICAL.
  556. BOOST_INLINE_CONSTEXPR int warn_vers_part_non_historical = 4118;
  557. /// Server error specific to mariadb. Error number: 4119, symbol: ER_VERS_ALTER_NOT_ALLOWED.
  558. BOOST_INLINE_CONSTEXPR int er_vers_alter_not_allowed = 4119;
  559. /// Server error specific to mariadb. Error number: 4120, symbol: ER_VERS_ALTER_ENGINE_PROHIBITED.
  560. BOOST_INLINE_CONSTEXPR int er_vers_alter_engine_prohibited = 4120;
  561. /// Server error specific to mariadb. Error number: 4121, symbol: ER_VERS_RANGE_PROHIBITED.
  562. BOOST_INLINE_CONSTEXPR int er_vers_range_prohibited = 4121;
  563. /// Server error specific to mariadb. Error number: 4122, symbol: ER_CONFLICTING_FOR_SYSTEM_TIME.
  564. BOOST_INLINE_CONSTEXPR int er_conflicting_for_system_time = 4122;
  565. /// Server error specific to mariadb. Error number: 4123, symbol: ER_VERS_TABLE_MUST_HAVE_COLUMNS.
  566. BOOST_INLINE_CONSTEXPR int er_vers_table_must_have_columns = 4123;
  567. /// Server error specific to mariadb. Error number: 4124, symbol: ER_VERS_NOT_VERSIONED.
  568. BOOST_INLINE_CONSTEXPR int er_vers_not_versioned = 4124;
  569. /// Server error specific to mariadb. Error number: 4125, symbol: ER_MISSING.
  570. BOOST_INLINE_CONSTEXPR int er_missing = 4125;
  571. /// Server error specific to mariadb. Error number: 4126, symbol: ER_VERS_PERIOD_COLUMNS.
  572. BOOST_INLINE_CONSTEXPR int er_vers_period_columns = 4126;
  573. /// Server error specific to mariadb. Error number: 4127, symbol: ER_PART_WRONG_VALUE.
  574. BOOST_INLINE_CONSTEXPR int er_part_wrong_value = 4127;
  575. /// Server error specific to mariadb. Error number: 4128, symbol: ER_VERS_WRONG_PARTS.
  576. BOOST_INLINE_CONSTEXPR int er_vers_wrong_parts = 4128;
  577. /// Server error specific to mariadb. Error number: 4129, symbol: ER_VERS_NO_TRX_ID.
  578. BOOST_INLINE_CONSTEXPR int er_vers_no_trx_id = 4129;
  579. /// Server error specific to mariadb. Error number: 4130, symbol: ER_VERS_ALTER_SYSTEM_FIELD.
  580. BOOST_INLINE_CONSTEXPR int er_vers_alter_system_field = 4130;
  581. /// Server error specific to mariadb. Error number: 4131, symbol: ER_DROP_VERSIONING_SYSTEM_TIME_PARTITION.
  582. BOOST_INLINE_CONSTEXPR int er_drop_versioning_system_time_partition = 4131;
  583. /// Server error specific to mariadb. Error number: 4132, symbol: ER_VERS_DB_NOT_SUPPORTED.
  584. BOOST_INLINE_CONSTEXPR int er_vers_db_not_supported = 4132;
  585. /// Server error specific to mariadb. Error number: 4133, symbol: ER_VERS_TRT_IS_DISABLED.
  586. BOOST_INLINE_CONSTEXPR int er_vers_trt_is_disabled = 4133;
  587. /// Server error specific to mariadb. Error number: 4134, symbol: ER_VERS_DUPLICATE_ROW_START_END.
  588. BOOST_INLINE_CONSTEXPR int er_vers_duplicate_row_start_end = 4134;
  589. /// Server error specific to mariadb. Error number: 4135, symbol: ER_VERS_ALREADY_VERSIONED.
  590. BOOST_INLINE_CONSTEXPR int er_vers_already_versioned = 4135;
  591. /// Server error specific to mariadb. Error number: 4137, symbol: ER_VERS_NOT_SUPPORTED.
  592. BOOST_INLINE_CONSTEXPR int er_vers_not_supported = 4137;
  593. /// Server error specific to mariadb. Error number: 4138, symbol: ER_VERS_TRX_PART_HISTORIC_ROW_NOT_SUPPORTED.
  594. BOOST_INLINE_CONSTEXPR int er_vers_trx_part_historic_row_not_supported = 4138;
  595. /// Server error specific to mariadb. Error number: 4139, symbol: ER_INDEX_FILE_FULL.
  596. BOOST_INLINE_CONSTEXPR int er_index_file_full = 4139;
  597. /// Server error specific to mariadb. Error number: 4140, symbol: ER_UPDATED_COLUMN_ONLY_ONCE.
  598. BOOST_INLINE_CONSTEXPR int er_updated_column_only_once = 4140;
  599. /// Server error specific to mariadb. Error number: 4141, symbol: ER_EMPTY_ROW_IN_TVC.
  600. BOOST_INLINE_CONSTEXPR int er_empty_row_in_tvc = 4141;
  601. /// Server error specific to mariadb. Error number: 4142, symbol: ER_VERS_QUERY_IN_PARTITION.
  602. BOOST_INLINE_CONSTEXPR int er_vers_query_in_partition = 4142;
  603. /// Server error specific to mariadb. Error number: 4143, symbol: ER_KEY_DOESNT_SUPPORT.
  604. BOOST_INLINE_CONSTEXPR int er_key_doesnt_support = 4143;
  605. /// Server error specific to mariadb. Error number: 4144, symbol: ER_ALTER_OPERATION_TABLE_OPTIONS_NEED_REBUILD.
  606. BOOST_INLINE_CONSTEXPR int er_alter_operation_table_options_need_rebuild = 4144;
  607. /// Server error specific to mariadb. Error number: 4145, symbol: ER_BACKUP_LOCK_IS_ACTIVE.
  608. BOOST_INLINE_CONSTEXPR int er_backup_lock_is_active = 4145;
  609. /// Server error specific to mariadb. Error number: 4146, symbol: ER_BACKUP_NOT_RUNNING.
  610. BOOST_INLINE_CONSTEXPR int er_backup_not_running = 4146;
  611. /// Server error specific to mariadb. Error number: 4147, symbol: ER_BACKUP_WRONG_STAGE.
  612. BOOST_INLINE_CONSTEXPR int er_backup_wrong_stage = 4147;
  613. /// Server error specific to mariadb. Error number: 4148, symbol: ER_BACKUP_STAGE_FAILED.
  614. BOOST_INLINE_CONSTEXPR int er_backup_stage_failed = 4148;
  615. /// Server error specific to mariadb. Error number: 4149, symbol: ER_BACKUP_UNKNOWN_STAGE.
  616. BOOST_INLINE_CONSTEXPR int er_backup_unknown_stage = 4149;
  617. /// Server error specific to mariadb. Error number: 4150, symbol: ER_USER_IS_BLOCKED.
  618. BOOST_INLINE_CONSTEXPR int er_user_is_blocked = 4150;
  619. /// Server error specific to mariadb. Error number: 4151, symbol: ER_ACCOUNT_HAS_BEEN_LOCKED.
  620. BOOST_INLINE_CONSTEXPR int er_account_has_been_locked = 4151;
  621. /// Server error specific to mariadb. Error number: 4152, symbol: ER_PERIOD_TEMPORARY_NOT_ALLOWED.
  622. BOOST_INLINE_CONSTEXPR int er_period_temporary_not_allowed = 4152;
  623. /// Server error specific to mariadb. Error number: 4153, symbol: ER_PERIOD_TYPES_MISMATCH.
  624. BOOST_INLINE_CONSTEXPR int er_period_types_mismatch = 4153;
  625. /// Server error specific to mariadb. Error number: 4154, symbol: ER_MORE_THAN_ONE_PERIOD.
  626. BOOST_INLINE_CONSTEXPR int er_more_than_one_period = 4154;
  627. /// Server error specific to mariadb. Error number: 4155, symbol: ER_PERIOD_FIELD_WRONG_ATTRIBUTES.
  628. BOOST_INLINE_CONSTEXPR int er_period_field_wrong_attributes = 4155;
  629. /// Server error specific to mariadb. Error number: 4156, symbol: ER_PERIOD_NOT_FOUND.
  630. BOOST_INLINE_CONSTEXPR int er_period_not_found = 4156;
  631. /// Server error specific to mariadb. Error number: 4157, symbol: ER_PERIOD_COLUMNS_UPDATED.
  632. BOOST_INLINE_CONSTEXPR int er_period_columns_updated = 4157;
  633. /// Server error specific to mariadb. Error number: 4158, symbol: ER_PERIOD_CONSTRAINT_DROP.
  634. BOOST_INLINE_CONSTEXPR int er_period_constraint_drop = 4158;
  635. /// Server error specific to mariadb. Error number: 4159, symbol: ER_TOO_LONG_KEYPART.
  636. BOOST_INLINE_CONSTEXPR int er_too_long_keypart = 4159;
  637. /// Server error specific to mariadb. Error number: 4160, symbol: ER_TOO_LONG_DATABASE_COMMENT.
  638. BOOST_INLINE_CONSTEXPR int er_too_long_database_comment = 4160;
  639. /// Server error specific to mariadb. Error number: 4161, symbol: ER_UNKNOWN_DATA_TYPE.
  640. BOOST_INLINE_CONSTEXPR int er_unknown_data_type = 4161;
  641. /// Server error specific to mariadb. Error number: 4162, symbol: ER_UNKNOWN_OPERATOR.
  642. BOOST_INLINE_CONSTEXPR int er_unknown_operator = 4162;
  643. /// Server error specific to mariadb. Error number: 4163, symbol: ER_WARN_HISTORY_ROW_START_TIME.
  644. BOOST_INLINE_CONSTEXPR int er_warn_history_row_start_time = 4163;
  645. /// Server error specific to mariadb. Error number: 4164, symbol: ER_PART_STARTS_BEYOND_INTERVAL.
  646. BOOST_INLINE_CONSTEXPR int er_part_starts_beyond_interval = 4164;
  647. /// Server error specific to mariadb. Error number: 4165, symbol: ER_GALERA_REPLICATION_NOT_SUPPORTED.
  648. BOOST_INLINE_CONSTEXPR int er_galera_replication_not_supported = 4165;
  649. /// Server error specific to mariadb. Error number: 4166, symbol: ER_LOAD_INFILE_CAPABILITY_DISABLED.
  650. BOOST_INLINE_CONSTEXPR int er_load_infile_capability_disabled = 4166;
  651. /// Server error specific to mariadb. Error number: 4167, symbol: ER_NO_SECURE_TRANSPORTS_CONFIGURED.
  652. BOOST_INLINE_CONSTEXPR int er_no_secure_transports_configured = 4167;
  653. /// Server error specific to mariadb. Error number: 4168, symbol: ER_SLAVE_IGNORED_SHARED_TABLE.
  654. BOOST_INLINE_CONSTEXPR int er_slave_ignored_shared_table = 4168;
  655. /// Server error specific to mariadb. Error number: 4169, symbol: ER_NO_AUTOINCREMENT_WITH_UNIQUE.
  656. BOOST_INLINE_CONSTEXPR int er_no_autoincrement_with_unique = 4169;
  657. /// Server error specific to mariadb. Error number: 4170, symbol: ER_KEY_CONTAINS_PERIOD_FIELDS.
  658. BOOST_INLINE_CONSTEXPR int er_key_contains_period_fields = 4170;
  659. /// Server error specific to mariadb. Error number: 4171, symbol: ER_KEY_CANT_HAVE_WITHOUT_OVERLAPS.
  660. BOOST_INLINE_CONSTEXPR int er_key_cant_have_without_overlaps = 4171;
  661. /// Server error specific to mariadb. Error number: 4172, symbol: ER_NOT_ALLOWED_IN_THIS_CONTEXT.
  662. BOOST_INLINE_CONSTEXPR int er_not_allowed_in_this_context = 4172;
  663. /// Server error specific to mariadb. Error number: 4173, symbol: ER_DATA_WAS_COMMITED_UNDER_ROLLBACK.
  664. BOOST_INLINE_CONSTEXPR int er_data_was_commited_under_rollback = 4173;
  665. /// Server error specific to mariadb. Error number: 4174, symbol: ER_PK_INDEX_CANT_BE_IGNORED.
  666. BOOST_INLINE_CONSTEXPR int er_pk_index_cant_be_ignored = 4174;
  667. /// Server error specific to mariadb. Error number: 4175, symbol: ER_BINLOG_UNSAFE_SKIP_LOCKED.
  668. BOOST_INLINE_CONSTEXPR int er_binlog_unsafe_skip_locked = 4175;
  669. /// Server error specific to mariadb. Error number: 4176, symbol: ER_JSON_TABLE_ERROR_ON_FIELD.
  670. BOOST_INLINE_CONSTEXPR int er_json_table_error_on_field = 4176;
  671. /// Server error specific to mariadb. Error number: 4177, symbol: ER_JSON_TABLE_ALIAS_REQUIRED.
  672. BOOST_INLINE_CONSTEXPR int er_json_table_alias_required = 4177;
  673. /// Server error specific to mariadb. Error number: 4178, symbol: ER_JSON_TABLE_SCALAR_EXPECTED.
  674. BOOST_INLINE_CONSTEXPR int er_json_table_scalar_expected = 4178;
  675. /// Server error specific to mariadb. Error number: 4179, symbol: ER_JSON_TABLE_MULTIPLE_MATCHES.
  676. BOOST_INLINE_CONSTEXPR int er_json_table_multiple_matches = 4179;
  677. /// Server error specific to mariadb. Error number: 4180, symbol: ER_WITH_TIES_NEEDS_ORDER.
  678. BOOST_INLINE_CONSTEXPR int er_with_ties_needs_order = 4180;
  679. /// Server error specific to mariadb. Error number: 4181, symbol: ER_REMOVED_ORPHAN_TRIGGER.
  680. BOOST_INLINE_CONSTEXPR int er_removed_orphan_trigger = 4181;
  681. /// Server error specific to mariadb. Error number: 4182, symbol: ER_STORAGE_ENGINE_DISABLED.
  682. BOOST_INLINE_CONSTEXPR int er_storage_engine_disabled = 4182;
  683. /// Server error specific to mariadb. Error number: 4183, symbol: WARN_SFORMAT_ERROR.
  684. BOOST_INLINE_CONSTEXPR int warn_sformat_error = 4183;
  685. /// Server error specific to mariadb. Error number: 4184, symbol: ER_PARTITION_CONVERT_SUBPARTITIONED.
  686. BOOST_INLINE_CONSTEXPR int er_partition_convert_subpartitioned = 4184;
  687. /// Server error specific to mariadb. Error number: 4185, symbol: ER_PROVIDER_NOT_LOADED.
  688. BOOST_INLINE_CONSTEXPR int er_provider_not_loaded = 4185;
  689. /// Server error specific to mariadb. Error number: 4186, symbol: ER_JSON_HISTOGRAM_PARSE_FAILED.
  690. BOOST_INLINE_CONSTEXPR int er_json_histogram_parse_failed = 4186;
  691. /// Server error specific to mariadb. Error number: 4187, symbol: ER_SF_OUT_INOUT_ARG_NOT_ALLOWED.
  692. BOOST_INLINE_CONSTEXPR int er_sf_out_inout_arg_not_allowed = 4187;
  693. /// Server error specific to mariadb. Error number: 4188, symbol: ER_INCONSISTENT_SLAVE_TEMP_TABLE.
  694. BOOST_INLINE_CONSTEXPR int er_inconsistent_slave_temp_table = 4188;
  695. /// Server error specific to mariadb. Error number: 4189, symbol: ER_VERS_HIST_PART_FAILED.
  696. BOOST_INLINE_CONSTEXPR int er_vers_hist_part_failed = 4189;
  697. /// Server error specific to mariadb. Error number: 4190, symbol: WARN_OPTION_CHANGING.
  698. BOOST_INLINE_CONSTEXPR int warn_option_changing = 4190;
  699. /// Server error specific to mariadb. Error number: 4191, symbol: ER_CM_OPTION_MISSING_REQUIREMENT.
  700. BOOST_INLINE_CONSTEXPR int er_cm_option_missing_requirement = 4191;
  701. /// Server error specific to mariadb. Error number: 4192, symbol: ER_SLAVE_STATEMENT_TIMEOUT.
  702. BOOST_INLINE_CONSTEXPR int er_slave_statement_timeout = 4192;
  703. /// Server error specific to mariadb. Error number: 4193, symbol: ER_JSON_INVALID_VALUE_FOR_KEYWORD.
  704. BOOST_INLINE_CONSTEXPR int er_json_invalid_value_for_keyword = 4193;
  705. /// Server error specific to mariadb. Error number: 4194, symbol: ER_JSON_SCHEMA_KEYWORD_UNSUPPORTED.
  706. BOOST_INLINE_CONSTEXPR int er_json_schema_keyword_unsupported = 4194;
  707. } // namespace mariadb_server_errc
  708. } // namespace mysql
  709. } // namespace boost
  710. #endif