common_server_errc.hpp 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133
  1. //
  2. // Copyright (c) 2019-2025 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_COMMON_SERVER_ERRC_HPP
  8. #define BOOST_MYSQL_COMMON_SERVER_ERRC_HPP
  9. #include <boost/mysql/error_code.hpp>
  10. #include <boost/mysql/detail/config.hpp>
  11. #include <boost/system/error_category.hpp>
  12. namespace boost {
  13. namespace mysql {
  14. /**
  15. * \brief Server-defined error codes, shared between MySQL and MariaDB.
  16. * \details The numeric value and semantics match the ones described in the MySQL documentation.
  17. * For more info, consult the error reference for
  18. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html">MySQL 8.0</a>,
  19. * <a href="https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.html">MySQL 5.7</a>,
  20. * <a href="https://mariadb.com/kb/en/mariadb-error-codes/">MariaDB</a>.
  21. */
  22. enum class common_server_errc : int
  23. {
  24. /**
  25. * \brief Common server error. Error number: 1000, symbol:
  26. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_hashchk">ER_HASHCHK</a>.
  27. */
  28. er_hashchk = 1000,
  29. /**
  30. * \brief Common server error. Error number: 1001, symbol:
  31. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nisamchk">ER_NISAMCHK</a>.
  32. */
  33. er_nisamchk = 1001,
  34. /**
  35. * \brief Common server error. Error number: 1002, symbol:
  36. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no">ER_NO</a>.
  37. */
  38. er_no = 1002,
  39. /**
  40. * \brief Common server error. Error number: 1003, symbol:
  41. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_yes">ER_YES</a>.
  42. */
  43. er_yes = 1003,
  44. /**
  45. * \brief Common server error. Error number: 1004, symbol:
  46. * <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>.
  47. */
  48. er_cant_create_file = 1004,
  49. /**
  50. * \brief Common server error. Error number: 1005, symbol:
  51. * <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>.
  52. */
  53. er_cant_create_table = 1005,
  54. /**
  55. * \brief Common server error. Error number: 1006, symbol:
  56. * <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>.
  57. */
  58. er_cant_create_db = 1006,
  59. /**
  60. * \brief Common server error. Error number: 1007, symbol:
  61. * <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>.
  62. */
  63. er_db_create_exists = 1007,
  64. /**
  65. * \brief Common server error. Error number: 1008, symbol:
  66. * <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>.
  67. */
  68. er_db_drop_exists = 1008,
  69. /**
  70. * \brief Common server error. Error number: 1009, symbol:
  71. * <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>.
  72. */
  73. er_db_drop_delete = 1009,
  74. /**
  75. * \brief Common server error. Error number: 1010, symbol:
  76. * <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>.
  77. */
  78. er_db_drop_rmdir = 1010,
  79. /**
  80. * \brief Common server error. Error number: 1011, symbol:
  81. * <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>.
  82. */
  83. er_cant_delete_file = 1011,
  84. /**
  85. * \brief Common server error. Error number: 1012, symbol:
  86. * <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>.
  87. */
  88. er_cant_find_system_rec = 1012,
  89. /**
  90. * \brief Common server error. Error number: 1013, symbol:
  91. * <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>.
  92. */
  93. er_cant_get_stat = 1013,
  94. /**
  95. * \brief Common server error. Error number: 1014, symbol:
  96. * <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>.
  97. */
  98. er_cant_get_wd = 1014,
  99. /**
  100. * \brief Common server error. Error number: 1015, symbol:
  101. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cant_lock">ER_CANT_LOCK</a>.
  102. */
  103. er_cant_lock = 1015,
  104. /**
  105. * \brief Common server error. Error number: 1016, symbol:
  106. * <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>.
  107. */
  108. er_cant_open_file = 1016,
  109. /**
  110. * \brief Common server error. Error number: 1017, symbol:
  111. * <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>.
  112. */
  113. er_file_not_found = 1017,
  114. /**
  115. * \brief Common server error. Error number: 1018, symbol:
  116. * <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>.
  117. */
  118. er_cant_read_dir = 1018,
  119. /**
  120. * \brief Common server error. Error number: 1019, symbol:
  121. * <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>.
  122. */
  123. er_cant_set_wd = 1019,
  124. /**
  125. * \brief Common server error. Error number: 1020, symbol:
  126. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_checkread">ER_CHECKREAD</a>.
  127. */
  128. er_checkread = 1020,
  129. /**
  130. * \brief Common server error. Error number: 1021, symbol:
  131. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_disk_full">ER_DISK_FULL</a>.
  132. */
  133. er_disk_full = 1021,
  134. /**
  135. * \brief Common server error. Error number: 1022, symbol:
  136. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_key">ER_DUP_KEY</a>.
  137. */
  138. er_dup_key = 1022,
  139. /**
  140. * \brief Common server error. Error number: 1023, symbol:
  141. * <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>.
  142. */
  143. er_error_on_close = 1023,
  144. /**
  145. * \brief Common server error. Error number: 1024, symbol:
  146. * <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>.
  147. */
  148. er_error_on_read = 1024,
  149. /**
  150. * \brief Common server error. Error number: 1025, symbol:
  151. * <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>.
  152. */
  153. er_error_on_rename = 1025,
  154. /**
  155. * \brief Common server error. Error number: 1026, symbol:
  156. * <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>.
  157. */
  158. er_error_on_write = 1026,
  159. /**
  160. * \brief Common server error. Error number: 1027, symbol:
  161. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_file_used">ER_FILE_USED</a>.
  162. */
  163. er_file_used = 1027,
  164. /**
  165. * \brief Common server error. Error number: 1028, symbol:
  166. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_filsort_abort">ER_FILSORT_ABORT</a>.
  167. */
  168. er_filsort_abort = 1028,
  169. /**
  170. * \brief Common server error. Error number: 1029, symbol:
  171. * <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>.
  172. */
  173. er_form_not_found = 1029,
  174. /**
  175. * \brief Common server error. Error number: 1030, symbol:
  176. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_get_errno">ER_GET_ERRNO</a>.
  177. */
  178. er_get_errno = 1030,
  179. /**
  180. * \brief Common server error. Error number: 1031, symbol:
  181. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_illegal_ha">ER_ILLEGAL_HA</a>.
  182. */
  183. er_illegal_ha = 1031,
  184. /**
  185. * \brief Common server error. Error number: 1032, symbol:
  186. * <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>.
  187. */
  188. er_key_not_found = 1032,
  189. /**
  190. * \brief Common server error. Error number: 1033, symbol:
  191. * <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>.
  192. */
  193. er_not_form_file = 1033,
  194. /**
  195. * \brief Common server error. Error number: 1034, symbol:
  196. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_not_keyfile">ER_NOT_KEYFILE</a>.
  197. */
  198. er_not_keyfile = 1034,
  199. /**
  200. * \brief Common server error. Error number: 1035, symbol:
  201. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_old_keyfile">ER_OLD_KEYFILE</a>.
  202. */
  203. er_old_keyfile = 1035,
  204. /**
  205. * \brief Common server error. Error number: 1036, symbol:
  206. * <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>.
  207. */
  208. er_open_as_readonly = 1036,
  209. /**
  210. * \brief Common server error. Error number: 1037, symbol:
  211. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_outofmemory">ER_OUTOFMEMORY</a>.
  212. */
  213. er_outofmemory = 1037,
  214. /**
  215. * \brief Common server error. Error number: 1038, symbol:
  216. * <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>.
  217. */
  218. er_out_of_sortmemory = 1038,
  219. /**
  220. * \brief Common server error. Error number: 1039, symbol:
  221. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unexpected_eof">ER_UNEXPECTED_EOF</a>.
  222. */
  223. er_unexpected_eof = 1039,
  224. /**
  225. * \brief Common server error. Error number: 1040, symbol:
  226. * <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>.
  227. */
  228. er_con_count_error = 1040,
  229. /**
  230. * \brief Common server error. Error number: 1041, symbol:
  231. * <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>.
  232. */
  233. er_out_of_resources = 1041,
  234. /**
  235. * \brief Common server error. Error number: 1042, symbol:
  236. * <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>.
  237. */
  238. er_bad_host_error = 1042,
  239. /**
  240. * \brief Common server error. Error number: 1043, symbol:
  241. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_handshake_error">ER_HANDSHAKE_ERROR</a>.
  242. */
  243. er_handshake_error = 1043,
  244. /**
  245. * \brief Common server error. Error number: 1044, symbol:
  246. * <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>.
  247. */
  248. er_dbaccess_denied_error = 1044,
  249. /**
  250. * \brief Common server error. Error number: 1045, symbol:
  251. * <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>.
  252. */
  253. er_access_denied_error = 1045,
  254. /**
  255. * \brief Common server error. Error number: 1046, symbol:
  256. * <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>.
  257. */
  258. er_no_db_error = 1046,
  259. /**
  260. * \brief Common server error. Error number: 1047, symbol:
  261. * <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>.
  262. */
  263. er_unknown_com_error = 1047,
  264. /**
  265. * \brief Common server error. Error number: 1048, symbol:
  266. * <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>.
  267. */
  268. er_bad_null_error = 1048,
  269. /**
  270. * \brief Common server error. Error number: 1049, symbol:
  271. * <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>.
  272. */
  273. er_bad_db_error = 1049,
  274. /**
  275. * \brief Common server error. Error number: 1050, symbol:
  276. * <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>.
  277. */
  278. er_table_exists_error = 1050,
  279. /**
  280. * \brief Common server error. Error number: 1051, symbol:
  281. * <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>.
  282. */
  283. er_bad_table_error = 1051,
  284. /**
  285. * \brief Common server error. Error number: 1052, symbol:
  286. * <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>.
  287. */
  288. er_non_uniq_error = 1052,
  289. /**
  290. * \brief Common server error. Error number: 1053, symbol:
  291. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_server_shutdown">ER_SERVER_SHUTDOWN</a>.
  292. */
  293. er_server_shutdown = 1053,
  294. /**
  295. * \brief Common server error. Error number: 1054, symbol:
  296. * <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>.
  297. */
  298. er_bad_field_error = 1054,
  299. /**
  300. * \brief Common server error. Error number: 1055, symbol:
  301. * <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>.
  302. */
  303. er_wrong_field_with_group = 1055,
  304. /**
  305. * \brief Common server error. Error number: 1056, symbol:
  306. * <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>.
  307. */
  308. er_wrong_group_field = 1056,
  309. /**
  310. * \brief Common server error. Error number: 1057, symbol:
  311. * <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>.
  312. */
  313. er_wrong_sum_select = 1057,
  314. /**
  315. * \brief Common server error. Error number: 1058, symbol:
  316. * <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>.
  317. */
  318. er_wrong_value_count = 1058,
  319. /**
  320. * \brief Common server error. Error number: 1059, symbol:
  321. * <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>.
  322. */
  323. er_too_long_ident = 1059,
  324. /**
  325. * \brief Common server error. Error number: 1060, symbol:
  326. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_fieldname">ER_DUP_FIELDNAME</a>.
  327. */
  328. er_dup_fieldname = 1060,
  329. /**
  330. * \brief Common server error. Error number: 1061, symbol:
  331. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_keyname">ER_DUP_KEYNAME</a>.
  332. */
  333. er_dup_keyname = 1061,
  334. /**
  335. * \brief Common server error. Error number: 1062, symbol:
  336. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_entry">ER_DUP_ENTRY</a>.
  337. */
  338. er_dup_entry = 1062,
  339. /**
  340. * \brief Common server error. Error number: 1063, symbol:
  341. * <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>.
  342. */
  343. er_wrong_field_spec = 1063,
  344. /**
  345. * \brief Common server error. Error number: 1064, symbol:
  346. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_parse_error">ER_PARSE_ERROR</a>.
  347. */
  348. er_parse_error = 1064,
  349. /**
  350. * \brief Common server error. Error number: 1065, symbol:
  351. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_empty_query">ER_EMPTY_QUERY</a>.
  352. */
  353. er_empty_query = 1065,
  354. /**
  355. * \brief Common server error. Error number: 1066, symbol:
  356. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nonuniq_table">ER_NONUNIQ_TABLE</a>.
  357. */
  358. er_nonuniq_table = 1066,
  359. /**
  360. * \brief Common server error. Error number: 1067, symbol:
  361. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_invalid_default">ER_INVALID_DEFAULT</a>.
  362. */
  363. er_invalid_default = 1067,
  364. /**
  365. * \brief Common server error. Error number: 1068, symbol:
  366. * <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>.
  367. */
  368. er_multiple_pri_key = 1068,
  369. /**
  370. * \brief Common server error. Error number: 1069, symbol:
  371. * <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>.
  372. */
  373. er_too_many_keys = 1069,
  374. /**
  375. * \brief Common server error. Error number: 1070, symbol:
  376. * <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>.
  377. */
  378. er_too_many_key_parts = 1070,
  379. /**
  380. * \brief Common server error. Error number: 1071, symbol:
  381. * <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>.
  382. */
  383. er_too_long_key = 1071,
  384. /**
  385. * \brief Common server error. Error number: 1072, symbol:
  386. * <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>.
  387. */
  388. er_key_column_does_not_exits = 1072,
  389. /**
  390. * \brief Common server error. Error number: 1073, symbol:
  391. * <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>.
  392. */
  393. er_blob_used_as_key = 1073,
  394. /**
  395. * \brief Common server error. Error number: 1074, symbol:
  396. * <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>.
  397. */
  398. er_too_big_fieldlength = 1074,
  399. /**
  400. * \brief Common server error. Error number: 1075, symbol:
  401. * <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>.
  402. */
  403. er_wrong_auto_key = 1075,
  404. /**
  405. * \brief Common server error. Error number: 1077, symbol:
  406. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_normal_shutdown">ER_NORMAL_SHUTDOWN</a>.
  407. */
  408. er_normal_shutdown = 1077,
  409. /**
  410. * \brief Common server error. Error number: 1078, symbol:
  411. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_got_signal">ER_GOT_SIGNAL</a>.
  412. */
  413. er_got_signal = 1078,
  414. /**
  415. * \brief Common server error. Error number: 1079, symbol:
  416. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_shutdown_complete">ER_SHUTDOWN_COMPLETE</a>.
  417. */
  418. er_shutdown_complete = 1079,
  419. /**
  420. * \brief Common server error. Error number: 1080, symbol:
  421. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_forcing_close">ER_FORCING_CLOSE</a>.
  422. */
  423. er_forcing_close = 1080,
  424. /**
  425. * \brief Common server error. Error number: 1081, symbol:
  426. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_ipsock_error">ER_IPSOCK_ERROR</a>.
  427. */
  428. er_ipsock_error = 1081,
  429. /**
  430. * \brief Common server error. Error number: 1082, symbol:
  431. * <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>.
  432. */
  433. er_no_such_index = 1082,
  434. /**
  435. * \brief Common server error. Error number: 1083, symbol:
  436. * <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>.
  437. */
  438. er_wrong_field_terminators = 1083,
  439. /**
  440. * \brief Common server error. Error number: 1084, symbol:
  441. * <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>.
  442. */
  443. er_blobs_and_no_terminated = 1084,
  444. /**
  445. * \brief Common server error. Error number: 1085, symbol:
  446. * <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>.
  447. */
  448. er_textfile_not_readable = 1085,
  449. /**
  450. * \brief Common server error. Error number: 1086, symbol:
  451. * <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>.
  452. */
  453. er_file_exists_error = 1086,
  454. /**
  455. * \brief Common server error. Error number: 1087, symbol:
  456. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_load_info">ER_LOAD_INFO</a>.
  457. */
  458. er_load_info = 1087,
  459. /**
  460. * \brief Common server error. Error number: 1088, symbol:
  461. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_alter_info">ER_ALTER_INFO</a>.
  462. */
  463. er_alter_info = 1088,
  464. /**
  465. * \brief Common server error. Error number: 1089, symbol:
  466. * <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>.
  467. */
  468. er_wrong_sub_key = 1089,
  469. /**
  470. * \brief Common server error. Error number: 1090, symbol:
  471. * <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>.
  472. */
  473. er_cant_remove_all_fields = 1090,
  474. /**
  475. * \brief Common server error. Error number: 1091, symbol:
  476. * <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>.
  477. */
  478. er_cant_drop_field_or_key = 1091,
  479. /**
  480. * \brief Common server error. Error number: 1092, symbol:
  481. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_insert_info">ER_INSERT_INFO</a>.
  482. */
  483. er_insert_info = 1092,
  484. /**
  485. * \brief Common server error. Error number: 1093, symbol:
  486. * <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>.
  487. */
  488. er_update_table_used = 1093,
  489. /**
  490. * \brief Common server error. Error number: 1094, symbol:
  491. * <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>.
  492. */
  493. er_no_such_thread = 1094,
  494. /**
  495. * \brief Common server error. Error number: 1095, symbol:
  496. * <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>.
  497. */
  498. er_kill_denied_error = 1095,
  499. /**
  500. * \brief Common server error. Error number: 1096, symbol:
  501. * <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>.
  502. */
  503. er_no_tables_used = 1096,
  504. /**
  505. * \brief Common server error. Error number: 1097, symbol:
  506. * <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>.
  507. */
  508. er_too_big_set = 1097,
  509. /**
  510. * \brief Common server error. Error number: 1098, symbol:
  511. * <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>.
  512. */
  513. er_no_unique_logfile = 1098,
  514. /**
  515. * \brief Common server error. Error number: 1099, symbol:
  516. * <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>.
  517. */
  518. er_table_not_locked_for_write = 1099,
  519. /**
  520. * \brief Common server error. Error number: 1100, symbol:
  521. * <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>.
  522. */
  523. er_table_not_locked = 1100,
  524. /**
  525. * \brief Common server error. Error number: 1102, symbol:
  526. * <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>.
  527. */
  528. er_wrong_db_name = 1102,
  529. /**
  530. * \brief Common server error. Error number: 1103, symbol:
  531. * <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>.
  532. */
  533. er_wrong_table_name = 1103,
  534. /**
  535. * \brief Common server error. Error number: 1104, symbol:
  536. * <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>.
  537. */
  538. er_too_big_select = 1104,
  539. /**
  540. * \brief Common server error. Error number: 1105, symbol:
  541. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_error">ER_UNKNOWN_ERROR</a>.
  542. */
  543. er_unknown_error = 1105,
  544. /**
  545. * \brief Common server error. Error number: 1106, symbol:
  546. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_procedure">ER_UNKNOWN_PROCEDURE</a>.
  547. */
  548. er_unknown_procedure = 1106,
  549. /**
  550. * \brief Common server error. Error number: 1107, symbol:
  551. * <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>.
  552. */
  553. er_wrong_paramcount_to_procedure = 1107,
  554. /**
  555. * \brief Common server error. Error number: 1108, symbol:
  556. * <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>.
  557. */
  558. er_wrong_parameters_to_procedure = 1108,
  559. /**
  560. * \brief Common server error. Error number: 1109, symbol:
  561. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_table">ER_UNKNOWN_TABLE</a>.
  562. */
  563. er_unknown_table = 1109,
  564. /**
  565. * \brief Common server error. Error number: 1110, symbol:
  566. * <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>.
  567. */
  568. er_field_specified_twice = 1110,
  569. /**
  570. * \brief Common server error. Error number: 1111, symbol:
  571. * <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>.
  572. */
  573. er_invalid_group_func_use = 1111,
  574. /**
  575. * \brief Common server error. Error number: 1112, symbol:
  576. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unsupported_extension">ER_UNSUPPORTED_EXTENSION</a>.
  577. */
  578. er_unsupported_extension = 1112,
  579. /**
  580. * \brief Common server error. Error number: 1113, symbol:
  581. * <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>.
  582. */
  583. er_table_must_have_columns = 1113,
  584. /**
  585. * \brief Common server error. Error number: 1114, symbol:
  586. * <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>.
  587. */
  588. er_record_file_full = 1114,
  589. /**
  590. * \brief Common server error. Error number: 1115, symbol:
  591. * <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>.
  592. */
  593. er_unknown_character_set = 1115,
  594. /**
  595. * \brief Common server error. Error number: 1116, symbol:
  596. * <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>.
  597. */
  598. er_too_many_tables = 1116,
  599. /**
  600. * \brief Common server error. Error number: 1117, symbol:
  601. * <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>.
  602. */
  603. er_too_many_fields = 1117,
  604. /**
  605. * \brief Common server error. Error number: 1118, symbol:
  606. * <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>.
  607. */
  608. er_too_big_rowsize = 1118,
  609. /**
  610. * \brief Common server error. Error number: 1119, symbol:
  611. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_stack_overrun">ER_STACK_OVERRUN</a>.
  612. */
  613. er_stack_overrun = 1119,
  614. /**
  615. * \brief Common server error. Error number: 1121, symbol:
  616. * <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>.
  617. */
  618. er_null_column_in_index = 1121,
  619. /**
  620. * \brief Common server error. Error number: 1122, symbol:
  621. * <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>.
  622. */
  623. er_cant_find_udf = 1122,
  624. /**
  625. * \brief Common server error. Error number: 1123, symbol:
  626. * <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>.
  627. */
  628. er_cant_initialize_udf = 1123,
  629. /**
  630. * \brief Common server error. Error number: 1124, symbol:
  631. * <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>.
  632. */
  633. er_udf_no_paths = 1124,
  634. /**
  635. * \brief Common server error. Error number: 1125, symbol:
  636. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_udf_exists">ER_UDF_EXISTS</a>.
  637. */
  638. er_udf_exists = 1125,
  639. /**
  640. * \brief Common server error. Error number: 1126, symbol:
  641. * <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>.
  642. */
  643. er_cant_open_library = 1126,
  644. /**
  645. * \brief Common server error. Error number: 1127, symbol:
  646. * <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>.
  647. */
  648. er_cant_find_dl_entry = 1127,
  649. /**
  650. * \brief Common server error. Error number: 1128, symbol:
  651. * <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>.
  652. */
  653. er_function_not_defined = 1128,
  654. /**
  655. * \brief Common server error. Error number: 1129, symbol:
  656. * <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>.
  657. */
  658. er_host_is_blocked = 1129,
  659. /**
  660. * \brief Common server error. Error number: 1130, symbol:
  661. * <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>.
  662. */
  663. er_host_not_privileged = 1130,
  664. /**
  665. * \brief Common server error. Error number: 1131, symbol:
  666. * <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>.
  667. */
  668. er_password_anonymous_user = 1131,
  669. /**
  670. * \brief Common server error. Error number: 1132, symbol:
  671. * <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>.
  672. */
  673. er_password_not_allowed = 1132,
  674. /**
  675. * \brief Common server error. Error number: 1133, symbol:
  676. * <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>.
  677. */
  678. er_password_no_match = 1133,
  679. /**
  680. * \brief Common server error. Error number: 1134, symbol:
  681. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_update_info">ER_UPDATE_INFO</a>.
  682. */
  683. er_update_info = 1134,
  684. /**
  685. * \brief Common server error. Error number: 1135, symbol:
  686. * <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>.
  687. */
  688. er_cant_create_thread = 1135,
  689. /**
  690. * \brief Common server error. Error number: 1136, symbol:
  691. * <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>.
  692. */
  693. er_wrong_value_count_on_row = 1136,
  694. /**
  695. * \brief Common server error. Error number: 1137, symbol:
  696. * <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>.
  697. */
  698. er_cant_reopen_table = 1137,
  699. /**
  700. * \brief Common server error. Error number: 1138, symbol:
  701. * <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>.
  702. */
  703. er_invalid_use_of_null = 1138,
  704. /**
  705. * \brief Common server error. Error number: 1139, symbol:
  706. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_regexp_error">ER_REGEXP_ERROR</a>.
  707. */
  708. er_regexp_error = 1139,
  709. /**
  710. * \brief Common server error. Error number: 1140, symbol:
  711. * <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>.
  712. */
  713. er_mix_of_group_func_and_fields = 1140,
  714. /**
  715. * \brief Common server error. Error number: 1141, symbol:
  716. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nonexisting_grant">ER_NONEXISTING_GRANT</a>.
  717. */
  718. er_nonexisting_grant = 1141,
  719. /**
  720. * \brief Common server error. Error number: 1142, symbol:
  721. * <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>.
  722. */
  723. er_tableaccess_denied_error = 1142,
  724. /**
  725. * \brief Common server error. Error number: 1143, symbol:
  726. * <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>.
  727. */
  728. er_columnaccess_denied_error = 1143,
  729. /**
  730. * \brief Common server error. Error number: 1144, symbol:
  731. * <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>.
  732. */
  733. er_illegal_grant_for_table = 1144,
  734. /**
  735. * \brief Common server error. Error number: 1145, symbol:
  736. * <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>.
  737. */
  738. er_grant_wrong_host_or_user = 1145,
  739. /**
  740. * \brief Common server error. Error number: 1146, symbol:
  741. * <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>.
  742. */
  743. er_no_such_table = 1146,
  744. /**
  745. * \brief Common server error. Error number: 1147, symbol:
  746. * <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>.
  747. */
  748. er_nonexisting_table_grant = 1147,
  749. /**
  750. * \brief Common server error. Error number: 1148, symbol:
  751. * <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>.
  752. */
  753. er_not_allowed_command = 1148,
  754. /**
  755. * \brief Common server error. Error number: 1149, symbol:
  756. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_syntax_error">ER_SYNTAX_ERROR</a>.
  757. */
  758. er_syntax_error = 1149,
  759. /**
  760. * \brief Common server error. Error number: 1152, symbol:
  761. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_aborting_connection">ER_ABORTING_CONNECTION</a>.
  762. */
  763. er_aborting_connection = 1152,
  764. /**
  765. * \brief Common server error. Error number: 1153, symbol:
  766. * <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>.
  767. */
  768. er_net_packet_too_large = 1153,
  769. /**
  770. * \brief Common server error. Error number: 1154, symbol:
  771. * <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>.
  772. */
  773. er_net_read_error_from_pipe = 1154,
  774. /**
  775. * \brief Common server error. Error number: 1155, symbol:
  776. * <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>.
  777. */
  778. er_net_fcntl_error = 1155,
  779. /**
  780. * \brief Common server error. Error number: 1156, symbol:
  781. * <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>.
  782. */
  783. er_net_packets_out_of_order = 1156,
  784. /**
  785. * \brief Common server error. Error number: 1157, symbol:
  786. * <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>.
  787. */
  788. er_net_uncompress_error = 1157,
  789. /**
  790. * \brief Common server error. Error number: 1158, symbol:
  791. * <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>.
  792. */
  793. er_net_read_error = 1158,
  794. /**
  795. * \brief Common server error. Error number: 1159, symbol:
  796. * <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>.
  797. */
  798. er_net_read_interrupted = 1159,
  799. /**
  800. * \brief Common server error. Error number: 1160, symbol:
  801. * <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>.
  802. */
  803. er_net_error_on_write = 1160,
  804. /**
  805. * \brief Common server error. Error number: 1161, symbol:
  806. * <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>.
  807. */
  808. er_net_write_interrupted = 1161,
  809. /**
  810. * \brief Common server error. Error number: 1162, symbol:
  811. * <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>.
  812. */
  813. er_too_long_string = 1162,
  814. /**
  815. * \brief Common server error. Error number: 1163, symbol:
  816. * <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>.
  817. */
  818. er_table_cant_handle_blob = 1163,
  819. /**
  820. * \brief Common server error. Error number: 1164, symbol:
  821. * <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>.
  822. */
  823. er_table_cant_handle_auto_increment = 1164,
  824. /**
  825. * \brief Common server error. Error number: 1166, symbol:
  826. * <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>.
  827. */
  828. er_wrong_column_name = 1166,
  829. /**
  830. * \brief Common server error. Error number: 1167, symbol:
  831. * <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>.
  832. */
  833. er_wrong_key_column = 1167,
  834. /**
  835. * \brief Common server error. Error number: 1168, symbol:
  836. * <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>.
  837. */
  838. er_wrong_mrg_table = 1168,
  839. /**
  840. * \brief Common server error. Error number: 1169, symbol:
  841. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_unique">ER_DUP_UNIQUE</a>.
  842. */
  843. er_dup_unique = 1169,
  844. /**
  845. * \brief Common server error. Error number: 1170, symbol:
  846. * <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>.
  847. */
  848. er_blob_key_without_length = 1170,
  849. /**
  850. * \brief Common server error. Error number: 1171, symbol:
  851. * <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>.
  852. */
  853. er_primary_cant_have_null = 1171,
  854. /**
  855. * \brief Common server error. Error number: 1172, symbol:
  856. * <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>.
  857. */
  858. er_too_many_rows = 1172,
  859. /**
  860. * \brief Common server error. Error number: 1173, symbol:
  861. * <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>.
  862. */
  863. er_requires_primary_key = 1173,
  864. /**
  865. * \brief Common server error. Error number: 1174, symbol:
  866. * <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>.
  867. */
  868. er_no_raid_compiled = 1174,
  869. /**
  870. * \brief Common server error. Error number: 1175, symbol:
  871. * <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>.
  872. */
  873. er_update_without_key_in_safe_mode = 1175,
  874. /**
  875. * \brief Common server error. Error number: 1177, symbol:
  876. * <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>.
  877. */
  878. er_check_no_such_table = 1177,
  879. /**
  880. * \brief Common server error. Error number: 1178, symbol:
  881. * <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>.
  882. */
  883. er_check_not_implemented = 1178,
  884. /**
  885. * \brief Common server error. Error number: 1179, symbol:
  886. * <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>.
  887. */
  888. er_cant_do_this_during_an_transaction = 1179,
  889. /**
  890. * \brief Common server error. Error number: 1180, symbol:
  891. * <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>.
  892. */
  893. er_error_during_commit = 1180,
  894. /**
  895. * \brief Common server error. Error number: 1181, symbol:
  896. * <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>.
  897. */
  898. er_error_during_rollback = 1181,
  899. /**
  900. * \brief Common server error. Error number: 1182, symbol:
  901. * <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>.
  902. */
  903. er_error_during_flush_logs = 1182,
  904. /**
  905. * \brief Common server error. Error number: 1183, symbol:
  906. * <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>.
  907. */
  908. er_error_during_checkpoint = 1183,
  909. /**
  910. * \brief Common server error. Error number: 1184, symbol:
  911. * <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>.
  912. */
  913. er_new_aborting_connection = 1184,
  914. /**
  915. * \brief Common server error. Error number: 1186, symbol:
  916. * <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>.
  917. */
  918. er_flush_master_binlog_closed = 1186,
  919. /**
  920. * \brief Common server error. Error number: 1187, symbol:
  921. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_index_rebuild">ER_INDEX_REBUILD</a>.
  922. */
  923. er_index_rebuild = 1187,
  924. /**
  925. * \brief Common server error. Error number: 1188, symbol:
  926. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_master">ER_MASTER</a>.
  927. */
  928. er_master = 1188,
  929. /**
  930. * \brief Common server error. Error number: 1189, symbol:
  931. * <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>.
  932. */
  933. er_master_net_read = 1189,
  934. /**
  935. * \brief Common server error. Error number: 1190, symbol:
  936. * <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>.
  937. */
  938. er_master_net_write = 1190,
  939. /**
  940. * \brief Common server error. Error number: 1191, symbol:
  941. * <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>.
  942. */
  943. er_ft_matching_key_not_found = 1191,
  944. /**
  945. * \brief Common server error. Error number: 1192, symbol:
  946. * <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>.
  947. */
  948. er_lock_or_active_transaction = 1192,
  949. /**
  950. * \brief Common server error. Error number: 1193, symbol:
  951. * <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>.
  952. */
  953. er_unknown_system_variable = 1193,
  954. /**
  955. * \brief Common server error. Error number: 1194, symbol:
  956. * <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>.
  957. */
  958. er_crashed_on_usage = 1194,
  959. /**
  960. * \brief Common server error. Error number: 1195, symbol:
  961. * <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>.
  962. */
  963. er_crashed_on_repair = 1195,
  964. /**
  965. * \brief Common server error. Error number: 1196, symbol:
  966. * <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>.
  967. */
  968. er_warning_not_complete_rollback = 1196,
  969. /**
  970. * \brief Common server error. Error number: 1197, symbol:
  971. * <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>.
  972. */
  973. er_trans_cache_full = 1197,
  974. /**
  975. * \brief Common server error. Error number: 1198, symbol:
  976. * <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>.
  977. */
  978. er_slave_must_stop = 1198,
  979. /**
  980. * \brief Common server error. Error number: 1199, symbol:
  981. * <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>.
  982. */
  983. er_slave_not_running = 1199,
  984. /**
  985. * \brief Common server error. Error number: 1200, symbol:
  986. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_bad_slave">ER_BAD_SLAVE</a>.
  987. */
  988. er_bad_slave = 1200,
  989. /**
  990. * \brief Common server error. Error number: 1201, symbol:
  991. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_master_info">ER_MASTER_INFO</a>.
  992. */
  993. er_master_info = 1201,
  994. /**
  995. * \brief Common server error. Error number: 1202, symbol:
  996. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_thread">ER_SLAVE_THREAD</a>.
  997. */
  998. er_slave_thread = 1202,
  999. /**
  1000. * \brief Common server error. Error number: 1203, symbol:
  1001. * <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>.
  1002. */
  1003. er_too_many_user_connections = 1203,
  1004. /**
  1005. * \brief Common server error. Error number: 1204, symbol:
  1006. * <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>.
  1007. */
  1008. er_set_constants_only = 1204,
  1009. /**
  1010. * \brief Common server error. Error number: 1205, symbol:
  1011. * <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>.
  1012. */
  1013. er_lock_wait_timeout = 1205,
  1014. /**
  1015. * \brief Common server error. Error number: 1206, symbol:
  1016. * <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>.
  1017. */
  1018. er_lock_table_full = 1206,
  1019. /**
  1020. * \brief Common server error. Error number: 1207, symbol:
  1021. * <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>.
  1022. */
  1023. er_read_only_transaction = 1207,
  1024. /**
  1025. * \brief Common server error. Error number: 1208, symbol:
  1026. * <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>.
  1027. */
  1028. er_drop_db_with_read_lock = 1208,
  1029. /**
  1030. * \brief Common server error. Error number: 1209, symbol:
  1031. * <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>.
  1032. */
  1033. er_create_db_with_read_lock = 1209,
  1034. /**
  1035. * \brief Common server error. Error number: 1210, symbol:
  1036. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_arguments">ER_WRONG_ARGUMENTS</a>.
  1037. */
  1038. er_wrong_arguments = 1210,
  1039. /**
  1040. * \brief Common server error. Error number: 1211, symbol:
  1041. * <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>.
  1042. */
  1043. er_no_permission_to_create_user = 1211,
  1044. /**
  1045. * \brief Common server error. Error number: 1212, symbol:
  1046. * <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>.
  1047. */
  1048. er_union_tables_in_different_dir = 1212,
  1049. /**
  1050. * \brief Common server error. Error number: 1213, symbol:
  1051. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_lock_deadlock">ER_LOCK_DEADLOCK</a>.
  1052. */
  1053. er_lock_deadlock = 1213,
  1054. /**
  1055. * \brief Common server error. Error number: 1214, symbol:
  1056. * <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>.
  1057. */
  1058. er_table_cant_handle_ft = 1214,
  1059. /**
  1060. * \brief Common server error. Error number: 1215, symbol:
  1061. * <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>.
  1062. */
  1063. er_cannot_add_foreign = 1215,
  1064. /**
  1065. * \brief Common server error. Error number: 1216, symbol:
  1066. * <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>.
  1067. */
  1068. er_no_referenced_row = 1216,
  1069. /**
  1070. * \brief Common server error. Error number: 1217, symbol:
  1071. * <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>.
  1072. */
  1073. er_row_is_referenced = 1217,
  1074. /**
  1075. * \brief Common server error. Error number: 1218, symbol:
  1076. * <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>.
  1077. */
  1078. er_connect_to_master = 1218,
  1079. /**
  1080. * \brief Common server error. Error number: 1219, symbol:
  1081. * <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>.
  1082. */
  1083. er_query_on_master = 1219,
  1084. /**
  1085. * \brief Common server error. Error number: 1220, symbol:
  1086. * <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>.
  1087. */
  1088. er_error_when_executing_command = 1220,
  1089. /**
  1090. * \brief Common server error. Error number: 1221, symbol:
  1091. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_usage">ER_WRONG_USAGE</a>.
  1092. */
  1093. er_wrong_usage = 1221,
  1094. /**
  1095. * \brief Common server error. Error number: 1222, symbol:
  1096. * <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>.
  1097. */
  1098. er_wrong_number_of_columns_in_select = 1222,
  1099. /**
  1100. * \brief Common server error. Error number: 1223, symbol:
  1101. * <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>.
  1102. */
  1103. er_cant_update_with_readlock = 1223,
  1104. /**
  1105. * \brief Common server error. Error number: 1224, symbol:
  1106. * <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>.
  1107. */
  1108. er_mixing_not_allowed = 1224,
  1109. /**
  1110. * \brief Common server error. Error number: 1225, symbol:
  1111. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_argument">ER_DUP_ARGUMENT</a>.
  1112. */
  1113. er_dup_argument = 1225,
  1114. /**
  1115. * \brief Common server error. Error number: 1226, symbol:
  1116. * <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>.
  1117. */
  1118. er_user_limit_reached = 1226,
  1119. /**
  1120. * \brief Common server error. Error number: 1227, symbol:
  1121. * <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>.
  1122. */
  1123. er_specific_access_denied_error = 1227,
  1124. /**
  1125. * \brief Common server error. Error number: 1228, symbol:
  1126. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_local_variable">ER_LOCAL_VARIABLE</a>.
  1127. */
  1128. er_local_variable = 1228,
  1129. /**
  1130. * \brief Common server error. Error number: 1229, symbol:
  1131. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_global_variable">ER_GLOBAL_VARIABLE</a>.
  1132. */
  1133. er_global_variable = 1229,
  1134. /**
  1135. * \brief Common server error. Error number: 1230, symbol:
  1136. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_no_default">ER_NO_DEFAULT</a>.
  1137. */
  1138. er_no_default = 1230,
  1139. /**
  1140. * \brief Common server error. Error number: 1231, symbol:
  1141. * <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>.
  1142. */
  1143. er_wrong_value_for_var = 1231,
  1144. /**
  1145. * \brief Common server error. Error number: 1232, symbol:
  1146. * <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>.
  1147. */
  1148. er_wrong_type_for_var = 1232,
  1149. /**
  1150. * \brief Common server error. Error number: 1233, symbol:
  1151. * <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>.
  1152. */
  1153. er_var_cant_be_read = 1233,
  1154. /**
  1155. * \brief Common server error. Error number: 1234, symbol:
  1156. * <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>.
  1157. */
  1158. er_cant_use_option_here = 1234,
  1159. /**
  1160. * \brief Common server error. Error number: 1235, symbol:
  1161. * <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>.
  1162. */
  1163. er_not_supported_yet = 1235,
  1164. /**
  1165. * \brief Common server error. Error number: 1236, symbol:
  1166. * <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>.
  1167. */
  1168. er_master_fatal_error_reading_binlog = 1236,
  1169. /**
  1170. * \brief Common server error. Error number: 1237, symbol:
  1171. * <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>.
  1172. */
  1173. er_slave_ignored_table = 1237,
  1174. /**
  1175. * \brief Common server error. Error number: 1238, symbol:
  1176. * <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>.
  1177. */
  1178. er_incorrect_global_local_var = 1238,
  1179. /**
  1180. * \brief Common server error. Error number: 1239, symbol:
  1181. * <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>.
  1182. */
  1183. er_wrong_fk_def = 1239,
  1184. /**
  1185. * \brief Common server error. Error number: 1240, symbol:
  1186. * <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>.
  1187. */
  1188. er_key_ref_do_not_match_table_ref = 1240,
  1189. /**
  1190. * \brief Common server error. Error number: 1241, symbol:
  1191. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_operand_columns">ER_OPERAND_COLUMNS</a>.
  1192. */
  1193. er_operand_columns = 1241,
  1194. /**
  1195. * \brief Common server error. Error number: 1242, symbol:
  1196. * <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>.
  1197. */
  1198. er_subquery_no_1_row = 1242,
  1199. /**
  1200. * \brief Common server error. Error number: 1243, symbol:
  1201. * <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>.
  1202. */
  1203. er_unknown_stmt_handler = 1243,
  1204. /**
  1205. * \brief Common server error. Error number: 1244, symbol:
  1206. * <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>.
  1207. */
  1208. er_corrupt_help_db = 1244,
  1209. /**
  1210. * \brief Common server error. Error number: 1245, symbol:
  1211. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cyclic_reference">ER_CYCLIC_REFERENCE</a>.
  1212. */
  1213. er_cyclic_reference = 1245,
  1214. /**
  1215. * \brief Common server error. Error number: 1246, symbol:
  1216. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_auto_convert">ER_AUTO_CONVERT</a>.
  1217. */
  1218. er_auto_convert = 1246,
  1219. /**
  1220. * \brief Common server error. Error number: 1247, symbol:
  1221. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_illegal_reference">ER_ILLEGAL_REFERENCE</a>.
  1222. */
  1223. er_illegal_reference = 1247,
  1224. /**
  1225. * \brief Common server error. Error number: 1248, symbol:
  1226. * <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>.
  1227. */
  1228. er_derived_must_have_alias = 1248,
  1229. /**
  1230. * \brief Common server error. Error number: 1249, symbol:
  1231. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_select_reduced">ER_SELECT_REDUCED</a>.
  1232. */
  1233. er_select_reduced = 1249,
  1234. /**
  1235. * \brief Common server error. Error number: 1250, symbol:
  1236. * <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>.
  1237. */
  1238. er_tablename_not_allowed_here = 1250,
  1239. /**
  1240. * \brief Common server error. Error number: 1251, symbol:
  1241. * <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>.
  1242. */
  1243. er_not_supported_auth_mode = 1251,
  1244. /**
  1245. * \brief Common server error. Error number: 1252, symbol:
  1246. * <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>.
  1247. */
  1248. er_spatial_cant_have_null = 1252,
  1249. /**
  1250. * \brief Common server error. Error number: 1253, symbol:
  1251. * <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>.
  1252. */
  1253. er_collation_charset_mismatch = 1253,
  1254. /**
  1255. * \brief Common server error. Error number: 1254, symbol:
  1256. * <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>.
  1257. */
  1258. er_slave_was_running = 1254,
  1259. /**
  1260. * \brief Common server error. Error number: 1255, symbol:
  1261. * <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>.
  1262. */
  1263. er_slave_was_not_running = 1255,
  1264. /**
  1265. * \brief Common server error. Error number: 1256, symbol:
  1266. * <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>.
  1267. */
  1268. er_too_big_for_uncompress = 1256,
  1269. /**
  1270. * \brief Common server error. Error number: 1257, symbol:
  1271. * <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>.
  1272. */
  1273. er_zlib_z_mem_error = 1257,
  1274. /**
  1275. * \brief Common server error. Error number: 1258, symbol:
  1276. * <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>.
  1277. */
  1278. er_zlib_z_buf_error = 1258,
  1279. /**
  1280. * \brief Common server error. Error number: 1259, symbol:
  1281. * <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>.
  1282. */
  1283. er_zlib_z_data_error = 1259,
  1284. /**
  1285. * \brief Common server error. Error number: 1260, symbol:
  1286. * <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>.
  1287. */
  1288. er_cut_value_group_concat = 1260,
  1289. /**
  1290. * \brief Common server error. Error number: 1261, symbol:
  1291. * <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>.
  1292. */
  1293. er_warn_too_few_records = 1261,
  1294. /**
  1295. * \brief Common server error. Error number: 1262, symbol:
  1296. * <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>.
  1297. */
  1298. er_warn_too_many_records = 1262,
  1299. /**
  1300. * \brief Common server error. Error number: 1263, symbol:
  1301. * <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>.
  1302. */
  1303. er_warn_null_to_notnull = 1263,
  1304. /**
  1305. * \brief Common server error. Error number: 1264, symbol:
  1306. * <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>.
  1307. */
  1308. er_warn_data_out_of_range = 1264,
  1309. /**
  1310. * \brief Common server error. Error number: 1265, symbol:
  1311. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_data_truncated">WARN_DATA_TRUNCATED</a>.
  1312. */
  1313. warn_data_truncated = 1265,
  1314. /**
  1315. * \brief Common server error. Error number: 1266, symbol:
  1316. * <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>.
  1317. */
  1318. er_warn_using_other_handler = 1266,
  1319. /**
  1320. * \brief Common server error. Error number: 1267, symbol:
  1321. * <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>.
  1322. */
  1323. er_cant_aggregate_2collations = 1267,
  1324. /**
  1325. * \brief Common server error. Error number: 1268, symbol:
  1326. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_drop_user">ER_DROP_USER</a>.
  1327. */
  1328. er_drop_user = 1268,
  1329. /**
  1330. * \brief Common server error. Error number: 1269, symbol:
  1331. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_revoke_grants">ER_REVOKE_GRANTS</a>.
  1332. */
  1333. er_revoke_grants = 1269,
  1334. /**
  1335. * \brief Common server error. Error number: 1270, symbol:
  1336. * <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>.
  1337. */
  1338. er_cant_aggregate_3collations = 1270,
  1339. /**
  1340. * \brief Common server error. Error number: 1271, symbol:
  1341. * <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>.
  1342. */
  1343. er_cant_aggregate_ncollations = 1271,
  1344. /**
  1345. * \brief Common server error. Error number: 1272, symbol:
  1346. * <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>.
  1347. */
  1348. er_variable_is_not_struct = 1272,
  1349. /**
  1350. * \brief Common server error. Error number: 1273, symbol:
  1351. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_collation">ER_UNKNOWN_COLLATION</a>.
  1352. */
  1353. er_unknown_collation = 1273,
  1354. /**
  1355. * \brief Common server error. Error number: 1274, symbol:
  1356. * <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>.
  1357. */
  1358. er_slave_ignored_ssl_params = 1274,
  1359. /**
  1360. * \brief Common server error. Error number: 1275, symbol:
  1361. * <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>.
  1362. */
  1363. er_server_is_in_secure_auth_mode = 1275,
  1364. /**
  1365. * \brief Common server error. Error number: 1276, symbol:
  1366. * <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>.
  1367. */
  1368. er_warn_field_resolved = 1276,
  1369. /**
  1370. * \brief Common server error. Error number: 1277, symbol:
  1371. * <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>.
  1372. */
  1373. er_bad_slave_until_cond = 1277,
  1374. /**
  1375. * \brief Common server error. Error number: 1278, symbol:
  1376. * <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>.
  1377. */
  1378. er_missing_skip_slave = 1278,
  1379. /**
  1380. * \brief Common server error. Error number: 1279, symbol:
  1381. * <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>.
  1382. */
  1383. er_until_cond_ignored = 1279,
  1384. /**
  1385. * \brief Common server error. Error number: 1280, symbol:
  1386. * <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>.
  1387. */
  1388. er_wrong_name_for_index = 1280,
  1389. /**
  1390. * \brief Common server error. Error number: 1281, symbol:
  1391. * <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>.
  1392. */
  1393. er_wrong_name_for_catalog = 1281,
  1394. /**
  1395. * \brief Common server error. Error number: 1282, symbol:
  1396. * <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>.
  1397. */
  1398. er_warn_qc_resize = 1282,
  1399. /**
  1400. * \brief Common server error. Error number: 1283, symbol:
  1401. * <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>.
  1402. */
  1403. er_bad_ft_column = 1283,
  1404. /**
  1405. * \brief Common server error. Error number: 1284, symbol:
  1406. * <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>.
  1407. */
  1408. er_unknown_key_cache = 1284,
  1409. /**
  1410. * \brief Common server error. Error number: 1285, symbol:
  1411. * <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>.
  1412. */
  1413. er_warn_hostname_wont_work = 1285,
  1414. /**
  1415. * \brief Common server error. Error number: 1286, symbol:
  1416. * <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>.
  1417. */
  1418. er_unknown_storage_engine = 1286,
  1419. /**
  1420. * \brief Common server error. Error number: 1287, symbol:
  1421. * <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>.
  1422. */
  1423. er_warn_deprecated_syntax = 1287,
  1424. /**
  1425. * \brief Common server error. Error number: 1288, symbol:
  1426. * <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>.
  1427. */
  1428. er_non_updatable_table = 1288,
  1429. /**
  1430. * \brief Common server error. Error number: 1289, symbol:
  1431. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_feature_disabled">ER_FEATURE_DISABLED</a>.
  1432. */
  1433. er_feature_disabled = 1289,
  1434. /**
  1435. * \brief Common server error. Error number: 1290, symbol:
  1436. * <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>.
  1437. */
  1438. er_option_prevents_statement = 1290,
  1439. /**
  1440. * \brief Common server error. Error number: 1291, symbol:
  1441. * <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>.
  1442. */
  1443. er_duplicated_value_in_type = 1291,
  1444. /**
  1445. * \brief Common server error. Error number: 1292, symbol:
  1446. * <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>.
  1447. */
  1448. er_truncated_wrong_value = 1292,
  1449. /**
  1450. * \brief Common server error. Error number: 1293, symbol:
  1451. * <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>.
  1452. */
  1453. er_too_much_auto_timestamp_cols = 1293,
  1454. /**
  1455. * \brief Common server error. Error number: 1294, symbol:
  1456. * <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>.
  1457. */
  1458. er_invalid_on_update = 1294,
  1459. /**
  1460. * \brief Common server error. Error number: 1295, symbol:
  1461. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unsupported_ps">ER_UNSUPPORTED_PS</a>.
  1462. */
  1463. er_unsupported_ps = 1295,
  1464. /**
  1465. * \brief Common server error. Error number: 1296, symbol:
  1466. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_get_errmsg">ER_GET_ERRMSG</a>.
  1467. */
  1468. er_get_errmsg = 1296,
  1469. /**
  1470. * \brief Common server error. Error number: 1297, symbol:
  1471. * <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>.
  1472. */
  1473. er_get_temporary_errmsg = 1297,
  1474. /**
  1475. * \brief Common server error. Error number: 1298, symbol:
  1476. * <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>.
  1477. */
  1478. er_unknown_time_zone = 1298,
  1479. /**
  1480. * \brief Common server error. Error number: 1299, symbol:
  1481. * <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>.
  1482. */
  1483. er_warn_invalid_timestamp = 1299,
  1484. /**
  1485. * \brief Common server error. Error number: 1300, symbol:
  1486. * <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>.
  1487. */
  1488. er_invalid_character_string = 1300,
  1489. /**
  1490. * \brief Common server error. Error number: 1301, symbol:
  1491. * <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>.
  1492. */
  1493. er_warn_allowed_packet_overflowed = 1301,
  1494. /**
  1495. * \brief Common server error. Error number: 1302, symbol:
  1496. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_conflicting_declarations">ER_CONFLICTING_DECLARATIONS</a>.
  1497. */
  1498. er_conflicting_declarations = 1302,
  1499. /**
  1500. * \brief Common server error. Error number: 1303, symbol:
  1501. * <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>.
  1502. */
  1503. er_sp_no_recursive_create = 1303,
  1504. /**
  1505. * \brief Common server error. Error number: 1304, symbol:
  1506. * <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>.
  1507. */
  1508. er_sp_already_exists = 1304,
  1509. /**
  1510. * \brief Common server error. Error number: 1305, symbol:
  1511. * <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>.
  1512. */
  1513. er_sp_does_not_exist = 1305,
  1514. /**
  1515. * \brief Common server error. Error number: 1306, symbol:
  1516. * <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>.
  1517. */
  1518. er_sp_drop_failed = 1306,
  1519. /**
  1520. * \brief Common server error. Error number: 1307, symbol:
  1521. * <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>.
  1522. */
  1523. er_sp_store_failed = 1307,
  1524. /**
  1525. * \brief Common server error. Error number: 1308, symbol:
  1526. * <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>.
  1527. */
  1528. er_sp_lilabel_mismatch = 1308,
  1529. /**
  1530. * \brief Common server error. Error number: 1309, symbol:
  1531. * <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>.
  1532. */
  1533. er_sp_label_redefine = 1309,
  1534. /**
  1535. * \brief Common server error. Error number: 1310, symbol:
  1536. * <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>.
  1537. */
  1538. er_sp_label_mismatch = 1310,
  1539. /**
  1540. * \brief Common server error. Error number: 1311, symbol:
  1541. * <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>.
  1542. */
  1543. er_sp_uninit_var = 1311,
  1544. /**
  1545. * \brief Common server error. Error number: 1312, symbol:
  1546. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_badselect">ER_SP_BADSELECT</a>.
  1547. */
  1548. er_sp_badselect = 1312,
  1549. /**
  1550. * \brief Common server error. Error number: 1313, symbol:
  1551. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_badreturn">ER_SP_BADRETURN</a>.
  1552. */
  1553. er_sp_badreturn = 1313,
  1554. /**
  1555. * \brief Common server error. Error number: 1314, symbol:
  1556. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_badstatement">ER_SP_BADSTATEMENT</a>.
  1557. */
  1558. er_sp_badstatement = 1314,
  1559. /**
  1560. * \brief Common server error. Error number: 1315, symbol:
  1561. * <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>.
  1562. */
  1563. er_update_log_deprecated_ignored = 1315,
  1564. /**
  1565. * \brief Common server error. Error number: 1316, symbol:
  1566. * <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>.
  1567. */
  1568. er_update_log_deprecated_translated = 1316,
  1569. /**
  1570. * \brief Common server error. Error number: 1317, symbol:
  1571. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_query_interrupted">ER_QUERY_INTERRUPTED</a>.
  1572. */
  1573. er_query_interrupted = 1317,
  1574. /**
  1575. * \brief Common server error. Error number: 1318, symbol:
  1576. * <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>.
  1577. */
  1578. er_sp_wrong_no_of_args = 1318,
  1579. /**
  1580. * \brief Common server error. Error number: 1319, symbol:
  1581. * <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>.
  1582. */
  1583. er_sp_cond_mismatch = 1319,
  1584. /**
  1585. * \brief Common server error. Error number: 1320, symbol:
  1586. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_noreturn">ER_SP_NORETURN</a>.
  1587. */
  1588. er_sp_noreturn = 1320,
  1589. /**
  1590. * \brief Common server error. Error number: 1321, symbol:
  1591. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_sp_noreturnend">ER_SP_NORETURNEND</a>.
  1592. */
  1593. er_sp_noreturnend = 1321,
  1594. /**
  1595. * \brief Common server error. Error number: 1322, symbol:
  1596. * <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>.
  1597. */
  1598. er_sp_bad_cursor_query = 1322,
  1599. /**
  1600. * \brief Common server error. Error number: 1323, symbol:
  1601. * <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>.
  1602. */
  1603. er_sp_bad_cursor_select = 1323,
  1604. /**
  1605. * \brief Common server error. Error number: 1324, symbol:
  1606. * <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>.
  1607. */
  1608. er_sp_cursor_mismatch = 1324,
  1609. /**
  1610. * \brief Common server error. Error number: 1325, symbol:
  1611. * <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>.
  1612. */
  1613. er_sp_cursor_already_open = 1325,
  1614. /**
  1615. * \brief Common server error. Error number: 1326, symbol:
  1616. * <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>.
  1617. */
  1618. er_sp_cursor_not_open = 1326,
  1619. /**
  1620. * \brief Common server error. Error number: 1327, symbol:
  1621. * <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>.
  1622. */
  1623. er_sp_undeclared_var = 1327,
  1624. /**
  1625. * \brief Common server error. Error number: 1328, symbol:
  1626. * <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>.
  1627. */
  1628. er_sp_wrong_no_of_fetch_args = 1328,
  1629. /**
  1630. * \brief Common server error. Error number: 1329, symbol:
  1631. * <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>.
  1632. */
  1633. er_sp_fetch_no_data = 1329,
  1634. /**
  1635. * \brief Common server error. Error number: 1330, symbol:
  1636. * <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>.
  1637. */
  1638. er_sp_dup_param = 1330,
  1639. /**
  1640. * \brief Common server error. Error number: 1331, symbol:
  1641. * <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>.
  1642. */
  1643. er_sp_dup_var = 1331,
  1644. /**
  1645. * \brief Common server error. Error number: 1332, symbol:
  1646. * <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>.
  1647. */
  1648. er_sp_dup_cond = 1332,
  1649. /**
  1650. * \brief Common server error. Error number: 1333, symbol:
  1651. * <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>.
  1652. */
  1653. er_sp_dup_curs = 1333,
  1654. /**
  1655. * \brief Common server error. Error number: 1334, symbol:
  1656. * <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>.
  1657. */
  1658. er_sp_cant_alter = 1334,
  1659. /**
  1660. * \brief Common server error. Error number: 1335, symbol:
  1661. * <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>.
  1662. */
  1663. er_sp_subselect_nyi = 1335,
  1664. /**
  1665. * \brief Common server error. Error number: 1336, symbol:
  1666. * <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>.
  1667. */
  1668. er_stmt_not_allowed_in_sf_or_trg = 1336,
  1669. /**
  1670. * \brief Common server error. Error number: 1337, symbol:
  1671. * <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>.
  1672. */
  1673. er_sp_varcond_after_curshndlr = 1337,
  1674. /**
  1675. * \brief Common server error. Error number: 1338, symbol:
  1676. * <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>.
  1677. */
  1678. er_sp_cursor_after_handler = 1338,
  1679. /**
  1680. * \brief Common server error. Error number: 1339, symbol:
  1681. * <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>.
  1682. */
  1683. er_sp_case_not_found = 1339,
  1684. /**
  1685. * \brief Common server error. Error number: 1340, symbol:
  1686. * <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>.
  1687. */
  1688. er_fparser_too_big_file = 1340,
  1689. /**
  1690. * \brief Common server error. Error number: 1341, symbol:
  1691. * <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>.
  1692. */
  1693. er_fparser_bad_header = 1341,
  1694. /**
  1695. * \brief Common server error. Error number: 1342, symbol:
  1696. * <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>.
  1697. */
  1698. er_fparser_eof_in_comment = 1342,
  1699. /**
  1700. * \brief Common server error. Error number: 1343, symbol:
  1701. * <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>.
  1702. */
  1703. er_fparser_error_in_parameter = 1343,
  1704. /**
  1705. * \brief Common server error. Error number: 1344, symbol:
  1706. * <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>.
  1707. */
  1708. er_fparser_eof_in_unknown_parameter = 1344,
  1709. /**
  1710. * \brief Common server error. Error number: 1345, symbol:
  1711. * <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>.
  1712. */
  1713. er_view_no_explain = 1345,
  1714. /**
  1715. * \brief Common server error. Error number: 1346, symbol:
  1716. * <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>.
  1717. */
  1718. er_frm_unknown_type = 1346,
  1719. /**
  1720. * \brief Common server error. Error number: 1347, symbol:
  1721. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_object">ER_WRONG_OBJECT</a>.
  1722. */
  1723. er_wrong_object = 1347,
  1724. /**
  1725. * \brief Common server error. Error number: 1348, symbol:
  1726. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_nonupdateable_column">ER_NONUPDATEABLE_COLUMN</a>.
  1727. */
  1728. er_nonupdateable_column = 1348,
  1729. /**
  1730. * \brief Common server error. Error number: 1350, symbol:
  1731. * <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>.
  1732. */
  1733. er_view_select_clause = 1350,
  1734. /**
  1735. * \brief Common server error. Error number: 1351, symbol:
  1736. * <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>.
  1737. */
  1738. er_view_select_variable = 1351,
  1739. /**
  1740. * \brief Common server error. Error number: 1352, symbol:
  1741. * <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>.
  1742. */
  1743. er_view_select_tmptable = 1352,
  1744. /**
  1745. * \brief Common server error. Error number: 1353, symbol:
  1746. * <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>.
  1747. */
  1748. er_view_wrong_list = 1353,
  1749. /**
  1750. * \brief Common server error. Error number: 1354, symbol:
  1751. * <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>.
  1752. */
  1753. er_warn_view_merge = 1354,
  1754. /**
  1755. * \brief Common server error. Error number: 1355, symbol:
  1756. * <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>.
  1757. */
  1758. er_warn_view_without_key = 1355,
  1759. /**
  1760. * \brief Common server error. Error number: 1356, symbol:
  1761. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_invalid">ER_VIEW_INVALID</a>.
  1762. */
  1763. er_view_invalid = 1356,
  1764. /**
  1765. * \brief Common server error. Error number: 1357, symbol:
  1766. * <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>.
  1767. */
  1768. er_sp_no_drop_sp = 1357,
  1769. /**
  1770. * \brief Common server error. Error number: 1358, symbol:
  1771. * <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>.
  1772. */
  1773. er_sp_goto_in_hndlr = 1358,
  1774. /**
  1775. * \brief Common server error. Error number: 1359, symbol:
  1776. * <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>.
  1777. */
  1778. er_trg_already_exists = 1359,
  1779. /**
  1780. * \brief Common server error. Error number: 1360, symbol:
  1781. * <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>.
  1782. */
  1783. er_trg_does_not_exist = 1360,
  1784. /**
  1785. * \brief Common server error. Error number: 1361, symbol:
  1786. * <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>.
  1787. */
  1788. er_trg_on_view_or_temp_table = 1361,
  1789. /**
  1790. * \brief Common server error. Error number: 1362, symbol:
  1791. * <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>.
  1792. */
  1793. er_trg_cant_change_row = 1362,
  1794. /**
  1795. * \brief Common server error. Error number: 1363, symbol:
  1796. * <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>.
  1797. */
  1798. er_trg_no_such_row_in_trg = 1363,
  1799. /**
  1800. * \brief Common server error. Error number: 1364, symbol:
  1801. * <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>.
  1802. */
  1803. er_no_default_for_field = 1364,
  1804. /**
  1805. * \brief Common server error. Error number: 1365, symbol:
  1806. * <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>.
  1807. */
  1808. er_division_by_zero = 1365,
  1809. /**
  1810. * \brief Common server error. Error number: 1366, symbol:
  1811. * <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>.
  1812. */
  1813. er_truncated_wrong_value_for_field = 1366,
  1814. /**
  1815. * \brief Common server error. Error number: 1367, symbol:
  1816. * <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>.
  1817. */
  1818. er_illegal_value_for_type = 1367,
  1819. /**
  1820. * \brief Common server error. Error number: 1368, symbol:
  1821. * <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>.
  1822. */
  1823. er_view_nonupd_check = 1368,
  1824. /**
  1825. * \brief Common server error. Error number: 1369, symbol:
  1826. * <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>.
  1827. */
  1828. er_view_check_failed = 1369,
  1829. /**
  1830. * \brief Common server error. Error number: 1370, symbol:
  1831. * <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>.
  1832. */
  1833. er_procaccess_denied_error = 1370,
  1834. /**
  1835. * \brief Common server error. Error number: 1371, symbol:
  1836. * <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>.
  1837. */
  1838. er_relay_log_fail = 1371,
  1839. /**
  1840. * \brief Common server error. Error number: 1372, symbol:
  1841. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_passwd_length">ER_PASSWD_LENGTH</a>.
  1842. */
  1843. er_passwd_length = 1372,
  1844. /**
  1845. * \brief Common server error. Error number: 1373, symbol:
  1846. * <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>.
  1847. */
  1848. er_unknown_target_binlog = 1373,
  1849. /**
  1850. * \brief Common server error. Error number: 1374, symbol:
  1851. * <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>.
  1852. */
  1853. er_io_err_log_index_read = 1374,
  1854. /**
  1855. * \brief Common server error. Error number: 1375, symbol:
  1856. * <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>.
  1857. */
  1858. er_binlog_purge_prohibited = 1375,
  1859. /**
  1860. * \brief Common server error. Error number: 1376, symbol:
  1861. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_fseek_fail">ER_FSEEK_FAIL</a>.
  1862. */
  1863. er_fseek_fail = 1376,
  1864. /**
  1865. * \brief Common server error. Error number: 1377, symbol:
  1866. * <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>.
  1867. */
  1868. er_binlog_purge_fatal_err = 1377,
  1869. /**
  1870. * \brief Common server error. Error number: 1378, symbol:
  1871. * <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>.
  1872. */
  1873. er_log_in_use = 1378,
  1874. /**
  1875. * \brief Common server error. Error number: 1379, symbol:
  1876. * <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>.
  1877. */
  1878. er_log_purge_unknown_err = 1379,
  1879. /**
  1880. * \brief Common server error. Error number: 1380, symbol:
  1881. * <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>.
  1882. */
  1883. er_relay_log_init = 1380,
  1884. /**
  1885. * \brief Common server error. Error number: 1381, symbol:
  1886. * <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>.
  1887. */
  1888. er_no_binary_logging = 1381,
  1889. /**
  1890. * \brief Common server error. Error number: 1382, symbol:
  1891. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_reserved_syntax">ER_RESERVED_SYNTAX</a>.
  1892. */
  1893. er_reserved_syntax = 1382,
  1894. /**
  1895. * \brief Common server error. Error number: 1383, symbol:
  1896. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wsas_failed">ER_WSAS_FAILED</a>.
  1897. */
  1898. er_wsas_failed = 1383,
  1899. /**
  1900. * \brief Common server error. Error number: 1384, symbol:
  1901. * <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>.
  1902. */
  1903. er_diff_groups_proc = 1384,
  1904. /**
  1905. * \brief Common server error. Error number: 1385, symbol:
  1906. * <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>.
  1907. */
  1908. er_no_group_for_proc = 1385,
  1909. /**
  1910. * \brief Common server error. Error number: 1386, symbol:
  1911. * <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>.
  1912. */
  1913. er_order_with_proc = 1386,
  1914. /**
  1915. * \brief Common server error. Error number: 1387, symbol:
  1916. * <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>.
  1917. */
  1918. er_logging_prohibit_changing_of = 1387,
  1919. /**
  1920. * \brief Common server error. Error number: 1388, symbol:
  1921. * <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>.
  1922. */
  1923. er_no_file_mapping = 1388,
  1924. /**
  1925. * \brief Common server error. Error number: 1389, symbol:
  1926. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_magic">ER_WRONG_MAGIC</a>.
  1927. */
  1928. er_wrong_magic = 1389,
  1929. /**
  1930. * \brief Common server error. Error number: 1390, symbol:
  1931. * <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>.
  1932. */
  1933. er_ps_many_param = 1390,
  1934. /**
  1935. * \brief Common server error. Error number: 1391, symbol:
  1936. * <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>.
  1937. */
  1938. er_key_part_0 = 1391,
  1939. /**
  1940. * \brief Common server error. Error number: 1392, symbol:
  1941. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_checksum">ER_VIEW_CHECKSUM</a>.
  1942. */
  1943. er_view_checksum = 1392,
  1944. /**
  1945. * \brief Common server error. Error number: 1393, symbol:
  1946. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_multiupdate">ER_VIEW_MULTIUPDATE</a>.
  1947. */
  1948. er_view_multiupdate = 1393,
  1949. /**
  1950. * \brief Common server error. Error number: 1394, symbol:
  1951. * <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>.
  1952. */
  1953. er_view_no_insert_field_list = 1394,
  1954. /**
  1955. * \brief Common server error. Error number: 1395, symbol:
  1956. * <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>.
  1957. */
  1958. er_view_delete_merge_view = 1395,
  1959. /**
  1960. * \brief Common server error. Error number: 1396, symbol:
  1961. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_cannot_user">ER_CANNOT_USER</a>.
  1962. */
  1963. er_cannot_user = 1396,
  1964. /**
  1965. * \brief Common server error. Error number: 1397, symbol:
  1966. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_nota">ER_XAER_NOTA</a>.
  1967. */
  1968. er_xaer_nota = 1397,
  1969. /**
  1970. * \brief Common server error. Error number: 1398, symbol:
  1971. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_inval">ER_XAER_INVAL</a>.
  1972. */
  1973. er_xaer_inval = 1398,
  1974. /**
  1975. * \brief Common server error. Error number: 1399, symbol:
  1976. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_rmfail">ER_XAER_RMFAIL</a>.
  1977. */
  1978. er_xaer_rmfail = 1399,
  1979. /**
  1980. * \brief Common server error. Error number: 1400, symbol:
  1981. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_outside">ER_XAER_OUTSIDE</a>.
  1982. */
  1983. er_xaer_outside = 1400,
  1984. /**
  1985. * \brief Common server error. Error number: 1401, symbol:
  1986. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_rmerr">ER_XAER_RMERR</a>.
  1987. */
  1988. er_xaer_rmerr = 1401,
  1989. /**
  1990. * \brief Common server error. Error number: 1402, symbol:
  1991. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xa_rbrollback">ER_XA_RBROLLBACK</a>.
  1992. */
  1993. er_xa_rbrollback = 1402,
  1994. /**
  1995. * \brief Common server error. Error number: 1403, symbol:
  1996. * <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>.
  1997. */
  1998. er_nonexisting_proc_grant = 1403,
  1999. /**
  2000. * \brief Common server error. Error number: 1404, symbol:
  2001. * <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>.
  2002. */
  2003. er_proc_auto_grant_fail = 1404,
  2004. /**
  2005. * \brief Common server error. Error number: 1405, symbol:
  2006. * <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>.
  2007. */
  2008. er_proc_auto_revoke_fail = 1405,
  2009. /**
  2010. * \brief Common server error. Error number: 1406, symbol:
  2011. * <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>.
  2012. */
  2013. er_data_too_long = 1406,
  2014. /**
  2015. * \brief Common server error. Error number: 1407, symbol:
  2016. * <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>.
  2017. */
  2018. er_sp_bad_sqlstate = 1407,
  2019. /**
  2020. * \brief Common server error. Error number: 1408, symbol:
  2021. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_startup">ER_STARTUP</a>.
  2022. */
  2023. er_startup = 1408,
  2024. /**
  2025. * \brief Common server error. Error number: 1409, symbol:
  2026. * <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>.
  2027. */
  2028. er_load_from_fixed_size_rows_to_var = 1409,
  2029. /**
  2030. * \brief Common server error. Error number: 1410, symbol:
  2031. * <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>.
  2032. */
  2033. er_cant_create_user_with_grant = 1410,
  2034. /**
  2035. * \brief Common server error. Error number: 1411, symbol:
  2036. * <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>.
  2037. */
  2038. er_wrong_value_for_type = 1411,
  2039. /**
  2040. * \brief Common server error. Error number: 1412, symbol:
  2041. * <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>.
  2042. */
  2043. er_table_def_changed = 1412,
  2044. /**
  2045. * \brief Common server error. Error number: 1413, symbol:
  2046. * <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>.
  2047. */
  2048. er_sp_dup_handler = 1413,
  2049. /**
  2050. * \brief Common server error. Error number: 1414, symbol:
  2051. * <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>.
  2052. */
  2053. er_sp_not_var_arg = 1414,
  2054. /**
  2055. * \brief Common server error. Error number: 1415, symbol:
  2056. * <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>.
  2057. */
  2058. er_sp_no_retset = 1415,
  2059. /**
  2060. * \brief Common server error. Error number: 1416, symbol:
  2061. * <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>.
  2062. */
  2063. er_cant_create_geometry_object = 1416,
  2064. /**
  2065. * \brief Common server error. Error number: 1417, symbol:
  2066. * <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>.
  2067. */
  2068. er_failed_routine_break_binlog = 1417,
  2069. /**
  2070. * \brief Common server error. Error number: 1418, symbol:
  2071. * <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>.
  2072. */
  2073. er_binlog_unsafe_routine = 1418,
  2074. /**
  2075. * \brief Common server error. Error number: 1419, symbol:
  2076. * <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>.
  2077. */
  2078. er_binlog_create_routine_need_super = 1419,
  2079. /**
  2080. * \brief Common server error. Error number: 1420, symbol:
  2081. * <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>.
  2082. */
  2083. er_exec_stmt_with_open_cursor = 1420,
  2084. /**
  2085. * \brief Common server error. Error number: 1421, symbol:
  2086. * <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>.
  2087. */
  2088. er_stmt_has_no_open_cursor = 1421,
  2089. /**
  2090. * \brief Common server error. Error number: 1422, symbol:
  2091. * <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>.
  2092. */
  2093. er_commit_not_allowed_in_sf_or_trg = 1422,
  2094. /**
  2095. * \brief Common server error. Error number: 1423, symbol:
  2096. * <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>.
  2097. */
  2098. er_no_default_for_view_field = 1423,
  2099. /**
  2100. * \brief Common server error. Error number: 1424, symbol:
  2101. * <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>.
  2102. */
  2103. er_sp_no_recursion = 1424,
  2104. /**
  2105. * \brief Common server error. Error number: 1425, symbol:
  2106. * <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>.
  2107. */
  2108. er_too_big_scale = 1425,
  2109. /**
  2110. * \brief Common server error. Error number: 1426, symbol:
  2111. * <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>.
  2112. */
  2113. er_too_big_precision = 1426,
  2114. /**
  2115. * \brief Common server error. Error number: 1427, symbol:
  2116. * <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>.
  2117. */
  2118. er_m_bigger_than_d = 1427,
  2119. /**
  2120. * \brief Common server error. Error number: 1428, symbol:
  2121. * <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>.
  2122. */
  2123. er_wrong_lock_of_system_table = 1428,
  2124. /**
  2125. * \brief Common server error. Error number: 1429, symbol:
  2126. * <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>.
  2127. */
  2128. er_connect_to_foreign_data_source = 1429,
  2129. /**
  2130. * \brief Common server error. Error number: 1430, symbol:
  2131. * <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>.
  2132. */
  2133. er_query_on_foreign_data_source = 1430,
  2134. /**
  2135. * \brief Common server error. Error number: 1431, symbol:
  2136. * <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>.
  2137. */
  2138. er_foreign_data_source_doesnt_exist = 1431,
  2139. /**
  2140. * \brief Common server error. Error number: 1432, symbol:
  2141. * <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>.
  2142. */
  2143. er_foreign_data_string_invalid_cant_create = 1432,
  2144. /**
  2145. * \brief Common server error. Error number: 1433, symbol:
  2146. * <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>.
  2147. */
  2148. er_foreign_data_string_invalid = 1433,
  2149. /**
  2150. * \brief Common server error. Error number: 1434, symbol:
  2151. * <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>.
  2152. */
  2153. er_cant_create_federated_table = 1434,
  2154. /**
  2155. * \brief Common server error. Error number: 1435, symbol:
  2156. * <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>.
  2157. */
  2158. er_trg_in_wrong_schema = 1435,
  2159. /**
  2160. * \brief Common server error. Error number: 1436, symbol:
  2161. * <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>.
  2162. */
  2163. er_stack_overrun_need_more = 1436,
  2164. /**
  2165. * \brief Common server error. Error number: 1437, symbol:
  2166. * <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>.
  2167. */
  2168. er_too_long_body = 1437,
  2169. /**
  2170. * \brief Common server error. Error number: 1438, symbol:
  2171. * <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>.
  2172. */
  2173. er_warn_cant_drop_default_keycache = 1438,
  2174. /**
  2175. * \brief Common server error. Error number: 1439, symbol:
  2176. * <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>.
  2177. */
  2178. er_too_big_displaywidth = 1439,
  2179. /**
  2180. * \brief Common server error. Error number: 1440, symbol:
  2181. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xaer_dupid">ER_XAER_DUPID</a>.
  2182. */
  2183. er_xaer_dupid = 1440,
  2184. /**
  2185. * \brief Common server error. Error number: 1441, symbol:
  2186. * <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>.
  2187. */
  2188. er_datetime_function_overflow = 1441,
  2189. /**
  2190. * \brief Common server error. Error number: 1442, symbol:
  2191. * <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>.
  2192. */
  2193. er_cant_update_used_table_in_sf_or_trg = 1442,
  2194. /**
  2195. * \brief Common server error. Error number: 1443, symbol:
  2196. * <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>.
  2197. */
  2198. er_view_prevent_update = 1443,
  2199. /**
  2200. * \brief Common server error. Error number: 1444, symbol:
  2201. * <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>.
  2202. */
  2203. er_ps_no_recursion = 1444,
  2204. /**
  2205. * \brief Common server error. Error number: 1445, symbol:
  2206. * <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>.
  2207. */
  2208. er_sp_cant_set_autocommit = 1445,
  2209. /**
  2210. * \brief Common server error. Error number: 1446, symbol:
  2211. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_malformed_definer">ER_MALFORMED_DEFINER</a>.
  2212. */
  2213. er_malformed_definer = 1446,
  2214. /**
  2215. * \brief Common server error. Error number: 1447, symbol:
  2216. * <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>.
  2217. */
  2218. er_view_frm_no_user = 1447,
  2219. /**
  2220. * \brief Common server error. Error number: 1448, symbol:
  2221. * <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>.
  2222. */
  2223. er_view_other_user = 1448,
  2224. /**
  2225. * \brief Common server error. Error number: 1449, symbol:
  2226. * <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>.
  2227. */
  2228. er_no_such_user = 1449,
  2229. /**
  2230. * \brief Common server error. Error number: 1450, symbol:
  2231. * <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>.
  2232. */
  2233. er_forbid_schema_change = 1450,
  2234. /**
  2235. * \brief Common server error. Error number: 1451, symbol:
  2236. * <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>.
  2237. */
  2238. er_row_is_referenced_2 = 1451,
  2239. /**
  2240. * \brief Common server error. Error number: 1452, symbol:
  2241. * <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>.
  2242. */
  2243. er_no_referenced_row_2 = 1452,
  2244. /**
  2245. * \brief Common server error. Error number: 1453, symbol:
  2246. * <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>.
  2247. */
  2248. er_sp_bad_var_shadow = 1453,
  2249. /**
  2250. * \brief Common server error. Error number: 1454, symbol:
  2251. * <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>.
  2252. */
  2253. er_trg_no_definer = 1454,
  2254. /**
  2255. * \brief Common server error. Error number: 1455, symbol:
  2256. * <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>.
  2257. */
  2258. er_old_file_format = 1455,
  2259. /**
  2260. * \brief Common server error. Error number: 1456, symbol:
  2261. * <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>.
  2262. */
  2263. er_sp_recursion_limit = 1456,
  2264. /**
  2265. * \brief Common server error. Error number: 1457, symbol:
  2266. * <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>.
  2267. */
  2268. er_sp_proc_table_corrupt = 1457,
  2269. /**
  2270. * \brief Common server error. Error number: 1458, symbol:
  2271. * <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>.
  2272. */
  2273. er_sp_wrong_name = 1458,
  2274. /**
  2275. * \brief Common server error. Error number: 1459, symbol:
  2276. * <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>.
  2277. */
  2278. er_table_needs_upgrade = 1459,
  2279. /**
  2280. * \brief Common server error. Error number: 1460, symbol:
  2281. * <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>.
  2282. */
  2283. er_sp_no_aggregate = 1460,
  2284. /**
  2285. * \brief Common server error. Error number: 1461, symbol:
  2286. * <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>.
  2287. */
  2288. er_max_prepared_stmt_count_reached = 1461,
  2289. /**
  2290. * \brief Common server error. Error number: 1462, symbol:
  2291. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_view_recursive">ER_VIEW_RECURSIVE</a>.
  2292. */
  2293. er_view_recursive = 1462,
  2294. /**
  2295. * \brief Common server error. Error number: 1463, symbol:
  2296. * <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>.
  2297. */
  2298. er_non_grouping_field_used = 1463,
  2299. /**
  2300. * \brief Common server error. Error number: 1464, symbol:
  2301. * <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>.
  2302. */
  2303. er_table_cant_handle_spkeys = 1464,
  2304. /**
  2305. * \brief Common server error. Error number: 1465, symbol:
  2306. * <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>.
  2307. */
  2308. er_no_triggers_on_system_schema = 1465,
  2309. /**
  2310. * \brief Common server error. Error number: 1466, symbol:
  2311. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_removed_spaces">ER_REMOVED_SPACES</a>.
  2312. */
  2313. er_removed_spaces = 1466,
  2314. /**
  2315. * \brief Common server error. Error number: 1467, symbol:
  2316. * <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>.
  2317. */
  2318. er_autoinc_read_failed = 1467,
  2319. /**
  2320. * \brief Common server error. Error number: 1468, symbol:
  2321. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_username">ER_USERNAME</a>.
  2322. */
  2323. er_username = 1468,
  2324. /**
  2325. * \brief Common server error. Error number: 1469, symbol:
  2326. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_hostname">ER_HOSTNAME</a>.
  2327. */
  2328. er_hostname = 1469,
  2329. /**
  2330. * \brief Common server error. Error number: 1470, symbol:
  2331. * <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>.
  2332. */
  2333. er_wrong_string_length = 1470,
  2334. /**
  2335. * \brief Common server error. Error number: 1471, symbol:
  2336. * <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>.
  2337. */
  2338. er_non_insertable_table = 1471,
  2339. /**
  2340. * \brief Common server error. Error number: 1472, symbol:
  2341. * <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>.
  2342. */
  2343. er_admin_wrong_mrg_table = 1472,
  2344. /**
  2345. * \brief Common server error. Error number: 1473, symbol:
  2346. * <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>.
  2347. */
  2348. er_too_high_level_of_nesting_for_select = 1473,
  2349. /**
  2350. * \brief Common server error. Error number: 1474, symbol:
  2351. * <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>.
  2352. */
  2353. er_name_becomes_empty = 1474,
  2354. /**
  2355. * \brief Common server error. Error number: 1475, symbol:
  2356. * <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>.
  2357. */
  2358. er_ambiguous_field_term = 1475,
  2359. /**
  2360. * \brief Common server error. Error number: 1476, symbol:
  2361. * <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>.
  2362. */
  2363. er_foreign_server_exists = 1476,
  2364. /**
  2365. * \brief Common server error. Error number: 1477, symbol:
  2366. * <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>.
  2367. */
  2368. er_foreign_server_doesnt_exist = 1477,
  2369. /**
  2370. * \brief Common server error. Error number: 1478, symbol:
  2371. * <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>.
  2372. */
  2373. er_illegal_ha_create_option = 1478,
  2374. /**
  2375. * \brief Common server error. Error number: 1479, symbol:
  2376. * <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>.
  2377. */
  2378. er_partition_requires_values_error = 1479,
  2379. /**
  2380. * \brief Common server error. Error number: 1480, symbol:
  2381. * <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>.
  2382. */
  2383. er_partition_wrong_values_error = 1480,
  2384. /**
  2385. * \brief Common server error. Error number: 1481, symbol:
  2386. * <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>.
  2387. */
  2388. er_partition_maxvalue_error = 1481,
  2389. /**
  2390. * \brief Common server error. Error number: 1482, symbol:
  2391. * <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>.
  2392. */
  2393. er_partition_subpartition_error = 1482,
  2394. /**
  2395. * \brief Common server error. Error number: 1483, symbol:
  2396. * <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>.
  2397. */
  2398. er_partition_subpart_mix_error = 1483,
  2399. /**
  2400. * \brief Common server error. Error number: 1484, symbol:
  2401. * <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>.
  2402. */
  2403. er_partition_wrong_no_part_error = 1484,
  2404. /**
  2405. * \brief Common server error. Error number: 1485, symbol:
  2406. * <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>.
  2407. */
  2408. er_partition_wrong_no_subpart_error = 1485,
  2409. /**
  2410. * \brief Common server error. Error number: 1486, symbol:
  2411. * <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>.
  2412. */
  2413. er_wrong_expr_in_partition_func_error = 1486,
  2414. /**
  2415. * \brief Common server error. Error number: 1488, symbol:
  2416. * <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>.
  2417. */
  2418. er_field_not_found_part_error = 1488,
  2419. /**
  2420. * \brief Common server error. Error number: 1489, symbol:
  2421. * <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>.
  2422. */
  2423. er_list_of_fields_only_in_hash_error = 1489,
  2424. /**
  2425. * \brief Common server error. Error number: 1490, symbol:
  2426. * <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>.
  2427. */
  2428. er_inconsistent_partition_info_error = 1490,
  2429. /**
  2430. * \brief Common server error. Error number: 1491, symbol:
  2431. * <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>.
  2432. */
  2433. er_partition_func_not_allowed_error = 1491,
  2434. /**
  2435. * \brief Common server error. Error number: 1492, symbol:
  2436. * <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>.
  2437. */
  2438. er_partitions_must_be_defined_error = 1492,
  2439. /**
  2440. * \brief Common server error. Error number: 1493, symbol:
  2441. * <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>.
  2442. */
  2443. er_range_not_increasing_error = 1493,
  2444. /**
  2445. * \brief Common server error. Error number: 1494, symbol:
  2446. * <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>.
  2447. */
  2448. er_inconsistent_type_of_functions_error = 1494,
  2449. /**
  2450. * \brief Common server error. Error number: 1495, symbol:
  2451. * <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>.
  2452. */
  2453. er_multiple_def_const_in_list_part_error = 1495,
  2454. /**
  2455. * \brief Common server error. Error number: 1496, symbol:
  2456. * <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>.
  2457. */
  2458. er_partition_entry_error = 1496,
  2459. /**
  2460. * \brief Common server error. Error number: 1497, symbol:
  2461. * <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>.
  2462. */
  2463. er_mix_handler_error = 1497,
  2464. /**
  2465. * \brief Common server error. Error number: 1498, symbol:
  2466. * <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>.
  2467. */
  2468. er_partition_not_defined_error = 1498,
  2469. /**
  2470. * \brief Common server error. Error number: 1499, symbol:
  2471. * <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>.
  2472. */
  2473. er_too_many_partitions_error = 1499,
  2474. /**
  2475. * \brief Common server error. Error number: 1500, symbol:
  2476. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_subpartition_error">ER_SUBPARTITION_ERROR</a>.
  2477. */
  2478. er_subpartition_error = 1500,
  2479. /**
  2480. * \brief Common server error. Error number: 1501, symbol:
  2481. * <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>.
  2482. */
  2483. er_cant_create_handler_file = 1501,
  2484. /**
  2485. * \brief Common server error. Error number: 1502, symbol:
  2486. * <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>.
  2487. */
  2488. er_blob_field_in_part_func_error = 1502,
  2489. /**
  2490. * \brief Common server error. Error number: 1503, symbol:
  2491. * <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>.
  2492. */
  2493. er_unique_key_need_all_fields_in_pf = 1503,
  2494. /**
  2495. * \brief Common server error. Error number: 1504, symbol:
  2496. * <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>.
  2497. */
  2498. er_no_parts_error = 1504,
  2499. /**
  2500. * \brief Common server error. Error number: 1505, symbol:
  2501. * <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>.
  2502. */
  2503. er_partition_mgmt_on_nonpartitioned = 1505,
  2504. /**
  2505. * \brief Common server error. Error number: 1507, symbol:
  2506. * <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>.
  2507. */
  2508. er_drop_partition_non_existent = 1507,
  2509. /**
  2510. * \brief Common server error. Error number: 1508, symbol:
  2511. * <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>.
  2512. */
  2513. er_drop_last_partition = 1508,
  2514. /**
  2515. * \brief Common server error. Error number: 1509, symbol:
  2516. * <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>.
  2517. */
  2518. er_coalesce_only_on_hash_partition = 1509,
  2519. /**
  2520. * \brief Common server error. Error number: 1510, symbol:
  2521. * <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>.
  2522. */
  2523. er_reorg_hash_only_on_same_no = 1510,
  2524. /**
  2525. * \brief Common server error. Error number: 1511, symbol:
  2526. * <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>.
  2527. */
  2528. er_reorg_no_param_error = 1511,
  2529. /**
  2530. * \brief Common server error. Error number: 1512, symbol:
  2531. * <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>.
  2532. */
  2533. er_only_on_range_list_partition = 1512,
  2534. /**
  2535. * \brief Common server error. Error number: 1513, symbol:
  2536. * <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>.
  2537. */
  2538. er_add_partition_subpart_error = 1513,
  2539. /**
  2540. * \brief Common server error. Error number: 1514, symbol:
  2541. * <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>.
  2542. */
  2543. er_add_partition_no_new_partition = 1514,
  2544. /**
  2545. * \brief Common server error. Error number: 1515, symbol:
  2546. * <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>.
  2547. */
  2548. er_coalesce_partition_no_partition = 1515,
  2549. /**
  2550. * \brief Common server error. Error number: 1516, symbol:
  2551. * <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>.
  2552. */
  2553. er_reorg_partition_not_exist = 1516,
  2554. /**
  2555. * \brief Common server error. Error number: 1517, symbol:
  2556. * <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>.
  2557. */
  2558. er_same_name_partition = 1517,
  2559. /**
  2560. * \brief Common server error. Error number: 1518, symbol:
  2561. * <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>.
  2562. */
  2563. er_no_binlog_error = 1518,
  2564. /**
  2565. * \brief Common server error. Error number: 1519, symbol:
  2566. * <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>.
  2567. */
  2568. er_consecutive_reorg_partitions = 1519,
  2569. /**
  2570. * \brief Common server error. Error number: 1520, symbol:
  2571. * <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>.
  2572. */
  2573. er_reorg_outside_range = 1520,
  2574. /**
  2575. * \brief Common server error. Error number: 1521, symbol:
  2576. * <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>.
  2577. */
  2578. er_partition_function_failure = 1521,
  2579. /**
  2580. * \brief Common server error. Error number: 1522, symbol:
  2581. * <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>.
  2582. */
  2583. er_part_state_error = 1522,
  2584. /**
  2585. * \brief Common server error. Error number: 1523, symbol:
  2586. * <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>.
  2587. */
  2588. er_limited_part_range = 1523,
  2589. /**
  2590. * \brief Common server error. Error number: 1524, symbol:
  2591. * <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>.
  2592. */
  2593. er_plugin_is_not_loaded = 1524,
  2594. /**
  2595. * \brief Common server error. Error number: 1525, symbol:
  2596. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_wrong_value">ER_WRONG_VALUE</a>.
  2597. */
  2598. er_wrong_value = 1525,
  2599. /**
  2600. * \brief Common server error. Error number: 1526, symbol:
  2601. * <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>.
  2602. */
  2603. er_no_partition_for_given_value = 1526,
  2604. /**
  2605. * \brief Common server error. Error number: 1527, symbol:
  2606. * <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>.
  2607. */
  2608. er_filegroup_option_only_once = 1527,
  2609. /**
  2610. * \brief Common server error. Error number: 1528, symbol:
  2611. * <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>.
  2612. */
  2613. er_create_filegroup_failed = 1528,
  2614. /**
  2615. * \brief Common server error. Error number: 1529, symbol:
  2616. * <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>.
  2617. */
  2618. er_drop_filegroup_failed = 1529,
  2619. /**
  2620. * \brief Common server error. Error number: 1530, symbol:
  2621. * <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>.
  2622. */
  2623. er_tablespace_auto_extend_error = 1530,
  2624. /**
  2625. * \brief Common server error. Error number: 1531, symbol:
  2626. * <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>.
  2627. */
  2628. er_wrong_size_number = 1531,
  2629. /**
  2630. * \brief Common server error. Error number: 1532, symbol:
  2631. * <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>.
  2632. */
  2633. er_size_overflow_error = 1532,
  2634. /**
  2635. * \brief Common server error. Error number: 1533, symbol:
  2636. * <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>.
  2637. */
  2638. er_alter_filegroup_failed = 1533,
  2639. /**
  2640. * \brief Common server error. Error number: 1534, symbol:
  2641. * <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>.
  2642. */
  2643. er_binlog_row_logging_failed = 1534,
  2644. /**
  2645. * \brief Common server error. Error number: 1535, symbol:
  2646. * <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>.
  2647. */
  2648. er_binlog_row_wrong_table_def = 1535,
  2649. /**
  2650. * \brief Common server error. Error number: 1536, symbol:
  2651. * <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>.
  2652. */
  2653. er_binlog_row_rbr_to_sbr = 1536,
  2654. /**
  2655. * \brief Common server error. Error number: 1537, symbol:
  2656. * <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>.
  2657. */
  2658. er_event_already_exists = 1537,
  2659. /**
  2660. * \brief Common server error. Error number: 1538, symbol:
  2661. * <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>.
  2662. */
  2663. er_event_store_failed = 1538,
  2664. /**
  2665. * \brief Common server error. Error number: 1539, symbol:
  2666. * <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>.
  2667. */
  2668. er_event_does_not_exist = 1539,
  2669. /**
  2670. * \brief Common server error. Error number: 1540, symbol:
  2671. * <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>.
  2672. */
  2673. er_event_cant_alter = 1540,
  2674. /**
  2675. * \brief Common server error. Error number: 1541, symbol:
  2676. * <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>.
  2677. */
  2678. er_event_drop_failed = 1541,
  2679. /**
  2680. * \brief Common server error. Error number: 1542, symbol:
  2681. * <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>.
  2682. */
  2683. er_event_interval_not_positive_or_too_big = 1542,
  2684. /**
  2685. * \brief Common server error. Error number: 1543, symbol:
  2686. * <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>.
  2687. */
  2688. er_event_ends_before_starts = 1543,
  2689. /**
  2690. * \brief Common server error. Error number: 1544, symbol:
  2691. * <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>.
  2692. */
  2693. er_event_exec_time_in_the_past = 1544,
  2694. /**
  2695. * \brief Common server error. Error number: 1545, symbol:
  2696. * <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>.
  2697. */
  2698. er_event_open_table_failed = 1545,
  2699. /**
  2700. * \brief Common server error. Error number: 1546, symbol:
  2701. * <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>.
  2702. */
  2703. er_event_neither_m_expr_nor_m_at = 1546,
  2704. /**
  2705. * \brief Common server error. Error number: 1549, symbol:
  2706. * <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>.
  2707. */
  2708. er_event_cannot_delete = 1549,
  2709. /**
  2710. * \brief Common server error. Error number: 1550, symbol:
  2711. * <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>.
  2712. */
  2713. er_event_compile_error = 1550,
  2714. /**
  2715. * \brief Common server error. Error number: 1551, symbol:
  2716. * <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>.
  2717. */
  2718. er_event_same_name = 1551,
  2719. /**
  2720. * \brief Common server error. Error number: 1552, symbol:
  2721. * <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>.
  2722. */
  2723. er_event_data_too_long = 1552,
  2724. /**
  2725. * \brief Common server error. Error number: 1553, symbol:
  2726. * <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>.
  2727. */
  2728. er_drop_index_fk = 1553,
  2729. /**
  2730. * \brief Common server error. Error number: 1554, symbol:
  2731. * <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>.
  2732. */
  2733. er_warn_deprecated_syntax_with_ver = 1554,
  2734. /**
  2735. * \brief Common server error. Error number: 1555, symbol:
  2736. * <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>.
  2737. */
  2738. er_cant_write_lock_log_table = 1555,
  2739. /**
  2740. * \brief Common server error. Error number: 1556, symbol:
  2741. * <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>.
  2742. */
  2743. er_cant_lock_log_table = 1556,
  2744. /**
  2745. * \brief Common server error. Error number: 1558, symbol:
  2746. * <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>.
  2747. */
  2748. er_col_count_doesnt_match_please_update = 1558,
  2749. /**
  2750. * \brief Common server error. Error number: 1559, symbol:
  2751. * <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>.
  2752. */
  2753. er_temp_table_prevents_switch_out_of_rbr = 1559,
  2754. /**
  2755. * \brief Common server error. Error number: 1560, symbol:
  2756. * <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>.
  2757. */
  2758. er_stored_function_prevents_switch_binlog_format = 1560,
  2759. /**
  2760. * \brief Common server error. Error number: 1562, symbol:
  2761. * <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>.
  2762. */
  2763. er_partition_no_temporary = 1562,
  2764. /**
  2765. * \brief Common server error. Error number: 1563, symbol:
  2766. * <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>.
  2767. */
  2768. er_partition_const_domain_error = 1563,
  2769. /**
  2770. * \brief Common server error. Error number: 1564, symbol:
  2771. * <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>.
  2772. */
  2773. er_partition_function_is_not_allowed = 1564,
  2774. /**
  2775. * \brief Common server error. Error number: 1565, symbol:
  2776. * <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>.
  2777. */
  2778. er_ddl_log_error = 1565,
  2779. /**
  2780. * \brief Common server error. Error number: 1566, symbol:
  2781. * <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>.
  2782. */
  2783. er_null_in_values_less_than = 1566,
  2784. /**
  2785. * \brief Common server error. Error number: 1567, symbol:
  2786. * <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>.
  2787. */
  2788. er_wrong_partition_name = 1567,
  2789. /**
  2790. * \brief Common server error. Error number: 1568, symbol:
  2791. * <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>.
  2792. */
  2793. er_cant_change_tx_characteristics = 1568,
  2794. /**
  2795. * \brief Common server error. Error number: 1569, symbol:
  2796. * <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>.
  2797. */
  2798. er_dup_entry_autoincrement_case = 1569,
  2799. /**
  2800. * \brief Common server error. Error number: 1570, symbol:
  2801. * <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>.
  2802. */
  2803. er_event_modify_queue_error = 1570,
  2804. /**
  2805. * \brief Common server error. Error number: 1571, symbol:
  2806. * <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>.
  2807. */
  2808. er_event_set_var_error = 1571,
  2809. /**
  2810. * \brief Common server error. Error number: 1572, symbol:
  2811. * <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>.
  2812. */
  2813. er_partition_merge_error = 1572,
  2814. /**
  2815. * \brief Common server error. Error number: 1573, symbol:
  2816. * <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>.
  2817. */
  2818. er_cant_activate_log = 1573,
  2819. /**
  2820. * \brief Common server error. Error number: 1574, symbol:
  2821. * <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>.
  2822. */
  2823. er_rbr_not_available = 1574,
  2824. /**
  2825. * \brief Common server error. Error number: 1575, symbol:
  2826. * <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>.
  2827. */
  2828. er_base64_decode_error = 1575,
  2829. /**
  2830. * \brief Common server error. Error number: 1576, symbol:
  2831. * <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>.
  2832. */
  2833. er_event_recursion_forbidden = 1576,
  2834. /**
  2835. * \brief Common server error. Error number: 1577, symbol:
  2836. * <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>.
  2837. */
  2838. er_events_db_error = 1577,
  2839. /**
  2840. * \brief Common server error. Error number: 1578, symbol:
  2841. * <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>.
  2842. */
  2843. er_only_integers_allowed = 1578,
  2844. /**
  2845. * \brief Common server error. Error number: 1579, symbol:
  2846. * <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>.
  2847. */
  2848. er_unsuported_log_engine = 1579,
  2849. /**
  2850. * \brief Common server error. Error number: 1580, symbol:
  2851. * <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>.
  2852. */
  2853. er_bad_log_statement = 1580,
  2854. /**
  2855. * \brief Common server error. Error number: 1581, symbol:
  2856. * <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>.
  2857. */
  2858. er_cant_rename_log_table = 1581,
  2859. /**
  2860. * \brief Common server error. Error number: 1582, symbol:
  2861. * <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>.
  2862. */
  2863. er_wrong_paramcount_to_native_fct = 1582,
  2864. /**
  2865. * \brief Common server error. Error number: 1583, symbol:
  2866. * <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>.
  2867. */
  2868. er_wrong_parameters_to_native_fct = 1583,
  2869. /**
  2870. * \brief Common server error. Error number: 1584, symbol:
  2871. * <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>.
  2872. */
  2873. er_wrong_parameters_to_stored_fct = 1584,
  2874. /**
  2875. * \brief Common server error. Error number: 1585, symbol:
  2876. * <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>.
  2877. */
  2878. er_native_fct_name_collision = 1585,
  2879. /**
  2880. * \brief Common server error. Error number: 1586, symbol:
  2881. * <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>.
  2882. */
  2883. er_dup_entry_with_key_name = 1586,
  2884. /**
  2885. * \brief Common server error. Error number: 1587, symbol:
  2886. * <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>.
  2887. */
  2888. er_binlog_purge_emfile = 1587,
  2889. /**
  2890. * \brief Common server error. Error number: 1588, symbol:
  2891. * <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>.
  2892. */
  2893. er_event_cannot_create_in_the_past = 1588,
  2894. /**
  2895. * \brief Common server error. Error number: 1589, symbol:
  2896. * <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>.
  2897. */
  2898. er_event_cannot_alter_in_the_past = 1589,
  2899. /**
  2900. * \brief Common server error. Error number: 1590, symbol:
  2901. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_incident">ER_SLAVE_INCIDENT</a>.
  2902. */
  2903. er_slave_incident = 1590,
  2904. /**
  2905. * \brief Common server error. Error number: 1591, symbol:
  2906. * <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>.
  2907. */
  2908. er_no_partition_for_given_value_silent = 1591,
  2909. /**
  2910. * \brief Common server error. Error number: 1592, symbol:
  2911. * <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>.
  2912. */
  2913. er_binlog_unsafe_statement = 1592,
  2914. /**
  2915. * \brief Common server error. Error number: 1594, symbol:
  2916. * <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>.
  2917. */
  2918. er_slave_relay_log_read_failure = 1594,
  2919. /**
  2920. * \brief Common server error. Error number: 1595, symbol:
  2921. * <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>.
  2922. */
  2923. er_slave_relay_log_write_failure = 1595,
  2924. /**
  2925. * \brief Common server error. Error number: 1596, symbol:
  2926. * <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>.
  2927. */
  2928. er_slave_create_event_failure = 1596,
  2929. /**
  2930. * \brief Common server error. Error number: 1597, symbol:
  2931. * <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>.
  2932. */
  2933. er_slave_master_com_failure = 1597,
  2934. /**
  2935. * \brief Common server error. Error number: 1598, symbol:
  2936. * <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>.
  2937. */
  2938. er_binlog_logging_impossible = 1598,
  2939. /**
  2940. * \brief Common server error. Error number: 1599, symbol:
  2941. * <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>.
  2942. */
  2943. er_view_no_creation_ctx = 1599,
  2944. /**
  2945. * \brief Common server error. Error number: 1600, symbol:
  2946. * <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>.
  2947. */
  2948. er_view_invalid_creation_ctx = 1600,
  2949. /**
  2950. * \brief Common server error. Error number: 1601, symbol:
  2951. * <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>.
  2952. */
  2953. er_sr_invalid_creation_ctx = 1601,
  2954. /**
  2955. * \brief Common server error. Error number: 1602, symbol:
  2956. * <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>.
  2957. */
  2958. er_trg_corrupted_file = 1602,
  2959. /**
  2960. * \brief Common server error. Error number: 1603, symbol:
  2961. * <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>.
  2962. */
  2963. er_trg_no_creation_ctx = 1603,
  2964. /**
  2965. * \brief Common server error. Error number: 1604, symbol:
  2966. * <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>.
  2967. */
  2968. er_trg_invalid_creation_ctx = 1604,
  2969. /**
  2970. * \brief Common server error. Error number: 1605, symbol:
  2971. * <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>.
  2972. */
  2973. er_event_invalid_creation_ctx = 1605,
  2974. /**
  2975. * \brief Common server error. Error number: 1606, symbol:
  2976. * <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>.
  2977. */
  2978. er_trg_cant_open_table = 1606,
  2979. /**
  2980. * \brief Common server error. Error number: 1607, symbol:
  2981. * <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>.
  2982. */
  2983. er_cant_create_sroutine = 1607,
  2984. /**
  2985. * \brief Common server error. Error number: 1609, symbol:
  2986. * <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>.
  2987. */
  2988. er_no_format_description_event_before_binlog_statement = 1609,
  2989. /**
  2990. * \brief Common server error. Error number: 1610, symbol:
  2991. * <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>.
  2992. */
  2993. er_slave_corrupt_event = 1610,
  2994. /**
  2995. * \brief Common server error. Error number: 1612, symbol:
  2996. * <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>.
  2997. */
  2998. er_log_purge_no_file = 1612,
  2999. /**
  3000. * \brief Common server error. Error number: 1613, symbol:
  3001. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xa_rbtimeout">ER_XA_RBTIMEOUT</a>.
  3002. */
  3003. er_xa_rbtimeout = 1613,
  3004. /**
  3005. * \brief Common server error. Error number: 1614, symbol:
  3006. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_xa_rbdeadlock">ER_XA_RBDEADLOCK</a>.
  3007. */
  3008. er_xa_rbdeadlock = 1614,
  3009. /**
  3010. * \brief Common server error. Error number: 1615, symbol:
  3011. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_need_reprepare">ER_NEED_REPREPARE</a>.
  3012. */
  3013. er_need_reprepare = 1615,
  3014. /**
  3015. * \brief Common server error. Error number: 1616, symbol:
  3016. * <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>.
  3017. */
  3018. er_delayed_not_supported = 1616,
  3019. /**
  3020. * \brief Common server error. Error number: 1617, symbol:
  3021. * <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>.
  3022. */
  3023. warn_no_master_info = 1617,
  3024. /**
  3025. * \brief Common server error. Error number: 1618, symbol:
  3026. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_option_ignored">WARN_OPTION_IGNORED</a>.
  3027. */
  3028. warn_option_ignored = 1618,
  3029. /**
  3030. * \brief Common server error. Error number: 1619, symbol:
  3031. * <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>.
  3032. */
  3033. er_plugin_delete_builtin = 1619,
  3034. /**
  3035. * \brief Common server error. Error number: 1620, symbol:
  3036. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_warn_plugin_busy">WARN_PLUGIN_BUSY</a>.
  3037. */
  3038. warn_plugin_busy = 1620,
  3039. /**
  3040. * \brief Common server error. Error number: 1621, symbol:
  3041. * <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>.
  3042. */
  3043. er_variable_is_readonly = 1621,
  3044. /**
  3045. * \brief Common server error. Error number: 1622, symbol:
  3046. * <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>.
  3047. */
  3048. er_warn_engine_transaction_rollback = 1622,
  3049. /**
  3050. * \brief Common server error. Error number: 1623, symbol:
  3051. * <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>.
  3052. */
  3053. er_slave_heartbeat_failure = 1623,
  3054. /**
  3055. * \brief Common server error. Error number: 1624, symbol:
  3056. * <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>.
  3057. */
  3058. er_slave_heartbeat_value_out_of_range = 1624,
  3059. /**
  3060. * \brief Common server error. Error number: 1626, symbol:
  3061. * <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>.
  3062. */
  3063. er_conflict_fn_parse_error = 1626,
  3064. /**
  3065. * \brief Common server error. Error number: 1627, symbol:
  3066. * <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>.
  3067. */
  3068. er_exceptions_write_error = 1627,
  3069. /**
  3070. * \brief Common server error. Error number: 1628, symbol:
  3071. * <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>.
  3072. */
  3073. er_too_long_table_comment = 1628,
  3074. /**
  3075. * \brief Common server error. Error number: 1629, symbol:
  3076. * <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>.
  3077. */
  3078. er_too_long_field_comment = 1629,
  3079. /**
  3080. * \brief Common server error. Error number: 1630, symbol:
  3081. * <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>.
  3082. */
  3083. er_func_inexistent_name_collision = 1630,
  3084. /**
  3085. * \brief Common server error. Error number: 1631, symbol:
  3086. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_database_name">ER_DATABASE_NAME</a>.
  3087. */
  3088. er_database_name = 1631,
  3089. /**
  3090. * \brief Common server error. Error number: 1632, symbol:
  3091. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_name">ER_TABLE_NAME</a>.
  3092. */
  3093. er_table_name = 1632,
  3094. /**
  3095. * \brief Common server error. Error number: 1633, symbol:
  3096. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_partition_name">ER_PARTITION_NAME</a>.
  3097. */
  3098. er_partition_name = 1633,
  3099. /**
  3100. * \brief Common server error. Error number: 1634, symbol:
  3101. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_subpartition_name">ER_SUBPARTITION_NAME</a>.
  3102. */
  3103. er_subpartition_name = 1634,
  3104. /**
  3105. * \brief Common server error. Error number: 1635, symbol:
  3106. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_temporary_name">ER_TEMPORARY_NAME</a>.
  3107. */
  3108. er_temporary_name = 1635,
  3109. /**
  3110. * \brief Common server error. Error number: 1636, symbol:
  3111. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_renamed_name">ER_RENAMED_NAME</a>.
  3112. */
  3113. er_renamed_name = 1636,
  3114. /**
  3115. * \brief Common server error. Error number: 1637, symbol:
  3116. * <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>.
  3117. */
  3118. er_too_many_concurrent_trxs = 1637,
  3119. /**
  3120. * \brief Common server error. Error number: 1638, symbol:
  3121. * <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>.
  3122. */
  3123. warn_non_ascii_separator_not_implemented = 1638,
  3124. /**
  3125. * \brief Common server error. Error number: 1639, symbol:
  3126. * <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>.
  3127. */
  3128. er_debug_sync_timeout = 1639,
  3129. /**
  3130. * \brief Common server error. Error number: 1640, symbol:
  3131. * <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>.
  3132. */
  3133. er_debug_sync_hit_limit = 1640,
  3134. /**
  3135. * \brief Common server error. Error number: 1641, symbol:
  3136. * <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>.
  3137. */
  3138. er_dup_signal_set = 1641,
  3139. /**
  3140. * \brief Common server error. Error number: 1642, symbol:
  3141. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_signal_warn">ER_SIGNAL_WARN</a>.
  3142. */
  3143. er_signal_warn = 1642,
  3144. /**
  3145. * \brief Common server error. Error number: 1643, symbol:
  3146. * <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>.
  3147. */
  3148. er_signal_not_found = 1643,
  3149. /**
  3150. * \brief Common server error. Error number: 1644, symbol:
  3151. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_signal_exception">ER_SIGNAL_EXCEPTION</a>.
  3152. */
  3153. er_signal_exception = 1644,
  3154. /**
  3155. * \brief Common server error. Error number: 1645, symbol:
  3156. * <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>.
  3157. */
  3158. er_resignal_without_active_handler = 1645,
  3159. /**
  3160. * \brief Common server error. Error number: 1646, symbol:
  3161. * <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>.
  3162. */
  3163. er_signal_bad_condition_type = 1646,
  3164. /**
  3165. * \brief Common server error. Error number: 1647, symbol:
  3166. * <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>.
  3167. */
  3168. warn_cond_item_truncated = 1647,
  3169. /**
  3170. * \brief Common server error. Error number: 1648, symbol:
  3171. * <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>.
  3172. */
  3173. er_cond_item_too_long = 1648,
  3174. /**
  3175. * \brief Common server error. Error number: 1649, symbol:
  3176. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_locale">ER_UNKNOWN_LOCALE</a>.
  3177. */
  3178. er_unknown_locale = 1649,
  3179. /**
  3180. * \brief Common server error. Error number: 1650, symbol:
  3181. * <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>.
  3182. */
  3183. er_slave_ignore_server_ids = 1650,
  3184. /**
  3185. * \brief Common server error. Error number: 1651, symbol:
  3186. * <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>.
  3187. */
  3188. er_query_cache_disabled = 1651,
  3189. /**
  3190. * \brief Common server error. Error number: 1652, symbol:
  3191. * <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>.
  3192. */
  3193. er_same_name_partition_field = 1652,
  3194. /**
  3195. * \brief Common server error. Error number: 1653, symbol:
  3196. * <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>.
  3197. */
  3198. er_partition_column_list_error = 1653,
  3199. /**
  3200. * \brief Common server error. Error number: 1654, symbol:
  3201. * <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>.
  3202. */
  3203. er_wrong_type_column_value_error = 1654,
  3204. /**
  3205. * \brief Common server error. Error number: 1655, symbol:
  3206. * <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>.
  3207. */
  3208. er_too_many_partition_func_fields_error = 1655,
  3209. /**
  3210. * \brief Common server error. Error number: 1656, symbol:
  3211. * <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>.
  3212. */
  3213. er_maxvalue_in_values_in = 1656,
  3214. /**
  3215. * \brief Common server error. Error number: 1657, symbol:
  3216. * <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>.
  3217. */
  3218. er_too_many_values_error = 1657,
  3219. /**
  3220. * \brief Common server error. Error number: 1658, symbol:
  3221. * <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>.
  3222. */
  3223. er_row_single_partition_field_error = 1658,
  3224. /**
  3225. * \brief Common server error. Error number: 1659, symbol:
  3226. * <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>.
  3227. */
  3228. er_field_type_not_allowed_as_partition_field = 1659,
  3229. /**
  3230. * \brief Common server error. Error number: 1660, symbol:
  3231. * <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>.
  3232. */
  3233. er_partition_fields_too_long = 1660,
  3234. /**
  3235. * \brief Common server error. Error number: 1661, symbol:
  3236. * <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>.
  3237. */
  3238. er_binlog_row_engine_and_stmt_engine = 1661,
  3239. /**
  3240. * \brief Common server error. Error number: 1662, symbol:
  3241. * <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>.
  3242. */
  3243. er_binlog_row_mode_and_stmt_engine = 1662,
  3244. /**
  3245. * \brief Common server error. Error number: 1663, symbol:
  3246. * <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>.
  3247. */
  3248. er_binlog_unsafe_and_stmt_engine = 1663,
  3249. /**
  3250. * \brief Common server error. Error number: 1664, symbol:
  3251. * <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>.
  3252. */
  3253. er_binlog_row_injection_and_stmt_engine = 1664,
  3254. /**
  3255. * \brief Common server error. Error number: 1665, symbol:
  3256. * <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>.
  3257. */
  3258. er_binlog_stmt_mode_and_row_engine = 1665,
  3259. /**
  3260. * \brief Common server error. Error number: 1666, symbol:
  3261. * <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>.
  3262. */
  3263. er_binlog_row_injection_and_stmt_mode = 1666,
  3264. /**
  3265. * \brief Common server error. Error number: 1667, symbol:
  3266. * <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>.
  3267. */
  3268. er_binlog_multiple_engines_and_self_logging_engine = 1667,
  3269. /**
  3270. * \brief Common server error. Error number: 1668, symbol:
  3271. * <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>.
  3272. */
  3273. er_binlog_unsafe_limit = 1668,
  3274. /**
  3275. * \brief Common server error. Error number: 1670, symbol:
  3276. * <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>.
  3277. */
  3278. er_binlog_unsafe_system_table = 1670,
  3279. /**
  3280. * \brief Common server error. Error number: 1671, symbol:
  3281. * <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>.
  3282. */
  3283. er_binlog_unsafe_autoinc_columns = 1671,
  3284. /**
  3285. * \brief Common server error. Error number: 1672, symbol:
  3286. * <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>.
  3287. */
  3288. er_binlog_unsafe_udf = 1672,
  3289. /**
  3290. * \brief Common server error. Error number: 1673, symbol:
  3291. * <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>.
  3292. */
  3293. er_binlog_unsafe_system_variable = 1673,
  3294. /**
  3295. * \brief Common server error. Error number: 1674, symbol:
  3296. * <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>.
  3297. */
  3298. er_binlog_unsafe_system_function = 1674,
  3299. /**
  3300. * \brief Common server error. Error number: 1675, symbol:
  3301. * <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>.
  3302. */
  3303. er_binlog_unsafe_nontrans_after_trans = 1675,
  3304. /**
  3305. * \brief Common server error. Error number: 1676, symbol:
  3306. * <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>.
  3307. */
  3308. er_message_and_statement = 1676,
  3309. /**
  3310. * \brief Common server error. Error number: 1677, symbol:
  3311. * <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>.
  3312. */
  3313. er_slave_conversion_failed = 1677,
  3314. /**
  3315. * \brief Common server error. Error number: 1678, symbol:
  3316. * <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>.
  3317. */
  3318. er_slave_cant_create_conversion = 1678,
  3319. /**
  3320. * \brief Common server error. Error number: 1679, symbol:
  3321. * <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>.
  3322. */
  3323. er_inside_transaction_prevents_switch_binlog_format = 1679,
  3324. /**
  3325. * \brief Common server error. Error number: 1680, symbol:
  3326. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_path_length">ER_PATH_LENGTH</a>.
  3327. */
  3328. er_path_length = 1680,
  3329. /**
  3330. * \brief Common server error. Error number: 1681, symbol:
  3331. * <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>.
  3332. */
  3333. er_warn_deprecated_syntax_no_replacement = 1681,
  3334. /**
  3335. * \brief Common server error. Error number: 1682, symbol:
  3336. * <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>.
  3337. */
  3338. er_wrong_native_table_structure = 1682,
  3339. /**
  3340. * \brief Common server error. Error number: 1683, symbol:
  3341. * <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>.
  3342. */
  3343. er_wrong_perfschema_usage = 1683,
  3344. /**
  3345. * \brief Common server error. Error number: 1684, symbol:
  3346. * <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>.
  3347. */
  3348. er_warn_i_s_skipped_table = 1684,
  3349. /**
  3350. * \brief Common server error. Error number: 1685, symbol:
  3351. * <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>.
  3352. */
  3353. er_inside_transaction_prevents_switch_binlog_direct = 1685,
  3354. /**
  3355. * \brief Common server error. Error number: 1686, symbol:
  3356. * <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>.
  3357. */
  3358. er_stored_function_prevents_switch_binlog_direct = 1686,
  3359. /**
  3360. * \brief Common server error. Error number: 1687, symbol:
  3361. * <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>.
  3362. */
  3363. er_spatial_must_have_geom_col = 1687,
  3364. /**
  3365. * \brief Common server error. Error number: 1688, symbol:
  3366. * <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>.
  3367. */
  3368. er_too_long_index_comment = 1688,
  3369. /**
  3370. * \brief Common server error. Error number: 1689, symbol:
  3371. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_lock_aborted">ER_LOCK_ABORTED</a>.
  3372. */
  3373. er_lock_aborted = 1689,
  3374. /**
  3375. * \brief Common server error. Error number: 1690, symbol:
  3376. * <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>.
  3377. */
  3378. er_data_out_of_range = 1690,
  3379. /**
  3380. * \brief Common server error. Error number: 1691, symbol:
  3381. * <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>.
  3382. */
  3383. er_wrong_spvar_type_in_limit = 1691,
  3384. /**
  3385. * \brief Common server error. Error number: 1692, symbol:
  3386. * <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>.
  3387. */
  3388. er_binlog_unsafe_multiple_engines_and_self_logging_engine = 1692,
  3389. /**
  3390. * \brief Common server error. Error number: 1693, symbol:
  3391. * <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>.
  3392. */
  3393. er_binlog_unsafe_mixed_statement = 1693,
  3394. /**
  3395. * \brief Common server error. Error number: 1694, symbol:
  3396. * <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>.
  3397. */
  3398. er_inside_transaction_prevents_switch_sql_log_bin = 1694,
  3399. /**
  3400. * \brief Common server error. Error number: 1695, symbol:
  3401. * <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>.
  3402. */
  3403. er_stored_function_prevents_switch_sql_log_bin = 1695,
  3404. /**
  3405. * \brief Common server error. Error number: 1696, symbol:
  3406. * <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>.
  3407. */
  3408. er_failed_read_from_par_file = 1696,
  3409. /**
  3410. * \brief Common server error. Error number: 1697, symbol:
  3411. * <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>.
  3412. */
  3413. er_values_is_not_int_type_error = 1697,
  3414. /**
  3415. * \brief Common server error. Error number: 1698, symbol:
  3416. * <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>.
  3417. */
  3418. er_access_denied_no_password_error = 1698,
  3419. /**
  3420. * \brief Common server error. Error number: 1699, symbol:
  3421. * <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>.
  3422. */
  3423. er_set_password_auth_plugin = 1699,
  3424. /**
  3425. * \brief Common server error. Error number: 1700, symbol:
  3426. * <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>.
  3427. */
  3428. er_grant_plugin_user_exists = 1700,
  3429. /**
  3430. * \brief Common server error. Error number: 1701, symbol:
  3431. * <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>.
  3432. */
  3433. er_truncate_illegal_fk = 1701,
  3434. /**
  3435. * \brief Common server error. Error number: 1702, symbol:
  3436. * <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>.
  3437. */
  3438. er_plugin_is_permanent = 1702,
  3439. /**
  3440. * \brief Common server error. Error number: 1703, symbol:
  3441. * <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>.
  3442. */
  3443. er_slave_heartbeat_value_out_of_range_min = 1703,
  3444. /**
  3445. * \brief Common server error. Error number: 1704, symbol:
  3446. * <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>.
  3447. */
  3448. er_slave_heartbeat_value_out_of_range_max = 1704,
  3449. /**
  3450. * \brief Common server error. Error number: 1705, symbol:
  3451. * <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>.
  3452. */
  3453. er_stmt_cache_full = 1705,
  3454. /**
  3455. * \brief Common server error. Error number: 1706, symbol:
  3456. * <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>.
  3457. */
  3458. er_multi_update_key_conflict = 1706,
  3459. /**
  3460. * \brief Common server error. Error number: 1707, symbol:
  3461. * <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>.
  3462. */
  3463. er_table_needs_rebuild = 1707,
  3464. /**
  3465. * \brief Common server error. Error number: 1708, symbol:
  3466. * <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>.
  3467. */
  3468. warn_option_below_limit = 1708,
  3469. /**
  3470. * \brief Common server error. Error number: 1709, symbol:
  3471. * <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>.
  3472. */
  3473. er_index_column_too_long = 1709,
  3474. /**
  3475. * \brief Common server error. Error number: 1710, symbol:
  3476. * <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>.
  3477. */
  3478. er_error_in_trigger_body = 1710,
  3479. /**
  3480. * \brief Common server error. Error number: 1711, symbol:
  3481. * <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>.
  3482. */
  3483. er_error_in_unknown_trigger_body = 1711,
  3484. /**
  3485. * \brief Common server error. Error number: 1712, symbol:
  3486. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_index_corrupt">ER_INDEX_CORRUPT</a>.
  3487. */
  3488. er_index_corrupt = 1712,
  3489. /**
  3490. * \brief Common server error. Error number: 1713, symbol:
  3491. * <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>.
  3492. */
  3493. er_undo_record_too_big = 1713,
  3494. /**
  3495. * \brief Common server error. Error number: 1714, symbol:
  3496. * <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>.
  3497. */
  3498. er_binlog_unsafe_insert_ignore_select = 1714,
  3499. /**
  3500. * \brief Common server error. Error number: 1715, symbol:
  3501. * <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>.
  3502. */
  3503. er_binlog_unsafe_insert_select_update = 1715,
  3504. /**
  3505. * \brief Common server error. Error number: 1716, symbol:
  3506. * <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>.
  3507. */
  3508. er_binlog_unsafe_replace_select = 1716,
  3509. /**
  3510. * \brief Common server error. Error number: 1717, symbol:
  3511. * <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>.
  3512. */
  3513. er_binlog_unsafe_create_ignore_select = 1717,
  3514. /**
  3515. * \brief Common server error. Error number: 1718, symbol:
  3516. * <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>.
  3517. */
  3518. er_binlog_unsafe_create_replace_select = 1718,
  3519. /**
  3520. * \brief Common server error. Error number: 1719, symbol:
  3521. * <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>.
  3522. */
  3523. er_binlog_unsafe_update_ignore = 1719,
  3524. /**
  3525. * \brief Common server error. Error number: 1722, symbol:
  3526. * <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>.
  3527. */
  3528. er_binlog_unsafe_write_autoinc_select = 1722,
  3529. /**
  3530. * \brief Common server error. Error number: 1723, symbol:
  3531. * <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>.
  3532. */
  3533. er_binlog_unsafe_create_select_autoinc = 1723,
  3534. /**
  3535. * \brief Common server error. Error number: 1724, symbol:
  3536. * <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>.
  3537. */
  3538. er_binlog_unsafe_insert_two_keys = 1724,
  3539. /**
  3540. * \brief Common server error. Error number: 1727, symbol:
  3541. * <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>.
  3542. */
  3543. er_binlog_unsafe_autoinc_not_first = 1727,
  3544. /**
  3545. * \brief Common server error. Error number: 1728, symbol:
  3546. * <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>.
  3547. */
  3548. er_cannot_load_from_table_v2 = 1728,
  3549. /**
  3550. * \brief Common server error. Error number: 1729, symbol:
  3551. * <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>.
  3552. */
  3553. er_master_delay_value_out_of_range = 1729,
  3554. /**
  3555. * \brief Common server error. Error number: 1730, symbol:
  3556. * <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>.
  3557. */
  3558. er_only_fd_and_rbr_events_allowed_in_binlog_statement = 1730,
  3559. /**
  3560. * \brief Common server error. Error number: 1731, symbol:
  3561. * <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>.
  3562. */
  3563. er_partition_exchange_different_option = 1731,
  3564. /**
  3565. * \brief Common server error. Error number: 1732, symbol:
  3566. * <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>.
  3567. */
  3568. er_partition_exchange_part_table = 1732,
  3569. /**
  3570. * \brief Common server error. Error number: 1733, symbol:
  3571. * <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>.
  3572. */
  3573. er_partition_exchange_temp_table = 1733,
  3574. /**
  3575. * \brief Common server error. Error number: 1734, symbol:
  3576. * <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>.
  3577. */
  3578. er_partition_instead_of_subpartition = 1734,
  3579. /**
  3580. * \brief Common server error. Error number: 1735, symbol:
  3581. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_unknown_partition">ER_UNKNOWN_PARTITION</a>.
  3582. */
  3583. er_unknown_partition = 1735,
  3584. /**
  3585. * \brief Common server error. Error number: 1736, symbol:
  3586. * <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>.
  3587. */
  3588. er_tables_different_metadata = 1736,
  3589. /**
  3590. * \brief Common server error. Error number: 1737, symbol:
  3591. * <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>.
  3592. */
  3593. er_row_does_not_match_partition = 1737,
  3594. /**
  3595. * \brief Common server error. Error number: 1738, symbol:
  3596. * <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>.
  3597. */
  3598. er_binlog_cache_size_greater_than_max = 1738,
  3599. /**
  3600. * \brief Common server error. Error number: 1739, symbol:
  3601. * <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>.
  3602. */
  3603. er_warn_index_not_applicable = 1739,
  3604. /**
  3605. * \brief Common server error. Error number: 1740, symbol:
  3606. * <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>.
  3607. */
  3608. er_partition_exchange_foreign_key = 1740,
  3609. /**
  3610. * \brief Common server error. Error number: 1741, symbol:
  3611. * <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>.
  3612. */
  3613. er_no_such_key_value = 1741,
  3614. /**
  3615. * \brief Common server error. Error number: 1743, symbol:
  3616. * <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>.
  3617. */
  3618. er_network_read_event_checksum_failure = 1743,
  3619. /**
  3620. * \brief Common server error. Error number: 1744, symbol:
  3621. * <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>.
  3622. */
  3623. er_binlog_read_event_checksum_failure = 1744,
  3624. /**
  3625. * \brief Common server error. Error number: 1745, symbol:
  3626. * <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>.
  3627. */
  3628. er_binlog_stmt_cache_size_greater_than_max = 1745,
  3629. /**
  3630. * \brief Common server error. Error number: 1746, symbol:
  3631. * <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>.
  3632. */
  3633. er_cant_update_table_in_create_table_select = 1746,
  3634. /**
  3635. * \brief Common server error. Error number: 1747, symbol:
  3636. * <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>.
  3637. */
  3638. er_partition_clause_on_nonpartitioned = 1747,
  3639. /**
  3640. * \brief Common server error. Error number: 1748, symbol:
  3641. * <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>.
  3642. */
  3643. er_row_does_not_match_given_partition_set = 1748,
  3644. /**
  3645. * \brief Common server error. Error number: 1750, symbol:
  3646. * <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>.
  3647. */
  3648. er_change_rpl_info_repository_failure = 1750,
  3649. /**
  3650. * \brief Common server error. Error number: 1751, symbol:
  3651. * <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>.
  3652. */
  3653. er_warning_not_complete_rollback_with_created_temp_table = 1751,
  3654. /**
  3655. * \brief Common server error. Error number: 1752, symbol:
  3656. * <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>.
  3657. */
  3658. er_warning_not_complete_rollback_with_dropped_temp_table = 1752,
  3659. /**
  3660. * \brief Common server error. Error number: 1753, symbol:
  3661. * <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>.
  3662. */
  3663. er_mts_feature_is_not_supported = 1753,
  3664. /**
  3665. * \brief Common server error. Error number: 1754, symbol:
  3666. * <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>.
  3667. */
  3668. er_mts_updated_dbs_greater_max = 1754,
  3669. /**
  3670. * \brief Common server error. Error number: 1755, symbol:
  3671. * <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>.
  3672. */
  3673. er_mts_cant_parallel = 1755,
  3674. /**
  3675. * \brief Common server error. Error number: 1756, symbol:
  3676. * <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>.
  3677. */
  3678. er_mts_inconsistent_data = 1756,
  3679. /**
  3680. * \brief Common server error. Error number: 1757, symbol:
  3681. * <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>.
  3682. */
  3683. er_fulltext_not_supported_with_partitioning = 1757,
  3684. /**
  3685. * \brief Common server error. Error number: 1758, symbol:
  3686. * <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>.
  3687. */
  3688. er_da_invalid_condition_number = 1758,
  3689. /**
  3690. * \brief Common server error. Error number: 1759, symbol:
  3691. * <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>.
  3692. */
  3693. er_insecure_plain_text = 1759,
  3694. /**
  3695. * \brief Common server error. Error number: 1760, symbol:
  3696. * <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>.
  3697. */
  3698. er_insecure_change_master = 1760,
  3699. /**
  3700. * \brief Common server error. Error number: 1761, symbol:
  3701. * <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>.
  3702. */
  3703. er_foreign_duplicate_key_with_child_info = 1761,
  3704. /**
  3705. * \brief Common server error. Error number: 1762, symbol:
  3706. * <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>.
  3707. */
  3708. er_foreign_duplicate_key_without_child_info = 1762,
  3709. /**
  3710. * \brief Common server error. Error number: 1763, symbol:
  3711. * <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>.
  3712. */
  3713. er_sqlthread_with_secure_slave = 1763,
  3714. /**
  3715. * \brief Common server error. Error number: 1764, symbol:
  3716. * <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>.
  3717. */
  3718. er_table_has_no_ft = 1764,
  3719. /**
  3720. * \brief Common server error. Error number: 1765, symbol:
  3721. * <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>.
  3722. */
  3723. er_variable_not_settable_in_sf_or_trigger = 1765,
  3724. /**
  3725. * \brief Common server error. Error number: 1766, symbol:
  3726. * <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>.
  3727. */
  3728. er_variable_not_settable_in_transaction = 1766,
  3729. /**
  3730. * \brief Common server error. Error number: 1767, symbol:
  3731. * <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>.
  3732. */
  3733. er_gtid_next_is_not_in_gtid_next_list = 1767,
  3734. /**
  3735. * \brief Common server error. Error number: 1769, symbol:
  3736. * <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>.
  3737. */
  3738. er_set_statement_cannot_invoke_function = 1769,
  3739. /**
  3740. * \brief Common server error. Error number: 1770, symbol:
  3741. * <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>.
  3742. */
  3743. er_gtid_next_cant_be_automatic_if_gtid_next_list_is_non_null = 1770,
  3744. /**
  3745. * \brief Common server error. Error number: 1771, symbol:
  3746. * <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>.
  3747. */
  3748. er_skipping_logged_transaction = 1771,
  3749. /**
  3750. * \brief Common server error. Error number: 1772, symbol:
  3751. * <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>.
  3752. */
  3753. er_malformed_gtid_set_specification = 1772,
  3754. /**
  3755. * \brief Common server error. Error number: 1773, symbol:
  3756. * <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>.
  3757. */
  3758. er_malformed_gtid_set_encoding = 1773,
  3759. /**
  3760. * \brief Common server error. Error number: 1774, symbol:
  3761. * <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>.
  3762. */
  3763. er_malformed_gtid_specification = 1774,
  3764. /**
  3765. * \brief Common server error. Error number: 1775, symbol:
  3766. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_gno_exhausted">ER_GNO_EXHAUSTED</a>.
  3767. */
  3768. er_gno_exhausted = 1775,
  3769. /**
  3770. * \brief Common server error. Error number: 1776, symbol:
  3771. * <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>.
  3772. */
  3773. er_bad_slave_auto_position = 1776,
  3774. /**
  3775. * \brief Common server error. Error number: 1778, symbol:
  3776. * <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>.
  3777. */
  3778. er_cant_do_implicit_commit_in_trx_when_gtid_next_is_set = 1778,
  3779. /**
  3780. * \brief Common server error. Error number: 1780, symbol:
  3781. * <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>.
  3782. */
  3783. er_gtid_mode_requires_binlog = 1780,
  3784. /**
  3785. * \brief Common server error. Error number: 1781, symbol:
  3786. * <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>.
  3787. */
  3788. er_cant_set_gtid_next_to_gtid_when_gtid_mode_is_off = 1781,
  3789. /**
  3790. * \brief Common server error. Error number: 1782, symbol:
  3791. * <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>.
  3792. */
  3793. er_cant_set_gtid_next_to_anonymous_when_gtid_mode_is_on = 1782,
  3794. /**
  3795. * \brief Common server error. Error number: 1783, symbol:
  3796. * <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>.
  3797. */
  3798. er_cant_set_gtid_next_list_to_non_null_when_gtid_mode_is_off = 1783,
  3799. /**
  3800. * \brief Common server error. Error number: 1785, symbol:
  3801. * <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>.
  3802. */
  3803. er_gtid_unsafe_non_transactional_table = 1785,
  3804. /**
  3805. * \brief Common server error. Error number: 1786, symbol:
  3806. * <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>.
  3807. */
  3808. er_gtid_unsafe_create_select = 1786,
  3809. /**
  3810. * \brief Common server error. Error number: 1787, symbol:
  3811. * <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>.
  3812. */
  3813. er_gtid_unsafe_create_drop_temporary_table_in_transaction = 1787,
  3814. /**
  3815. * \brief Common server error. Error number: 1788, symbol:
  3816. * <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>.
  3817. */
  3818. er_gtid_mode_can_only_change_one_step_at_a_time = 1788,
  3819. /**
  3820. * \brief Common server error. Error number: 1789, symbol:
  3821. * <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>.
  3822. */
  3823. er_master_has_purged_required_gtids = 1789,
  3824. /**
  3825. * \brief Common server error. Error number: 1790, symbol:
  3826. * <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>.
  3827. */
  3828. er_cant_set_gtid_next_when_owning_gtid = 1790,
  3829. /**
  3830. * \brief Common server error. Error number: 1791, symbol:
  3831. * <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>.
  3832. */
  3833. er_unknown_explain_format = 1791,
  3834. /**
  3835. * \brief Common server error. Error number: 1792, symbol:
  3836. * <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>.
  3837. */
  3838. er_cant_execute_in_read_only_transaction = 1792,
  3839. /**
  3840. * \brief Common server error. Error number: 1793, symbol:
  3841. * <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>.
  3842. */
  3843. er_too_long_table_partition_comment = 1793,
  3844. /**
  3845. * \brief Common server error. Error number: 1794, symbol:
  3846. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_slave_configuration">ER_SLAVE_CONFIGURATION</a>.
  3847. */
  3848. er_slave_configuration = 1794,
  3849. /**
  3850. * \brief Common server error. Error number: 1795, symbol:
  3851. * <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>.
  3852. */
  3853. er_innodb_ft_limit = 1795,
  3854. /**
  3855. * \brief Common server error. Error number: 1796, symbol:
  3856. * <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>.
  3857. */
  3858. er_innodb_no_ft_temp_table = 1796,
  3859. /**
  3860. * \brief Common server error. Error number: 1797, symbol:
  3861. * <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>.
  3862. */
  3863. er_innodb_ft_wrong_docid_column = 1797,
  3864. /**
  3865. * \brief Common server error. Error number: 1798, symbol:
  3866. * <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>.
  3867. */
  3868. er_innodb_ft_wrong_docid_index = 1798,
  3869. /**
  3870. * \brief Common server error. Error number: 1799, symbol:
  3871. * <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>.
  3872. */
  3873. er_innodb_online_log_too_big = 1799,
  3874. /**
  3875. * \brief Common server error. Error number: 1800, symbol:
  3876. * <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>.
  3877. */
  3878. er_unknown_alter_algorithm = 1800,
  3879. /**
  3880. * \brief Common server error. Error number: 1801, symbol:
  3881. * <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>.
  3882. */
  3883. er_unknown_alter_lock = 1801,
  3884. /**
  3885. * \brief Common server error. Error number: 1802, symbol:
  3886. * <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>.
  3887. */
  3888. er_mts_change_master_cant_run_with_gaps = 1802,
  3889. /**
  3890. * \brief Common server error. Error number: 1803, symbol:
  3891. * <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>.
  3892. */
  3893. er_mts_recovery_failure = 1803,
  3894. /**
  3895. * \brief Common server error. Error number: 1804, symbol:
  3896. * <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>.
  3897. */
  3898. er_mts_reset_workers = 1804,
  3899. /**
  3900. * \brief Common server error. Error number: 1805, symbol:
  3901. * <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>.
  3902. */
  3903. er_col_count_doesnt_match_corrupted_v2 = 1805,
  3904. /**
  3905. * \brief Common server error. Error number: 1806, symbol:
  3906. * <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>.
  3907. */
  3908. er_slave_silent_retry_transaction = 1806,
  3909. /**
  3910. * \brief Common server error. Error number: 1808, symbol:
  3911. * <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>.
  3912. */
  3913. er_table_schema_mismatch = 1808,
  3914. /**
  3915. * \brief Common server error. Error number: 1809, symbol:
  3916. * <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>.
  3917. */
  3918. er_table_in_system_tablespace = 1809,
  3919. /**
  3920. * \brief Common server error. Error number: 1810, symbol:
  3921. * <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>.
  3922. */
  3923. er_io_read_error = 1810,
  3924. /**
  3925. * \brief Common server error. Error number: 1811, symbol:
  3926. * <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>.
  3927. */
  3928. er_io_write_error = 1811,
  3929. /**
  3930. * \brief Common server error. Error number: 1812, symbol:
  3931. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tablespace_missing">ER_TABLESPACE_MISSING</a>.
  3932. */
  3933. er_tablespace_missing = 1812,
  3934. /**
  3935. * \brief Common server error. Error number: 1813, symbol:
  3936. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tablespace_exists">ER_TABLESPACE_EXISTS</a>.
  3937. */
  3938. er_tablespace_exists = 1813,
  3939. /**
  3940. * \brief Common server error. Error number: 1814, symbol:
  3941. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_tablespace_discarded">ER_TABLESPACE_DISCARDED</a>.
  3942. */
  3943. er_tablespace_discarded = 1814,
  3944. /**
  3945. * \brief Common server error. Error number: 1815, symbol:
  3946. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_internal_error">ER_INTERNAL_ERROR</a>.
  3947. */
  3948. er_internal_error = 1815,
  3949. /**
  3950. * \brief Common server error. Error number: 1816, symbol:
  3951. * <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>.
  3952. */
  3953. er_innodb_import_error = 1816,
  3954. /**
  3955. * \brief Common server error. Error number: 1817, symbol:
  3956. * <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>.
  3957. */
  3958. er_innodb_index_corrupt = 1817,
  3959. /**
  3960. * \brief Common server error. Error number: 1818, symbol:
  3961. * <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>.
  3962. */
  3963. er_invalid_year_column_length = 1818,
  3964. /**
  3965. * \brief Common server error. Error number: 1819, symbol:
  3966. * <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>.
  3967. */
  3968. er_not_valid_password = 1819,
  3969. /**
  3970. * \brief Common server error. Error number: 1820, symbol:
  3971. * <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>.
  3972. */
  3973. er_must_change_password = 1820,
  3974. /**
  3975. * \brief Common server error. Error number: 1821, symbol:
  3976. * <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>.
  3977. */
  3978. er_fk_no_index_child = 1821,
  3979. /**
  3980. * \brief Common server error. Error number: 1822, symbol:
  3981. * <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>.
  3982. */
  3983. er_fk_no_index_parent = 1822,
  3984. /**
  3985. * \brief Common server error. Error number: 1823, symbol:
  3986. * <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>.
  3987. */
  3988. er_fk_fail_add_system = 1823,
  3989. /**
  3990. * \brief Common server error. Error number: 1824, symbol:
  3991. * <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>.
  3992. */
  3993. er_fk_cannot_open_parent = 1824,
  3994. /**
  3995. * \brief Common server error. Error number: 1825, symbol:
  3996. * <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>.
  3997. */
  3998. er_fk_incorrect_option = 1825,
  3999. /**
  4000. * \brief Common server error. Error number: 1827, symbol:
  4001. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_password_format">ER_PASSWORD_FORMAT</a>.
  4002. */
  4003. er_password_format = 1827,
  4004. /**
  4005. * \brief Common server error. Error number: 1828, symbol:
  4006. * <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>.
  4007. */
  4008. er_fk_column_cannot_drop = 1828,
  4009. /**
  4010. * \brief Common server error. Error number: 1829, symbol:
  4011. * <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>.
  4012. */
  4013. er_fk_column_cannot_drop_child = 1829,
  4014. /**
  4015. * \brief Common server error. Error number: 1830, symbol:
  4016. * <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>.
  4017. */
  4018. er_fk_column_not_null = 1830,
  4019. /**
  4020. * \brief Common server error. Error number: 1831, symbol:
  4021. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_dup_index">ER_DUP_INDEX</a>.
  4022. */
  4023. er_dup_index = 1831,
  4024. /**
  4025. * \brief Common server error. Error number: 1832, symbol:
  4026. * <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>.
  4027. */
  4028. er_fk_column_cannot_change = 1832,
  4029. /**
  4030. * \brief Common server error. Error number: 1833, symbol:
  4031. * <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>.
  4032. */
  4033. er_fk_column_cannot_change_child = 1833,
  4034. /**
  4035. * \brief Common server error. Error number: 1835, symbol:
  4036. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_malformed_packet">ER_MALFORMED_PACKET</a>.
  4037. */
  4038. er_malformed_packet = 1835,
  4039. /**
  4040. * \brief Common server error. Error number: 1836, symbol:
  4041. * <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>.
  4042. */
  4043. er_read_only_mode = 1836,
  4044. /**
  4045. * \brief Common server error. Error number: 1838, symbol:
  4046. * <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>.
  4047. */
  4048. er_variable_not_settable_in_sp = 1838,
  4049. /**
  4050. * \brief Common server error. Error number: 1839, symbol:
  4051. * <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>.
  4052. */
  4053. er_cant_set_gtid_purged_when_gtid_mode_is_off = 1839,
  4054. /**
  4055. * \brief Common server error. Error number: 1840, symbol:
  4056. * <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>.
  4057. */
  4058. er_cant_set_gtid_purged_when_gtid_executed_is_not_empty = 1840,
  4059. /**
  4060. * \brief Common server error. Error number: 1841, symbol:
  4061. * <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>.
  4062. */
  4063. er_cant_set_gtid_purged_when_owned_gtids_is_not_empty = 1841,
  4064. /**
  4065. * \brief Common server error. Error number: 1842, symbol:
  4066. * <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>.
  4067. */
  4068. er_gtid_purged_was_changed = 1842,
  4069. /**
  4070. * \brief Common server error. Error number: 1843, symbol:
  4071. * <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>.
  4072. */
  4073. er_gtid_executed_was_changed = 1843,
  4074. /**
  4075. * \brief Common server error. Error number: 1844, symbol:
  4076. * <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>.
  4077. */
  4078. er_binlog_stmt_mode_and_no_repl_tables = 1844,
  4079. /**
  4080. * \brief Common server error. Error number: 1845, symbol:
  4081. * <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>.
  4082. */
  4083. er_alter_operation_not_supported = 1845,
  4084. /**
  4085. * \brief Common server error. Error number: 1846, symbol:
  4086. * <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>.
  4087. */
  4088. er_alter_operation_not_supported_reason = 1846,
  4089. /**
  4090. * \brief Common server error. Error number: 1847, symbol:
  4091. * <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>.
  4092. */
  4093. er_alter_operation_not_supported_reason_copy = 1847,
  4094. /**
  4095. * \brief Common server error. Error number: 1848, symbol:
  4096. * <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>.
  4097. */
  4098. er_alter_operation_not_supported_reason_partition = 1848,
  4099. /**
  4100. * \brief Common server error. Error number: 1849, symbol:
  4101. * <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>.
  4102. */
  4103. er_alter_operation_not_supported_reason_fk_rename = 1849,
  4104. /**
  4105. * \brief Common server error. Error number: 1850, symbol:
  4106. * <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>.
  4107. */
  4108. er_alter_operation_not_supported_reason_column_type = 1850,
  4109. /**
  4110. * \brief Common server error. Error number: 1851, symbol:
  4111. * <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>.
  4112. */
  4113. er_alter_operation_not_supported_reason_fk_check = 1851,
  4114. /**
  4115. * \brief Common server error. Error number: 1853, symbol:
  4116. * <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>.
  4117. */
  4118. er_alter_operation_not_supported_reason_nopk = 1853,
  4119. /**
  4120. * \brief Common server error. Error number: 1854, symbol:
  4121. * <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>.
  4122. */
  4123. er_alter_operation_not_supported_reason_autoinc = 1854,
  4124. /**
  4125. * \brief Common server error. Error number: 1855, symbol:
  4126. * <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>.
  4127. */
  4128. er_alter_operation_not_supported_reason_hidden_fts = 1855,
  4129. /**
  4130. * \brief Common server error. Error number: 1856, symbol:
  4131. * <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>.
  4132. */
  4133. er_alter_operation_not_supported_reason_change_fts = 1856,
  4134. /**
  4135. * \brief Common server error. Error number: 1857, symbol:
  4136. * <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>.
  4137. */
  4138. er_alter_operation_not_supported_reason_fts = 1857,
  4139. /**
  4140. * \brief Common server error. Error number: 1858, symbol:
  4141. * <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>.
  4142. */
  4143. er_sql_slave_skip_counter_not_settable_in_gtid_mode = 1858,
  4144. /**
  4145. * \brief Common server error. Error number: 1859, symbol:
  4146. * <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>.
  4147. */
  4148. er_dup_unknown_in_index = 1859,
  4149. /**
  4150. * \brief Common server error. Error number: 1860, symbol:
  4151. * <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>.
  4152. */
  4153. er_ident_causes_too_long_path = 1860,
  4154. /**
  4155. * \brief Common server error. Error number: 1861, symbol:
  4156. * <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>.
  4157. */
  4158. er_alter_operation_not_supported_reason_not_null = 1861,
  4159. /**
  4160. * \brief Common server error. Error number: 1862, symbol:
  4161. * <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>.
  4162. */
  4163. er_must_change_password_login = 1862,
  4164. /**
  4165. * \brief Common server error. Error number: 1863, symbol:
  4166. * <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>.
  4167. */
  4168. er_row_in_wrong_partition = 1863,
  4169. /**
  4170. * \brief Common server error. Error number: 1864, symbol:
  4171. * <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>.
  4172. */
  4173. er_mts_event_bigger_pending_jobs_size_max = 1864,
  4174. /**
  4175. * \brief Common server error. Error number: 1865, symbol:
  4176. * <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>.
  4177. */
  4178. er_innodb_no_ft_uses_parser = 1865,
  4179. /**
  4180. * \brief Common server error. Error number: 1866, symbol:
  4181. * <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>.
  4182. */
  4183. er_binlog_logical_corruption = 1866,
  4184. /**
  4185. * \brief Common server error. Error number: 1867, symbol:
  4186. * <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>.
  4187. */
  4188. er_warn_purge_log_in_use = 1867,
  4189. /**
  4190. * \brief Common server error. Error number: 1868, symbol:
  4191. * <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>.
  4192. */
  4193. er_warn_purge_log_is_active = 1868,
  4194. /**
  4195. * \brief Common server error. Error number: 1869, symbol:
  4196. * <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>.
  4197. */
  4198. er_auto_increment_conflict = 1869,
  4199. /**
  4200. * \brief Common server error. Error number: 1870, symbol:
  4201. * <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>.
  4202. */
  4203. warn_on_blockhole_in_rbr = 1870,
  4204. /**
  4205. * \brief Common server error. Error number: 1871, symbol:
  4206. * <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>.
  4207. */
  4208. er_slave_mi_init_repository = 1871,
  4209. /**
  4210. * \brief Common server error. Error number: 1872, symbol:
  4211. * <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>.
  4212. */
  4213. er_slave_rli_init_repository = 1872,
  4214. /**
  4215. * \brief Common server error. Error number: 1873, symbol:
  4216. * <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>.
  4217. */
  4218. er_access_denied_change_user_error = 1873,
  4219. /**
  4220. * \brief Common server error. Error number: 1874, symbol:
  4221. * <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>.
  4222. */
  4223. er_innodb_read_only = 1874,
  4224. /**
  4225. * \brief Common server error. Error number: 1875, symbol:
  4226. * <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>.
  4227. */
  4228. er_stop_slave_sql_thread_timeout = 1875,
  4229. /**
  4230. * \brief Common server error. Error number: 1876, symbol:
  4231. * <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>.
  4232. */
  4233. er_stop_slave_io_thread_timeout = 1876,
  4234. /**
  4235. * \brief Common server error. Error number: 1877, symbol:
  4236. * <a href="https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html#error_er_table_corrupt">ER_TABLE_CORRUPT</a>.
  4237. */
  4238. er_table_corrupt = 1877,
  4239. /**
  4240. * \brief Common server error. Error number: 1878, symbol:
  4241. * <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>.
  4242. */
  4243. er_temp_file_write_failure = 1878,
  4244. /**
  4245. * \brief Common server error. Error number: 1879, symbol:
  4246. * <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>.
  4247. */
  4248. er_innodb_ft_aux_not_hex_id = 1879,
  4249. };
  4250. BOOST_MYSQL_DECL
  4251. const boost::system::error_category& get_common_server_category() noexcept;
  4252. /// Creates an \ref error_code from a \ref common_server_errc.
  4253. inline error_code make_error_code(common_server_errc error)
  4254. {
  4255. return error_code(static_cast<int>(error), get_common_server_category());
  4256. }
  4257. } // namespace mysql
  4258. #ifndef BOOST_MYSQL_DOXYGEN
  4259. namespace system {
  4260. template <>
  4261. struct is_error_code_enum<::boost::mysql::common_server_errc>
  4262. {
  4263. static constexpr bool value = true;
  4264. };
  4265. } // namespace system
  4266. #endif
  4267. } // namespace boost
  4268. #ifdef BOOST_MYSQL_HEADER_ONLY
  4269. #include <boost/mysql/impl/error_categories.ipp>
  4270. #endif
  4271. #endif