messages_to_error_log.txt 353 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674
  1. # Copyright (c) 2017, 2022, Oracle and/or its affiliates.
  2. #
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License, version 2.0,
  5. # as published by the Free Software Foundation.
  6. #
  7. # This program is also distributed with certain software (including
  8. # but not limited to OpenSSL) that is licensed under separate terms,
  9. # as designated in a particular file or component or in included license
  10. # documentation. The authors of MySQL hereby grant you an additional
  11. # permission to link the program and your derivative works with the
  12. # separately licensed software that they have included with MySQL.
  13. #
  14. # Without limiting anything contained in the foregoing, this file,
  15. # which is part of C Driver for MySQL (Connector/C), is also subject to the
  16. # Universal FOSS Exception, version 1.0, a copy of which can be found at
  17. # http://oss.oracle.com/licenses/universal-foss-exception.
  18. #
  19. # This program is distributed in the hope that it will be useful,
  20. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. # GNU General Public License, version 2.0, for more details.
  23. #
  24. # You should have received a copy of the GNU General Public License
  25. # along with this program; if not, write to the Free Software
  26. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  27. ################################################################################
  28. # DO NOT add server-to-client messages here;
  29. # they go in messages_to_clients.txt
  30. # in the same directory as this file.
  31. #
  32. # This file is for messages intended for the error log only.
  33. #
  34. # See the FAQ in errmsg_readme.txt in the
  35. # same directory as this file for more
  36. # information.
  37. ################################################################################
  38. # "languages" and "default-language" directives should not be set in this
  39. # file; their values are carried over from messages_to_clients.txt.
  40. ################################################################################
  41. #
  42. # Start of 8.0 error messages (error log).
  43. #
  44. # The build process automatically starts with this offset
  45. # for messages intended for the error-log. Setting it again
  46. # here would be harmless; changing it would not as this
  47. # offset is mentioned in the documentation and #defined in
  48. # the source:
  49. # start-error-number 10000
  50. ER_PARSER_TRACE XX999
  51. eng "Parser saw: %s"
  52. ER_BOOTSTRAP_CANT_THREAD
  53. eng "Can't create thread to handle bootstrap (errno: %d)"
  54. ER_TRIGGER_INVALID_VALUE
  55. eng "Trigger for table '%s'.'%s': invalid %s value (%s)."
  56. ER_OPT_WRONG_TREE
  57. eng "Wrong tree: %s"
  58. ER_DD_FAILSAFE
  59. eng "Error: Invalid %s"
  60. ER_DD_NO_WRITES_NO_REPOPULATION
  61. eng "Skip re-populating collations and character sets tables in %s%sread-only mode."
  62. ER_DD_VERSION_FOUND
  63. eng "Using data dictionary with version '%d'."
  64. ER_DD_VERSION_INSTALLED
  65. eng "Installed data dictionary with version %d"
  66. ER_DD_VERSION_UNSUPPORTED
  67. eng "Data Dictionary version '%d' not supported."
  68. OBSOLETE_ER_LOG_SYSLOG_FACILITY_FAIL
  69. eng "Failed to set syslog facility to \"%s\", setting to \"%s\" (%d) instead."
  70. ER_LOG_SYSLOG_CANNOT_OPEN
  71. eng "Cannot open %s; check privileges, or remove syseventlog from --log-error-services!"
  72. ER_LOG_SLOW_CANNOT_OPEN
  73. eng " either restart the query logging by using \"SET GLOBAL SLOW_QUERY_LOG=ON\" or"
  74. ER_LOG_GENERAL_CANNOT_OPEN
  75. eng " either restart the query logging by using \"SET GLOBAL GENERAL_LOG=ON\" or"
  76. ER_LOG_CANNOT_WRITE
  77. eng "Failed to write to %s: %s"
  78. ER_RPL_ZOMBIE_ENCOUNTERED
  79. eng "While initializing dump thread for slave with %s <%s>, found a zombie dump thread with the same %s. Master is killing the zombie dump thread(%u)."
  80. ER_RPL_GTID_TABLE_CANNOT_OPEN
  81. eng "Gtid table is not ready to be used. Table '%s.%s' cannot be opened."
  82. ER_SYSTEM_SCHEMA_NOT_FOUND
  83. eng "System schema directory does not exist."
  84. ER_DD_INIT_UPGRADE_FAILED
  85. eng "Error in initializing dictionary, upgrade will do a cleanup and exit"
  86. ER_VIEW_UNKNOWN_CHARSET_OR_COLLATION
  87. eng "View '%s'.'%s': unknown charset name and/or collation name (client: '%s'; connection: '%s')."
  88. ER_DD_VIEW_CANT_ALLOC_CHARSET
  89. eng "Error in allocating memory for character set name for view %s.%s."
  90. ER_DD_INIT_FAILED
  91. eng "Data Dictionary initialization failed."
  92. ER_DD_UPDATING_PLUGIN_MD_FAILED
  93. eng "Failed to update plugin metadata in dictionary tables."
  94. ER_DD_POPULATING_TABLES_FAILED
  95. eng "Failed to Populate DD tables."
  96. ER_DD_VIEW_CANT_CREATE
  97. eng "Error in Creating View %s.%s"
  98. ER_DD_METADATA_NOT_FOUND
  99. eng "Unable to start server. Cannot find the meta data for data dictionary table '%s'."
  100. ER_DD_CACHE_NOT_EMPTY_AT_SHUTDOWN
  101. eng "Dictionary cache not empty at shutdown."
  102. ER_DD_OBJECT_REMAINS
  103. eng "Dictionary objects used but not released."
  104. ER_DD_OBJECT_REMAINS_IN_RELEASER
  105. eng "Dictionary objects left in default releaser."
  106. ER_DD_OBJECT_RELEASER_REMAINS
  107. eng "Dictionary object auto releaser not deleted"
  108. ER_DD_CANT_GET_OBJECT_KEY
  109. eng "Error: Unable to create primary object key"
  110. ER_DD_CANT_CREATE_OBJECT_KEY
  111. eng "Error: Unable to create object key"
  112. ER_CANT_CREATE_HANDLE_MGR_THREAD
  113. eng "Can't create handle_manager thread (errno= %d)"
  114. ER_RPL_REPO_HAS_GAPS
  115. eng "It is not possible to change the type of the relay log's repository because there are workers' repositories with gaps. Please, fix the gaps first before doing such change."
  116. ER_INVALID_VALUE_FOR_ENFORCE_GTID_CONSISTENCY
  117. eng "option 'enforce-gtid-consistency': value '%s' was not recognized. Setting enforce-gtid-consistency to OFF."
  118. ER_CHANGED_ENFORCE_GTID_CONSISTENCY
  119. eng "Changed ENFORCE_GTID_CONSISTENCY from %s to %s."
  120. ER_CHANGED_GTID_MODE
  121. eng "Changed GTID_MODE from %s to %s."
  122. ER_DISABLED_STORAGE_ENGINE_AS_DEFAULT
  123. eng "%s is set to a disabled storage engine %s."
  124. ER_DEBUG_SYNC_HIT
  125. eng "Debug sync points hit: %22s"
  126. ER_DEBUG_SYNC_EXECUTED
  127. eng "Debug sync points executed: %22s"
  128. ER_DEBUG_SYNC_THREAD_MAX
  129. eng "Debug sync points max active per thread: %22s"
  130. ER_DEBUG_SYNC_OOM
  131. eng "Debug Sync Facility disabled due to lack of memory."
  132. ER_CANT_INIT_TC_LOG
  133. eng "Can't init tc log"
  134. ER_EVENT_CANT_INIT_QUEUE
  135. eng "Event Scheduler: Can't initialize the execution queue"
  136. ER_EVENT_PURGING_QUEUE
  137. eng "Event Scheduler: Purging the queue. %u events"
  138. ER_EVENT_LAST_EXECUTION
  139. eng "Event Scheduler: Last execution of %s.%s. %s"
  140. ER_EVENT_MESSAGE_STACK
  141. eng "%*s"
  142. ER_EVENT_EXECUTION_FAILED
  143. eng "Event Scheduler: [%s].[%s.%s] event execution failed."
  144. ER_CANT_INIT_SCHEDULER_THREAD
  145. eng "Event Scheduler: Cannot initialize the scheduler thread"
  146. ER_SCHEDULER_STOPPED
  147. eng "Event Scheduler: Stopped"
  148. ER_CANT_CREATE_SCHEDULER_THREAD
  149. eng "Event scheduler: Failed to start scheduler, Can not create thread for event scheduler (errno=%d)"
  150. ER_SCHEDULER_WAITING
  151. eng "Event Scheduler: Waiting for the scheduler thread to reply"
  152. ER_SCHEDULER_STARTED
  153. eng "Event Scheduler: scheduler thread started with id %u"
  154. ER_SCHEDULER_STOPPING_FAILED_TO_GET_EVENT
  155. eng "Event Scheduler: Serious error during getting next event to execute. Stopping"
  156. ER_SCHEDULER_STOPPING_FAILED_TO_CREATE_WORKER
  157. eng "Event_scheduler::execute_top: Can not create event worker thread (errno=%d). Stopping event scheduler"
  158. ER_SCHEDULER_KILLING
  159. eng "Event Scheduler: Killing the scheduler thread, thread id %u"
  160. ER_UNABLE_TO_RESOLVE_IP
  161. eng "IP address '%s' could not be resolved: %s"
  162. ER_UNABLE_TO_RESOLVE_HOSTNAME
  163. eng "Host name '%s' could not be resolved: %s"
  164. ER_HOSTNAME_RESEMBLES_IPV4
  165. eng "IP address '%s' has been resolved to the host name '%s', which resembles IPv4-address itself."
  166. ER_HOSTNAME_DOESNT_RESOLVE_TO
  167. eng "Hostname '%s' does not resolve to '%s'."
  168. ER_ADDRESSES_FOR_HOSTNAME_HEADER
  169. eng "Hostname '%s' has the following IP addresses:"
  170. ER_ADDRESSES_FOR_HOSTNAME_LIST_ITEM
  171. eng " - %s"
  172. ER_TRG_WITHOUT_DEFINER
  173. eng "Definer clause is missing in Trigger of Table %s. Rebuild Trigger to fix definer."
  174. ER_TRG_NO_CLIENT_CHARSET
  175. eng "Client character set is missing for trigger of table %s. Using default character set."
  176. ER_PARSING_VIEW
  177. eng "Error in parsing view %s.%s"
  178. ER_COMPONENTS_INFRASTRUCTURE_BOOTSTRAP
  179. eng "Failed to bootstrap components infrastructure."
  180. ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN
  181. eng "Failed to shutdown components infrastructure."
  182. ER_COMPONENTS_PERSIST_LOADER_BOOTSTRAP
  183. eng "Failed to bootstrap persistent components loader."
  184. ER_DEPART_WITH_GRACE
  185. eng "Giving %d client threads a chance to die gracefully"
  186. ER_CA_SELF_SIGNED
  187. eng "CA certificate %s is self signed."
  188. ER_SSL_LIBRARY_ERROR
  189. eng "Failed to set up SSL because of the following SSL library error: %s"
  190. ER_NO_THD_NO_UUID
  191. eng "Failed to generate a server UUID because it is failed to allocate the THD."
  192. ER_UUID_SALT
  193. eng "Salting uuid generator variables, current_pid: %lu, server_start_time: %lu, bytes_sent: %llu, "
  194. ER_UUID_IS
  195. eng "Generated uuid: '%s', server_start_time: %lu, bytes_sent: %llu"
  196. ER_UUID_INVALID
  197. eng "The server_uuid stored in auto.cnf file is not a valid UUID."
  198. ER_UUID_SCRUB
  199. eng "Garbage characters found at the end of the server_uuid value in auto.cnf file. It should be of length '%d' (UUID_LENGTH). Clear it and restart the server. "
  200. ER_CREATING_NEW_UUID
  201. eng "No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: %s."
  202. ER_CANT_CREATE_UUID
  203. eng "Initialization of the server's UUID failed because it could not be read from the auto.cnf file. If this is a new server, the initialization failed because it was not possible to generate a new UUID."
  204. ER_UNKNOWN_UNSUPPORTED_STORAGE_ENGINE
  205. eng "Unknown/unsupported storage engine: %s"
  206. ER_SECURE_AUTH_VALUE_UNSUPPORTED
  207. eng "Unsupported value 0 for secure-auth"
  208. ER_INVALID_INSTRUMENT
  209. eng "Invalid instrument name or value for performance_schema_instrument '%s'",
  210. ER_INNODB_MANDATORY
  211. eng "The use of InnoDB is mandatory since MySQL 5.7. The former options like '--innodb=0/1/OFF/ON' or '--skip-innodb' are ignored."
  212. OBSOLETE_ER_INNODB_CANNOT_BE_IGNORED
  213. eng "ignore-builtin-innodb is ignored and will be removed in future releases."
  214. OBSOLETE_ER_OLD_PASSWORDS_NO_MIDDLE_GROUND
  215. eng "Invalid old_passwords mode: 1. Valid values are 2 and 0"
  216. ER_VERBOSE_REQUIRES_HELP
  217. eng "--verbose is for use with --help; did you mean --log-error-verbosity?"
  218. ER_POINTLESS_WITHOUT_SLOWLOG
  219. eng "options --log-slow-admin-statements, --log-queries-not-using-indexes and --log-slow-replica-statements have no effect if --slow-query-log is not set"
  220. ER_WASTEFUL_NET_BUFFER_SIZE
  221. eng "net_buffer_length (%lu) is set to be larger than max_allowed_packet (%lu). Please rectify."
  222. ER_DEPRECATED_TIMESTAMP_IMPLICIT_DEFAULTS
  223. eng "TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details)."
  224. ER_FT_BOOL_SYNTAX_INVALID
  225. eng "Invalid ft-boolean-syntax string: %s"
  226. ER_CREDENTIALLESS_AUTO_USER_BAD
  227. eng "'NO_AUTO_CREATE_USER' sql mode was not set."
  228. ER_CONNECTION_HANDLING_OOM
  229. eng "Could not allocate memory for connection handling"
  230. ER_THREAD_HANDLING_OOM
  231. eng "Could not allocate memory for thread handling"
  232. ER_CANT_CREATE_TEST_FILE
  233. eng "Can't create test file %s"
  234. ER_CANT_CREATE_PID_FILE
  235. eng "Can't start server: can't create PID file: %s"
  236. ER_CANT_REMOVE_PID_FILE
  237. eng "Unable to delete pid file: %s"
  238. ER_CANT_CREATE_SHUTDOWN_THREAD
  239. eng "Can't create thread to handle shutdown requests (errno= %d)"
  240. ER_SEC_FILE_PRIV_CANT_ACCESS_DIR
  241. eng "Failed to access directory for --secure-file-priv. Please make sure that directory exists and is accessible by MySQL Server. Supplied value : %s"
  242. ER_SEC_FILE_PRIV_IGNORED
  243. eng "Ignoring --secure-file-priv value as server is running with --initialize(-insecure)."
  244. ER_SEC_FILE_PRIV_EMPTY
  245. eng "Insecure configuration for --secure-file-priv: Current value does not restrict location of generated files. Consider setting it to a valid, non-empty path."
  246. ER_SEC_FILE_PRIV_NULL
  247. eng "--secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled"
  248. ER_SEC_FILE_PRIV_DIRECTORY_INSECURE
  249. eng "Insecure configuration for --secure-file-priv: %s is accessible through --secure-file-priv. Consider choosing a different directory."
  250. ER_SEC_FILE_PRIV_CANT_STAT
  251. eng "Failed to get stat for directory pointed out by --secure-file-priv"
  252. ER_SEC_FILE_PRIV_DIRECTORY_PERMISSIONS
  253. eng "Insecure configuration for --secure-file-priv: Location is accessible to all OS users. Consider choosing a different directory."
  254. ER_SEC_FILE_PRIV_ARGUMENT_TOO_LONG
  255. eng "Value for --secure-file-priv is longer than maximum limit of %d"
  256. ER_CANT_CREATE_NAMED_PIPES_THREAD
  257. eng "Can't create thread to handle named pipes (errno= %d)"
  258. ER_CANT_CREATE_TCPIP_THREAD
  259. eng "Can't create thread to handle TCP/IP (errno= %d)"
  260. ER_CANT_CREATE_SHM_THREAD
  261. eng "Can't create thread to handle shared memory (errno= %d)"
  262. ER_CANT_CREATE_INTERRUPT_THREAD
  263. eng "Can't create interrupt-thread (error %d, errno: %d)"
  264. ER_WRITABLE_CONFIG_REMOVED
  265. eng "World-writable config file '%s' has been removed."
  266. ER_CORE_VALUES
  267. eng "setrlimit could not change the size of core files to 'infinity'; We may not be able to generate a core file on signals"
  268. ER_WRONG_DATETIME_SPEC
  269. eng "Wrong date/time format specifier: %s"
  270. ER_RPL_BINLOG_FILTERS_OOM
  271. eng "Could not allocate replication and binlog filters: %s"
  272. ER_KEYCACHE_OOM
  273. eng "Cannot allocate the keycache"
  274. ER_CONFIRMING_THE_FUTURE
  275. eng "Current time has got past year 2038. Validating current time with %d iterations before initiating the normal server shutdown process."
  276. ER_BACK_IN_TIME
  277. eng "Iteration %d: Obtained valid current time from system"
  278. ER_FUTURE_DATE
  279. eng "Iteration %d: Current time obtained from system is greater than 2038"
  280. ER_UNSUPPORTED_DATE
  281. eng "This MySQL server doesn't support dates later then 2038"
  282. ER_STARTING_AS
  283. eng "%s (mysqld %s) starting as process %lu"
  284. ER_SHUTTING_DOWN_SLAVE_THREADS
  285. eng "Shutting down slave threads"
  286. ER_DISCONNECTING_REMAINING_CLIENTS
  287. eng "Forcefully disconnecting %d remaining clients"
  288. ER_ABORTING
  289. eng "Aborting"
  290. ER_BINLOG_END
  291. eng "Binlog end"
  292. ER_CALL_ME_LOCALHOST
  293. eng "gethostname failed, using '%s' as hostname"
  294. ER_USER_REQUIRES_ROOT
  295. eng "One can only use the --user switch if running as root"
  296. ER_REALLY_RUN_AS_ROOT
  297. eng "Fatal error: Please read \"Security\" section of the manual to find out how to run mysqld as root!"
  298. ER_USER_WHAT_USER
  299. eng "Fatal error: Can't change to run as user '%s' ; Please check that the user exists!"
  300. ER_TRANSPORTS_WHAT_TRANSPORTS
  301. eng "Server is started with --require-secure-transport=ON but no secure transports (SSL or Shared Memory) are configured."
  302. ER_FAIL_SETGID
  303. eng "setgid: %s"
  304. ER_FAIL_SETUID
  305. eng "setuid: %s"
  306. ER_FAIL_SETREGID
  307. eng "setregid: %s"
  308. ER_FAIL_SETREUID
  309. eng "setreuid: %s"
  310. ER_FAIL_CHROOT
  311. eng "chroot: %s"
  312. ER_WIN_LISTEN_BUT_HOW
  313. eng "TCP/IP, --shared-memory, or --named-pipe should be configured on NT OS"
  314. ER_NOT_RIGHT_NOW
  315. eng "CTRL-C ignored during startup"
  316. ER_FIXING_CLIENT_CHARSET
  317. eng "'%s' can not be used as client character set. '%s' will be used as default client character set."
  318. ER_OOM
  319. eng "Out of memory"
  320. ER_FAILED_TO_LOCK_MEM
  321. eng "Failed to lock memory. Errno: %d"
  322. ER_MYINIT_FAILED
  323. eng "my_init() failed."
  324. ER_BEG_INITFILE
  325. eng "Execution of init_file \'%s\' started."
  326. ER_END_INITFILE
  327. eng "Execution of init_file \'%s\' ended."
  328. ER_CHANGED_MAX_OPEN_FILES
  329. eng "Changed limits: max_open_files: %lu (requested %lu)"
  330. ER_CANT_INCREASE_MAX_OPEN_FILES
  331. eng "Could not increase number of max_open_files to more than %lu (request: %lu)"
  332. ER_CHANGED_MAX_CONNECTIONS
  333. eng "Changed limits: max_connections: %lu (requested %lu)"
  334. ER_CHANGED_TABLE_OPEN_CACHE
  335. eng "Changed limits: table_open_cache: %lu (requested %lu)"
  336. ER_THE_USER_ABIDES
  337. eng "Ignoring user change to '%s' because the user was set to '%s' earlier on the command line"
  338. ER_RPL_CANT_ADD_DO_TABLE
  339. eng "Could not add do table rule '%s'!"
  340. ER_RPL_CANT_ADD_IGNORE_TABLE
  341. eng "Could not add ignore table rule '%s'!"
  342. ER_TRACK_VARIABLES_BOGUS
  343. eng "The variable session_track_system_variables either has duplicate values or invalid values."
  344. ER_EXCESS_ARGUMENTS
  345. eng "Too many arguments (first extra is '%s')."
  346. ER_VERBOSE_HINT
  347. eng "Use --verbose --help to get a list of available options!"
  348. ER_CANT_READ_ERRMSGS
  349. eng "Unable to read errmsg.sys file"
  350. ER_CANT_INIT_DBS
  351. eng "Can't init databases"
  352. ER_LOG_OUTPUT_CONTRADICTORY
  353. eng "There were other values specified to log-output besides NONE. Disabling slow and general logs anyway."
  354. ER_NO_CSV_NO_LOG_TABLES
  355. eng "CSV engine is not present, falling back to the log files"
  356. ER_RPL_REWRITEDB_MISSING_ARROW
  357. eng "Bad syntax in replicate-rewrite-db - missing '->'!"
  358. ER_RPL_REWRITEDB_EMPTY_FROM
  359. eng "Bad syntax in replicate-rewrite-db - empty FROM db!"
  360. ER_RPL_REWRITEDB_EMPTY_TO
  361. eng "Bad syntax in replicate-rewrite-db - empty TO db!"
  362. ER_LOG_FILES_GIVEN_LOG_OUTPUT_IS_TABLE
  363. eng "Although a path was specified for the %s, log tables are used. To enable logging to files use the --log-output=file option."
  364. ER_LOG_FILE_INVALID
  365. eng "Invalid value for %s: %s"
  366. ER_LOWER_CASE_TABLE_NAMES_CS_DD_ON_CI_FS_UNSUPPORTED
  367. eng "The server option 'lower_case_table_names' is configured to use case sensitive table names but the data directory is on a case-insensitive file system which is an unsupported combination. Please consider either using a case sensitive file system for your data directory or switching to a case-insensitive table name mode."
  368. ER_LOWER_CASE_TABLE_NAMES_USING_2
  369. eng "Setting lower_case_table_names=2 because file system for %s is case insensitive"
  370. ER_LOWER_CASE_TABLE_NAMES_USING_0
  371. eng "lower_case_table_names was set to 2, even though your the file system '%s' is case sensitive. Now setting lower_case_table_names to 0 to avoid future problems."
  372. ER_NEED_LOG_BIN
  373. eng "You need to use --log-bin to make %s work."
  374. ER_NEED_FILE_INSTEAD_OF_DIR
  375. eng "Path '%s' is a directory name, please specify a file name for %s option"
  376. # Unused since MySQL 8.0.3
  377. ER_LOG_BIN_BETTER_WITH_NAME
  378. eng "No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a master and has his hostname changed!! Please use '--log-bin=%s' to avoid this problem."
  379. ER_BINLOG_NEEDS_SERVERID
  380. eng "You have enabled the binary log, but you haven't provided the mandatory server-id. Please refer to the proper server start-up parameters documentation"
  381. ER_RPL_CANT_MAKE_PATHS
  382. eng "Unable to create replication path names: out of memory or path names too long (path name exceeds %d or file name exceeds %d)."
  383. ER_CANT_INITIALIZE_GTID
  384. eng "Failed to initialize GTID structures."
  385. ER_CANT_INITIALIZE_EARLY_PLUGINS
  386. eng "Failed to initialize early plugins."
  387. ER_CANT_INITIALIZE_BUILTIN_PLUGINS
  388. eng "Failed to initialize builtin plugins."
  389. ER_CANT_INITIALIZE_DYNAMIC_PLUGINS
  390. eng "Failed to initialize dynamic plugins."
  391. ER_PERFSCHEMA_INIT_FAILED
  392. eng "Performance schema disabled (reason: init failed)."
  393. ER_STACKSIZE_UNEXPECTED
  394. eng "Asked for %lu thread stack, but got %ld"
  395. OBSOLETE_ER_CANT_SET_DATADIR
  396. eng "failed to set datadir to %s"
  397. ER_CANT_STAT_DATADIR
  398. eng "Can't read data directory's stats (%d): %s. Assuming that it's not owned by the same user/group"
  399. ER_CANT_CHOWN_DATADIR
  400. eng "Can't change data directory owner to %s"
  401. ER_CANT_SET_UP_PERSISTED_VALUES
  402. eng "Setting persistent options failed."
  403. ER_CANT_SAVE_GTIDS
  404. eng "Failed to save the set of Global Transaction Identifiers of the last binary log into the mysql.gtid_executed table while the server was shutting down. The next server restart will make another attempt to save Global Transaction Identifiers into the table."
  405. ER_AUTH_CANT_SET_DEFAULT_PLUGIN
  406. eng "Can't start server: Invalid value for --default-authentication-plugin"
  407. ER_CANT_JOIN_SHUTDOWN_THREAD
  408. eng "Could not join %sthread. error:%d"
  409. ER_CANT_HASH_DO_AND_IGNORE_RULES
  410. eng "An error occurred while building do_table and ignore_table rules to hashes for global replication filter."
  411. ER_CANT_OPEN_CA
  412. eng "Error opening CA certificate file"
  413. ER_CANT_ACCESS_CAPATH
  414. eng "Error accessing directory pointed by --ssl-capath"
  415. ER_SSL_TRYING_DATADIR_DEFAULTS
  416. eng "Found %s, %s and %s in data directory. Trying to enable SSL support using them."
  417. ER_AUTO_OPTIONS_FAILED
  418. eng "Failed to create %s(file: '%s', errno %d)"
  419. ER_CANT_INIT_TIMER
  420. eng "Failed to initialize timer component (errno %d)."
  421. ER_SERVERID_TOO_LARGE
  422. eng "server-id configured is too large to represent with server-id-bits configured."
  423. ER_DEFAULT_SE_UNAVAILABLE
  424. eng "Default%s storage engine (%s) is not available"
  425. ER_CANT_OPEN_ERROR_LOG
  426. eng "Could not open file '%s' for error logging%s%s"
  427. ER_INVALID_ERROR_LOG_NAME
  428. eng "Invalid log file name after expanding symlinks: '%s'"
  429. ER_RPL_INFINITY_DENIED
  430. eng "using --replicate-same-server-id in conjunction with --log-replica-updates is impossible, it would lead to infinite loops in this server."
  431. ER_RPL_INFINITY_IGNORED
  432. eng "using --replicate-same-server-id in conjunction with --log-replica-updates would lead to infinite loops in this server. However this will be ignored as the --log-bin option is not defined or your server is running with global transaction identiers enabled."
  433. OBSOLETE_ER_NDB_TABLES_NOT_READY
  434. eng "NDB : Tables not available after %lu seconds. Consider increasing --ndb-wait-setup value"
  435. # could use verbatim, but we want an error-code
  436. ER_TABLE_CHECK_INTACT
  437. eng "%s"
  438. ER_DD_TABLESPACE_NOT_FOUND
  439. eng "Unable to start server. The data dictionary tablespace '%s' does not exist."
  440. ER_DD_TRG_CONNECTION_COLLATION_MISSING
  441. eng "Connection collation is missing for trigger of table %s. Using default connection collation."
  442. ER_DD_TRG_DB_COLLATION_MISSING
  443. eng "Database collation is missing for trigger of table %s. Using Default character set."
  444. ER_DD_TRG_DEFINER_OOM
  445. eng "Error in Memory allocation for Definer %s for Trigger."
  446. # ER_TRG_CORRUPTED_FILE
  447. ER_DD_TRG_FILE_UNREADABLE
  448. eng "Error in reading %s.TRG file."
  449. ER_TRG_CANT_PARSE
  450. eng "Error in parsing Triggers from %s.TRG file."
  451. ER_DD_TRG_CANT_ADD
  452. eng "Error in creating DD entry for Trigger %s.%s"
  453. ER_DD_CANT_RESOLVE_VIEW
  454. eng "Resolving dependency for the view '%s.%s' failed. View is no more valid to use"
  455. ER_DD_VIEW_WITHOUT_DEFINER
  456. eng "%s.%s has no definer (as per an old view format). Current user is used as definer. Please recreate the view."
  457. ER_PLUGIN_INIT_FAILED
  458. eng "Plugin '%s' init function returned error."
  459. ER_RPL_TRX_DELEGATES_INIT_FAILED
  460. eng "Initialization of transaction delegates failed. Please report a bug."
  461. ER_RPL_BINLOG_STORAGE_DELEGATES_INIT_FAILED
  462. eng "Initialization binlog storage delegates failed. Please report a bug."
  463. ER_RPL_BINLOG_TRANSMIT_DELEGATES_INIT_FAILED
  464. eng "Initialization of binlog transmit delegates failed. Please report a bug."
  465. ER_RPL_BINLOG_RELAY_DELEGATES_INIT_FAILED
  466. eng "Initialization binlog relay IO delegates failed. Please report a bug."
  467. ER_RPL_PLUGIN_FUNCTION_FAILED
  468. eng "Run function '...' in plugin '%s' failed"
  469. ER_SQL_HA_READ_FAILED
  470. eng "mysql_ha_read: Got error %d when reading table '%s'"
  471. ER_SR_BOGUS_VALUE
  472. eng "Stored routine '%s'.'%s': invalid value in column %s."
  473. ER_SR_INVALID_CONTEXT
  474. eng "Invalid creation context '%s.%s'."
  475. ER_READING_TABLE_FAILED
  476. eng "Got error %d when reading table '%s'"
  477. ER_DES_FILE_WRONG_KEY
  478. eng "load_des_file: Found wrong key_number: %c"
  479. ER_CANT_SET_PERSISTED
  480. eng "Failed to set persisted options."
  481. ER_JSON_PARSE_ERROR
  482. eng "Persisted config file is corrupt. Please ensure mysqld-auto.cnf file is valid JSON."
  483. ER_CONFIG_OPTION_WITHOUT_GROUP
  484. eng "Found option without preceding group in config file"
  485. ER_VALGRIND_DO_QUICK_LEAK_CHECK
  486. eng "VALGRIND_DO_QUICK_LEAK_CHECK"
  487. ER_VALGRIND_COUNT_LEAKS
  488. eng "VALGRIND_COUNT_LEAKS reports %lu leaked bytes for query '%.*s'"
  489. ER_LOAD_DATA_INFILE_FAILED_IN_UNEXPECTED_WAY
  490. eng "LOAD DATA INFILE in the slave SQL Thread can only read from --replica-load-tmpdir. Please, report a bug."
  491. ER_UNKNOWN_ERROR_NUMBER
  492. eng "Got unknown error: %d"
  493. ER_UDF_CANT_ALLOC_FOR_STRUCTURES
  494. eng "Can't allocate memory for udf structures"
  495. ER_UDF_CANT_ALLOC_FOR_FUNCTION
  496. eng "Can't alloc memory for udf function: '%.64s'"
  497. ER_UDF_INVALID_ROW_IN_FUNCTION_TABLE
  498. eng "Invalid row in mysql.func table for function '%.64s'"
  499. ER_UDF_CANT_OPEN_FUNCTION_TABLE
  500. eng "Could not open the mysql.func table. Please perform the MySQL upgrade procedure."
  501. ER_XA_RECOVER_FOUND_TRX_IN_SE
  502. eng "Found %d prepared transaction(s) in %s"
  503. ER_XA_RECOVER_FOUND_XA_TRX
  504. eng "Found %d prepared XA transactions"
  505. ER_XA_IGNORING_XID
  506. eng "ignore xid %s"
  507. ER_XA_COMMITTING_XID
  508. eng "commit xid %s"
  509. ER_XA_ROLLING_BACK_XID
  510. eng "rollback xid %s"
  511. ER_XA_STARTING_RECOVERY
  512. eng "Starting XA crash recovery..."
  513. ER_XA_NO_MULTI_2PC_HEURISTIC_RECOVER
  514. eng "--tc-heuristic-recover rollback strategy is not safe on systems with more than one 2-phase-commit-capable storage engine. Aborting crash recovery."
  515. ER_XA_RECOVER_EXPLANATION
  516. eng "Found %d prepared transactions! It means that mysqld was not shut down properly last time and critical recovery information (last binlog or %s file) was manually deleted after a crash. You have to start mysqld with --tc-heuristic-recover switch to commit or rollback pending transactions."
  517. ER_XA_RECOVERY_DONE
  518. eng "XA crash recovery finished."
  519. ER_TRX_GTID_COLLECT_REJECT
  520. eng "Failed to collect GTID to send in the response packet!"
  521. ER_SQL_AUTHOR_DEFAULT_ROLES_FAIL
  522. eng "MYSQL.DEFAULT_ROLES couldn't be updated for authorization identifier %s"
  523. ER_SQL_USER_TABLE_CREATE_WARNING
  524. eng "Following users were specified in CREATE USER IF NOT EXISTS but they already exist. Corresponding entry in binary log used default authentication plugin '%s' to rewrite authentication information (if any) for them: %s"
  525. ER_SQL_USER_TABLE_ALTER_WARNING
  526. eng "Following users were specified in ALTER USER IF EXISTS but they do not exist. Corresponding entry in binary log used default authentication plugin '%s' to rewrite authentication information (if any) for them: %s"
  527. ER_ROW_IN_WRONG_PARTITION_PLEASE_REPAIR
  528. eng "Table '%-192s' corrupted: row in wrong partition: %s -- Please REPAIR the table!"
  529. ER_MYISAM_CRASHED_ERROR_IN_THREAD
  530. eng "Got an error from thread_id=%u, %s:%d"
  531. ER_MYISAM_CRASHED_ERROR_IN
  532. eng "Got an error from unknown thread, %s:%d"
  533. ER_TOO_MANY_STORAGE_ENGINES
  534. eng "Too many storage engines!"
  535. ER_SE_TYPECODE_CONFLICT
  536. eng "Storage engine '%s' has conflicting typecode. Assigning value %d."
  537. ER_TRX_WRITE_SET_OOM
  538. eng "Out of memory on transaction write set extraction"
  539. ER_HANDLERTON_OOM
  540. eng "Unable to allocate memory for plugin '%s' handlerton."
  541. ER_CONN_SHM_LISTENER
  542. eng "Shared memory setting up listener"
  543. ER_CONN_SHM_CANT_CREATE_SERVICE
  544. eng "Can't create shared memory service: %s. : %s"
  545. ER_CONN_SHM_CANT_CREATE_CONNECTION
  546. eng "Can't create shared memory connection: %s. : %s"
  547. ER_CONN_PIP_CANT_CREATE_EVENT
  548. eng "Can't create event, last error=%u"
  549. ER_CONN_PIP_CANT_CREATE_PIPE
  550. eng "Can't create new named pipe!: %s"
  551. ER_CONN_PER_THREAD_NO_THREAD
  552. eng "Can't create thread to handle new connection(errno= %d)"
  553. ER_CONN_TCP_NO_SOCKET
  554. eng "Failed to create a socket for %s '%s': errno: %d."
  555. ER_CONN_TCP_CREATED
  556. eng "Server socket created on IP: '%s'."
  557. ER_CONN_TCP_ADDRESS
  558. eng "Server hostname (bind-address): '%s'; port: %d"
  559. ER_CONN_TCP_IPV6_AVAILABLE
  560. eng "IPv6 is available."
  561. ER_CONN_TCP_IPV6_UNAVAILABLE
  562. eng "IPv6 is not available."
  563. ER_CONN_TCP_ERROR_WITH_STRERROR
  564. eng "Can't create IP socket: %s"
  565. ER_CONN_TCP_CANT_RESOLVE_HOSTNAME
  566. eng "Can't start server: cannot resolve hostname!"
  567. ER_CONN_TCP_IS_THERE_ANOTHER_USING_PORT
  568. eng "Do you already have another mysqld server running on port: %d ?"
  569. ER_CONN_UNIX_IS_THERE_ANOTHER_USING_SOCKET
  570. eng "Do you already have another mysqld server running on socket: %s ?"
  571. ER_CONN_UNIX_PID_CLAIMED_SOCKET_FILE
  572. eng "Another process with pid %d is using unix socket file."
  573. ER_CONN_TCP_CANT_RESET_V6ONLY
  574. eng "Failed to reset IPV6_V6ONLY flag (error: %d). The server will listen to IPv6 addresses only."
  575. ER_CONN_TCP_BIND_RETRY
  576. eng "Retrying bind on TCP/IP port %u"
  577. ER_CONN_TCP_BIND_FAIL
  578. eng "Can't start server: Bind on TCP/IP port: %s"
  579. ER_CONN_TCP_IP_NOT_LOGGED
  580. eng "Fails to print out IP-address."
  581. ER_CONN_TCP_RESOLVE_INFO
  582. eng " - '%s' resolves to '%s';"
  583. ER_CONN_TCP_START_FAIL
  584. eng "Can't start server: listen() on TCP/IP port: %s"
  585. ER_CONN_TCP_LISTEN_FAIL
  586. eng "listen() on TCP/IP failed with error %d"
  587. ER_CONN_UNIX_PATH_TOO_LONG
  588. eng "The socket file path is too long (> %u): %s"
  589. ER_CONN_UNIX_LOCK_FILE_FAIL
  590. eng "Unable to setup unix socket lock file."
  591. ER_CONN_UNIX_NO_FD
  592. eng "Can't start server: UNIX Socket : %s"
  593. ER_CONN_UNIX_NO_BIND_NO_START
  594. eng "Can't start server : Bind on unix socket: %s"
  595. ER_CONN_UNIX_LISTEN_FAILED
  596. eng "listen() on Unix socket failed with error %d"
  597. ER_CONN_UNIX_LOCK_FILE_GIVING_UP
  598. eng "Unable to create unix socket lock file %s after retries."
  599. ER_CONN_UNIX_LOCK_FILE_CANT_CREATE
  600. eng "Could not create unix socket lock file %s."
  601. ER_CONN_UNIX_LOCK_FILE_CANT_OPEN
  602. eng "Could not open unix socket lock file %s."
  603. ER_CONN_UNIX_LOCK_FILE_CANT_READ
  604. eng "Could not read unix socket lock file %s."
  605. ER_CONN_UNIX_LOCK_FILE_EMPTY
  606. eng "Unix socket lock file is empty %s."
  607. ER_CONN_UNIX_LOCK_FILE_PIDLESS
  608. eng "Invalid pid in unix socket lock file %s."
  609. ER_CONN_UNIX_LOCK_FILE_CANT_WRITE
  610. eng "Could not write unix socket lock file %s errno %d."
  611. ER_CONN_UNIX_LOCK_FILE_CANT_DELETE
  612. eng "Could not remove unix socket lock file %s errno %d."
  613. ER_CONN_UNIX_LOCK_FILE_CANT_SYNC
  614. eng "Could not sync unix socket lock file %s errno %d."
  615. ER_CONN_UNIX_LOCK_FILE_CANT_CLOSE
  616. eng "Could not close unix socket lock file %s errno %d."
  617. ER_CONN_SOCKET_SELECT_FAILED
  618. eng "mysqld: Got error %d from select"
  619. ER_CONN_SOCKET_ACCEPT_FAILED
  620. eng "Error in accept: %s"
  621. ER_AUTH_RSA_CANT_FIND
  622. eng "RSA %s key file not found: %s. Some authentication plugins will not work."
  623. ER_AUTH_RSA_CANT_PARSE
  624. eng "Failure to parse RSA %s key (file exists): %s: %s"
  625. ER_AUTH_RSA_CANT_READ
  626. eng "Failure to read key file: %s"
  627. ER_AUTH_RSA_FILES_NOT_FOUND
  628. eng "RSA key files not found. Some authentication plugins will not work."
  629. ER_CONN_ATTR_TRUNCATED
  630. eng "Connection attributes of length %lu were truncated (%d bytes lost) for connection %llu, user %s@%s (as %s), auth: %s"
  631. ER_X509_CIPHERS_MISMATCH
  632. eng "X.509 ciphers mismatch: should be '%s' but is '%s'"
  633. ER_X509_ISSUER_MISMATCH
  634. eng "X.509 issuer mismatch: should be '%s' but is '%s'"
  635. ER_X509_SUBJECT_MISMATCH
  636. eng "X.509 subject mismatch: should be '%s' but is '%s'"
  637. ER_AUTH_CANT_ACTIVATE_ROLE
  638. eng "Failed to activate default role %s for %s"
  639. ER_X509_NEEDS_RSA_PRIVKEY
  640. eng "Could not generate RSA private key required for X.509 certificate."
  641. ER_X509_CANT_WRITE_KEY
  642. eng "Could not write key file: %s"
  643. ER_X509_CANT_CHMOD_KEY
  644. eng "Could not set file permission for %s"
  645. ER_X509_CANT_READ_CA_KEY
  646. eng "Could not read CA key file: %s"
  647. ER_X509_CANT_READ_CA_CERT
  648. eng "Could not read CA certificate file: %s"
  649. ER_X509_CANT_CREATE_CERT
  650. eng "Could not generate X.509 certificate."
  651. ER_X509_CANT_WRITE_CERT
  652. eng "Could not write certificate file: %s"
  653. ER_AUTH_CANT_CREATE_RSA_PAIR
  654. eng "Could not generate RSA Private/Public key pair"
  655. ER_AUTH_CANT_WRITE_PRIVKEY
  656. eng "Could not write private key file: %s"
  657. ER_AUTH_CANT_WRITE_PUBKEY
  658. eng "Could not write public key file: %s"
  659. ER_AUTH_SSL_CONF_PREVENTS_CERT_GENERATION
  660. eng "Skipping generation of SSL certificates as options related to SSL are specified."
  661. ER_AUTH_USING_EXISTING_CERTS
  662. eng "Skipping generation of SSL certificates as certificate files are present in data directory."
  663. ER_AUTH_CERTS_SAVED_TO_DATADIR
  664. eng "Auto generated SSL certificates are placed in data directory."
  665. ER_AUTH_CERT_GENERATION_DISABLED
  666. eng "Skipping generation of SSL certificates as --auto_generate_certs is set to OFF."
  667. ER_AUTH_RSA_CONF_PREVENTS_KEY_GENERATION
  668. eng "Skipping generation of RSA key pair through %s as options related to RSA keys are specified."
  669. ER_AUTH_KEY_GENERATION_SKIPPED_PAIR_PRESENT
  670. eng "Skipping generation of RSA key pair through %s as key files are present in data directory."
  671. ER_AUTH_KEYS_SAVED_TO_DATADIR
  672. eng "Auto generated RSA key files through %s are placed in data directory."
  673. ER_AUTH_KEY_GENERATION_DISABLED
  674. eng "Skipping generation of RSA key pair as %s is set to OFF."
  675. ER_AUTHCACHE_PROXIES_PRIV_SKIPPED_NEEDS_RESOLVE
  676. eng "'proxies_priv' entry '%s@%s %s@%s' ignored in --skip-name-resolve mode."
  677. ER_AUTHCACHE_PLUGIN_MISSING
  678. eng "The plugin '%.*s' used to authenticate user '%s'@'%.*s' is not loaded. Nobody can currently login using this account."
  679. ER_AUTHCACHE_PLUGIN_CONFIG
  680. eng "The plugin '%s' is used to authenticate user '%s'@'%.*s', %s configured. Nobody can currently login using this account."
  681. OBSOLETE_ER_AUTHCACHE_ROLE_TABLES_DODGY
  682. eng "Could not load mysql.role_edges and mysql.default_roles tables. ACL DDLs will not work unless the MySQL upgrade procedure is performed."
  683. ER_AUTHCACHE_USER_SKIPPED_NEEDS_RESOLVE
  684. eng "'user' entry '%s@%s' ignored in --skip-name-resolve mode."
  685. ER_AUTHCACHE_USER_TABLE_DODGY
  686. eng "Fatal error: Could not read the column 'authentication_string' from table 'mysql.user'. Please perform the MySQL upgrade procedure."
  687. ER_AUTHCACHE_USER_IGNORED_DEPRECATED_PASSWORD
  688. eng "User entry '%s'@'%s' has a deprecated pre-4.1 password. The user will be ignored and no one can login with this user anymore."
  689. ER_AUTHCACHE_USER_IGNORED_NEEDS_PLUGIN
  690. eng "User entry '%s'@'%s' has an empty plugin value. The user will be ignored and no one can login with this user anymore."
  691. ER_AUTHCACHE_USER_IGNORED_INVALID_PASSWORD
  692. eng "Found invalid password for user: '%s@%s'; Ignoring user"
  693. ER_AUTHCACHE_EXPIRED_PASSWORD_UNSUPPORTED
  694. eng "'user' entry '%s@%s' has the password ignore flag raised, but its authentication plugin doesn't support password expiration. The user id will be ignored."
  695. ER_NO_SUPER_WITHOUT_USER_PLUGIN
  696. eng "Some of the user accounts with SUPER privileges were disabled because of empty mysql.user.plugin value. If you are upgrading from MySQL 5.6 to MySQL 5.7 it means that substitution for the empty plugin column was not possible. Probably because of pre 4.1 password hash. If your account is disabled you will need to perform the MySQL upgrade procedure. For complete instructions on how to upgrade MySQL to a new version please see the 'Upgrading MySQL' section from the MySQL manual."
  697. ER_AUTHCACHE_DB_IGNORED_EMPTY_NAME
  698. eng "Found an entry in the 'db' table with empty database name; Skipped"
  699. ER_AUTHCACHE_DB_SKIPPED_NEEDS_RESOLVE
  700. eng "'db' entry '%s %s@%s' ignored in --skip-name-resolve mode."
  701. ER_AUTHCACHE_DB_ENTRY_LOWERCASED_REVOKE_WILL_FAIL
  702. eng "'db' entry '%s %s@%s' had database in mixed case that has been forced to lowercase because lower_case_table_names is set. It will not be possible to remove this privilege using REVOKE."
  703. ER_AUTHCACHE_TABLE_PROXIES_PRIV_MISSING
  704. eng "The system table mysql.proxies_priv is missing. Please perform the MySQL upgrade procedure."
  705. ER_AUTHCACHE_CANT_OPEN_AND_LOCK_PRIVILEGE_TABLES
  706. eng "Fatal error: Can't open and lock privilege tables: %s"
  707. ER_AUTHCACHE_CANT_INIT_GRANT_SUBSYSTEM
  708. eng "Fatal: can't initialize grant subsystem - '%s'"
  709. ER_AUTHCACHE_PROCS_PRIV_SKIPPED_NEEDS_RESOLVE
  710. eng "'procs_priv' entry '%s %s@%s' ignored in --skip-name-resolve mode."
  711. ER_AUTHCACHE_PROCS_PRIV_ENTRY_IGNORED_BAD_ROUTINE_TYPE
  712. eng "'procs_priv' entry '%s' ignored, bad routine type"
  713. ER_AUTHCACHE_TABLES_PRIV_SKIPPED_NEEDS_RESOLVE
  714. eng "'tables_priv' entry '%s %s@%s' ignored in --skip-name-resolve mode."
  715. ER_USER_NOT_IN_EXTRA_USERS_BINLOG_POSSIBLY_INCOMPLETE
  716. eng "Failed to add %s in extra_users. Binary log entry may miss some of the users."
  717. ER_DD_SCHEMA_NOT_FOUND
  718. eng "Unable to start server. The data dictionary schema '%s' does not exist."
  719. ER_DD_TABLE_NOT_FOUND
  720. eng "Unable to start server. The data dictionary table '%s' does not exist."
  721. ER_DD_SE_INIT_FAILED
  722. eng "Failed to initialize DD Storage Engine"
  723. ER_DD_ABORTING_PARTIAL_UPGRADE
  724. eng "Found partially upgraded DD. Aborting upgrade and deleting all DD tables. Start the upgrade process again."
  725. ER_DD_FRM_EXISTS_FOR_TABLE
  726. eng "Found .frm file with same name as one of the Dictionary Tables."
  727. ER_DD_CREATED_FOR_UPGRADE
  728. eng "Created Data Dictionary for upgrade"
  729. ER_ERRMSG_CANT_FIND_FILE
  730. eng "Can't find error-message file '%s'. Check error-message file location and 'lc-messages-dir' configuration directive."
  731. ER_ERRMSG_LOADING_55_STYLE
  732. eng "Using pre 5.5 semantics to load error messages from %s. If this is not intended, refer to the documentation for valid usage of --lc-messages-dir and --language parameters."
  733. ER_ERRMSG_MISSING_IN_FILE
  734. eng "Error message file '%s' had only %d error messages, but it should contain at least %d error messages. Check that the above file is the right version for this program!"
  735. ER_ERRMSG_OOM
  736. eng "Not enough memory for messagefile '%s'"
  737. ER_ERRMSG_CANT_READ
  738. eng "Can't read from messagefile '%s'"
  739. ER_TABLE_INCOMPATIBLE_DECIMAL_FIELD
  740. eng "Found incompatible DECIMAL field '%s' in %s; Please do \"ALTER TABLE `%s` FORCE\" to fix it!"
  741. ER_TABLE_INCOMPATIBLE_YEAR_FIELD
  742. eng "Found incompatible YEAR(x) field '%s' in %s; Please do \"ALTER TABLE `%s` FORCE\" to fix it!"
  743. ER_INVALID_CHARSET_AND_DEFAULT_IS_MB
  744. eng "'%s' had no or invalid character set, and default character set is multi-byte, so character column sizes may have changed"
  745. ER_TABLE_WRONG_KEY_DEFINITION
  746. eng "Found wrong key definition in %s; Please do \"ALTER TABLE `%s` FORCE \" to fix it!"
  747. ER_CANT_OPEN_FRM_FILE
  748. eng "Unable to open file %s"
  749. ER_CANT_READ_FRM_FILE
  750. eng "Error in reading file %s"
  751. ER_TABLE_CREATED_WITH_DIFFERENT_VERSION
  752. eng "Table '%s' was created with a different version of MySQL and cannot be read"
  753. ER_VIEW_UNPARSABLE
  754. eng "Unable to read view %s"
  755. ER_FILE_TYPE_UNKNOWN
  756. eng "File %s has unknown type in its header."
  757. ER_INVALID_INFO_IN_FRM
  758. eng "Incorrect information in file %s"
  759. ER_CANT_OPEN_AND_LOCK_PRIVILEGE_TABLES
  760. eng "Can't open and lock privilege tables: %s"
  761. ER_AUDIT_PLUGIN_DOES_NOT_SUPPORT_AUDIT_AUTH_EVENTS
  762. eng "Plugin '%s' cannot subscribe to MYSQL_AUDIT_AUTHORIZATION events. Currently not supported."
  763. ER_AUDIT_PLUGIN_HAS_INVALID_DATA
  764. eng "Plugin '%s' has invalid data."
  765. ER_TZ_OOM_INITIALIZING_TIME_ZONES
  766. eng "Fatal error: OOM while initializing time zones"
  767. ER_TZ_CANT_OPEN_AND_LOCK_TIME_ZONE_TABLE
  768. eng "Can't open and lock time zone table: %s trying to live without them"
  769. ER_TZ_OOM_LOADING_LEAP_SECOND_TABLE
  770. eng "Fatal error: Out of memory while loading mysql.time_zone_leap_second table"
  771. ER_TZ_TOO_MANY_LEAPS_IN_LEAP_SECOND_TABLE
  772. eng "Fatal error: While loading mysql.time_zone_leap_second table: too much leaps"
  773. ER_TZ_ERROR_LOADING_LEAP_SECOND_TABLE
  774. eng "Fatal error: Error while loading mysql.time_zone_leap_second table"
  775. ER_TZ_UNKNOWN_OR_ILLEGAL_DEFAULT_TIME_ZONE
  776. eng "Fatal error: Illegal or unknown default time zone '%s'"
  777. ER_TZ_CANT_FIND_DESCRIPTION_FOR_TIME_ZONE
  778. eng "Can't find description of time zone '%.*s'"
  779. ER_TZ_CANT_FIND_DESCRIPTION_FOR_TIME_ZONE_ID
  780. eng "Can't find description of time zone '%u'"
  781. ER_TZ_TRANSITION_TYPE_TABLE_TYPE_TOO_LARGE
  782. eng "Error while loading time zone description from mysql.time_zone_transition_type table: too big transition type id"
  783. ER_TZ_TRANSITION_TYPE_TABLE_ABBREVIATIONS_EXCEED_SPACE
  784. eng "Error while loading time zone description from mysql.time_zone_transition_type table: not enough room for abbreviations"
  785. ER_TZ_TRANSITION_TYPE_TABLE_LOAD_ERROR
  786. eng "Error while loading time zone description from mysql.time_zone_transition_type table"
  787. ER_TZ_TRANSITION_TABLE_TOO_MANY_TRANSITIONS
  788. eng "Error while loading time zone description from mysql.time_zone_transition table: too much transitions"
  789. ER_TZ_TRANSITION_TABLE_BAD_TRANSITION_TYPE
  790. eng "Error while loading time zone description from mysql.time_zone_transition table: bad transition type id"
  791. ER_TZ_TRANSITION_TABLE_LOAD_ERROR
  792. eng "Error while loading time zone description from mysql.time_zone_transition table"
  793. ER_TZ_NO_TRANSITION_TYPES_IN_TIME_ZONE
  794. eng "loading time zone without transition types"
  795. ER_TZ_OOM_LOADING_TIME_ZONE_DESCRIPTION
  796. eng "Out of memory while loading time zone description"
  797. ER_TZ_CANT_BUILD_MKTIME_MAP
  798. eng "Unable to build mktime map for time zone"
  799. ER_TZ_OOM_WHILE_LOADING_TIME_ZONE
  800. eng "Out of memory while loading time zone"
  801. ER_TZ_OOM_WHILE_SETTING_TIME_ZONE
  802. eng "Fatal error: Out of memory while setting new time zone"
  803. ER_SLAVE_SQL_THREAD_STOPPED_UNTIL_CONDITION_BAD
  804. eng "Slave SQL thread is stopped because UNTIL condition is bad(%s:%llu)."
  805. ER_SLAVE_SQL_THREAD_STOPPED_UNTIL_POSITION_REACHED
  806. eng "Slave SQL thread stopped because it reached its UNTIL position %llu"
  807. ER_SLAVE_SQL_THREAD_STOPPED_BEFORE_GTIDS_ALREADY_APPLIED
  808. eng "Slave SQL thread stopped because UNTIL SQL_BEFORE_GTIDS %s is already applied"
  809. ER_SLAVE_SQL_THREAD_STOPPED_BEFORE_GTIDS_REACHED
  810. eng "Slave SQL thread stopped because it reached UNTIL SQL_BEFORE_GTIDS %s"
  811. ER_SLAVE_SQL_THREAD_STOPPED_AFTER_GTIDS_REACHED
  812. eng "Slave SQL thread stopped because it reached UNTIL SQL_AFTER_GTIDS %s"
  813. ER_SLAVE_SQL_THREAD_STOPPED_GAP_TRX_PROCESSED
  814. eng "Slave SQL thread stopped according to UNTIL SQL_AFTER_MTS_GAPS as it has processed all gap transactions left from the previous slave session."
  815. ER_GROUP_REPLICATION_PLUGIN_NOT_INSTALLED
  816. eng "Group Replication plugin is not installed."
  817. ER_GTID_ALREADY_ADDED_BY_USER
  818. eng "The transaction owned GTID is already in the %s table, which is caused by an explicit modifying from user client."
  819. ER_FAILED_TO_DELETE_FROM_GTID_EXECUTED_TABLE
  820. eng "Failed to delete the row: '%s' from the gtid_executed table."
  821. ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE
  822. eng "Failed to compress the gtid_executed table."
  823. ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE_OOM
  824. eng "Failed to compress the gtid_executed table, because it is failed to allocate the THD."
  825. ER_FAILED_TO_INIT_THREAD_ATTR_FOR_GTID_TABLE_COMPRESSION
  826. eng "Failed to initialize thread attribute when creating compression thread."
  827. ER_FAILED_TO_CREATE_GTID_TABLE_COMPRESSION_THREAD
  828. eng "Can not create thread to compress gtid_executed table (errno= %d)"
  829. ER_FAILED_TO_JOIN_GTID_TABLE_COMPRESSION_THREAD
  830. eng "Could not join gtid_executed table compression thread. error:%d"
  831. ER_NPIPE_FAILED_TO_INIT_SECURITY_DESCRIPTOR
  832. eng "Can't start server : Initialize security descriptor: %s"
  833. ER_NPIPE_FAILED_TO_SET_SECURITY_DESCRIPTOR
  834. eng "Can't start server : Set security descriptor: %s"
  835. ER_NPIPE_PIPE_ALREADY_IN_USE
  836. eng "Can't start server : Named Pipe \"%s\" already in use."
  837. OBSOLETE_ER_NDB_SLAVE_SAW_EPOCH_LOWER_THAN_PREVIOUS_ON_START
  838. eng "NDB Slave : At SQL thread start applying epoch %llu/%llu (%llu) from Master ServerId %u which is lower than previously applied epoch %llu/%llu (%llu). Group Master Log : %s Group Master Log Pos : %llu. Check slave positioning."
  839. OBSOLETE_ER_NDB_SLAVE_SAW_EPOCH_LOWER_THAN_PREVIOUS
  840. eng "NDB Slave : SQL thread stopped as applying epoch %llu/%llu (%llu) from Master ServerId %u which is lower than previously applied epoch %llu/%llu (%llu). Group Master Log : %s Group Master Log Pos : %llu"
  841. OBSOLETE_ER_NDB_SLAVE_SAW_ALREADY_COMMITTED_EPOCH
  842. eng "NDB Slave : SQL thread stopped as attempted to reapply already committed epoch %llu/%llu (%llu) from server id %u. Group Master Log : %s Group Master Log Pos : %llu."
  843. OBSOLETE_ER_NDB_SLAVE_PREVIOUS_EPOCH_NOT_COMMITTED
  844. eng "NDB Slave : SQL thread stopped as attempting to apply new epoch %llu/%llu (%llu) while lower received epoch %llu/%llu (%llu) has not been committed. Master server id : %u. Group Master Log : %s Group Master Log Pos : %llu."
  845. OBSOLETE_ER_NDB_SLAVE_MISSING_DATA_FOR_TIMESTAMP_COLUMN
  846. eng "NDB Slave: missing data for %s timestamp column %u."
  847. OBSOLETE_ER_NDB_SLAVE_LOGGING_EXCEPTIONS_TO
  848. eng "NDB Slave: Table %s.%s logging exceptions to %s.%s"
  849. OBSOLETE_ER_NDB_SLAVE_LOW_EPOCH_RESOLUTION
  850. eng "NDB Slave: Table %s.%s : %s, low epoch resolution"
  851. OBSOLETE_ER_NDB_INFO_FOUND_UNEXPECTED_FIELD_TYPE
  852. eng "Found unexpected field type %u"
  853. OBSOLETE_ER_NDB_INFO_FAILED_TO_CREATE_NDBINFO
  854. eng "Failed to create NdbInfo"
  855. OBSOLETE_ER_NDB_INFO_FAILED_TO_INIT_NDBINFO
  856. eng "Failed to init NdbInfo"
  857. OBSOLETE_ER_NDB_CLUSTER_WRONG_NUMBER_OF_FUNCTION_ARGUMENTS
  858. eng "ndb_serialize_cond: Unexpected mismatch of found and expected number of function arguments %u"
  859. OBSOLETE_ER_NDB_CLUSTER_SCHEMA_INFO
  860. eng "%s - %s.%s"
  861. OBSOLETE_ER_NDB_CLUSTER_GENERIC_MESSAGE
  862. eng "%s"
  863. ER_RPL_CANT_OPEN_INFO_TABLE
  864. eng "Info table is not ready to be used. Table '%s.%s' cannot be opened."
  865. ER_RPL_CANT_SCAN_INFO_TABLE
  866. eng "Info table is not ready to be used. Table '%s.%s' cannot be scanned."
  867. ER_RPL_CORRUPTED_INFO_TABLE
  868. eng "Corrupted table %s.%s. Check out table definition."
  869. ER_RPL_CORRUPTED_KEYS_IN_INFO_TABLE
  870. eng "Info table has a problem with its key field(s). Table '%s.%s' expected field #%u to be '%s' but found '%s' instead."
  871. ER_RPL_WORKER_ID_IS
  872. eng "Choosing worker id %lu, the following is going to be %lu"
  873. ER_RPL_INCONSISTENT_TIMESTAMPS_IN_TRX
  874. eng "Transaction is tagged with inconsistent logical timestamps: sequence_number (%lld) <= last_committed (%lld)"
  875. ER_RPL_INCONSISTENT_SEQUENCE_NO_IN_TRX
  876. eng "Transaction's sequence number is inconsistent with that of a preceding one: sequence_number (%lld) <= previous sequence_number (%lld)"
  877. ER_RPL_CHANNELS_REQUIRE_TABLES_AS_INFO_REPOSITORIES
  878. eng "For the creation of replication channels the master info and relay log info repositories must be set to TABLE"
  879. ER_RPL_CHANNELS_REQUIRE_NON_ZERO_SERVER_ID
  880. eng "For the creation of replication channels the server id must be different from 0"
  881. ER_RPL_REPO_SHOULD_BE_TABLE
  882. eng "Slave: Wrong repository. Repository should be TABLE"
  883. ER_RPL_ERROR_CREATING_MASTER_INFO
  884. eng "Error creating master info: %s."
  885. ER_RPL_ERROR_CHANGING_MASTER_INFO_REPO_TYPE
  886. eng "Error changing the type of master info's repository: %s."
  887. ER_RPL_CHANGING_RELAY_LOG_INFO_REPO_TYPE_FAILED_DUE_TO_GAPS
  888. eng "It is not possible to change the type of the relay log repository because there are workers repositories with possible execution gaps. The value of --relay_log_info_repository is altered to one of the found Worker repositories. The gaps have to be sorted out before resuming with the type change."
  889. ER_RPL_ERROR_CREATING_RELAY_LOG_INFO
  890. eng "Error creating relay log info: %s."
  891. ER_RPL_ERROR_CHANGING_RELAY_LOG_INFO_REPO_TYPE
  892. eng "Error changing the type of relay log info's repository: %s."
  893. ER_RPL_FAILED_TO_DELETE_FROM_SLAVE_WORKERS_INFO_REPOSITORY
  894. eng "Could not delete from Slave Workers info repository."
  895. ER_RPL_FAILED_TO_RESET_STATE_IN_SLAVE_INFO_REPOSITORY
  896. eng "Could not store the reset Slave Worker state into the slave info repository."
  897. ER_RPL_ERROR_CHECKING_REPOSITORY
  898. eng "Error in checking %s repository info type of %s."
  899. ER_RPL_SLAVE_GENERIC_MESSAGE
  900. eng "Slave: %s"
  901. ER_RPL_SLAVE_COULD_NOT_CREATE_CHANNEL_LIST
  902. eng "Slave: Could not create channel list"
  903. ER_RPL_MULTISOURCE_REQUIRES_TABLE_TYPE_REPOSITORIES
  904. eng "Slave: This slave was a multisourced slave previously which is supported only by both TABLE based master info and relay log info repositories. Found one or both of the info repos to be type FILE. Set both repos to type TABLE."
  905. ER_RPL_SLAVE_FAILED_TO_INIT_A_MASTER_INFO_STRUCTURE
  906. eng "Slave: Failed to initialize the master info structure for channel '%s'; its record may still be present in 'mysql.slave_master_info' table, consider deleting it."
  907. ER_RPL_SLAVE_FAILED_TO_INIT_MASTER_INFO_STRUCTURE
  908. eng "Failed to initialize the master info structure%s"
  909. ER_RPL_SLAVE_FAILED_TO_CREATE_CHANNEL_FROM_MASTER_INFO
  910. eng "Slave: Failed to create a channel from master info table repository."
  911. ER_RPL_FAILED_TO_CREATE_NEW_INFO_FILE
  912. eng "Failed to create a new info file (file '%s', errno %d)"
  913. ER_RPL_FAILED_TO_CREATE_CACHE_FOR_INFO_FILE
  914. eng "Failed to create a cache on info file (file '%s')"
  915. ER_RPL_FAILED_TO_OPEN_INFO_FILE
  916. eng "Failed to open the existing info file (file '%s', errno %d)"
  917. ER_RPL_GTID_MEMORY_FINALLY_AVAILABLE
  918. eng "Server overcomes the temporary 'out of memory' in '%d' tries while allocating a new chunk of intervals for storing GTIDs."
  919. ER_SERVER_COST_UNKNOWN_COST_CONSTANT
  920. eng "Unknown cost constant \"%s\" in mysql.server_cost table"
  921. ER_SERVER_COST_INVALID_COST_CONSTANT
  922. eng "Invalid value for cost constant \"%s\" in mysql.server_cost table: %.1f"
  923. ER_ENGINE_COST_UNKNOWN_COST_CONSTANT
  924. eng "Unknown cost constant \"%s\" in mysql.engine_cost table"
  925. ER_ENGINE_COST_UNKNOWN_STORAGE_ENGINE
  926. eng "Unknown storage engine \"%s\" in mysql.engine_cost table"
  927. ER_ENGINE_COST_INVALID_DEVICE_TYPE_FOR_SE
  928. eng "Invalid device type %d for \"%s\" storage engine for cost constant \"%s\" in mysql.engine_cost table"
  929. ER_ENGINE_COST_INVALID_CONST_CONSTANT_FOR_SE_AND_DEVICE
  930. eng "Invalid value for cost constant \"%s\" for \"%s\" storage engine and device type %d in mysql.engine_cost table: %.1f"
  931. ER_SERVER_COST_FAILED_TO_READ
  932. eng "Error while reading from mysql.server_cost table."
  933. ER_ENGINE_COST_FAILED_TO_READ
  934. eng "Error while reading from mysql.engine_cost table."
  935. ER_FAILED_TO_OPEN_COST_CONSTANT_TABLES
  936. eng "Failed to open optimizer cost constant tables"
  937. ER_RPL_UNSUPPORTED_UNIGNORABLE_EVENT_IN_STREAM
  938. eng "Unsupported non-ignorable event fed into the event stream."
  939. ER_RPL_GTID_LOG_EVENT_IN_STREAM
  940. eng "GTID_LOG_EVENT or ANONYMOUS_GTID_LOG_EVENT is not expected in an event stream %s."
  941. ER_RPL_UNEXPECTED_BEGIN_IN_STREAM
  942. eng "QUERY(BEGIN) is not expected in an event stream in the middle of a %s."
  943. ER_RPL_UNEXPECTED_COMMIT_ROLLBACK_OR_XID_LOG_EVENT_IN_STREAM
  944. eng "QUERY(COMMIT or ROLLBACK) or XID_LOG_EVENT is not expected in an event stream %s."
  945. ER_RPL_UNEXPECTED_XA_ROLLBACK_IN_STREAM
  946. eng "QUERY(XA ROLLBACK) is not expected in an event stream %s."
  947. ER_EVENT_EXECUTION_FAILED_CANT_AUTHENTICATE_USER
  948. eng "Event Scheduler: [%s].[%s.%s] execution failed, failed to authenticate the user."
  949. ER_EVENT_EXECUTION_FAILED_USER_LOST_EVEN_PRIVILEGE
  950. eng "Event Scheduler: [%s].[%s.%s] execution failed, user no longer has EVENT privilege."
  951. ER_EVENT_ERROR_DURING_COMPILATION
  952. eng "Event Scheduler: %serror during compilation of %s.%s"
  953. ER_EVENT_DROPPING
  954. eng "Event Scheduler: Dropping %s.%s"
  955. OBSOLETE_ER_NDB_SCHEMA_GENERIC_MESSAGE
  956. eng "Ndb schema[%s.%s]: %s"
  957. ER_RPL_INCOMPATIBLE_DECIMAL_IN_RBR
  958. eng "In RBR mode, Slave received incompatible DECIMAL field (old-style decimal field) from Master while creating conversion table. Please consider changing datatype on Master to new style decimal by executing ALTER command for column Name: %s.%s.%s."
  959. ER_INIT_ROOT_WITHOUT_PASSWORD
  960. eng "root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option."
  961. ER_INIT_GENERATING_TEMP_PASSWORD_FOR_ROOT
  962. eng "A temporary password is generated for root@localhost: %s"
  963. ER_INIT_CANT_OPEN_BOOTSTRAP_FILE
  964. eng "Failed to open the bootstrap file %s"
  965. ER_INIT_BOOTSTRAP_COMPLETE
  966. eng "Bootstrapping complete"
  967. ER_INIT_DATADIR_NOT_EMPTY_WONT_INITIALIZE
  968. eng "--initialize specified but the data directory has files in it. Aborting."
  969. ER_INIT_DATADIR_EXISTS_WONT_INITIALIZE
  970. eng "--initialize specified on an existing data directory."
  971. ER_INIT_DATADIR_EXISTS_AND_PATH_TOO_LONG_WONT_INITIALIZE
  972. eng "--initialize specified but the data directory exists and the path is too long. Aborting."
  973. ER_INIT_DATADIR_EXISTS_AND_NOT_WRITABLE_WONT_INITIALIZE
  974. eng "--initialize specified but the data directory exists and is not writable. Aborting."
  975. ER_INIT_CREATING_DD
  976. eng "Creating the data directory %s"
  977. ER_RPL_BINLOG_STARTING_DUMP
  978. eng "Start binlog_dump to master_thread_id(%u) slave_server(%u), pos(%s, %llu)"
  979. ER_RPL_BINLOG_MASTER_SENDS_HEARTBEAT
  980. eng "master sends heartbeat message"
  981. ER_RPL_BINLOG_SKIPPING_REMAINING_HEARTBEAT_INFO
  982. eng "the rest of heartbeat info skipped ..."
  983. ER_RPL_BINLOG_MASTER_USES_CHECKSUM_AND_SLAVE_CANT
  984. eng "Master is configured to log replication events with checksum, but will not send such events to slaves that cannot process them"
  985. OBSOLETE_ER_NDB_QUERY_FAILED
  986. eng "NDB: Query '%s' failed, error: %d: %s"
  987. ER_KILLING_THREAD
  988. eng "Killing thread %lu"
  989. ER_DETACHING_SESSION_LEFT_BY_PLUGIN
  990. eng "Plugin %s is deinitializing a thread but left a session attached. Detaching it forcefully."
  991. ER_CANT_DETACH_SESSION_LEFT_BY_PLUGIN
  992. eng "Failed to detach the session."
  993. ER_DETACHED_SESSIONS_LEFT_BY_PLUGIN
  994. eng "Closed forcefully %u session%s left opened by plugin %s"
  995. ER_FAILED_TO_DECREMENT_NUMBER_OF_THREADS
  996. eng "Failed to decrement the number of threads"
  997. ER_PLUGIN_DID_NOT_DEINITIALIZE_THREADS
  998. eng "Plugin %s did not deinitialize %u threads"
  999. ER_KILLED_THREADS_OF_PLUGIN
  1000. eng "Killed %u threads of plugin %s"
  1001. OBSOLETE_ER_NDB_SLAVE_MAX_REPLICATED_EPOCH_UNKNOWN
  1002. eng "NDB Slave : Could not determine maximum replicated epoch from %s.%s at Slave start, error %u %s"
  1003. OBSOLETE_ER_NDB_SLAVE_MAX_REPLICATED_EPOCH_SET_TO
  1004. eng "NDB Slave : MaxReplicatedEpoch set to %llu (%u/%u) at Slave start"
  1005. OBSOLETE_ER_NDB_NODE_ID_AND_MANAGEMENT_SERVER_INFO
  1006. eng "NDB: NodeID is %lu, management server '%s:%lu'"
  1007. OBSOLETE_ER_NDB_DISCONNECT_INFO
  1008. eng "tid %u: node[%u] transaction_hint=%u, transaction_no_hint=%u"
  1009. OBSOLETE_ER_NDB_COLUMN_DEFAULTS_DIFFER
  1010. eng "NDB Internal error: Default values differ for column %u, ndb_default: %d"
  1011. OBSOLETE_ER_NDB_COLUMN_SHOULD_NOT_HAVE_NATIVE_DEFAULT
  1012. eng "NDB Internal error: Column %u has native default, but shouldn't. Flags=%u, type=%u"
  1013. OBSOLETE_ER_NDB_FIELD_INFO
  1014. eng "field[ name: '%s', type: %u, real_type: %u, flags: 0x%x, is_null: %d]"
  1015. OBSOLETE_ER_NDB_COLUMN_INFO
  1016. eng "ndbCol[name: '%s', type: %u, column_no: %d, nullable: %d]"
  1017. OBSOLETE_ER_NDB_OOM_IN_FIX_UNIQUE_INDEX_ATTR_ORDER
  1018. eng "fix_unique_index_attr_order: my_malloc(%u) failure"
  1019. OBSOLETE_ER_NDB_SLAVE_MALFORMED_EVENT_RECEIVED_ON_TABLE
  1020. eng "NDB Slave : Malformed event received on table %s cannot parse. Stopping Slave."
  1021. OBSOLETE_ER_NDB_SLAVE_CONFLICT_FUNCTION_REQUIRES_ROLE
  1022. eng "NDB Slave : Conflict function %s defined on table %s requires ndb_slave_conflict_role variable to be set. Stopping slave."
  1023. OBSOLETE_ER_NDB_SLAVE_CONFLICT_TRANSACTION_IDS
  1024. eng "NDB Slave : Transactional conflict detection defined on table %s, but events received without transaction ids. Check --ndb-log-transaction-id setting on upstream Cluster."
  1025. OBSOLETE_ER_NDB_SLAVE_BINLOG_MISSING_INFO_FOR_CONFLICT_DETECTION
  1026. eng "NDB Slave : Binlog event on table %s missing info necessary for conflict detection. Check binlog format options on upstream cluster."
  1027. OBSOLETE_ER_NDB_ERROR_IN_READAUTOINCREMENTVALUE
  1028. eng "Error %lu in readAutoIncrementValue(): %s"
  1029. OBSOLETE_ER_NDB_FOUND_UNCOMMITTED_AUTOCOMMIT
  1030. eng "found uncommitted autocommit+rbwr transaction, commit status: %d"
  1031. OBSOLETE_ER_NDB_SLAVE_TOO_MANY_RETRIES
  1032. eng "Ndb slave retried transaction %u time(s) in vain. Giving up."
  1033. OBSOLETE_ER_NDB_SLAVE_ERROR_IN_UPDATE_CREATE_INFO
  1034. eng "Error %lu in ::update_create_info(): %s"
  1035. OBSOLETE_ER_NDB_SLAVE_CANT_ALLOCATE_TABLE_SHARE
  1036. eng "NDB: allocating table share for %s failed"
  1037. OBSOLETE_ER_NDB_BINLOG_ERROR_INFO_FROM_DA
  1038. eng "NDB Binlog: (%d)%s"
  1039. OBSOLETE_ER_NDB_BINLOG_CREATE_TABLE_EVENT
  1040. eng "NDB Binlog: CREATE TABLE Event: %s"
  1041. OBSOLETE_ER_NDB_BINLOG_FAILED_CREATE_TABLE_EVENT_OPERATIONS
  1042. eng "NDB Binlog: FAILED CREATE TABLE event operations. Event: %s"
  1043. OBSOLETE_ER_NDB_BINLOG_RENAME_EVENT
  1044. eng "NDB Binlog: RENAME Event: %s"
  1045. OBSOLETE_ER_NDB_BINLOG_FAILED_CREATE_DURING_RENAME
  1046. eng "NDB Binlog: FAILED create event operations during RENAME. Event %s"
  1047. OBSOLETE_ER_NDB_UNEXPECTED_RENAME_TYPE
  1048. eng "Unexpected rename case detected, sql_command: %d"
  1049. OBSOLETE_ER_NDB_ERROR_IN_GET_AUTO_INCREMENT
  1050. eng "Error %lu in ::get_auto_increment(): %s"
  1051. OBSOLETE_ER_NDB_CREATING_SHARE_IN_OPEN
  1052. eng "Calling ndbcluster_create_binlog_setup(%s) in ::open"
  1053. OBSOLETE_ER_NDB_TABLE_OPENED_READ_ONLY
  1054. eng "table '%s' opened read only"
  1055. OBSOLETE_ER_NDB_INITIALIZE_GIVEN_CLUSTER_PLUGIN_DISABLED
  1056. eng "NDB: '--initialize' -> ndbcluster plugin disabled"
  1057. OBSOLETE_ER_NDB_BINLOG_FORMAT_CHANGED_FROM_STMT_TO_MIXED
  1058. eng "NDB: Changed global value of binlog_format from STATEMENT to MIXED"
  1059. OBSOLETE_ER_NDB_TRAILING_SHARE_RELEASED_BY_CLOSE_CACHED_TABLES
  1060. eng "NDB_SHARE: trailing share %s, released by close_cached_tables"
  1061. OBSOLETE_ER_NDB_SHARE_ALREADY_EXISTS
  1062. eng "NDB_SHARE: %s already exists use_count=%d. Moving away for safety, but possible memleak."
  1063. OBSOLETE_ER_NDB_HANDLE_TRAILING_SHARE_INFO
  1064. eng "handle_trailing_share: %s use_count: %u"
  1065. OBSOLETE_ER_NDB_CLUSTER_GET_SHARE_INFO
  1066. eng "ndbcluster_get_share: %s use_count: %u"
  1067. OBSOLETE_ER_NDB_CLUSTER_REAL_FREE_SHARE_INFO
  1068. eng "ndbcluster_real_free_share: %s use_count: %u"
  1069. OBSOLETE_ER_NDB_CLUSTER_REAL_FREE_SHARE_DROP_FAILED
  1070. eng "ndbcluster_real_free_share: %s, still open - ignored 'free' (leaked?)"
  1071. OBSOLETE_ER_NDB_CLUSTER_FREE_SHARE_INFO
  1072. eng "ndbcluster_free_share: %s use_count: %u"
  1073. OBSOLETE_ER_NDB_CLUSTER_MARK_SHARE_DROPPED_INFO
  1074. eng "ndbcluster_mark_share_dropped: %s use_count: %u"
  1075. OBSOLETE_ER_NDB_CLUSTER_MARK_SHARE_DROPPED_DESTROYING_SHARE
  1076. eng "ndbcluster_mark_share_dropped: destroys share %s"
  1077. OBSOLETE_ER_NDB_CLUSTER_OOM_THD_NDB
  1078. eng "Could not allocate Thd_ndb object"
  1079. OBSOLETE_ER_NDB_BINLOG_NDB_TABLES_INITIALLY_READ_ONLY
  1080. eng "NDB Binlog: Ndb tables initially read only."
  1081. OBSOLETE_ER_NDB_UTIL_THREAD_OOM
  1082. eng "ndb util thread: malloc failure, query cache not maintained properly"
  1083. OBSOLETE_ER_NDB_ILLEGAL_VALUE_FOR_NDB_RECV_THREAD_CPU_MASK
  1084. eng "Trying to set ndb_recv_thread_cpu_mask to illegal value = %s, ignored"
  1085. OBSOLETE_ER_NDB_TOO_MANY_CPUS_IN_NDB_RECV_THREAD_CPU_MASK
  1086. eng "Trying to set too many CPU's in ndb_recv_thread_cpu_mask, ignored this variable, erroneus value = %s"
  1087. ER_DBUG_CHECK_SHARES_OPEN
  1088. eng "dbug_check_shares open:"
  1089. ER_DBUG_CHECK_SHARES_INFO
  1090. eng " %s.%s: state: %s(%u) use_count: %u"
  1091. ER_DBUG_CHECK_SHARES_DROPPED
  1092. eng "dbug_check_shares dropped:"
  1093. ER_INVALID_OR_OLD_TABLE_OR_DB_NAME
  1094. eng "Invalid (old?) table or database name '%s'"
  1095. ER_TC_RECOVERING_AFTER_CRASH_USING
  1096. eng "Recovering after a crash using %s"
  1097. ER_TC_CANT_AUTO_RECOVER_WITH_TC_HEURISTIC_RECOVER
  1098. eng "Cannot perform automatic crash recovery when --tc-heuristic-recover is used"
  1099. ER_TC_BAD_MAGIC_IN_TC_LOG
  1100. eng "Bad magic header in tc log"
  1101. ER_TC_NEED_N_SE_SUPPORTING_2PC_FOR_RECOVERY
  1102. eng "Recovery failed! You must enable exactly %d storage engines that support two-phase commit protocol"
  1103. ER_TC_RECOVERY_FAILED_THESE_ARE_YOUR_OPTIONS
  1104. eng "Crash recovery failed. Either correct the problem (if it's, for example, out of memory error) and restart, or delete tc log and start mysqld with --tc-heuristic-recover={commit|rollback}"
  1105. ER_TC_HEURISTIC_RECOVERY_MODE
  1106. eng "Heuristic crash recovery mode"
  1107. ER_TC_HEURISTIC_RECOVERY_FAILED
  1108. eng "Heuristic crash recovery failed"
  1109. ER_TC_RESTART_WITHOUT_TC_HEURISTIC_RECOVER
  1110. eng "Please restart mysqld without --tc-heuristic-recover"
  1111. ER_RPL_SLAVE_FAILED_TO_CREATE_OR_RECOVER_INFO_REPOSITORIES
  1112. eng "Failed to create or recover replication info repositories."
  1113. ER_RPL_SLAVE_AUTO_POSITION_IS_1_AND_GTID_MODE_IS_OFF
  1114. eng "Detected misconfiguration: replication channel '%.192s' was configured with AUTO_POSITION = 1, but the server was started with --gtid-mode=off. Either reconfigure replication using CHANGE MASTER TO MASTER_AUTO_POSITION = 0 FOR CHANNEL '%.192s', or change GTID_MODE to some value other than OFF, before starting the slave receiver thread."
  1115. ER_RPL_SLAVE_CANT_START_SLAVE_FOR_CHANNEL
  1116. eng "Slave: Could not start slave for channel '%s'. operation discontinued"
  1117. ER_RPL_SLAVE_CANT_STOP_SLAVE_FOR_CHANNEL
  1118. eng "Slave: Could not stop slave for channel '%s' operation discontinued"
  1119. ER_RPL_RECOVERY_NO_ROTATE_EVENT_FROM_MASTER
  1120. eng "Error during --relay-log-recovery: Could not locate rotate event from the master."
  1121. ER_RPL_RECOVERY_ERROR_READ_RELAY_LOG
  1122. eng "Error during --relay-log-recovery: Error reading events from relay log: %d"
  1123. OBSOLETE_ER_RPL_RECOVERY_ERROR_FREEING_IO_CACHE
  1124. eng "Error during --relay-log-recovery: Error while freeing IO_CACHE object"
  1125. ER_RPL_RECOVERY_SKIPPED_GROUP_REPLICATION_CHANNEL
  1126. eng "Relay log recovery skipped for group replication channel."
  1127. ER_RPL_RECOVERY_ERROR
  1128. eng "Error during --relay-log-recovery: %s"
  1129. ER_RPL_RECOVERY_IO_ERROR_READING_RELAY_LOG_INDEX
  1130. eng "Error during --relay-log-recovery: Could not read relay log index file due to an IO error."
  1131. ER_RPL_RECOVERY_FILE_MASTER_POS_INFO
  1132. eng "Recovery from master pos %ld and file %s%s. Previous relay log pos and relay log file had been set to %lld, %s respectively."
  1133. ER_RPL_RECOVERY_REPLICATE_SAME_SERVER_ID_REQUIRES_POSITION
  1134. eng "Error during --relay-log-recovery: replicate_same_server_id is in use and sql thread's positions are not initialized, hence relay log recovery cannot happen."
  1135. ER_RPL_MTS_RECOVERY_STARTING_COORDINATOR
  1136. eng "MTS recovery: starting coordinator thread to fill MTS gaps."
  1137. ER_RPL_MTS_RECOVERY_FAILED_TO_START_COORDINATOR
  1138. eng "MTS recovery: failed to start the coordinator thread. Check the error log for additional details."
  1139. ER_RPL_MTS_AUTOMATIC_RECOVERY_FAILED
  1140. eng "MTS recovery: automatic recovery failed. Either the slave server had stopped due to an error during an earlier session or relay logs are corrupted.Fix the cause of the slave side error and restart the slave server or consider using RESET SLAVE."
  1141. ER_RPL_MTS_RECOVERY_CANT_OPEN_RELAY_LOG
  1142. eng "Failed to open the relay log '%s' (relay_log_pos %s)."
  1143. ER_RPL_MTS_RECOVERY_SUCCESSFUL
  1144. eng "MTS recovery: completed successfully."
  1145. ER_RPL_SERVER_ID_MISSING
  1146. eng "Server id not set, will not start slave%s"
  1147. ER_RPL_CANT_CREATE_SLAVE_THREAD
  1148. eng "Can't create slave thread%s."
  1149. ER_RPL_SLAVE_IO_THREAD_WAS_KILLED
  1150. eng "The slave IO thread%s was killed while executing initialization query '%s'"
  1151. ER_RPL_SLAVE_MASTER_UUID_HAS_CHANGED
  1152. eng "The master's UUID has changed, although this should not happen unless you have changed it manually. The old UUID was %s."
  1153. ER_RPL_SLAVE_USES_CHECKSUM_AND_MASTER_PRE_50
  1154. eng "Found a master with MySQL server version older than 5.0. With checksums enabled on the slave, replication might not work correctly. To ensure correct replication, restart the slave server with --replica_sql_verify_checksum=0."
  1155. ER_RPL_SLAVE_SECONDS_BEHIND_MASTER_DUBIOUS
  1156. eng "\"SELECT UNIX_TIMESTAMP()\" failed on master, do not trust column Seconds_Behind_Master of SHOW SLAVE STATUS. Error: %s (%d)"
  1157. ER_RPL_SLAVE_CANT_FLUSH_MASTER_INFO_FILE
  1158. eng "Failed to flush master info file."
  1159. ER_RPL_SLAVE_REPORT_HOST_TOO_LONG
  1160. eng "The length of report_host is %zu. It is larger than the max length(%d), so this slave cannot be registered to the master%s."
  1161. ER_RPL_SLAVE_REPORT_USER_TOO_LONG
  1162. eng "The length of report_user is %zu. It is larger than the max length(%d), so this slave cannot be registered to the master%s."
  1163. ER_RPL_SLAVE_REPORT_PASSWORD_TOO_LONG
  1164. eng "The length of report_password is %zu. It is larger than the max length(%d), so this slave cannot be registered to the master%s."
  1165. ER_RPL_SLAVE_ERROR_RETRYING
  1166. eng "Error on %s: %d %s, will retry in %d secs"
  1167. ER_RPL_SLAVE_ERROR_READING_FROM_SERVER
  1168. eng "Error reading packet from server%s: %s (server_errno=%d)"
  1169. ER_RPL_SLAVE_DUMP_THREAD_KILLED_BY_MASTER
  1170. eng "Slave%s: received end packet from server due to dump thread being killed on master. Dump threads are killed for example during master shutdown, explicitly by a user, or when the master receives a binlog send request from a duplicate server UUID <%s> : Error %s"
  1171. ER_RPL_MTS_STATISTICS
  1172. eng "Multi-threaded slave statistics%s: seconds elapsed = %lu; events assigned = %llu; worker queues filled over overrun level = %lu; waited due a Worker queue full = %lu; waited due the total size = %lu; waited at clock conflicts = %llu waited (count) when Workers occupied = %lu waited when Workers occupied = %llu"
  1173. ER_RPL_MTS_RECOVERY_COMPLETE
  1174. eng "Slave%s: MTS Recovery has completed at relay log %s, position %llu master log %s, position %llu."
  1175. ER_RPL_SLAVE_CANT_INIT_RELAY_LOG_POSITION
  1176. eng "Error initializing relay log position%s: %s"
  1177. ER_RPL_SLAVE_CONNECTED_TO_MASTER_REPLICATION_STARTED
  1178. eng "Slave I/O thread%s: connected to master '%s@%s:%d',replication started in log '%s' at position %s"
  1179. ER_RPL_SLAVE_IO_THREAD_KILLED
  1180. eng "Slave I/O thread%s killed while connecting to master"
  1181. ER_RPL_SLAVE_IO_THREAD_CANT_REGISTER_ON_MASTER
  1182. eng "Slave I/O thread couldn't register on master"
  1183. ER_RPL_SLAVE_FORCING_TO_RECONNECT_IO_THREAD
  1184. eng "Forcing to reconnect slave I/O thread%s"
  1185. ER_RPL_SLAVE_ERROR_REQUESTING_BINLOG_DUMP
  1186. eng "Failed on request_dump()%s"
  1187. ER_RPL_LOG_ENTRY_EXCEEDS_REPLICA_MAX_ALLOWED_PACKET
  1188. eng "Log entry on master is longer than replica_max_allowed_packet (%lu) on slave. If the entry is correct, restart the server with a higher value of replica_max_allowed_packet"
  1189. ER_RPL_SLAVE_STOPPING_AS_MASTER_OOM
  1190. eng "Stopping slave I/O thread due to out-of-memory error from master"
  1191. ER_RPL_SLAVE_IO_THREAD_ABORTED_WAITING_FOR_RELAY_LOG_SPACE
  1192. eng "Slave I/O thread aborted while waiting for relay log space"
  1193. ER_RPL_SLAVE_IO_THREAD_EXITING
  1194. eng "Slave I/O thread exiting%s, read up to log '%s', position %s"
  1195. ER_RPL_SLAVE_CANT_INITIALIZE_SLAVE_WORKER
  1196. eng "Failed during slave worker initialization%s"
  1197. ER_RPL_MTS_GROUP_RECOVERY_RELAY_LOG_INFO_FOR_WORKER
  1198. eng "Slave: MTS group recovery relay log info based on Worker-Id %lu, group_relay_log_name %s, group_relay_log_pos %llu group_master_log_name %s, group_master_log_pos %llu"
  1199. ER_RPL_ERROR_LOOKING_FOR_LOG
  1200. eng "Error looking for %s."
  1201. ER_RPL_MTS_GROUP_RECOVERY_RELAY_LOG_INFO
  1202. eng "Slave: MTS group recovery relay log info group_master_log_name %s, event_master_log_pos %llu."
  1203. ER_RPL_CANT_FIND_FOLLOWUP_FILE
  1204. eng "Error looking for file after %s."
  1205. ER_RPL_MTS_CHECKPOINT_PERIOD_DIFFERS_FROM_CNT
  1206. eng "This an error cnt != mta_checkpoint_period"
  1207. ER_RPL_SLAVE_WORKER_THREAD_CREATION_FAILED
  1208. eng "Failed during slave worker thread creation%s"
  1209. ER_RPL_SLAVE_WORKER_THREAD_CREATION_FAILED_WITH_ERRNO
  1210. eng "Failed during slave worker thread creation%s (errno= %d)"
  1211. ER_RPL_SLAVE_FAILED_TO_INIT_PARTITIONS_HASH
  1212. eng "Failed to init partitions hash"
  1213. OBSOLETE_ER_RPL_SLAVE_NDB_TABLES_NOT_AVAILABLE
  1214. eng "Slave SQL thread : NDB : Tables not available after %lu seconds. Consider increasing --ndb-wait-setup value"
  1215. ER_RPL_SLAVE_SQL_THREAD_STARTING
  1216. eng "Slave SQL thread%s initialized, starting replication in log '%s' at position %s, relay log '%s' position: %s"
  1217. ER_RPL_SLAVE_SKIP_COUNTER_EXECUTED
  1218. eng "'SQL_REPLICA_SKIP_COUNTER=%ld' executed at relay_log_file='%s', relay_log_pos='%ld', master_log_name='%s', master_log_pos='%ld' and new position at relay_log_file='%s', relay_log_pos='%ld', master_log_name='%s', master_log_pos='%ld' "
  1219. ER_RPL_SLAVE_ADDITIONAL_ERROR_INFO_FROM_DA
  1220. eng "Slave (additional info): %s Error_code: MY-%06d"
  1221. ER_RPL_SLAVE_ERROR_INFO_FROM_DA
  1222. eng "Slave: %s Error_code: MY-%06d"
  1223. ER_RPL_SLAVE_ERROR_LOADING_USER_DEFINED_LIBRARY
  1224. eng "Error loading user-defined library, slave SQL thread aborted. Install the missing library, and restart the slave SQL thread with \"SLAVE START\". We stopped at log '%s' position %s"
  1225. ER_RPL_SLAVE_ERROR_RUNNING_QUERY
  1226. eng "Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with \"SLAVE START\". We stopped at log '%s' position %s"
  1227. ER_RPL_SLAVE_SQL_THREAD_EXITING
  1228. eng "Slave SQL thread%s exiting, replication stopped in log '%s' at position %s"
  1229. ER_RPL_SLAVE_READ_INVALID_EVENT_FROM_MASTER
  1230. eng "Read invalid event from master: '%s', master could be corrupt but a more likely cause of this is a bug"
  1231. ER_RPL_SLAVE_QUEUE_EVENT_FAILED_INVALID_CONFIGURATION
  1232. eng "The queue event failed for channel '%s' as its configuration is invalid."
  1233. ER_RPL_SLAVE_IO_THREAD_DETECTED_UNEXPECTED_EVENT_SEQUENCE
  1234. eng "An unexpected event sequence was detected by the IO thread while queuing the event received from master '%s' binary log file, at position %llu."
  1235. ER_RPL_SLAVE_CANT_USE_CHARSET
  1236. eng "'%s' can not be used as client character set. '%s' will be used as default client character set while connecting to master."
  1237. ER_RPL_SLAVE_CONNECTED_TO_MASTER_REPLICATION_RESUMED
  1238. eng "Slave%s: connected to master '%s@%s:%d',replication resumed in log '%s' at position %s"
  1239. ER_RPL_SLAVE_NEXT_LOG_IS_ACTIVE
  1240. eng "next log '%s' is active"
  1241. ER_RPL_SLAVE_NEXT_LOG_IS_INACTIVE
  1242. eng "next log '%s' is not active"
  1243. ER_RPL_SLAVE_SQL_THREAD_IO_ERROR_READING_EVENT
  1244. eng "Slave SQL thread%s: I/O error reading event (errno: %d cur_log->error: %d)"
  1245. ER_RPL_SLAVE_ERROR_READING_RELAY_LOG_EVENTS
  1246. eng "Error reading relay log event%s: %s"
  1247. ER_SLAVE_CHANGE_MASTER_TO_EXECUTED
  1248. eng "'CHANGE MASTER TO%s executed'. Previous state master_host='%s', master_port= %u, master_log_file='%s', master_log_pos= %ld, master_bind='%s'. New state master_host='%s', master_port= %u, master_log_file='%s', master_log_pos= %ld, master_bind='%s'."
  1249. ER_RPL_SLAVE_NEW_MASTER_INFO_NEEDS_REPOS_TYPE_OTHER_THAN_FILE
  1250. eng "Slave: Cannot create new master info structure when repositories are of type FILE. Convert slave repositories to TABLE to replicate from multiple sources."
  1251. ER_RPL_FAILED_TO_STAT_LOG_IN_INDEX
  1252. eng "log %s listed in the index, but failed to stat."
  1253. ER_RPL_LOG_NOT_FOUND_WHILE_COUNTING_RELAY_LOG_SPACE
  1254. eng "Could not find first log while counting relay log space."
  1255. ER_SLAVE_CANT_USE_TEMPDIR
  1256. eng "Unable to use slave's temporary directory '%s'."
  1257. ER_RPL_RELAY_LOG_NEEDS_FILE_NOT_DIRECTORY
  1258. eng "Path '%s' is a directory name, please specify a file name for --relay-log option."
  1259. ER_RPL_RELAY_LOG_INDEX_NEEDS_FILE_NOT_DIRECTORY
  1260. eng "Path '%s' is a directory name, please specify a file name for --relay-log-index option."
  1261. ER_RPL_PLEASE_USE_OPTION_RELAY_LOG
  1262. eng "Neither --relay-log nor --relay-log-index were used; so replication may break when this MySQL server acts as a slave and has his hostname changed!! Please use '--relay-log=%s' to avoid this problem."
  1263. ER_RPL_OPEN_INDEX_FILE_FAILED
  1264. eng "Failed in open_index_file() called from Relay_log_info::rli_init_info()."
  1265. ER_RPL_CANT_INITIALIZE_GTID_SETS_IN_RLI_INIT_INFO
  1266. eng "Failed in init_gtid_sets() called from Relay_log_info::rli_init_info()."
  1267. ER_RPL_CANT_OPEN_LOG_IN_RLI_INIT_INFO
  1268. eng "Failed in open_log() called from Relay_log_info::rli_init_info()."
  1269. ER_RPL_ERROR_WRITING_RELAY_LOG_CONFIGURATION
  1270. eng "Error writing relay log configuration."
  1271. OBSOLETE_ER_NDB_OOM_GET_NDB_BLOBS_VALUE
  1272. eng "get_ndb_blobs_value: my_malloc(%u) failed"
  1273. OBSOLETE_ER_NDB_THREAD_TIMED_OUT
  1274. eng "NDB: Thread id %u timed out (30s) waiting for epoch %u/%u to be handled. Progress : %u/%u -> %u/%u."
  1275. OBSOLETE_ER_NDB_TABLE_IS_NOT_DISTRIBUTED
  1276. eng "NDB: Inconsistency detected in distributed privilege tables. Table '%s.%s' is not distributed"
  1277. OBSOLETE_ER_NDB_CREATING_TABLE
  1278. eng "NDB: Creating %s.%s"
  1279. OBSOLETE_ER_NDB_FLUSHING_TABLE_INFO
  1280. eng "NDB: Flushing %s.%s"
  1281. OBSOLETE_ER_NDB_CLEANING_STRAY_TABLES
  1282. eng "NDB: Cleaning stray tables from database '%s'"
  1283. OBSOLETE_ER_NDB_DISCOVERED_MISSING_DB
  1284. eng "NDB: Discovered missing database '%s'"
  1285. OBSOLETE_ER_NDB_DISCOVERED_REMAINING_DB
  1286. eng "NDB: Discovered remaining database '%s'"
  1287. OBSOLETE_ER_NDB_CLUSTER_FIND_ALL_DBS_RETRY
  1288. eng "NDB: ndbcluster_find_all_databases retry: %u - %s"
  1289. OBSOLETE_ER_NDB_CLUSTER_FIND_ALL_DBS_FAIL
  1290. eng "NDB: ndbcluster_find_all_databases fail: %u - %s"
  1291. OBSOLETE_ER_NDB_SKIPPING_SETUP_TABLE
  1292. eng "NDB: skipping setup table %s.%s, in state %d"
  1293. OBSOLETE_ER_NDB_FAILED_TO_SET_UP_TABLE
  1294. eng "NDB: failed to setup table %s.%s, error: %d, %s"
  1295. OBSOLETE_ER_NDB_MISSING_FRM_DISCOVERING
  1296. eng "NDB: missing frm for %s.%s, discovering..."
  1297. OBSOLETE_ER_NDB_MISMATCH_IN_FRM_DISCOVERING
  1298. eng "NDB: mismatch in frm for %s.%s, discovering..."
  1299. OBSOLETE_ER_NDB_BINLOG_CLEANING_UP_SETUP_LEFTOVERS
  1300. eng "ndb_binlog_setup: Clean up leftovers"
  1301. OBSOLETE_ER_NDB_WAITING_INFO
  1302. eng "NDB %s: waiting max %u sec for %s %s. epochs: (%u/%u,%u/%u,%u/%u) injector proc_info: %s"
  1303. OBSOLETE_ER_NDB_WAITING_INFO_WITH_MAP
  1304. eng "NDB %s: waiting max %u sec for %s %s. epochs: (%u/%u,%u/%u,%u/%u) injector proc_info: %s map: %x%08x"
  1305. OBSOLETE_ER_NDB_TIMEOUT_WHILE_DISTRIBUTING
  1306. eng "NDB %s: distributing %s timed out. Ignoring..."
  1307. OBSOLETE_ER_NDB_NOT_WAITING_FOR_DISTRIBUTING
  1308. eng "NDB %s: not waiting for distributing %s"
  1309. OBSOLETE_ER_NDB_DISTRIBUTED_INFO
  1310. eng "NDB: distributed %s.%s(%u/%u) type: %s(%u) query: \'%s\' to %x%08x"
  1311. OBSOLETE_ER_NDB_DISTRIBUTION_COMPLETE
  1312. eng "NDB: distribution of %s.%s(%u/%u) type: %s(%u) query: \'%s\' - complete!"
  1313. OBSOLETE_ER_NDB_SCHEMA_DISTRIBUTION_FAILED
  1314. eng "NDB Schema dist: Data node: %d failed, subscriber bitmask %x%08x"
  1315. OBSOLETE_ER_NDB_SCHEMA_DISTRIBUTION_REPORTS_SUBSCRIBE
  1316. eng "NDB Schema dist: Data node: %d reports subscribe from node %d, subscriber bitmask %x%08x"
  1317. OBSOLETE_ER_NDB_SCHEMA_DISTRIBUTION_REPORTS_UNSUBSCRIBE
  1318. eng "NDB Schema dist: Data node: %d reports unsubscribe from node %d, subscriber bitmask %x%08x"
  1319. OBSOLETE_ER_NDB_BINLOG_CANT_DISCOVER_TABLE_FROM_SCHEMA_EVENT
  1320. eng "NDB Binlog: Could not discover table '%s.%s' from binlog schema event '%s' from node %d. my_errno: %d"
  1321. OBSOLETE_ER_NDB_BINLOG_SIGNALLING_UNKNOWN_VALUE
  1322. eng "NDB: unknown value for binlog signalling 0x%X, %s not logged"
  1323. OBSOLETE_ER_NDB_BINLOG_REPLY_TO
  1324. eng "NDB: reply to %s.%s(%u/%u) from %s to %x%08x"
  1325. OBSOLETE_ER_NDB_BINLOG_CANT_RELEASE_SLOCK
  1326. eng "NDB: Could not release slock on '%s.%s', Error code: %d Message: %s"
  1327. OBSOLETE_ER_NDB_CANT_FIND_TABLE
  1328. eng "NDB schema: Could not find table '%s.%s' in NDB"
  1329. OBSOLETE_ER_NDB_DISCARDING_EVENT_NO_OBJ
  1330. eng "NDB: Discarding event...no obj: %s (%u/%u)"
  1331. OBSOLETE_ER_NDB_DISCARDING_EVENT_ID_VERSION_MISMATCH
  1332. eng "NDB: Discarding event...key: %s non matching id/version [%u/%u] != [%u/%u]"
  1333. OBSOLETE_ER_NDB_CLEAR_SLOCK_INFO
  1334. eng "NDB: CLEAR_SLOCK key: %s(%u/%u) %x%08x, from %s to %x%08x"
  1335. OBSOLETE_ER_NDB_BINLOG_SKIPPING_LOCAL_TABLE
  1336. eng "NDB Binlog: Skipping locally defined table '%s.%s' from binlog schema event '%s' from node %d."
  1337. OBSOLETE_ER_NDB_BINLOG_ONLINE_ALTER_RENAME
  1338. eng "NDB Binlog: handling online alter/rename"
  1339. OBSOLETE_ER_NDB_BINLOG_CANT_REOPEN_SHADOW_TABLE
  1340. eng "NDB Binlog: Failed to re-open shadow table %s.%s"
  1341. OBSOLETE_ER_NDB_BINLOG_ONLINE_ALTER_RENAME_COMPLETE
  1342. eng "NDB Binlog: handling online alter/rename done"
  1343. OBSOLETE_ER_NDB_BINLOG_SKIPPING_DROP_OF_LOCAL_TABLE
  1344. eng "NDB Binlog: Skipping drop of locally defined table '%s.%s' from binlog schema event '%s' from node %d. "
  1345. OBSOLETE_ER_NDB_BINLOG_SKIPPING_RENAME_OF_LOCAL_TABLE
  1346. eng "NDB Binlog: Skipping renaming locally defined table '%s.%s' from binlog schema event '%s' from node %d. "
  1347. OBSOLETE_ER_NDB_BINLOG_SKIPPING_DROP_OF_TABLES
  1348. eng "NDB Binlog: Skipping drop database '%s' since it contained local tables binlog schema event '%s' from node %d. "
  1349. OBSOLETE_ER_NDB_BINLOG_GOT_DIST_PRIV_EVENT_FLUSHING_PRIVILEGES
  1350. eng "Got dist_priv event: %s, flushing privileges"
  1351. OBSOLETE_ER_NDB_BINLOG_GOT_SCHEMA_EVENT
  1352. eng "NDB: got schema event on %s.%s(%u/%u) query: '%s' type: %s(%d) node: %u slock: %x%08x"
  1353. OBSOLETE_ER_NDB_BINLOG_SKIPPING_OLD_SCHEMA_OPERATION
  1354. eng "NDB schema: Skipping old schema operation(RENAME_TABLE_NEW) on %s.%s"
  1355. OBSOLETE_ER_NDB_CLUSTER_FAILURE
  1356. eng "NDB Schema dist: cluster failure at epoch %u/%u."
  1357. OBSOLETE_ER_NDB_TABLES_INITIALLY_READ_ONLY_ON_RECONNECT
  1358. eng "NDB Binlog: ndb tables initially read only on reconnect."
  1359. OBSOLETE_ER_NDB_IGNORING_UNKNOWN_EVENT
  1360. eng "NDB Schema dist: unknown event %u, ignoring..."
  1361. OBSOLETE_ER_NDB_BINLOG_OPENING_INDEX
  1362. eng "NDB Binlog: Opening ndb_binlog_index: %d, '%s'"
  1363. OBSOLETE_ER_NDB_BINLOG_CANT_LOCK_NDB_BINLOG_INDEX
  1364. eng "NDB Binlog: Unable to lock table ndb_binlog_index"
  1365. OBSOLETE_ER_NDB_BINLOG_INJECTING_RANDOM_WRITE_FAILURE
  1366. eng "NDB Binlog: Injecting random write failure"
  1367. OBSOLETE_ER_NDB_BINLOG_CANT_WRITE_TO_NDB_BINLOG_INDEX
  1368. eng "NDB Binlog: Failed writing to ndb_binlog_index for epoch %u/%u orig_server_id %u orig_epoch %u/%u with error %d."
  1369. OBSOLETE_ER_NDB_BINLOG_WRITING_TO_NDB_BINLOG_INDEX
  1370. eng "NDB Binlog: Writing row (%s) to ndb_binlog_index - %s"
  1371. OBSOLETE_ER_NDB_BINLOG_CANT_COMMIT_TO_NDB_BINLOG_INDEX
  1372. eng "NDB Binlog: Failed committing transaction to ndb_binlog_index with error %d."
  1373. OBSOLETE_ER_NDB_BINLOG_WRITE_INDEX_FAILED_AFTER_KILL
  1374. eng "NDB Binlog: Failed writing to ndb_binlog_index table while retrying after kill during shutdown"
  1375. OBSOLETE_ER_NDB_BINLOG_USING_SERVER_ID_0_SLAVES_WILL_NOT
  1376. eng "NDB: server id set to zero - changes logged to bin log with server id zero will be logged with another server id by slave mysqlds"
  1377. OBSOLETE_ER_NDB_SERVER_ID_RESERVED_OR_TOO_LARGE
  1378. eng "NDB: server id provided is too large to be represented in opt_server_id_bits or is reserved"
  1379. OBSOLETE_ER_NDB_BINLOG_REQUIRES_V2_ROW_EVENTS
  1380. eng "NDB: --ndb-log-transaction-id requires v2 Binlog row events but server is using v1."
  1381. OBSOLETE_ER_NDB_BINLOG_STATUS_FORCING_FULL_USE_WRITE
  1382. eng "NDB: ndb-log-apply-status forcing %s.%s to FULL USE_WRITE"
  1383. OBSOLETE_ER_NDB_BINLOG_GENERIC_MESSAGE
  1384. eng "NDB Binlog: %s"
  1385. OBSOLETE_ER_NDB_CONFLICT_GENERIC_MESSAGE
  1386. eng "%s"
  1387. OBSOLETE_ER_NDB_TRANS_DEPENDENCY_TRACKER_ERROR
  1388. eng "%s"
  1389. OBSOLETE_ER_NDB_CONFLICT_FN_PARSE_ERROR
  1390. eng "NDB Slave: Table %s.%s : Parse error on conflict fn : %s"
  1391. OBSOLETE_ER_NDB_CONFLICT_FN_SETUP_ERROR
  1392. eng "NDB Slave: Table %s.%s : %s"
  1393. OBSOLETE_ER_NDB_BINLOG_FAILED_TO_GET_TABLE
  1394. eng "NDB Binlog: Failed to get table %s from ndb: %s, %d"
  1395. OBSOLETE_ER_NDB_BINLOG_NOT_LOGGING
  1396. eng "NDB Binlog: NOT logging %s"
  1397. OBSOLETE_ER_NDB_BINLOG_CREATE_TABLE_EVENT_FAILED
  1398. eng "NDB Binlog: FAILED CREATE (DISCOVER) TABLE Event: %s"
  1399. OBSOLETE_ER_NDB_BINLOG_CREATE_TABLE_EVENT_INFO
  1400. eng "NDB Binlog: CREATE (DISCOVER) TABLE Event: %s"
  1401. OBSOLETE_ER_NDB_BINLOG_DISCOVER_TABLE_EVENT_INFO
  1402. eng "NDB Binlog: DISCOVER TABLE Event: %s"
  1403. OBSOLETE_ER_NDB_BINLOG_BLOB_REQUIRES_PK
  1404. eng "NDB Binlog: logging of table %s with BLOB attribute and no PK is not supported"
  1405. OBSOLETE_ER_NDB_BINLOG_CANT_CREATE_EVENT_IN_DB
  1406. eng "NDB Binlog: Unable to create event in database. Event: %s Error Code: %d Message: %s"
  1407. OBSOLETE_ER_NDB_BINLOG_CANT_CREATE_EVENT_IN_DB_AND_CANT_DROP
  1408. eng "NDB Binlog: Unable to create event in database. Attempt to correct with drop failed. Event: %s Error Code: %d Message: %s"
  1409. OBSOLETE_ER_NDB_BINLOG_CANT_CREATE_EVENT_IN_DB_DROPPED
  1410. eng "NDB Binlog: Unable to create event in database. Attempt to correct with drop ok, but create failed. Event: %s Error Code: %d Message: %s"
  1411. OBSOLETE_ER_NDB_BINLOG_DISCOVER_REUSING_OLD_EVENT_OPS
  1412. eng "NDB Binlog: discover reusing old ev op"
  1413. OBSOLETE_ER_NDB_BINLOG_CREATING_NDBEVENTOPERATION_FAILED
  1414. eng "NDB Binlog: Creating NdbEventOperation failed for %s"
  1415. OBSOLETE_ER_NDB_BINLOG_CANT_CREATE_BLOB
  1416. eng "NDB Binlog: Creating NdbEventOperation blob field %u handles failed (code=%d) for %s"
  1417. OBSOLETE_ER_NDB_BINLOG_NDBEVENT_EXECUTE_FAILED
  1418. eng "NDB Binlog: ndbevent->execute failed for %s; %d %s"
  1419. OBSOLETE_ER_NDB_CREATE_EVENT_OPS_LOGGING_INFO
  1420. eng "NDB Binlog: logging %s (%s,%s)"
  1421. OBSOLETE_ER_NDB_BINLOG_CANT_DROP_EVENT_FROM_DB
  1422. eng "NDB Binlog: Unable to drop event in database. Event: %s Error Code: %d Message: %s"
  1423. OBSOLETE_ER_NDB_TIMED_OUT_IN_DROP_TABLE
  1424. eng "NDB %s: %s timed out. Ignoring..."
  1425. OBSOLETE_ER_NDB_BINLOG_UNHANDLED_ERROR_FOR_TABLE
  1426. eng "NDB Binlog: unhandled error %d for table %s"
  1427. OBSOLETE_ER_NDB_BINLOG_CLUSTER_FAILURE
  1428. eng "NDB Binlog: cluster failure for %s at epoch %u/%u."
  1429. OBSOLETE_ER_NDB_BINLOG_UNKNOWN_NON_DATA_EVENT
  1430. eng "NDB Binlog: unknown non data event %d for %s. Ignoring..."
  1431. OBSOLETE_ER_NDB_BINLOG_INJECTOR_DISCARDING_ROW_EVENT_METADATA
  1432. eng "NDB: Binlog Injector discarding row event meta data as server is using v1 row events. (%u %x)"
  1433. OBSOLETE_ER_NDB_REMAINING_OPEN_TABLES
  1434. eng "remove_all_event_operations: Remaining open tables: "
  1435. OBSOLETE_ER_NDB_REMAINING_OPEN_TABLE_INFO
  1436. eng " %s.%s, use_count: %u"
  1437. OBSOLETE_ER_NDB_COULD_NOT_GET_APPLY_STATUS_SHARE
  1438. eng "NDB: Could not get apply status share"
  1439. OBSOLETE_ER_NDB_BINLOG_SERVER_SHUTDOWN_DURING_NDB_CLUSTER_START
  1440. eng "NDB Binlog: Server shutdown detected while waiting for ndbcluster to start..."
  1441. OBSOLETE_ER_NDB_BINLOG_CLUSTER_RESTARTED_RESET_MASTER_SUGGESTED
  1442. eng "NDB Binlog: cluster has been restarted --initial or with older filesystem. ndb_latest_handled_binlog_epoch: %u/%u, while current epoch: %u/%u. RESET MASTER should be issued. Resetting ndb_latest_handled_binlog_epoch."
  1443. OBSOLETE_ER_NDB_BINLOG_CLUSTER_HAS_RECONNECTED
  1444. eng "NDB Binlog: cluster has reconnected. Changes to the database that occurred while disconnected will not be in the binlog"
  1445. OBSOLETE_ER_NDB_BINLOG_STARTING_LOG_AT_EPOCH
  1446. eng "NDB Binlog: starting log at epoch %u/%u"
  1447. OBSOLETE_ER_NDB_BINLOG_NDB_TABLES_WRITABLE
  1448. eng "NDB Binlog: ndb tables writable"
  1449. OBSOLETE_ER_NDB_BINLOG_SHUTDOWN_DETECTED
  1450. eng "NDB Binlog: Server shutdown detected..."
  1451. OBSOLETE_ER_NDB_BINLOG_LOST_SCHEMA_CONNECTION_WAITING
  1452. eng "NDB Binlog: Just lost schema connection, hanging around"
  1453. OBSOLETE_ER_NDB_BINLOG_LOST_SCHEMA_CONNECTION_CONTINUING
  1454. eng "NDB Binlog: ...and on our way"
  1455. OBSOLETE_ER_NDB_BINLOG_ERROR_HANDLING_SCHEMA_EVENT
  1456. eng "NDB: error %lu (%s) on handling binlog schema event"
  1457. OBSOLETE_ER_NDB_BINLOG_CANT_INJECT_APPLY_STATUS_WRITE_ROW
  1458. eng "NDB Binlog: Failed to inject apply status write row"
  1459. OBSOLETE_ER_NDB_BINLOG_ERROR_DURING_GCI_ROLLBACK
  1460. eng "NDB Binlog: Error during ROLLBACK of GCI %u/%u. Error: %d"
  1461. OBSOLETE_ER_NDB_BINLOG_ERROR_DURING_GCI_COMMIT
  1462. eng "NDB Binlog: Error during COMMIT of GCI. Error: %d"
  1463. OBSOLETE_ER_NDB_BINLOG_LATEST_TRX_IN_EPOCH_NOT_IN_BINLOG
  1464. eng "NDB Binlog: latest transaction in epoch %u/%u not in binlog as latest handled epoch is %u/%u"
  1465. OBSOLETE_ER_NDB_BINLOG_RELEASING_EXTRA_SHARE_REFERENCES
  1466. eng "NDB Binlog: Release extra share references"
  1467. OBSOLETE_ER_NDB_BINLOG_REMAINING_OPEN_TABLES
  1468. eng "NDB Binlog: remaining open tables: "
  1469. OBSOLETE_ER_NDB_BINLOG_REMAINING_OPEN_TABLE_INFO
  1470. eng " %s.%s state: %u use_count: %u"
  1471. ER_TREE_CORRUPT_PARENT_SHOULD_POINT_AT_PARENT
  1472. eng "Wrong tree: Parent doesn't point at parent"
  1473. ER_TREE_CORRUPT_ROOT_SHOULD_BE_BLACK
  1474. eng "Wrong tree: Root should be black"
  1475. ER_TREE_CORRUPT_2_CONSECUTIVE_REDS
  1476. eng "Wrong tree: Found two red in a row"
  1477. ER_TREE_CORRUPT_RIGHT_IS_LEFT
  1478. eng "Wrong tree: Found right == left"
  1479. ER_TREE_CORRUPT_INCORRECT_BLACK_COUNT
  1480. eng "Wrong tree: Incorrect black-count: %d - %d"
  1481. ER_WRONG_COUNT_FOR_ORIGIN
  1482. eng "Use_count: Wrong count %lu for origin %p"
  1483. ER_WRONG_COUNT_FOR_KEY
  1484. eng "Use_count: Wrong count for key at %p, %lu should be %lu"
  1485. ER_WRONG_COUNT_OF_ELEMENTS
  1486. eng "Wrong number of elements: %u (should be %u) for tree at %p"
  1487. ER_RPL_ERROR_READING_SLAVE_WORKER_CONFIGURATION
  1488. eng "Error reading slave worker configuration"
  1489. OBSOLETE_ER_RPL_ERROR_WRITING_SLAVE_WORKER_CONFIGURATION
  1490. eng "Error writing slave worker configuration"
  1491. ER_RPL_FAILED_TO_OPEN_RELAY_LOG
  1492. eng "Failed to open relay log %s, error: %s"
  1493. ER_RPL_WORKER_CANT_READ_RELAY_LOG
  1494. eng "Error when worker read relay log events,relay log name %s, position %llu"
  1495. ER_RPL_WORKER_CANT_FIND_NEXT_RELAY_LOG
  1496. eng "Failed to find next relay log when retrying the transaction, current relay log is %s"
  1497. ER_RPL_MTS_SLAVE_COORDINATOR_HAS_WAITED
  1498. eng "Multi-threaded slave: Coordinator has waited %lu times hitting replica_pending_jobs_size_max; current event size = %zu."
  1499. ER_BINLOG_FAILED_TO_WRITE_DROP_FOR_TEMP_TABLES
  1500. eng "Failed to write the DROP statement for temporary tables to binary log"
  1501. ER_BINLOG_OOM_WRITING_DELETE_WHILE_OPENING_HEAP_TABLE
  1502. eng "When opening HEAP table, could not allocate memory to write 'DELETE FROM `%s`.`%s`' to the binary log"
  1503. ER_FAILED_TO_REPAIR_TABLE
  1504. eng "Couldn't repair table: %s.%s"
  1505. ER_FAILED_TO_REMOVE_TEMP_TABLE
  1506. eng "Could not remove temporary table: '%s', error: %d"
  1507. ER_SYSTEM_TABLE_NOT_TRANSACTIONAL
  1508. eng "System table '%.*s' is expected to be transactional."
  1509. ER_RPL_ERROR_WRITING_MASTER_CONFIGURATION
  1510. eng "Error writing master configuration."
  1511. ER_RPL_ERROR_READING_MASTER_CONFIGURATION
  1512. eng "Error reading master configuration."
  1513. ER_RPL_SSL_INFO_IN_MASTER_INFO_IGNORED
  1514. eng "SSL information in the master info file are ignored because this MySQL slave was compiled without SSL support."
  1515. ER_PLUGIN_FAILED_DEINITIALIZATION
  1516. eng "Plugin '%s' of type %s failed deinitialization"
  1517. ER_PLUGIN_HAS_NONZERO_REFCOUNT_AFTER_DEINITIALIZATION
  1518. eng "Plugin '%s' has ref_count=%d after deinitialization."
  1519. ER_PLUGIN_SHUTTING_DOWN_PLUGIN
  1520. eng "Shutting down plugin '%s'"
  1521. ER_PLUGIN_REGISTRATION_FAILED
  1522. eng "Plugin '%s' registration as a %s failed."
  1523. ER_PLUGIN_CANT_OPEN_PLUGIN_TABLE
  1524. eng "Could not open the mysql.plugin table. Please perform the MySQL upgrade procedure."
  1525. ER_PLUGIN_CANT_LOAD
  1526. eng "Couldn't load plugin named '%s' with soname '%s'."
  1527. ER_PLUGIN_LOAD_PARAMETER_TOO_LONG
  1528. eng "plugin-load parameter too long"
  1529. ER_PLUGIN_FORCING_SHUTDOWN
  1530. eng "Plugin '%s' will be forced to shutdown"
  1531. ER_PLUGIN_HAS_NONZERO_REFCOUNT_AFTER_SHUTDOWN
  1532. eng "Plugin '%s' has ref_count=%d after shutdown."
  1533. ER_PLUGIN_UNKNOWN_VARIABLE_TYPE
  1534. eng "Unknown variable type code 0x%x in plugin '%s'."
  1535. ER_PLUGIN_VARIABLE_SET_READ_ONLY
  1536. eng "Server variable %s of plugin %s was forced to be read-only: string variable without update_func and PLUGIN_VAR_MEMALLOC flag"
  1537. ER_PLUGIN_VARIABLE_MISSING_NAME
  1538. eng "Missing variable name in plugin '%s'."
  1539. ER_PLUGIN_VARIABLE_NOT_ALLOCATED_THREAD_LOCAL
  1540. eng "Thread local variable '%s' not allocated in plugin '%s'."
  1541. ER_PLUGIN_OOM
  1542. eng "Out of memory for plugin '%s'."
  1543. ER_PLUGIN_BAD_OPTIONS
  1544. eng "Bad options for plugin '%s'."
  1545. ER_PLUGIN_PARSING_OPTIONS_FAILED
  1546. eng "Parsing options for plugin '%s' failed."
  1547. ER_PLUGIN_DISABLED
  1548. eng "Plugin '%s' is disabled."
  1549. ER_PLUGIN_HAS_CONFLICTING_SYSTEM_VARIABLES
  1550. eng "Plugin '%s' has conflicting system variables"
  1551. ER_PLUGIN_CANT_SET_PERSISTENT_OPTIONS
  1552. eng "Setting persistent options for plugin '%s' failed."
  1553. ER_MY_NET_WRITE_FAILED_FALLING_BACK_ON_STDERR
  1554. eng "Failed on my_net_write, writing to stderr instead: %s"
  1555. ER_RETRYING_REPAIR_WITHOUT_QUICK
  1556. eng "Retrying repair of: '%s' without quick"
  1557. ER_RETRYING_REPAIR_WITH_KEYCACHE
  1558. eng "Retrying repair of: '%s' with keycache"
  1559. ER_FOUND_ROWS_WHILE_REPAIRING
  1560. eng "Found %s of %s rows when repairing '%s'"
  1561. ER_ERROR_DURING_OPTIMIZE_TABLE
  1562. eng "Warning: Optimize table got errno %d on %s.%s, retrying"
  1563. ER_ERROR_ENABLING_KEYS
  1564. eng "Warning: Enabling keys got errno %d on %s.%s, retrying"
  1565. ER_CHECKING_TABLE
  1566. eng "Checking table: '%s'"
  1567. ER_RECOVERING_TABLE
  1568. eng "Recovering table: '%s'"
  1569. ER_CANT_CREATE_TABLE_SHARE_FROM_FRM
  1570. eng "Error in creating TABLE_SHARE from %s.frm file."
  1571. ER_CANT_LOCK_TABLE
  1572. eng "Unable to acquire lock on %s.%s"
  1573. ER_CANT_ALLOC_TABLE_OBJECT
  1574. eng "Error in allocation memory for TABLE object."
  1575. ER_CANT_CREATE_HANDLER_OBJECT_FOR_TABLE
  1576. eng "Error in creating handler object for table %s.%s"
  1577. ER_CANT_SET_HANDLER_REFERENCE_FOR_TABLE
  1578. eng "Error in setting handler reference for table %s.%s"
  1579. ER_CANT_LOCK_TABLESPACE
  1580. eng "Unable to acquire lock on tablespace name %s"
  1581. ER_CANT_UPGRADE_GENERATED_COLUMNS_TO_DD
  1582. eng "Error in processing generated columns for table %s.%s"
  1583. ER_DD_ERROR_CREATING_ENTRY
  1584. eng "Error in Creating DD entry for %s.%s"
  1585. ER_DD_CANT_FETCH_TABLE_DATA
  1586. eng "Error in fetching %s.%s table data from dictionary"
  1587. ER_DD_CANT_FIX_SE_DATA
  1588. eng "Error in fixing SE data for %s.%s"
  1589. ER_DD_CANT_CREATE_SP
  1590. eng "Error in creating stored program '%s.%s'"
  1591. ER_CANT_OPEN_DB_OPT_USING_DEFAULT_CHARSET
  1592. eng "Unable to open db.opt file %s. Using default Character set."
  1593. ER_CANT_CREATE_CACHE_FOR_DB_OPT
  1594. eng "Unable to intialize IO cache to open db.opt file %s. "
  1595. ER_CANT_IDENTIFY_CHARSET_USING_DEFAULT
  1596. eng "Unable to identify the charset in %s. Using default character set."
  1597. ER_DB_OPT_NOT_FOUND_USING_DEFAULT_CHARSET
  1598. eng "db.opt file not found for %s database. Using default Character set."
  1599. ER_EVENT_CANT_GET_TIMEZONE_FROM_FIELD
  1600. eng "Event '%s'.'%s': invalid value in column mysql.event.time_zone."
  1601. ER_EVENT_CANT_FIND_TIMEZONE
  1602. eng "Event '%s'.'%s': has invalid time zone value "
  1603. ER_EVENT_CANT_GET_CHARSET
  1604. eng "Event '%s'.'%s': invalid value in column mysql.event.character_set_client."
  1605. ER_EVENT_CANT_GET_COLLATION
  1606. eng "Event '%s'.'%s': invalid value in column mysql.event.collation_connection."
  1607. ER_EVENT_CANT_OPEN_TABLE_MYSQL_EVENT
  1608. eng "Failed to open mysql.event Table."
  1609. ER_CANT_PARSE_STORED_ROUTINE_BODY
  1610. eng "Parsing '%s.%s' routine body failed.%s"
  1611. ER_CANT_OPEN_TABLE_MYSQL_PROC
  1612. eng "Failed to open mysql.proc Table."
  1613. ER_CANT_READ_TABLE_MYSQL_PROC
  1614. eng "Failed to read mysql.proc table."
  1615. ER_FILE_EXISTS_DURING_UPGRADE
  1616. eng "Found %s file in mysql schema. DD will create .ibd file with same name. Please rename table and start upgrade process again."
  1617. ER_CANT_OPEN_DATADIR_AFTER_UPGRADE_FAILURE
  1618. eng "Unable to open the data directory %s during clean up after upgrade failed"
  1619. ER_CANT_SET_PATH_FOR
  1620. eng "Failed to set path %s"
  1621. ER_CANT_OPEN_DIR
  1622. eng "Failed to open dir %s"
  1623. OBSOLETE_ER_NDB_CLUSTER_CONNECTION_POOL_NODEIDS
  1624. eng "NDB: Found empty nodeid specified in --ndb-cluster-connection-pool-nodeids='%s'."
  1625. OBSOLETE_ER_NDB_CANT_PARSE_NDB_CLUSTER_CONNECTION_POOL_NODEIDS
  1626. eng "NDB: Could not parse '%s' in --ndb-cluster-connection-pool-nodeids='%s'."
  1627. OBSOLETE_ER_NDB_INVALID_CLUSTER_CONNECTION_POOL_NODEIDS
  1628. eng "NDB: Invalid nodeid %d in --ndb-cluster-connection-pool-nodeids='%s'."
  1629. OBSOLETE_ER_NDB_DUPLICATE_CLUSTER_CONNECTION_POOL_NODEIDS
  1630. eng "NDB: Found duplicate nodeid %d in --ndb-cluster-connection-pool-nodeids='%s'."
  1631. OBSOLETE_ER_NDB_POOL_SIZE_CLUSTER_CONNECTION_POOL_NODEIDS
  1632. eng "NDB: The size of the cluster connection pool must be equal to the number of nodeids in --ndb-cluster-connection-pool-nodeids='%s'."
  1633. OBSOLETE_ER_NDB_NODEID_NOT_FIRST_CONNECTION_POOL_NODEIDS
  1634. eng "NDB: The nodeid specified by --ndb-nodeid must be equal to the first nodeid in --ndb-cluster-connection-pool-nodeids='%s'."
  1635. OBSOLETE_ER_NDB_USING_NODEID
  1636. eng "NDB: using nodeid %u"
  1637. OBSOLETE_ER_NDB_CANT_ALLOC_GLOBAL_NDB_CLUSTER_CONNECTION
  1638. eng "NDB: failed to allocate global ndb cluster connection"
  1639. OBSOLETE_ER_NDB_CANT_ALLOC_GLOBAL_NDB_OBJECT
  1640. eng "NDB: failed to allocate global ndb object"
  1641. OBSOLETE_ER_NDB_USING_NODEID_LIST
  1642. eng "NDB[%u]: using nodeid %u"
  1643. OBSOLETE_ER_NDB_CANT_ALLOC_NDB_CLUSTER_CONNECTION
  1644. eng "NDB[%u]: failed to allocate cluster connect object"
  1645. OBSOLETE_ER_NDB_STARTING_CONNECT_THREAD
  1646. eng "NDB[%u]: starting connect thread"
  1647. OBSOLETE_ER_NDB_NODE_INFO
  1648. eng "NDB[%u]: NodeID: %d, %s"
  1649. OBSOLETE_ER_NDB_CANT_START_CONNECT_THREAD
  1650. eng "NDB[%u]: failed to start connect thread"
  1651. OBSOLETE_ER_NDB_GENERIC_ERROR
  1652. eng "NDB: error (%u) %s"
  1653. OBSOLETE_ER_NDB_CPU_MASK_TOO_SHORT
  1654. eng "Ignored receive thread CPU mask, mask too short, %u CPUs needed in mask, only %u CPUs provided"
  1655. ER_EVENT_ERROR_CREATING_QUERY_TO_WRITE_TO_BINLOG
  1656. eng "Event Error: An error occurred while creating query string, before writing it into binary log."
  1657. ER_EVENT_SCHEDULER_ERROR_LOADING_FROM_DB
  1658. eng "Event Scheduler: Error while loading from disk."
  1659. ER_EVENT_SCHEDULER_ERROR_GETTING_EVENT_OBJECT
  1660. eng "Event Scheduler: Error getting event object."
  1661. ER_EVENT_SCHEDULER_GOT_BAD_DATA_FROM_TABLE
  1662. eng "Event Scheduler: Error while loading events from mysql.events.The table probably contains bad data or is corrupted"
  1663. ER_EVENT_CANT_GET_LOCK_FOR_DROPPING_EVENT
  1664. eng "Unable to obtain lock for dropping event %s from schema %s"
  1665. ER_EVENT_UNABLE_TO_DROP_EVENT
  1666. eng "Unable to drop event %s from schema %s"
  1667. OBSOLETE_ER_BINLOG_ATTACHING_THREAD_MEMORY_FINALLY_AVAILABLE
  1668. eng "Server overcomes the temporary 'out of memory' in '%d' tries while attaching to session thread during the group commit phase."
  1669. ER_BINLOG_CANT_RESIZE_CACHE
  1670. eng "Unable to resize binlog IOCACHE auxiliary file"
  1671. ER_BINLOG_FILE_BEING_READ_NOT_PURGED
  1672. eng "file %s was not purged because it was being read by thread number %u"
  1673. ER_BINLOG_IO_ERROR_READING_HEADER
  1674. eng "I/O error reading the header from the binary log, errno=%d, io cache code=%d"
  1675. OBSOLETE_ER_BINLOG_CANT_OPEN_LOG
  1676. eng "Failed to open log (file '%s', errno %d)"
  1677. OBSOLETE_ER_BINLOG_CANT_CREATE_CACHE_FOR_LOG
  1678. eng "Failed to create a cache on log (file '%s')"
  1679. ER_BINLOG_FILE_EXTENSION_NUMBER_EXHAUSTED
  1680. eng "Log filename extension number exhausted: %06lu. Please fix this by archiving old logs and updating the index files."
  1681. ER_BINLOG_FILE_NAME_TOO_LONG
  1682. eng "Log filename too large: %s%s (%zu). Please fix this by archiving old logs and updating the index files."
  1683. ER_BINLOG_FILE_EXTENSION_NUMBER_RUNNING_LOW
  1684. eng "Next log extension: %lu. Remaining log filename extensions: %lu. Please consider archiving some logs."
  1685. ER_BINLOG_CANT_OPEN_FOR_LOGGING
  1686. eng "Could not open %s for logging (error %d). Turning logging off for the whole duration of the MySQL server process. To turn it on again: fix the cause, shutdown the MySQL server and restart it."
  1687. ER_BINLOG_FAILED_TO_SYNC_INDEX_FILE
  1688. eng "MYSQL_BIN_LOG::open_index_file failed to sync the index file."
  1689. ER_BINLOG_ERROR_READING_GTIDS_FROM_RELAY_LOG
  1690. eng "Error reading GTIDs from relaylog: %d"
  1691. ER_BINLOG_EVENTS_READ_FROM_RELAY_LOG_INFO
  1692. eng "%lu events read in relaylog file '%s' for updating Retrieved_Gtid_Set and/or IO thread transaction parser state."
  1693. ER_BINLOG_ERROR_READING_GTIDS_FROM_BINARY_LOG
  1694. eng "Error reading GTIDs from binary log: %d"
  1695. ER_BINLOG_EVENTS_READ_FROM_BINLOG_INFO
  1696. eng "Read %lu events from binary log file '%s' to determine the GTIDs purged from binary logs."
  1697. ER_BINLOG_CANT_GENERATE_NEW_FILE_NAME
  1698. eng "MYSQL_BIN_LOG::open failed to generate new file name."
  1699. ER_BINLOG_FAILED_TO_SYNC_INDEX_FILE_IN_OPEN
  1700. eng "MYSQL_BIN_LOG::open failed to sync the index file."
  1701. ER_BINLOG_CANT_USE_FOR_LOGGING
  1702. eng "Could not use %s for logging (error %d). Turning logging off for the whole duration of the MySQL server process. To turn it on again: fix the cause, shutdown the MySQL server and restart it."
  1703. ER_BINLOG_FAILED_TO_CLOSE_INDEX_FILE_WHILE_REBUILDING
  1704. eng "While rebuilding index file %s: Failed to close the index file."
  1705. ER_BINLOG_FAILED_TO_DELETE_INDEX_FILE_WHILE_REBUILDING
  1706. eng "While rebuilding index file %s: Failed to delete the existing index file. It could be that file is being used by some other process."
  1707. ER_BINLOG_FAILED_TO_RENAME_INDEX_FILE_WHILE_REBUILDING
  1708. eng "While rebuilding index file %s: Failed to rename the new index file to the existing index file."
  1709. ER_BINLOG_FAILED_TO_OPEN_INDEX_FILE_AFTER_REBUILDING
  1710. eng "After rebuilding the index file %s: Failed to open the index file."
  1711. ER_BINLOG_CANT_APPEND_LOG_TO_TMP_INDEX
  1712. eng "MYSQL_BIN_LOG::add_log_to_index failed to append log file name: %s, to crash safe index file."
  1713. ER_BINLOG_CANT_LOCATE_OLD_BINLOG_OR_RELAY_LOG_FILES
  1714. eng "Failed to locate old binlog or relay log files"
  1715. ER_BINLOG_CANT_DELETE_FILE
  1716. eng "Failed to delete file '%s'"
  1717. ER_BINLOG_CANT_SET_TMP_INDEX_NAME
  1718. eng "MYSQL_BIN_LOG::set_crash_safe_index_file_name failed to set file name."
  1719. ER_BINLOG_FAILED_TO_OPEN_TEMPORARY_INDEX_FILE
  1720. eng "MYSQL_BIN_LOG::open_crash_safe_index_file failed to open temporary index file."
  1721. OBSOLETE_ER_BINLOG_ERROR_GETTING_NEXT_LOG_FROM_INDEX
  1722. eng "next log error: %d offset: %s log: %s included: %d"
  1723. ER_BINLOG_CANT_OPEN_TMP_INDEX
  1724. eng "%s failed to open the crash safe index file."
  1725. ER_BINLOG_CANT_COPY_INDEX_TO_TMP
  1726. eng "%s failed to copy index file to crash safe index file."
  1727. ER_BINLOG_CANT_CLOSE_TMP_INDEX
  1728. eng "%s failed to close the crash safe index file."
  1729. ER_BINLOG_CANT_MOVE_TMP_TO_INDEX
  1730. eng "%s failed to move crash safe index file to index file."
  1731. ER_BINLOG_PURGE_LOGS_CALLED_WITH_FILE_NOT_IN_INDEX
  1732. eng "MYSQL_BIN_LOG::purge_logs was called with file %s not listed in the index."
  1733. ER_BINLOG_PURGE_LOGS_CANT_SYNC_INDEX_FILE
  1734. eng "MYSQL_BIN_LOG::purge_logs failed to sync the index file."
  1735. ER_BINLOG_PURGE_LOGS_CANT_COPY_TO_REGISTER_FILE
  1736. eng "MYSQL_BIN_LOG::purge_logs failed to copy %s to register file."
  1737. ER_BINLOG_PURGE_LOGS_CANT_FLUSH_REGISTER_FILE
  1738. eng "MYSQL_BIN_LOG::purge_logs failed to flush register file."
  1739. ER_BINLOG_PURGE_LOGS_CANT_UPDATE_INDEX_FILE
  1740. eng "MYSQL_BIN_LOG::purge_logs failed to update the index file"
  1741. ER_BINLOG_PURGE_LOGS_FAILED_TO_PURGE_LOG
  1742. eng "MYSQL_BIN_LOG::purge_logs failed to process registered files that would be purged."
  1743. ER_BINLOG_FAILED_TO_SET_PURGE_INDEX_FILE_NAME
  1744. eng "MYSQL_BIN_LOG::set_purge_index_file_name failed to set file name."
  1745. ER_BINLOG_FAILED_TO_OPEN_REGISTER_FILE
  1746. eng "MYSQL_BIN_LOG::open_purge_index_file failed to open register file."
  1747. ER_BINLOG_FAILED_TO_REINIT_REGISTER_FILE
  1748. eng "MYSQL_BIN_LOG::purge_index_entry failed to reinit register file for read"
  1749. ER_BINLOG_FAILED_TO_READ_REGISTER_FILE
  1750. eng "MYSQL_BIN_LOG::purge_index_entry error %d reading from register file."
  1751. ER_CANT_STAT_FILE
  1752. eng "Failed to execute mysql_file_stat on file '%s'"
  1753. ER_BINLOG_CANT_DELETE_LOG_FILE_DOES_INDEX_MATCH_FILES
  1754. eng "Failed to delete log file '%s'; consider examining correspondence of your binlog index file to the actual binlog files"
  1755. ER_BINLOG_CANT_DELETE_FILE_AND_READ_BINLOG_INDEX
  1756. eng "Failed to delete file '%s' and read the binlog index file"
  1757. ER_BINLOG_FAILED_TO_DELETE_LOG_FILE
  1758. eng "Failed to delete log file '%s'"
  1759. ER_BINLOG_LOGGING_INCIDENT_TO_STOP_SLAVES
  1760. eng "%s An incident event has been written to the binary log which will stop the slaves."
  1761. ER_BINLOG_CANT_FIND_LOG_IN_INDEX
  1762. eng "find_log_pos() failed (error: %d)"
  1763. ER_BINLOG_RECOVERING_AFTER_CRASH_USING
  1764. eng "Recovering after a crash using %s"
  1765. ER_BINLOG_CANT_OPEN_CRASHED_BINLOG
  1766. eng "Failed to open the crashed binlog file when master server is recovering it."
  1767. ER_BINLOG_CANT_TRIM_CRASHED_BINLOG
  1768. eng "Failed to trim the crashed binlog file when master server is recovering it."
  1769. ER_BINLOG_CRASHED_BINLOG_TRIMMED
  1770. eng "Crashed binlog file %s size is %llu, but recovered up to %llu. Binlog trimmed to %llu bytes."
  1771. ER_BINLOG_CANT_CLEAR_IN_USE_FLAG_FOR_CRASHED_BINLOG
  1772. eng "Failed to clear LOG_EVENT_BINLOG_IN_USE_F for the crashed binlog file when master server is recovering it."
  1773. ER_BINLOG_FAILED_TO_RUN_AFTER_SYNC_HOOK
  1774. eng "Failed to run 'after_sync' hooks"
  1775. ER_TURNING_LOGGING_OFF_FOR_THE_DURATION
  1776. eng "%s Hence turning logging off for the whole duration of the MySQL server process. To turn it on again: fix the cause, shutdown the MySQL server and restart it."
  1777. ER_BINLOG_FAILED_TO_RUN_AFTER_FLUSH_HOOK
  1778. eng "Failed to run 'after_flush' hooks"
  1779. ER_BINLOG_CRASH_RECOVERY_FAILED
  1780. eng "Crash recovery failed. Either correct the problem (if it's, for example, out of memory error) and restart, or delete (or rename) binary log and start mysqld with --tc-heuristic-recover={commit|rollback}"
  1781. ER_BINLOG_WARNING_SUPPRESSED
  1782. eng "The following warning was suppressed %d times during the last %d seconds in the error log"
  1783. ER_NDB_LOG_ENTRY
  1784. eng "NDB: %s"
  1785. ER_NDB_LOG_ENTRY_WITH_PREFIX
  1786. eng "NDB %s: %s"
  1787. OBSOLETE_ER_NDB_BINLOG_CANT_CREATE_PURGE_THD
  1788. eng "NDB: Unable to purge %s.%s File=%s (failed to setup thd)"
  1789. ER_INNODB_UNKNOWN_COLLATION
  1790. eng "Unknown collation #%lu."
  1791. ER_INNODB_INVALID_LOG_GROUP_HOME_DIR
  1792. eng "syntax error in innodb_log_group_home_dir"
  1793. ER_INNODB_INVALID_INNODB_UNDO_DIRECTORY
  1794. eng "syntax error in innodb_undo_directory"
  1795. ER_INNODB_ILLEGAL_COLON_IN_POOL
  1796. eng "InnoDB: innodb_buffer_pool_filename cannot have colon (:) in the file name."
  1797. ER_INNODB_INVALID_PAGE_SIZE
  1798. eng "InnoDB: Invalid page size=%lu."
  1799. ER_INNODB_DIRTY_WATER_MARK_NOT_LOW
  1800. eng "InnoDB: innodb_max_dirty_pages_pct_lwm cannot be set higher than innodb_max_dirty_pages_pct. Setting innodb_max_dirty_pages_pct_lwm to %lf"
  1801. ER_INNODB_IO_CAPACITY_EXCEEDS_MAX
  1802. eng "InnoDB: innodb_io_capacity cannot be set higher than innodb_io_capacity_max. Setting innodb_io_capacity to %lu"
  1803. ER_INNODB_FILES_SAME
  1804. eng "%s and %s file names seem to be the same."
  1805. ER_INNODB_UNREGISTERED_TRX_ACTIVE
  1806. eng "Transaction not registered for MySQL 2PC, but transaction is active"
  1807. ER_INNODB_CLOSING_CONNECTION_ROLLS_BACK
  1808. eng "MySQL is closing a connection that has an active InnoDB transaction. %llu row modifications will roll back."
  1809. ER_INNODB_TRX_XLATION_TABLE_OOM
  1810. eng "InnoDB: fail to allocate memory for index translation table. Number of Index:%lu, array size:%lu"
  1811. ER_INNODB_CANT_FIND_INDEX_IN_INNODB_DD
  1812. eng "Cannot find index %s in InnoDB index dictionary."
  1813. ER_INNODB_INDEX_COLUMN_INFO_UNLIKE_MYSQLS
  1814. eng "Found index %s whose column info does not match that of MySQL."
  1815. OBSOLETE_ER_INNODB_CANT_OPEN_TABLE
  1816. eng "Failed to open table %s."
  1817. ER_INNODB_CANT_BUILD_INDEX_XLATION_TABLE_FOR
  1818. eng "Build InnoDB index translation table for Table %s failed"
  1819. ER_INNODB_PK_NOT_IN_MYSQL
  1820. eng "Table %s has a primary key in InnoDB data dictionary, but not in MySQL!"
  1821. ER_INNODB_PK_ONLY_IN_MYSQL
  1822. eng "Table %s has no primary key in InnoDB data dictionary, but has one in MySQL! If you created the table with a MySQL version < 3.23.54 and did not define a primary key, but defined a unique key with all non-NULL columns, then MySQL internally treats that key as the primary key. You can fix this error by dump + DROP + CREATE + reimport of the table."
  1823. ER_INNODB_CLUSTERED_INDEX_PRIVATE
  1824. eng "Table %s key_used_on_scan is %lu even though there is no primary key inside InnoDB."
  1825. OBSOLETE_ER_INNODB_PARTITION_TABLE_LOWERCASED
  1826. eng "Partition table %s opened after converting to lower case. The table may have been moved from a case-insensitive file system. Please recreate the table in the current file system."
  1827. ER_ERRMSG_REPLACEMENT_DODGY
  1828. eng "Cannot replace error message (%s,%s,%s) \"%s\" with \"%s\"; wrong number or type of %% subsitutions."
  1829. ER_ERRMSG_REPLACEMENTS_FAILED
  1830. eng "Table for error message replacements could not be found or read, or one or more replacements could not be applied."
  1831. ER_NPIPE_CANT_CREATE
  1832. eng "%s: %s"
  1833. ER_PARTITION_MOVE_CREATED_DUPLICATE_ROW_PLEASE_FIX
  1834. eng "Table '%-192s': Delete from part %d failed with error %d. But it was already inserted into part %d, when moving the misplaced row! Please manually fix the duplicate row: %s"
  1835. ER_AUDIT_CANT_ABORT_COMMAND
  1836. eng "Command '%s' cannot be aborted. The trigger error was (%d) [%s]: %s"
  1837. ER_AUDIT_CANT_ABORT_EVENT
  1838. eng "Event '%s' cannot be aborted. The trigger error was (%d) [%s]: %s"
  1839. ER_AUDIT_WARNING
  1840. eng "%s. The trigger error was (%d) [%s]: %s"
  1841. OBSOLETE_ER_NDB_NUMBER_OF_CHANNELS
  1842. eng "Slave SQL: Configuration with number of replication masters = %u' is not supported when applying to Ndb"
  1843. OBSOLETE_ER_NDB_REPLICA_PARALLEL_WORKERS
  1844. eng "Slave SQL: Configuration 'replica_parallel_workers = %lu' is not supported when applying to Ndb"
  1845. OBSOLETE_ER_NDB_DISTRIBUTING_ERR
  1846. eng "NDB %s: distributing %s err: %u"
  1847. ER_RPL_SLAVE_INSECURE_CHANGE_MASTER
  1848. eng "Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information."
  1849. OBSOLETE_ER_RPL_SLAVE_FLUSH_RELAY_LOGS_NOT_ALLOWED
  1850. eng "FLUSH RELAY LOGS cannot be performed on channel '%-.192s'."
  1851. ER_RPL_SLAVE_INCORRECT_CHANNEL
  1852. eng "Slave channel '%s' does not exist."
  1853. ER_FAILED_TO_FIND_DL_ENTRY
  1854. eng "Can't find symbol '%-.128s' in library."
  1855. ER_FAILED_TO_OPEN_SHARED_LIBRARY
  1856. eng "Can't open shared library '%-.192s' (errno: %d %-.128s)."
  1857. ER_THREAD_PRIORITY_IGNORED
  1858. eng "Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported platform or insufficient privilege."
  1859. ER_BINLOG_CACHE_SIZE_TOO_LARGE
  1860. eng "Option binlog_cache_size (%lu) is greater than max_binlog_cache_size (%lu); setting binlog_cache_size equal to max_binlog_cache_size."
  1861. ER_BINLOG_STMT_CACHE_SIZE_TOO_LARGE
  1862. eng "Option binlog_stmt_cache_size (%lu) is greater than max_binlog_stmt_cache_size (%lu); setting binlog_stmt_cache_size equal to max_binlog_stmt_cache_size."
  1863. ER_FAILED_TO_GENERATE_UNIQUE_LOGFILE
  1864. eng "Can't generate a unique log-filename %-.200s.(1-999)."
  1865. ER_FAILED_TO_READ_FILE
  1866. eng "Error reading file '%-.200s' (errno: %d - %s)"
  1867. ER_FAILED_TO_WRITE_TO_FILE
  1868. eng "Error writing file '%-.200s' (errno: %d - %s)"
  1869. ER_BINLOG_UNSAFE_MESSAGE_AND_STATEMENT
  1870. eng "%s Statement: %s"
  1871. ER_FORCE_CLOSE_THREAD
  1872. eng "%s: Forcing close of thread %ld user: '%-.48s'."
  1873. ER_SERVER_SHUTDOWN_COMPLETE
  1874. eng "%s: Shutdown complete (mysqld %s) %s."
  1875. ER_RPL_CANT_HAVE_SAME_BASENAME
  1876. eng "Cannot have same base name '%s' for both binary and relay logs. Please check %s (default '%s' if --log-bin option is not used, default '%s' if --log-bin option is used without argument) and %s (default '%s') options to ensure they do not conflict."
  1877. ER_RPL_GTID_MODE_REQUIRES_ENFORCE_GTID_CONSISTENCY_ON
  1878. eng "GTID_MODE = ON requires ENFORCE_GTID_CONSISTENCY = ON."
  1879. ER_WARN_NO_SERVERID_SPECIFIED
  1880. eng "You have not provided a mandatory server-id. Servers in a replication topology must have unique server-ids. Please refer to the proper server start-up parameters documentation."
  1881. ER_ABORTING_USER_CONNECTION
  1882. eng "Aborted connection %u to db: '%-.192s' user: '%-.48s' host: '%-.255s' (%-.64s)."
  1883. ER_SQL_MODE_MERGED_WITH_STRICT_MODE
  1884. eng "'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release."
  1885. ER_GTID_PURGED_WAS_UPDATED
  1886. eng "@@GLOBAL.GTID_PURGED was changed from '%s' to '%s'."
  1887. ER_GTID_EXECUTED_WAS_UPDATED
  1888. eng "@@GLOBAL.GTID_EXECUTED was changed from '%s' to '%s'."
  1889. ER_DEPRECATE_MSG_WITH_REPLACEMENT
  1890. eng "'%s' is deprecated and will be removed in a future release. Please use %s instead."
  1891. ER_TRG_CREATION_CTX_NOT_SET
  1892. eng "Triggers for table `%-.64s`.`%-.64s` have no creation context"
  1893. ER_FILE_HAS_OLD_FORMAT
  1894. eng "'%-.192s' has an old format, you should re-create the '%s' object(s)"
  1895. ER_VIEW_CREATION_CTX_NOT_SET
  1896. eng "View `%-.64s`.`%-.64s` has no creation context"
  1897. OBSOLETE_ER_TABLE_NAME_CAUSES_TOO_LONG_PATH
  1898. eng "Long database name and identifier for object resulted in a path length too long for table '%s'. Please check the path limit for your OS."
  1899. ER_TABLE_UPGRADE_REQUIRED
  1900. eng "Table upgrade required. Please do \"REPAIR TABLE `%-.64s`\" or dump/reload to fix it!"
  1901. ER_GET_ERRNO_FROM_STORAGE_ENGINE
  1902. eng "Got error %d - '%-.192s' from storage engine."
  1903. ER_ACCESS_DENIED_ERROR_WITHOUT_PASSWORD
  1904. eng "Access denied for user '%-.48s'@'%-.64s'"
  1905. ER_ACCESS_DENIED_ERROR_WITH_PASSWORD
  1906. eng "Access denied for user '%-.48s'@'%-.64s' (using password: %s)"
  1907. ER_ACCESS_DENIED_FOR_USER_ACCOUNT_LOCKED
  1908. eng "Access denied for user '%-.48s'@'%-.64s'. Account is locked."
  1909. OBSOLETE_ER_MUST_CHANGE_EXPIRED_PASSWORD
  1910. eng "Your password has expired. To log in you must change it using a client that supports expired passwords."
  1911. ER_SYSTEM_TABLES_NOT_SUPPORTED_BY_STORAGE_ENGINE
  1912. eng "Storage engine '%s' does not support system tables. [%s.%s]."
  1913. OBSOLETE_ER_FILESORT_TERMINATED
  1914. eng "Sort aborted"
  1915. ER_SERVER_STARTUP_MSG
  1916. eng "%s: ready for connections. Version: '%s' socket: '%s' port: %d %s."
  1917. ER_FAILED_TO_FIND_LOCALE_NAME
  1918. eng "Unknown locale: '%-.64s'."
  1919. ER_FAILED_TO_FIND_COLLATION_NAME
  1920. eng "Unknown collation: '%-.64s'."
  1921. ER_SERVER_OUT_OF_RESOURCES
  1922. eng "Out of memory; check if mysqld or some other process uses all available memory; if not, you may have to use 'ulimit' to allow mysqld to use more memory or you can add more swap space"
  1923. ER_SERVER_OUTOFMEMORY
  1924. eng "Out of memory; restart server and try again (needed %d bytes)"
  1925. ER_INVALID_COLLATION_FOR_CHARSET
  1926. eng "COLLATION '%s' is not valid for CHARACTER SET '%s'"
  1927. ER_CANT_START_ERROR_LOG_SERVICE
  1928. eng "Failed to set %s at or around \"%s\" -- service is valid, but can not be initialized; please check its configuration and make sure it can read its input(s) and write to its output(s)."
  1929. ER_CREATING_NEW_UUID_FIRST_START
  1930. eng "Generating a new UUID: %s."
  1931. ER_FAILED_TO_GET_ABSOLUTE_PATH
  1932. eng "Failed to get absolute path of program executable %s"
  1933. ER_PERFSCHEMA_COMPONENTS_INFRASTRUCTURE_BOOTSTRAP
  1934. eng "Failed to bootstrap performance schema components infrastructure."
  1935. ER_PERFSCHEMA_COMPONENTS_INFRASTRUCTURE_SHUTDOWN
  1936. eng "Failed to deinit performance schema components infrastructure."
  1937. ER_DUP_FD_OPEN_FAILED
  1938. eng "Could not open duplicate fd for %s: %s."
  1939. ER_SYSTEM_VIEW_INIT_FAILED
  1940. eng "System views initialization failed."
  1941. ER_RESOURCE_GROUP_POST_INIT_FAILED
  1942. eng "Resource group post initialization failed."
  1943. ER_RESOURCE_GROUP_SUBSYSTEM_INIT_FAILED
  1944. eng "Resource Group subsystem initialization failed."
  1945. ER_FAILED_START_MYSQLD_DAEMON
  1946. eng "Failed to start mysqld daemon. Check mysqld error log."
  1947. ER_CANNOT_CHANGE_TO_ROOT_DIR
  1948. eng "Cannot change to root directory: %s."
  1949. ER_PERSISTENT_PRIVILEGES_BOOTSTRAP
  1950. eng "Failed to bootstrap persistent privileges."
  1951. ER_BASEDIR_SET_TO
  1952. eng "Basedir set to %s."
  1953. ER_RPL_FILTER_ADD_WILD_DO_TABLE_FAILED
  1954. eng "Could not add wild do table rule '%s'!"
  1955. ER_RPL_FILTER_ADD_WILD_IGNORE_TABLE_FAILED
  1956. eng "Could not add wild ignore table rule '%s'!"
  1957. ER_PRIVILEGE_SYSTEM_INIT_FAILED
  1958. eng "The privilege system failed to initialize correctly. For complete instructions on how to upgrade MySQL to a new version please see the 'Upgrading MySQL' section from the MySQL manual."
  1959. ER_CANNOT_SET_LOG_ERROR_SERVICES
  1960. eng "Cannot set services \"%s\" requested in --log-error-services, using defaults."
  1961. ER_PERFSCHEMA_TABLES_INIT_FAILED
  1962. eng "Performance schema tables initialization failed."
  1963. ER_TX_EXTRACTION_ALGORITHM_FOR_BINLOG_TX_DEPEDENCY_TRACKING
  1964. eng "The transaction_write_set_extraction must be set to %s when binlog_transaction_dependency_tracking is %s."
  1965. OBSOLETE_ER_INVALID_REPLICATION_TIMESTAMPS
  1966. eng "Invalid replication timestamps: original commit timestamp is more recent than the immediate commit timestamp. This may be an issue if delayed replication is active. Make sure that servers have their clocks set to the correct time. No further message will be emitted until after timestamps become valid again."
  1967. OBSOLETE_ER_RPL_TIMESTAMPS_RETURNED_TO_NORMAL
  1968. eng "The replication timestamps have returned to normal values."
  1969. ER_BINLOG_FILE_OPEN_FAILED
  1970. eng "%s."
  1971. ER_BINLOG_EVENT_WRITE_TO_STMT_CACHE_FAILED
  1972. eng "Failed to write an incident event into stmt_cache."
  1973. ER_SLAVE_RELAY_LOG_TRUNCATE_INFO
  1974. eng "Relaylog file %s size was %llu, but was truncated at %llu."
  1975. ER_SLAVE_RELAY_LOG_PURGE_FAILED
  1976. eng "Unable to purge relay log files. %s:%s."
  1977. ER_RPL_SLAVE_FILTER_CREATE_FAILED
  1978. eng "Slave: failed in creating filter for channel '%s'."
  1979. ER_RPL_SLAVE_GLOBAL_FILTERS_COPY_FAILED
  1980. eng "Slave: failed in copying the global filters to its own per-channel filters on configuration for channel '%s'."
  1981. ER_RPL_SLAVE_RESET_FILTER_OPTIONS
  1982. eng "There are per-channel replication filter(s) configured for channel '%.192s' which does not exist. The filter(s) have been discarded."
  1983. ER_MISSING_GRANT_SYSTEM_TABLE
  1984. eng "The system table mysql.global_grants is missing. Please perform the MySQL upgrade procedure."
  1985. ER_MISSING_ACL_SYSTEM_TABLE
  1986. eng "ACL table mysql.%.*s missing. Some operations may fail."
  1987. ER_ANONYMOUS_AUTH_ID_NOT_ALLOWED_IN_MANDATORY_ROLES
  1988. eng "Can't set mandatory_role %s@%s: Anonymous authorization IDs are not allowed as roles."
  1989. ER_UNKNOWN_AUTH_ID_IN_MANDATORY_ROLE
  1990. eng "Can't set mandatory_role: There's no such authorization ID %s@%s."
  1991. ER_WRITE_ROW_TO_PARTITION_FAILED
  1992. eng "Table '%-192s' failed to move/insert a row from part %d into part %d: %s."
  1993. ER_RESOURCE_GROUP_METADATA_UPDATE_SKIPPED
  1994. eng "Skipped updating resource group metadata in InnoDB read only mode."
  1995. ER_FAILED_TO_PERSIST_RESOURCE_GROUP_METADATA
  1996. eng "Failed to persist resource group %s to Data Dictionary."
  1997. ER_FAILED_TO_DESERIALIZE_RESOURCE_GROUP
  1998. eng "Failed to deserialize resource group %s."
  1999. ER_FAILED_TO_UPDATE_RESOURCE_GROUP
  2000. eng "Update of resource group %s failed."
  2001. ER_RESOURCE_GROUP_VALIDATION_FAILED
  2002. eng "Validation of resource group %s failed. Resource group is disabled."
  2003. ER_FAILED_TO_ALLOCATE_MEMORY_FOR_RESOURCE_GROUP
  2004. eng "Unable to allocate memory for Resource Group %s."
  2005. ER_FAILED_TO_ALLOCATE_MEMORY_FOR_RESOURCE_GROUP_HASH
  2006. eng "Failed to allocate memory for resource group hash."
  2007. ER_FAILED_TO_ADD_RESOURCE_GROUP_TO_MAP
  2008. eng "Failed to add resource group %s to resource group map."
  2009. ER_RESOURCE_GROUP_IS_DISABLED
  2010. eng "Resource group feature is disabled. (Server is compiled with DISABLE_PSI_THREAD)."
  2011. ER_FAILED_TO_APPLY_RESOURCE_GROUP_CONTROLLER
  2012. eng "Unable to apply resource group controller %s."
  2013. ER_FAILED_TO_ACQUIRE_LOCK_ON_RESOURCE_GROUP
  2014. eng "Unable to acquire lock on the resource group %s. Hint to switch resource group shall be ignored."
  2015. ER_PFS_NOTIFICATION_FUNCTION_REGISTER_FAILED
  2016. eng "PFS %s notification function registration failed."
  2017. ER_RES_GRP_SET_THR_AFFINITY_FAILED
  2018. eng "Unable to bind thread id %llu to cpu id %u (error code %d - %-.192s)."
  2019. ER_RES_GRP_SET_THR_AFFINITY_TO_CPUS_FAILED
  2020. eng "Unable to bind thread id %llu to cpu ids (error code %d - %-.192s)."
  2021. ER_RES_GRP_THD_UNBIND_FROM_CPU_FAILED
  2022. eng "Unbind thread id %llu failed. (error code %d - %-.192s)."
  2023. ER_RES_GRP_SET_THREAD_PRIORITY_FAILED
  2024. eng "Setting thread priority %d to thread id %llu failed. (error code %d - %-.192s)."
  2025. ER_RES_GRP_FAILED_TO_DETERMINE_NICE_CAPABILITY
  2026. eng "Unable to determine CAP_SYS_NICE capability."
  2027. ER_RES_GRP_FAILED_TO_GET_THREAD_HANDLE
  2028. eng "%s failed: Failed to get handle for thread %llu."
  2029. ER_RES_GRP_GET_THREAD_PRIO_NOT_SUPPORTED
  2030. eng "Retrieval of thread priority unsupported on %s."
  2031. ER_RES_GRP_FAILED_DETERMINE_CPU_COUNT
  2032. eng "Unable to determine the number of CPUs."
  2033. ER_RES_GRP_FEATURE_NOT_AVAILABLE
  2034. eng "Resource group feature shall not be available. Incompatible thread handling option."
  2035. ER_RES_GRP_INVALID_THREAD_PRIORITY
  2036. eng "Invalid thread priority %d for a %s resource group. Allowed range is [%d, %d]."
  2037. ER_RES_GRP_SOLARIS_PROCESSOR_BIND_TO_CPUID_FAILED
  2038. eng "bind_to_cpu failed: processor_bind for cpuid %u failed (error code %d - %-.192s)."
  2039. ER_RES_GRP_SOLARIS_PROCESSOR_BIND_TO_THREAD_FAILED
  2040. eng "bind_to_cpu failed: processor_bind for thread %%llx with cpu id %u (error code %d - %-.192s)."
  2041. ER_RES_GRP_SOLARIS_PROCESSOR_AFFINITY_FAILED
  2042. eng "%s failed: processor_affinity failed (error code %d - %-.192s)."
  2043. ER_DD_UPGRADE_RENAME_IDX_STATS_FILE_FAILED
  2044. eng "Error in renaming mysql_index_stats.ibd."
  2045. ER_DD_UPGRADE_DD_OPEN_FAILED
  2046. eng "Error in opening data directory %s."
  2047. ER_DD_UPGRADE_FAILED_TO_FETCH_TABLESPACES
  2048. eng "Error in fetching list of tablespaces."
  2049. ER_DD_UPGRADE_FAILED_TO_ACQUIRE_TABLESPACE
  2050. eng "Error in acquiring Tablespace for SDI insertion %s."
  2051. ER_DD_UPGRADE_FAILED_TO_RESOLVE_TABLESPACE_ENGINE
  2052. eng "Error in resolving Engine name for tablespace %s with engine %s."
  2053. ER_FAILED_TO_CREATE_SDI_FOR_TABLESPACE
  2054. eng "Error in creating SDI for %s tablespace."
  2055. ER_FAILED_TO_STORE_SDI_FOR_TABLESPACE
  2056. eng "Error in storing SDI for %s tablespace."
  2057. ER_DD_UPGRADE_FAILED_TO_FETCH_TABLES
  2058. eng "Error in fetching list of tables."
  2059. ER_DD_UPGRADE_DD_POPULATED
  2060. eng "Finished populating Data Dictionary tables with data."
  2061. ER_DD_UPGRADE_INFO_FILE_OPEN_FAILED
  2062. eng "Could not open the upgrade info file '%s' in the MySQL servers datadir, errno: %d."
  2063. ER_DD_UPGRADE_INFO_FILE_CLOSE_FAILED
  2064. eng "Could not close the upgrade info file '%s' in the MySQL servers datadir, errno: %d."
  2065. ER_DD_UPGRADE_TABLESPACE_MIGRATION_FAILED
  2066. eng "Got error %d from SE while migrating tablespaces."
  2067. ER_DD_UPGRADE_FAILED_TO_CREATE_TABLE_STATS
  2068. eng "Error in creating TABLE statistics entry. Fix statistics data by using ANALYZE command."
  2069. ER_DD_UPGRADE_TABLE_STATS_MIGRATE_COMPLETED
  2070. eng "Finished migrating TABLE statistics data."
  2071. ER_DD_UPGRADE_FAILED_TO_CREATE_INDEX_STATS
  2072. eng "Error in creating Index statistics entry. Fix statistics data by using ANALYZE command."
  2073. ER_DD_UPGRADE_INDEX_STATS_MIGRATE_COMPLETED
  2074. eng "Finished migrating INDEX statistics data."
  2075. ER_DD_UPGRADE_FAILED_FIND_VALID_DATA_DIR
  2076. eng "Failed to find valid data directory."
  2077. ER_DD_UPGRADE_START
  2078. eng "Starting upgrade of data directory."
  2079. ER_DD_UPGRADE_FAILED_INIT_DD_SE
  2080. eng "Failed to initialize DD Storage Engine."
  2081. ER_DD_UPGRADE_FOUND_PARTIALLY_UPGRADED_DD_ABORT
  2082. eng "Found partially upgraded DD. Aborting upgrade and deleting all DD tables. Start the upgrade process again."
  2083. ER_DD_UPGRADE_FOUND_PARTIALLY_UPGRADED_DD_CONTINUE
  2084. eng "Found partially upgraded DD. Upgrade will continue and start the server."
  2085. ER_DD_UPGRADE_SE_LOGS_FAILED
  2086. eng "Error in upgrading engine logs."
  2087. ER_DD_UPGRADE_SDI_INFO_UPDATE_FAILED
  2088. eng "Error in updating SDI information."
  2089. ER_SKIP_UPDATING_METADATA_IN_SE_RO_MODE
  2090. eng "Skip updating %s metadata in InnoDB read-only mode."
  2091. ER_CREATED_SYSTEM_WITH_VERSION
  2092. eng "Created system views with I_S version %d."
  2093. ER_UNKNOWN_ERROR_DETECTED_IN_SE
  2094. eng "Unknown error detected %d in handler."
  2095. ER_READ_LOG_EVENT_FAILED
  2096. eng "Error in Log_event::read_log_event(): '%s', data_len: %lu, event_type: %d."
  2097. ER_ROW_DATA_TOO_BIG_TO_WRITE_IN_BINLOG
  2098. eng "The row data is greater than 4GB, which is too big to write to the binary log."
  2099. ER_FAILED_TO_CONSTRUCT_DROP_EVENT_QUERY
  2100. eng "Unable to construct DROP EVENT SQL query string."
  2101. ER_FAILED_TO_BINLOG_DROP_EVENT
  2102. eng "Unable to binlog drop event %s.%s."
  2103. ER_FAILED_TO_START_SLAVE_THREAD
  2104. eng "Failed to start slave threads for channel '%s'."
  2105. ER_RPL_IO_THREAD_KILLED
  2106. eng "%s%s."
  2107. ER_SLAVE_RECONNECT_FAILED
  2108. eng "Failed registering on master, reconnecting to try again, log '%s' at position %s. %s."
  2109. ER_SLAVE_KILLED_AFTER_RECONNECT
  2110. eng "Slave I/O thread killed during or after reconnect."
  2111. ER_SLAVE_NOT_STARTED_ON_SOME_CHANNELS
  2112. eng "Some of the channels are not created/initialized properly. Check for additional messages above. You will not be able to start replication on those channels until the issue is resolved and the server restarted."
  2113. ER_FAILED_TO_ADD_RPL_FILTER
  2114. eng "Failed to add a replication filter into filter map for channel '%.192s'."
  2115. ER_PER_CHANNEL_RPL_FILTER_CONF_FOR_GRP_RPL
  2116. eng "There are per-channel replication filter(s) configured for group replication channel '%.192s' which is disallowed. The filter(s) have been discarded."
  2117. ER_RPL_FILTERS_NOT_ATTACHED_TO_CHANNEL
  2118. eng "There are per-channel replication filter(s) configured for channel '%.192s' which does not exist. The filter(s) have been discarded."
  2119. ER_FAILED_TO_BUILD_DO_AND_IGNORE_TABLE_HASHES
  2120. eng "An error occurred while building do_table and ignore_table rules to hashes for per-channel filter."
  2121. ER_CLONE_PLUGIN_NOT_LOADED_TRACE
  2122. eng "Clone plugin cannot be loaded."
  2123. ER_CLONE_HANDLER_EXIST_TRACE
  2124. eng "Clone Handler exists."
  2125. ER_CLONE_CREATE_HANDLER_FAIL_TRACE
  2126. eng "Could not create Clone Handler."
  2127. ER_CYCLE_TIMER_IS_NOT_AVAILABLE
  2128. eng "The CYCLE timer is not available. WAIT events in the performance_schema will not be timed."
  2129. ER_NANOSECOND_TIMER_IS_NOT_AVAILABLE
  2130. eng "The NANOSECOND timer is not available. IDLE/STAGE/STATEMENT/TRANSACTION events in the performance_schema will not be timed."
  2131. ER_MICROSECOND_TIMER_IS_NOT_AVAILABLE
  2132. eng "The MICROSECOND timer is not available. IDLE/STAGE/STATEMENT/TRANSACTION events in the performance_schema will not be timed."
  2133. ER_PFS_MALLOC_ARRAY_OVERFLOW
  2134. eng "Failed to allocate memory for %zu chunks each of size %zu for buffer '%s' due to overflow."
  2135. ER_PFS_MALLOC_ARRAY_OOM
  2136. eng "Failed to allocate %zu bytes for buffer '%s' due to out-of-memory."
  2137. ER_INNODB_FAILED_TO_FIND_IDX_WITH_KEY_NO
  2138. eng "InnoDB could not find index %s key no %u for table %s through its index translation table."
  2139. ER_INNODB_FAILED_TO_FIND_IDX
  2140. eng "Cannot find index %s in InnoDB index translation table."
  2141. ER_INNODB_FAILED_TO_FIND_IDX_FROM_DICT_CACHE
  2142. eng "InnoDB could not find key no %u with name %s from dict cache for table %s."
  2143. ER_INNODB_ACTIVE_INDEX_CHANGE_FAILED
  2144. eng "InnoDB: change_active_index(%u) failed."
  2145. ER_INNODB_DIFF_IN_REF_LEN
  2146. eng "Stored ref len is %lu, but table ref len is %lu."
  2147. ER_WRONG_TYPE_FOR_COLUMN_PREFIX_IDX_FLD
  2148. eng "MySQL is trying to create a column prefix index field, on an inappropriate data type. Table name %s, column name %s."
  2149. ER_INNODB_CANNOT_CREATE_TABLE
  2150. eng "Cannot create table %s."
  2151. ER_INNODB_INTERNAL_INDEX
  2152. eng "Found index %s in InnoDB index list but not its MySQL index number. It could be an InnoDB internal index."
  2153. ER_INNODB_IDX_CNT_MORE_THAN_DEFINED_IN_MYSQL
  2154. eng "InnoDB: Table %s contains %lu indexes inside InnoDB, which is different from the number of indexes %u defined in MySQL."
  2155. ER_INNODB_IDX_CNT_FEWER_THAN_DEFINED_IN_MYSQL
  2156. eng "Table %s contains fewer indexes inside InnoDB than are defined in the MySQL. Have you mixed up with data dictionary from different installation?"
  2157. ER_INNODB_IDX_COLUMN_CNT_DIFF
  2158. eng "Index %s of %s has %lu columns unique inside InnoDB, but MySQL is asking statistics for %lu columns. Have you mixed data dictionary from different installation?"
  2159. ER_INNODB_USE_MONITOR_GROUP_NAME
  2160. eng "Monitor counter '%s' cannot be turned on/off individually. Please use its module name to turn on/off the counters in the module as a group."
  2161. ER_INNODB_MONITOR_DEFAULT_VALUE_NOT_DEFINED
  2162. eng "Default value is not defined for this set option. Please specify correct counter or module name."
  2163. ER_INNODB_MONITOR_IS_ENABLED
  2164. eng "InnoDB: Monitor %s is already enabled."
  2165. ER_INNODB_INVALID_MONITOR_COUNTER_NAME
  2166. eng "Invalid monitor counter : %s."
  2167. ER_WIN_LOAD_LIBRARY_FAILED
  2168. eng "LoadLibrary(\"%s\") failed: GetLastError returns %lu."
  2169. ER_PARTITION_HANDLER_ADMIN_MSG
  2170. eng "%s."
  2171. ER_RPL_RLI_INIT_INFO_MSG
  2172. eng "%s."
  2173. ER_DD_UPGRADE_TABLE_INTACT_ERROR
  2174. eng "%s."
  2175. ER_SERVER_INIT_COMPILED_IN_COMMANDS
  2176. eng "%s."
  2177. ER_MYISAM_CHECK_METHOD_ERROR
  2178. eng "%s."
  2179. ER_MYISAM_CRASHED_ERROR
  2180. eng "%s."
  2181. ER_WAITPID_FAILED
  2182. eng "Unable to wait for process %lld."
  2183. ER_FAILED_TO_FIND_MYSQLD_STATUS
  2184. eng "Unable to determine if daemon is running: %s (rc=%d)."
  2185. ER_INNODB_ERROR_LOGGER_MSG
  2186. eng "%s"
  2187. ER_INNODB_ERROR_LOGGER_FATAL_MSG
  2188. eng "[FATAL] InnoDB: %s"
  2189. ER_DEPRECATED_SYNTAX_WITH_REPLACEMENT
  2190. eng "The syntax '%s' is deprecated and will be removed in a future release. Please use %s instead."
  2191. ER_DEPRECATED_SYNTAX_NO_REPLACEMENT
  2192. eng "The syntax '%s' is deprecated and will be removed in a future release."
  2193. ER_DEPRECATE_MSG_NO_REPLACEMENT
  2194. eng "'%s' is deprecated and will be removed in a future release."
  2195. ER_LOG_PRINTF_MSG
  2196. eng "%s"
  2197. ER_BINLOG_LOGGING_NOT_POSSIBLE
  2198. eng "Binary logging not possible. Message: %s."
  2199. ER_FAILED_TO_SET_PERSISTED_OPTIONS
  2200. eng "Failed to set persisted options."
  2201. ER_COMPONENTS_FAILED_TO_ACQUIRE_SERVICE_IMPLEMENTATION
  2202. eng "Cannot acquire specified service implementation: '%.192s'."
  2203. ER_RES_GRP_INVALID_VCPU_RANGE
  2204. eng "Invalid VCPU range %u-%u."
  2205. ER_RES_GRP_INVALID_VCPU_ID
  2206. eng "Invalid cpu id %u."
  2207. ER_ERROR_DURING_FLUSH_LOG_COMMIT_PHASE
  2208. eng "Got error %d during FLUSH_LOGS."
  2209. ER_DROP_DATABASE_FAILED_RMDIR_MANUALLY
  2210. eng "Problem while dropping database. Can't remove database directory (%s). Please remove it manually."
  2211. ER_EXPIRE_LOGS_DAYS_IGNORED
  2212. eng "The option expire_logs_days cannot be used together with option binlog_expire_logs_seconds. Therefore, value of expire_logs_days is ignored."
  2213. ER_BINLOG_MALFORMED_OR_OLD_RELAY_LOG
  2214. eng "malformed or very old relay log which does not have FormatDescriptor."
  2215. ER_DD_UPGRADE_VIEW_COLUMN_NAME_TOO_LONG
  2216. eng "Upgrade of view '%s.%s' failed. Re-create the view with the explicit column name lesser than 64 characters."
  2217. ER_TABLE_NEEDS_DUMP_UPGRADE
  2218. eng "Table upgrade required for `%-.64s`.`%-.64s`. Please dump/reload table to fix it!"
  2219. ER_DD_UPGRADE_FAILED_TO_UPDATE_VER_NO_IN_TABLESPACE
  2220. eng "Error in updating version number in %s tablespace."
  2221. ER_KEYRING_MIGRATION_FAILED
  2222. eng "Keyring migration failed."
  2223. ER_KEYRING_MIGRATION_SUCCESSFUL
  2224. eng "Keyring migration successful."
  2225. ER_RESTART_RECEIVED_INFO
  2226. eng "Received RESTART from user %s. Restarting mysqld (Version: %s)."
  2227. ER_LCTN_CHANGED
  2228. eng "Different lower_case_table_names settings for server ('%u') and data dictionary ('%u')."
  2229. ER_DD_INITIALIZE
  2230. eng "Data dictionary initializing version '%u'."
  2231. ER_DD_RESTART
  2232. eng "Data dictionary restarting version '%u'."
  2233. ER_DD_UPGRADE
  2234. eng "Data dictionary upgrading from version '%u' to '%u'."
  2235. ER_DD_UPGRADE_OFF
  2236. eng "Data dictionary upgrade prohibited by the command line option '--no_dd_upgrade'."
  2237. ER_DD_UPGRADE_VERSION_NOT_SUPPORTED
  2238. eng "Upgrading the data dictionary from dictionary version '%u' is not supported."
  2239. ER_DD_UPGRADE_SCHEMA_UNAVAILABLE
  2240. eng "Upgrading the data dictionary failed, temporary schema name '%-.192s' not available."
  2241. ER_DD_MINOR_DOWNGRADE
  2242. eng "Data dictionary minor downgrade from version '%u' to '%u'."
  2243. ER_DD_MINOR_DOWNGRADE_VERSION_NOT_SUPPORTED
  2244. eng "Minor downgrade of the Data dictionary from dictionary version '%u' is not supported."
  2245. ER_DD_NO_VERSION_FOUND
  2246. eng "No data dictionary version number found."
  2247. ER_THREAD_POOL_NOT_SUPPORTED_ON_PLATFORM
  2248. eng "Thread pool not supported, requires a minimum of %s."
  2249. ER_THREAD_POOL_SIZE_TOO_LOW
  2250. eng "thread_pool_size=0 means thread pool disabled, Allowed range of thread_pool_size is %d-%d."
  2251. ER_THREAD_POOL_SIZE_TOO_HIGH
  2252. eng "thread_pool_size=%lu is too high, %d is maximum, thread pool is disabled. Allowed range of thread_pool_size is %d-%d."
  2253. ER_THREAD_POOL_ALGORITHM_INVALID
  2254. eng "thread_pool_algorithm can be set to 0 and 1, 0 indicates the default low concurrency algorithm, 1 means a high concurrency algorithm."
  2255. ER_THREAD_POOL_INVALID_STALL_LIMIT
  2256. eng "thread_pool_stall_limit can be %d at minimum and %d at maximum, smaller values would render the thread pool fairly useless and higher values could make it possible to have undetected deadlock issues in the MySQL Server."
  2257. ER_THREAD_POOL_INVALID_PRIO_KICKUP_TIMER
  2258. eng "Invalid value of thread_pool_prio_kickup_timer specified. Value of thread_pool_prio_kickup_timer should be in range 0-4294967294."
  2259. ER_THREAD_POOL_MAX_UNUSED_THREADS_INVALID
  2260. eng "thread_pool_max_unused_threads cannot be set higher than %d."
  2261. ER_THREAD_POOL_CON_HANDLER_INIT_FAILED
  2262. eng "Failed to instantiate the connection handler object."
  2263. ER_THREAD_POOL_INIT_FAILED
  2264. eng "Failed to initialize thread pool plugin."
  2265. OBSOLETE_ER_THREAD_POOL_PLUGIN_STARTED
  2266. eng "Thread pool plugin started successfully with parameters: thread_pool_size = %lu, thread_pool_algorithm = %s, thread_pool_stall_limit = %u, thread_pool_prio_kickup_timer = %u, thread_pool_max_unused_threads = %u, thread_pool_high_priority_connection = %d."
  2267. ER_THREAD_POOL_CANNOT_SET_THREAD_SPECIFIC_DATA
  2268. eng "Can't setup connection teardown thread-specific data."
  2269. ER_THREAD_POOL_FAILED_TO_CREATE_CONNECT_HANDLER_THD
  2270. eng "Creation of connect handler thread failed."
  2271. ER_THREAD_POOL_FAILED_TO_CREATE_THD_AND_AUTH_CONN
  2272. eng "Failed to create thd and authenticate connection."
  2273. ER_THREAD_POOL_FAILED_PROCESS_CONNECT_EVENT
  2274. eng "Failed to process connection event."
  2275. ER_THREAD_POOL_FAILED_TO_CREATE_POOL
  2276. eng "Can't create pool thread (error %d, errno: %d)."
  2277. ER_THREAD_POOL_RATE_LIMITED_ERROR_MSGS
  2278. eng "%.*s."
  2279. ER_TRHEAD_POOL_LOW_LEVEL_INIT_FAILED
  2280. eng "tp_group_low_level_init() failed."
  2281. ER_THREAD_POOL_LOW_LEVEL_REARM_FAILED
  2282. eng "Rearm failed even after 30 seconds, can't continue without notify socket."
  2283. ER_THREAD_POOL_BUFFER_TOO_SMALL
  2284. eng "%s: %s buffer is too small"
  2285. ER_MECAB_NOT_SUPPORTED
  2286. eng "Mecab v%s is not supported, the lowest version supported is v%s."
  2287. ER_MECAB_NOT_VERIFIED
  2288. eng "Mecab v%s is not verified, the highest version supported is v%s."
  2289. ER_MECAB_CREATING_MODEL
  2290. eng "Mecab: Trying createModel(%s)."
  2291. ER_MECAB_FAILED_TO_CREATE_MODEL
  2292. eng "Mecab: createModel() failed: %s."
  2293. ER_MECAB_FAILED_TO_CREATE_TRIGGER
  2294. eng "Mecab: createTagger() failed: %s."
  2295. ER_MECAB_UNSUPPORTED_CHARSET
  2296. eng "Mecab: Unsupported dictionary charset %s."
  2297. ER_MECAB_CHARSET_LOADED
  2298. eng "Mecab: Loaded dictionary charset is %s."
  2299. ER_MECAB_PARSE_FAILED
  2300. eng "Mecab: parse() failed: %s."
  2301. ER_MECAB_OOM_WHILE_PARSING_TEXT
  2302. eng "Mecab: parse() failed: out of memory."
  2303. ER_MECAB_CREATE_LATTICE_FAILED
  2304. eng "Mecab: createLattice() failed: %s."
  2305. ER_SEMISYNC_TRACE_ENTER_FUNC
  2306. eng "---> %s enter."
  2307. ER_SEMISYNC_TRACE_EXIT_WITH_INT_EXIT_CODE
  2308. eng "<--- %s exit (%d)."
  2309. ER_SEMISYNC_TRACE_EXIT_WITH_BOOL_EXIT_CODE
  2310. eng "<--- %s exit (%s)."
  2311. ER_SEMISYNC_TRACE_EXIT
  2312. eng "<--- %s exit."
  2313. ER_SEMISYNC_RPL_INIT_FOR_TRX
  2314. eng "Semi-sync replication initialized for transactions."
  2315. ER_SEMISYNC_FAILED_TO_ALLOCATE_TRX_NODE
  2316. eng "%s: transaction node allocation failed for: (%s, %lu)."
  2317. ER_SEMISYNC_BINLOG_WRITE_OUT_OF_ORDER
  2318. eng "%s: binlog write out-of-order, tail (%s, %lu), new node (%s, %lu)."
  2319. ER_SEMISYNC_INSERT_LOG_INFO_IN_ENTRY
  2320. eng "%s: insert (%s, %lu) in entry(%u)."
  2321. ER_SEMISYNC_PROBE_LOG_INFO_IN_ENTRY
  2322. eng "%s: probe (%s, %lu) in entry(%u)."
  2323. ER_SEMISYNC_CLEARED_ALL_ACTIVE_TRANSACTION_NODES
  2324. eng "%s: cleared all nodes."
  2325. ER_SEMISYNC_CLEARED_ACTIVE_TRANSACTION_TILL_POS
  2326. eng "%s: cleared %d nodes back until pos (%s, %lu)."
  2327. ER_SEMISYNC_REPLY_MAGIC_NO_ERROR
  2328. eng "Read semi-sync reply magic number error."
  2329. ER_SEMISYNC_REPLY_PKT_LENGTH_TOO_SMALL
  2330. eng "Read semi-sync reply length error: packet is too small."
  2331. ER_SEMISYNC_REPLY_BINLOG_FILE_TOO_LARGE
  2332. eng "Read semi-sync reply binlog file length too large."
  2333. ER_SEMISYNC_SERVER_REPLY
  2334. eng "%s: Got reply(%s, %lu) from server %u."
  2335. ER_SEMISYNC_FUNCTION_CALLED_TWICE
  2336. eng "%s called twice."
  2337. ER_SEMISYNC_RPL_ENABLED_ON_MASTER
  2338. eng "Semi-sync replication enabled on the master."
  2339. ER_SEMISYNC_MASTER_OOM
  2340. eng "Cannot allocate memory to enable semi-sync on the master."
  2341. ER_SEMISYNC_DISABLED_ON_MASTER
  2342. eng "Semi-sync replication disabled on the master."
  2343. ER_SEMISYNC_FORCED_SHUTDOWN
  2344. eng "SEMISYNC: Forced shutdown. Some updates might not be replicated."
  2345. ER_SEMISYNC_MASTER_GOT_REPLY_AT_POS
  2346. eng "%s: Got reply at (%s, %lu)."
  2347. ER_SEMISYNC_MASTER_SIGNAL_ALL_WAITING_THREADS
  2348. eng "%s: signal all waiting threads."
  2349. ER_SEMISYNC_MASTER_TRX_WAIT_POS
  2350. eng "%s: wait pos (%s, %lu), repl(%d)."
  2351. ER_SEMISYNC_BINLOG_REPLY_IS_AHEAD
  2352. eng "%s: Binlog reply is ahead (%s, %lu)."
  2353. ER_SEMISYNC_MOVE_BACK_WAIT_POS
  2354. eng "%s: move back wait position (%s, %lu)."
  2355. ER_SEMISYNC_INIT_WAIT_POS
  2356. eng "%s: init wait position (%s, %lu)."
  2357. ER_SEMISYNC_WAIT_TIME_FOR_BINLOG_SENT
  2358. eng "%s: wait %lu ms for binlog sent (%s, %lu)."
  2359. ER_SEMISYNC_WAIT_FOR_BINLOG_TIMEDOUT
  2360. eng "Timeout waiting for reply of binlog (file: %s, pos: %lu), semi-sync up to file %s, position %lu."
  2361. ER_SEMISYNC_WAIT_TIME_ASSESSMENT_FOR_COMMIT_TRX_FAILED
  2362. eng "Assessment of waiting time for commitTrx failed at wait position (%s, %lu)."
  2363. ER_SEMISYNC_RPL_SWITCHED_OFF
  2364. eng "Semi-sync replication switched OFF."
  2365. ER_SEMISYNC_RPL_SWITCHED_ON
  2366. eng "Semi-sync replication switched ON at (%s, %lu)."
  2367. ER_SEMISYNC_NO_SPACE_IN_THE_PKT
  2368. eng "No enough space in the packet for semi-sync extra header, semi-sync replication disabled."
  2369. ER_SEMISYNC_SYNC_HEADER_UPDATE_INFO
  2370. eng "%s: server(%d), (%s, %lu) sync(%d), repl(%d)."
  2371. ER_SEMISYNC_FAILED_TO_INSERT_TRX_NODE
  2372. eng "Semi-sync failed to insert tranx_node for binlog file: %s, position: %lu."
  2373. ER_SEMISYNC_TRX_SKIPPED_AT_POS
  2374. eng "%s: Transaction skipped at (%s, %lu)."
  2375. ER_SEMISYNC_MASTER_FAILED_ON_NET_FLUSH
  2376. eng "Semi-sync master failed on net_flush() before waiting for replica reply."
  2377. ER_SEMISYNC_RECEIVED_ACK_IS_SMALLER
  2378. eng "The received ack is smaller than m_greatest_ack."
  2379. ER_SEMISYNC_ADD_ACK_TO_SLOT
  2380. eng "Add the ack into slot %u."
  2381. ER_SEMISYNC_UPDATE_EXISTING_SLAVE_ACK
  2382. eng "Update an exsiting ack in slot %u."
  2383. ER_SEMISYNC_FAILED_TO_START_ACK_RECEIVER_THD
  2384. eng "Failed to start semi-sync ACK receiver thread, could not create thread(errno:%d)."
  2385. ER_SEMISYNC_STARTING_ACK_RECEIVER_THD
  2386. eng "Starting ack receiver thread."
  2387. ER_SEMISYNC_FAILED_TO_WAIT_ON_DUMP_SOCKET
  2388. eng "Failed to wait on semi-sync dump sockets, error: errno=%d."
  2389. ER_SEMISYNC_STOPPING_ACK_RECEIVER_THREAD
  2390. eng "Stopping ack receiver thread."
  2391. ER_SEMISYNC_FAILED_REGISTER_SLAVE_TO_RECEIVER
  2392. eng "Failed to register slave to semi-sync ACK receiver thread."
  2393. ER_SEMISYNC_START_BINLOG_DUMP_TO_SLAVE
  2394. eng "Start %s binlog_dump to slave (server_id: %d), pos(%s, %lu)."
  2395. ER_SEMISYNC_STOP_BINLOG_DUMP_TO_SLAVE
  2396. eng "Stop %s binlog_dump to slave (server_id: %d)."
  2397. ER_SEMISYNC_UNREGISTER_TRX_OBSERVER_FAILED
  2398. eng "unregister_trans_observer failed."
  2399. ER_SEMISYNC_UNREGISTER_BINLOG_STORAGE_OBSERVER_FAILED
  2400. eng "unregister_binlog_storage_observer failed."
  2401. ER_SEMISYNC_UNREGISTER_BINLOG_TRANSMIT_OBSERVER_FAILED
  2402. eng "unregister_binlog_transmit_observer failed."
  2403. ER_SEMISYNC_UNREGISTERED_REPLICATOR
  2404. eng "unregister_replicator OK."
  2405. ER_SEMISYNC_SOCKET_FD_TOO_LARGE
  2406. eng "Semisync slave socket fd is %u. select() cannot handle if the socket fd is bigger than %u (FD_SETSIZE)."
  2407. ER_SEMISYNC_SLAVE_REPLY
  2408. eng "%s: reply - %d."
  2409. ER_SEMISYNC_MISSING_MAGIC_NO_FOR_SEMISYNC_PKT
  2410. eng "Missing magic number for semi-sync packet, packet len: %lu."
  2411. ER_SEMISYNC_SLAVE_START
  2412. eng "Slave I/O thread: Start %s replication to master '%s@%s:%d' in log '%s' at position %lu."
  2413. ER_SEMISYNC_SLAVE_REPLY_WITH_BINLOG_INFO
  2414. eng "%s: reply (%s, %lu)."
  2415. ER_SEMISYNC_SLAVE_NET_FLUSH_REPLY_FAILED
  2416. eng "Semi-sync slave net_flush() reply failed."
  2417. ER_SEMISYNC_SLAVE_SEND_REPLY_FAILED
  2418. eng "Semi-sync slave send reply failed: %s (%d)."
  2419. ER_SEMISYNC_EXECUTION_FAILED_ON_MASTER
  2420. eng "Execution failed on master: %s; error %d"
  2421. ER_SEMISYNC_NOT_SUPPORTED_BY_MASTER
  2422. eng "Master server does not support semi-sync, fallback to asynchronous replication"
  2423. ER_SEMISYNC_SLAVE_SET_FAILED
  2424. eng "Set 'rpl_semi_sync_replica=1' on master failed"
  2425. ER_SEMISYNC_FAILED_TO_STOP_ACK_RECEIVER_THD
  2426. eng "Failed to stop ack receiver thread on my_thread_join, errno(%d)."
  2427. ER_FIREWALL_FAILED_TO_READ_FIREWALL_TABLES
  2428. eng "Failed to read the firewall tables"
  2429. ER_FIREWALL_FAILED_TO_REG_DYNAMIC_PRIVILEGES
  2430. eng "Failed to register dynamic privileges"
  2431. ER_FIREWALL_RECORDING_STMT_WAS_TRUNCATED
  2432. eng "Statement was truncated and not recorded: %s"
  2433. ER_FIREWALL_RECORDING_STMT_WITHOUT_TEXT
  2434. eng "Statement with no text was not recorded"
  2435. ER_FIREWALL_SUSPICIOUS_STMT
  2436. eng "SUSPICIOUS STATEMENT from '%s'. Reason: %s Statement: %s"
  2437. ER_FIREWALL_ACCESS_DENIED
  2438. eng "ACCESS DENIED for '%s'. Reason: %s Statement: %s"
  2439. ER_FIREWALL_SKIPPED_UNKNOWN_USER_MODE
  2440. eng "Skipped unknown user mode '%s'"
  2441. ER_FIREWALL_RELOADING_CACHE
  2442. eng "Reloading cache from disk"
  2443. ER_FIREWALL_RESET_FOR_USER
  2444. eng "FIREWALL RESET for '%s'"
  2445. ER_FIREWALL_STATUS_FLUSHED
  2446. eng "Counters are reset to zero"
  2447. ER_KEYRING_LOGGER_ERROR_MSG
  2448. eng "%s"
  2449. ER_AUDIT_LOG_FILTER_IS_NOT_INSTALLED
  2450. eng "Audit Log plugin supports a filtering, which has not been installed yet. Audit Log plugin will run in the legacy mode, which will be disabled in the next release."
  2451. ER_AUDIT_LOG_SWITCHING_TO_INCLUDE_LIST
  2452. eng "Previously exclude list is used, now we start using include list, exclude list is set to NULL."
  2453. ER_AUDIT_LOG_CANNOT_SET_LOG_POLICY_WITH_OTHER_POLICIES
  2454. eng "Cannot set audit_log_policy simultaneously with either audit_log_connection_policy or audit_log_statement_policy, setting audit_log_connection_policy and audit_log_statement_policy based on audit_log_policy."
  2455. ER_AUDIT_LOG_ONLY_INCLUDE_LIST_USED
  2456. eng "Both include and exclude lists provided, include list is preferred, exclude list is set to NULL."
  2457. ER_AUDIT_LOG_INDEX_MAP_CANNOT_ACCESS_DIR
  2458. eng "Could not access '%s' directory."
  2459. ER_AUDIT_LOG_WRITER_RENAME_FILE_FAILED
  2460. eng "Could not rename file from '%s' to '%s'."
  2461. ER_AUDIT_LOG_WRITER_DEST_FILE_ALREADY_EXISTS
  2462. eng "File '%s' should not exist. It may be incomplete. The server crashed."
  2463. ER_AUDIT_LOG_WRITER_RENAME_FILE_FAILED_REMOVE_FILE_MANUALLY
  2464. eng "Could not rename file from '%s' to '%s'. Remove the file manually."
  2465. ER_AUDIT_LOG_WRITER_INCOMPLETE_FILE_RENAMED
  2466. eng "Incomplete file renamed from '%s' to '%s'."
  2467. ER_AUDIT_LOG_WRITER_FAILED_TO_WRITE_TO_FILE
  2468. eng "Error writing file \'%-.200s\' (errno: %d - %s)."
  2469. ER_AUDIT_LOG_EC_WRITER_FAILED_TO_INIT_ENCRYPTION
  2470. eng "Could not initialize audit log file encryption."
  2471. ER_AUDIT_LOG_EC_WRITER_FAILED_TO_INIT_COMPRESSION
  2472. eng "Could not initialize audit log file compression."
  2473. ER_AUDIT_LOG_EC_WRITER_FAILED_TO_CREATE_FILE
  2474. eng "Could not create '%s' file for audit logging."
  2475. ER_AUDIT_LOG_RENAME_LOG_FILE_BEFORE_FLUSH
  2476. eng "Audit log file (%s) must be manually renamed before audit_log_flush is set to true."
  2477. ER_AUDIT_LOG_FILTER_RESULT_MSG
  2478. eng "%s"
  2479. ER_AUDIT_LOG_JSON_READER_FAILED_TO_PARSE
  2480. eng "Error parsing JSON event. Event not accessible."
  2481. ER_AUDIT_LOG_JSON_READER_BUF_TOO_SMALL
  2482. eng "Buffer is too small to hold JSON event. Number of events skipped: %zu."
  2483. ER_AUDIT_LOG_JSON_READER_FAILED_TO_OPEN_FILE
  2484. eng "Could not open JSON file for reading. Reading next file if exists."
  2485. ER_AUDIT_LOG_JSON_READER_FILE_PARSING_ERROR
  2486. eng "JSON file parsing error. Reading next file if exists"
  2487. OBSOLETE_ER_AUDIT_LOG_FILTER_INVALID_COLUMN_COUNT
  2488. eng "Invalid column count in the '%s.%s' table."
  2489. OBSOLETE_ER_AUDIT_LOG_FILTER_INVALID_COLUMN_DEFINITION
  2490. eng "Invalid column definition of the '%s.%s' table."
  2491. ER_AUDIT_LOG_FILTER_FAILED_TO_STORE_TABLE_FLDS
  2492. eng "Could not store field of the %s table."
  2493. ER_AUDIT_LOG_FILTER_FAILED_TO_UPDATE_TABLE
  2494. eng "Could not update %s table."
  2495. ER_AUDIT_LOG_FILTER_FAILED_TO_INSERT_INTO_TABLE
  2496. eng "Could not insert into %s table."
  2497. ER_AUDIT_LOG_FILTER_FAILED_TO_DELETE_FROM_TABLE
  2498. eng "Could not delete from %s table."
  2499. ER_AUDIT_LOG_FILTER_FAILED_TO_INIT_TABLE_FOR_READ
  2500. eng "Could not initialize %s table for reading."
  2501. ER_AUDIT_LOG_FILTER_FAILED_TO_READ_TABLE
  2502. eng "Could not read %s table."
  2503. ER_AUDIT_LOG_FILTER_FAILED_TO_CLOSE_TABLE_AFTER_READING
  2504. eng "Could not close %s table reading."
  2505. ER_AUDIT_LOG_FILTER_USER_AND_HOST_CANNOT_BE_EMPTY
  2506. eng "Both user and host columns of %s table cannot be empty."
  2507. ER_AUDIT_LOG_FILTER_FLD_FILTERNAME_CANNOT_BE_EMPTY
  2508. eng "Filtername column of %s table cannot be empty."
  2509. ER_VALIDATE_PWD_DICT_FILE_NOT_SPECIFIED
  2510. eng "Dictionary file not specified"
  2511. ER_VALIDATE_PWD_DICT_FILE_NOT_LOADED
  2512. eng "Dictionary file not loaded"
  2513. ER_VALIDATE_PWD_DICT_FILE_TOO_BIG
  2514. eng "Dictionary file size exceeded MAX_DICTIONARY_FILE_LENGTH, not loaded"
  2515. ER_VALIDATE_PWD_FAILED_TO_READ_DICT_FILE
  2516. eng "Exception while reading the dictionary file"
  2517. ER_VALIDATE_PWD_FAILED_TO_GET_FLD_FROM_SECURITY_CTX
  2518. eng "Can't retrieve the %s from the security context"
  2519. ER_VALIDATE_PWD_FAILED_TO_GET_SECURITY_CTX
  2520. eng "Can't retrieve the security context"
  2521. ER_VALIDATE_PWD_LENGTH_CHANGED
  2522. eng "Effective value of validate_password_length is changed. New value is %d"
  2523. ER_REWRITER_QUERY_ERROR_MSG
  2524. eng "%s"
  2525. ER_REWRITER_QUERY_FAILED
  2526. eng "Rewritten query failed to parse:%s"
  2527. ER_XPLUGIN_STARTUP_FAILED
  2528. eng "Startup failed with error \"%s\""
  2529. OBSOLETE_ER_XPLUGIN_SERVER_EXITING
  2530. eng "Exiting"
  2531. OBSOLETE_ER_XPLUGIN_SERVER_EXITED
  2532. eng "Exit done"
  2533. ER_XPLUGIN_USING_SSL_CONF_FROM_SERVER
  2534. eng "Using SSL configuration from MySQL Server"
  2535. ER_XPLUGIN_USING_SSL_CONF_FROM_MYSQLX
  2536. eng "Using SSL configuration from Mysqlx Plugin"
  2537. ER_XPLUGIN_FAILED_TO_USE_SSL_CONF
  2538. eng "Neither MySQL Server nor Mysqlx Plugin has valid SSL configuration"
  2539. ER_XPLUGIN_USING_SSL_FOR_TLS_CONNECTION
  2540. eng "Using %s for TLS connections"
  2541. ER_XPLUGIN_REFERENCE_TO_SECURE_CONN_WITH_XPLUGIN
  2542. eng "For more information, please see the Using Secure Connections with X Plugin section in the MySQL documentation"
  2543. ER_XPLUGIN_ERROR_MSG
  2544. eng "%s"
  2545. ER_SHA_PWD_FAILED_TO_PARSE_AUTH_STRING
  2546. eng "Failed to parse stored authentication string for %s. Please check if mysql.user table not corrupted"
  2547. ER_SHA_PWD_FAILED_TO_GENERATE_MULTI_ROUND_HASH
  2548. eng "Error in generating multi-round hash for %s. Plugin can not perform authentication without it. This may be a transient problem"
  2549. ER_SHA_PWD_AUTH_REQUIRES_RSA_OR_SSL
  2550. eng "Authentication requires either RSA keys or SSL encryption"
  2551. ER_SHA_PWD_RSA_KEY_TOO_LONG
  2552. eng "RSA key cipher length of %u is too long. Max value is %u"
  2553. ER_PLUGIN_COMMON_FAILED_TO_OPEN_FILTER_TABLES
  2554. eng "Failed to open the %s filter tables"
  2555. ER_PLUGIN_COMMON_FAILED_TO_OPEN_TABLE
  2556. eng "Failed to open '%s.%s' %s table"
  2557. ER_AUTH_LDAP_ERROR_LOGGER_ERROR_MSG
  2558. eng "%s"
  2559. ER_CONN_CONTROL_ERROR_MSG
  2560. eng "%s"
  2561. ER_GRP_RPL_ERROR_MSG
  2562. eng "%s"
  2563. ER_SHA_PWD_SALT_FOR_USER_CORRUPT
  2564. eng "Password salt for user '%s' is corrupt"
  2565. ER_SYS_VAR_COMPONENT_OOM
  2566. eng "Out of memory for component system variable '%s'."
  2567. ER_SYS_VAR_COMPONENT_VARIABLE_SET_READ_ONLY
  2568. eng "variable %s of component %s was forced to be read-only: string variable without update_func and PLUGIN_VAR_MEMALLOC flag."
  2569. ER_SYS_VAR_COMPONENT_UNKNOWN_VARIABLE_TYPE
  2570. eng "Unknown variable type code 0x%x in component '%s'."
  2571. ER_SYS_VAR_COMPONENT_FAILED_TO_PARSE_VARIABLE_OPTIONS
  2572. eng "Parsing options for variable '%s' failed."
  2573. ER_SYS_VAR_COMPONENT_FAILED_TO_MAKE_VARIABLE_PERSISTENT
  2574. eng "Setting persistent options for component variable '%s' failed."
  2575. ER_COMPONENT_FILTER_CONFUSED
  2576. eng "The log-filter component \"%s\" got confused at \"%s\" (state: %s) ..."
  2577. ER_STOP_SLAVE_IO_THREAD_DISK_SPACE
  2578. eng "Waiting until I/O thread for channel '%s' finish writing to disk before stopping. Free some disk space or use 'KILL' to abort I/O thread operation. Notice that aborting the I/O thread while rotating the relay log might corrupt the relay logs, requiring a server restart to fix it."
  2579. ER_LOG_FILE_CANNOT_OPEN
  2580. eng "Could not use %s for logging (error %d - %s). Turning logging off for the server process. To turn it on again: fix the cause, then%s restart the MySQL server."
  2581. OBSOLETE_ER_UNABLE_TO_COLLECT_LOG_STATUS
  2582. eng "Unable to collect information for column '%-.192s': %-.192s."
  2583. OBSOLETE_ER_DEPRECATED_UTF8_ALIAS
  2584. eng "'utf8' is currently an alias for the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous."
  2585. OBSOLETE_ER_DEPRECATED_NATIONAL
  2586. eng "NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous."
  2587. OBSOLETE_ER_SLAVE_POSSIBLY_DIVERGED_AFTER_DDL
  2588. eng "A commit for an atomic DDL statement was unsuccessful on the master and the slave. The slave supports atomic DDL statements but the master does not, so the action taken by the slave and master might differ. Check that their states have not diverged before proceeding."
  2589. ER_PERSIST_OPTION_STATUS
  2590. eng "Configuring persisted options failed: \"%s\"."
  2591. ER_NOT_IMPLEMENTED_GET_TABLESPACE_STATISTICS
  2592. eng "The storage engine '%-.192s' does not provide dynamic table statistics"
  2593. OBSOLETE_ER_UNABLE_TO_SET_OPTION
  2594. eng "This option cannot be set %s."
  2595. OBSOLETE_ER_RESERVED_TABLESPACE_NAME
  2596. eng "The table '%-.192s' may not be created in the reserved tablespace '%-.192s'."
  2597. ER_SSL_FIPS_MODE_ERROR
  2598. eng "SSL fips mode error: %s"
  2599. ER_CONN_INIT_CONNECT_IGNORED
  2600. eng "init_connect variable is ignored for user: %s host: %s due to expired password."
  2601. OBSOLETE_ER_UNSUPPORTED_SQL_MODE
  2602. eng "sql_mode=0x%08x is not supported"
  2603. ER_REWRITER_OOM
  2604. eng "Out of memory."
  2605. ER_REWRITER_TABLE_MALFORMED_ERROR
  2606. eng "Wrong column count or names when loading rules."
  2607. ER_REWRITER_LOAD_FAILED
  2608. eng "Some rules failed to load."
  2609. ER_REWRITER_READ_FAILED
  2610. eng "Got error from storage engine while refreshing rewrite rules."
  2611. ER_CONN_CONTROL_EVENT_COORDINATOR_INIT_FAILED
  2612. eng "Failed to initialize Connection_event_coordinator"
  2613. ER_CONN_CONTROL_STAT_CONN_DELAY_TRIGGERED_UPDATE_FAILED
  2614. eng "Failed to update connection delay triggered stats"
  2615. ER_CONN_CONTROL_STAT_CONN_DELAY_TRIGGERED_RESET_FAILED
  2616. eng "Failed to reset connection delay triggered stats"
  2617. ER_CONN_CONTROL_INVALID_CONN_DELAY_TYPE
  2618. eng "Unexpected option type for connection delay."
  2619. ER_CONN_CONTROL_DELAY_ACTION_INIT_FAILED
  2620. eng "Failed to initialize Connection_delay_action"
  2621. ER_CONN_CONTROL_FAILED_TO_SET_CONN_DELAY
  2622. eng "Could not set %s delay for connection delay."
  2623. ER_CONN_CONTROL_FAILED_TO_UPDATE_CONN_DELAY_HASH
  2624. eng "Failed to update connection delay hash for account : %s"
  2625. ER_XPLUGIN_FORCE_STOP_CLIENT
  2626. eng "%s: Force stopping client because exception occurred: %s"
  2627. ER_XPLUGIN_MAX_AUTH_ATTEMPTS_REACHED
  2628. eng "%s.%u: Maximum number of authentication attempts reached, login failed."
  2629. ER_XPLUGIN_BUFFER_PAGE_ALLOC_FAILED
  2630. eng "Error allocating Buffer_page: %s"
  2631. ER_XPLUGIN_DETECTED_HANGING_CLIENTS
  2632. eng "Detected %u hanging client(s)"
  2633. ER_XPLUGIN_FAILED_TO_ACCEPT_CLIENT
  2634. eng "Error accepting client"
  2635. ER_XPLUGIN_FAILED_TO_SCHEDULE_CLIENT
  2636. eng "Internal error scheduling client for execution"
  2637. ER_XPLUGIN_FAILED_TO_PREPARE_IO_INTERFACES
  2638. eng "Preparation of I/O interfaces failed, X Protocol won't be accessible"
  2639. ER_XPLUGIN_SRV_SESSION_INIT_THREAD_FAILED
  2640. eng "srv_session_init_thread returned error"
  2641. ER_XPLUGIN_UNABLE_TO_USE_USER_SESSION_ACCOUNT
  2642. eng "Unable to use user mysql.session account when connecting the server for internal plugin requests."
  2643. ER_XPLUGIN_REFERENCE_TO_USER_ACCOUNT_DOC_SECTION
  2644. eng "For more information, please see the X Plugin User Account section in the MySQL documentation"
  2645. ER_XPLUGIN_UNEXPECTED_EXCEPTION_DISPATCHING_CMD
  2646. eng "%s: Unexpected exception dispatching command: %s"
  2647. ER_XPLUGIN_EXCEPTION_IN_TASK_SCHEDULER
  2648. eng "Exception in post: %s"
  2649. ER_XPLUGIN_TASK_SCHEDULING_FAILED
  2650. eng "Internal error scheduling task"
  2651. ER_XPLUGIN_EXCEPTION_IN_EVENT_LOOP
  2652. eng "Exception in event loop: \"%s\": %s"
  2653. ER_XPLUGIN_LISTENER_SETUP_FAILED
  2654. eng "Setup of %s failed, %s"
  2655. ER_XPLUING_NET_STARTUP_FAILED
  2656. eng "%s"
  2657. ER_XPLUGIN_FAILED_AT_SSL_CONF
  2658. eng "Failed at SSL configuration: \"%s\""
  2659. OBSOLETE_ER_XPLUGIN_CLIENT_SSL_HANDSHAKE_FAILED
  2660. eng "Error during SSL handshake for client connection (%i)"
  2661. OBSOLETE_ER_XPLUGIN_SSL_HANDSHAKE_WITH_SERVER_FAILED
  2662. eng "%s: Error during SSL handshake"
  2663. ER_XPLUGIN_FAILED_TO_CREATE_SESSION_FOR_CONN
  2664. eng "%s: Error creating session for connection from %s"
  2665. ER_XPLUGIN_FAILED_TO_INITIALIZE_SESSION
  2666. eng "%s: Error initializing session for connection: %s"
  2667. ER_XPLUGIN_MESSAGE_TOO_LONG
  2668. eng "%s: Message of size %u received, exceeding the limit of %i"
  2669. ER_XPLUGIN_UNINITIALIZED_MESSAGE
  2670. eng "Message is not properly initialized: %s"
  2671. ER_XPLUGIN_FAILED_TO_SET_MIN_NUMBER_OF_WORKERS
  2672. eng "Unable to set minimal number of workers to %u; actual value is %i"
  2673. ER_XPLUGIN_UNABLE_TO_ACCEPT_CONNECTION
  2674. eng "Unable to accept connection, disconnecting client"
  2675. ER_XPLUGIN_ALL_IO_INTERFACES_DISABLED
  2676. eng "All I/O interfaces are disabled, X Protocol won't be accessible"
  2677. OBSOLETE_ER_XPLUGIN_INVALID_MSG_DURING_CLIENT_INIT
  2678. eng "%s: Invalid message %i received during client initialization"
  2679. OBSOLETE_ER_XPLUGIN_CLOSING_CLIENTS_ON_SHUTDOWN
  2680. eng "%s: closing client because of shutdown (state: %i)"
  2681. ER_XPLUGIN_ERROR_READING_SOCKET
  2682. eng "%s: Error reading from socket %s (%i)"
  2683. ER_XPLUGIN_PEER_DISCONNECTED_WHILE_READING_MSG_BODY
  2684. eng "%s: peer disconnected while reading message body"
  2685. ER_XPLUGIN_READ_FAILED_CLOSING_CONNECTION
  2686. eng "client_id:%s - %s while reading from socket, closing connection"
  2687. OBSOLETE_ER_XPLUGIN_INVALID_AUTH_METHOD
  2688. eng "%s.%u: Invalid authentication method %s"
  2689. OBSOLETE_ER_XPLUGIN_UNEXPECTED_MSG_DURING_AUTHENTICATION
  2690. eng "%s: Unexpected message of type %i received during authentication"
  2691. OBSOLETE_ER_XPLUGIN_ERROR_WRITING_TO_CLIENT
  2692. eng "Error writing to client: %s (%i)"
  2693. OBSOLETE_ER_XPLUGIN_SCHEDULER_STARTED
  2694. eng "Scheduler \"%s\" started."
  2695. OBSOLETE_ER_XPLUGIN_SCHEDULER_STOPPED
  2696. eng "Scheduler \"%s\" stopped."
  2697. ER_XPLUGIN_LISTENER_SYS_VARIABLE_ERROR
  2698. eng "Please see the MySQL documentation for '%s' system variables to fix the error"
  2699. ER_XPLUGIN_LISTENER_STATUS_MSG
  2700. eng "X Plugin ready for connections. %s"
  2701. ER_XPLUGIN_RETRYING_BIND_ON_PORT
  2702. eng "Retrying `bind()` on TCP/IP port %i"
  2703. OBSOLETE_ER_XPLUGIN_SHUTDOWN_TRIGGERED
  2704. eng "Shutdown triggered by mysqld abort flag"
  2705. OBSOLETE_ER_XPLUGIN_USER_ACCOUNT_WITH_ALL_PERMISSIONS
  2706. eng "Using %s account for authentication which has all required permissions"
  2707. ER_XPLUGIN_EXISTING_USER_ACCOUNT_WITH_INCOMPLETE_GRANTS
  2708. eng "Using existing %s account for authentication. Incomplete grants will be fixed"
  2709. OBSOLETE_ER_XPLUGIN_SERVER_STARTS_HANDLING_CONNECTIONS
  2710. eng "Server starts handling incoming connections"
  2711. OBSOLETE_ER_XPLUGIN_SERVER_STOPPED_HANDLING_CONNECTIONS
  2712. eng "Stopped handling incoming connections"
  2713. OBSOLETE_ER_XPLUGIN_FAILED_TO_INTERRUPT_SESSION
  2714. eng "%s: Could not interrupt client session"
  2715. OBSOLETE_ER_XPLUGIN_CLIENT_RELEASE_TRIGGERED
  2716. eng "%s: release triggered by timeout in state:%i"
  2717. ER_XPLUGIN_IPv6_AVAILABLE
  2718. eng "IPv6 is available"
  2719. OBSOLETE_ER_XPLUGIN_UNIX_SOCKET_NOT_CONFIGURED
  2720. eng "UNIX socket not configured"
  2721. ER_XPLUGIN_CLIENT_KILL_MSG
  2722. eng "Kill client: %i %s"
  2723. ER_XPLUGIN_FAILED_TO_GET_SECURITY_CTX
  2724. eng "Could not get security context for session"
  2725. OBSOLETE_ER_XPLUGIN_FAILED_TO_SWITCH_SECURITY_CTX_TO_ROOT
  2726. eng "Unable to switch security context to root"
  2727. ER_XPLUGIN_FAILED_TO_CLOSE_SQL_SESSION
  2728. eng "Error closing SQL session"
  2729. ER_XPLUGIN_FAILED_TO_EXECUTE_ADMIN_CMD
  2730. eng "Error executing admin command %s: %s"
  2731. ER_XPLUGIN_EMPTY_ADMIN_CMD
  2732. eng "Error executing empty admin command"
  2733. ER_XPLUGIN_FAILED_TO_GET_SYS_VAR
  2734. eng "Unable to retrieve system variable \'%s\'"
  2735. ER_XPLUGIN_FAILED_TO_GET_CREATION_STMT
  2736. eng "Unable to get creation stmt for collection \'%s\'; query result size: %lu"
  2737. ER_XPLUGIN_FAILED_TO_GET_ENGINE_INFO
  2738. eng "Unable to get engine info for collection \'%s\'; creation stmt: %s"
  2739. OBSOLETE_ER_XPLUGIN_FAIL_TO_GET_RESULT_DATA
  2740. eng "Error getting result data: %s"
  2741. OBSOLETE_ER_XPLUGIN_CAPABILITY_EXPIRED_PASSWORD
  2742. eng "Capability expired password failed with error: %s"
  2743. ER_XPLUGIN_FAILED_TO_SET_SO_REUSEADDR_FLAG
  2744. eng "Failed to set SO_REUSEADDR flag (error: %d)."
  2745. ER_XPLUGIN_FAILED_TO_OPEN_INTERNAL_SESSION
  2746. eng "Could not open internal MySQL session"
  2747. ER_XPLUGIN_FAILED_TO_SWITCH_CONTEXT
  2748. eng "Unable to switch context to user %s"
  2749. ER_XPLUGIN_FAILED_TO_UNREGISTER_UDF
  2750. eng "Can\'t unregister \'%s\' user defined function"
  2751. OBSOLETE_ER_XPLUGIN_GET_PEER_ADDRESS_FAILED
  2752. eng "%s: get peer address failed, can't resolve IP to hostname"
  2753. OBSOLETE_ER_XPLUGIN_CAPABILITY_CLIENT_INTERACTIVE_FAILED
  2754. eng "Capability client interactive failed with error: %s"
  2755. ER_XPLUGIN_FAILED_TO_RESET_IPV6_V6ONLY_FLAG
  2756. eng "Failed to reset IPV6_V6ONLY flag (error: %d). The server will listen to IPv6 addresses only."
  2757. ER_KEYRING_INVALID_KEY_TYPE
  2758. eng "Invalid key type"
  2759. ER_KEYRING_INVALID_KEY_LENGTH
  2760. eng "Invalid key length for given block cipher"
  2761. ER_KEYRING_FAILED_TO_CREATE_KEYRING_DIR
  2762. eng "Could not create keyring directory. The keyring_file will stay unusable until correct path to the keyring directory gets provided"
  2763. ER_KEYRING_FILE_INIT_FAILED
  2764. eng "keyring_file initialization failure. Please check if the keyring_file_data points to readable keyring file or keyring file can be created in the specified location. The keyring_file will stay unusable until correct path to the keyring file gets provided"
  2765. ER_KEYRING_INTERNAL_EXCEPTION_FAILED_FILE_INIT
  2766. eng "keyring_file initialization failure due to internal exception inside the plugin."
  2767. ER_KEYRING_FAILED_TO_GENERATE_KEY
  2768. eng "Failed to generate a key due to internal exception inside keyring_file plugin"
  2769. ER_KEYRING_CHECK_KEY_FAILED_DUE_TO_INVALID_KEY
  2770. eng "Error while %s key: invalid key_type"
  2771. ER_KEYRING_CHECK_KEY_FAILED_DUE_TO_EMPTY_KEY_ID
  2772. eng "Error while %s key: key_id cannot be empty"
  2773. ER_KEYRING_OPERATION_FAILED_DUE_TO_INTERNAL_ERROR
  2774. eng "Failed to %s due to internal exception inside %s plugin"
  2775. ER_KEYRING_INCORRECT_FILE
  2776. eng "Incorrect Keyring file"
  2777. ER_KEYRING_FOUND_MALFORMED_BACKUP_FILE
  2778. eng "Found malformed keyring backup file - removing it"
  2779. ER_KEYRING_FAILED_TO_RESTORE_FROM_BACKUP_FILE
  2780. eng "Error while restoring keyring from backup file cannot overwrite keyring with backup"
  2781. ER_KEYRING_FAILED_TO_FLUSH_KEYRING_TO_FILE
  2782. eng "Error while flushing in-memory keyring into keyring file"
  2783. ER_KEYRING_FAILED_TO_GET_FILE_STAT
  2784. eng "Error while reading stat for %s.Please check if file %s was not removed. OS returned this error: %s"
  2785. ER_KEYRING_FAILED_TO_REMOVE_FILE
  2786. eng "Could not remove file %s OS retuned this error: %s"
  2787. ER_KEYRING_FAILED_TO_TRUNCATE_FILE
  2788. eng "Could not truncate file %s. OS retuned this error: %s"
  2789. ER_KEYRING_UNKNOWN_ERROR
  2790. eng "Unknown error %d"
  2791. ER_KEYRING_FAILED_TO_SET_KEYRING_FILE_DATA
  2792. eng "keyring_file_data cannot be set to new value as the keyring file cannot be created/accessed in the provided path"
  2793. ER_KEYRING_FILE_IO_ERROR
  2794. eng "%s"
  2795. ER_KEYRING_FAILED_TO_LOAD_KEYRING_CONTENT
  2796. eng "Error while loading keyring content. The keyring might be malformed"
  2797. ER_KEYRING_FAILED_TO_FLUSH_KEYS_TO_KEYRING
  2798. eng "Could not flush keys to keyring"
  2799. ER_KEYRING_FAILED_TO_FLUSH_KEYS_TO_KEYRING_BACKUP
  2800. eng "Could not flush keys to keyring's backup"
  2801. ER_KEYRING_KEY_FETCH_FAILED_DUE_TO_EMPTY_KEY_ID
  2802. eng "Error while fetching key: key_id cannot be empty"
  2803. ER_KEYRING_FAILED_TO_REMOVE_KEY_DUE_TO_EMPTY_ID
  2804. eng "Error while removing key: key_id cannot be empty"
  2805. ER_KEYRING_OKV_INCORRECT_KEY_VAULT_CONFIGURED
  2806. eng "For keyring_okv to be initialized, please point keyring_okv_conf_dir variable to a directory with Oracle Key Vault configuration file and ssl materials"
  2807. ER_KEYRING_OKV_INIT_FAILED_DUE_TO_INCORRECT_CONF
  2808. eng "keyring_okv initialization failure. Please check that the keyring_okv_conf_dir points to a readable directory and that the directory contains Oracle Key Vault configuration file and ssl materials. Please also check that Oracle Key Vault is up and running."
  2809. ER_KEYRING_OKV_INIT_FAILED_DUE_TO_INTERNAL_ERROR
  2810. eng "keyring_okv initialization failure due to internal exception inside the plugin"
  2811. ER_KEYRING_OKV_INVALID_KEY_TYPE
  2812. eng "Invalid key type"
  2813. ER_KEYRING_OKV_INVALID_KEY_LENGTH_FOR_CIPHER
  2814. eng "Invalid key length for given block cipher"
  2815. ER_KEYRING_OKV_FAILED_TO_GENERATE_KEY_DUE_TO_INTERNAL_ERROR
  2816. eng "Failed to generate a key due to internal exception inside keyring_okv plugin"
  2817. ER_KEYRING_OKV_FAILED_TO_FIND_SERVER_ENTRY
  2818. eng "Could not find entry for server in configuration file %s"
  2819. ER_KEYRING_OKV_FAILED_TO_FIND_STANDBY_SERVER_ENTRY
  2820. eng "Could not find entry for standby server in configuration file %s"
  2821. ER_KEYRING_OKV_FAILED_TO_PARSE_CONF_FILE
  2822. eng "Could not parse the %s file provided"
  2823. ER_KEYRING_OKV_FAILED_TO_LOAD_KEY_UID
  2824. eng "Could not load keys' uids from the OKV server"
  2825. ER_KEYRING_OKV_FAILED_TO_INIT_SSL_LAYER
  2826. eng "Could not initialize ssl layer"
  2827. ER_KEYRING_OKV_FAILED_TO_INIT_CLIENT
  2828. eng "Could not initialize OKV client"
  2829. ER_KEYRING_OKV_CONNECTION_TO_SERVER_FAILED
  2830. eng "Could not connect to the OKV server"
  2831. ER_KEYRING_OKV_FAILED_TO_REMOVE_KEY
  2832. eng "Could not remove the key"
  2833. ER_KEYRING_OKV_FAILED_TO_ADD_ATTRIBUTE
  2834. eng "Could not add attribute, attribute_name=%s attribute value=%s"
  2835. ER_KEYRING_OKV_FAILED_TO_GENERATE_KEY
  2836. eng "Could not generate the key."
  2837. ER_KEYRING_OKV_FAILED_TO_STORE_KEY
  2838. eng "Could not store the key."
  2839. ER_KEYRING_OKV_FAILED_TO_ACTIVATE_KEYS
  2840. eng "Could not activate the key."
  2841. ER_KEYRING_OKV_FAILED_TO_FETCH_KEY
  2842. eng "Could not fetch generated key"
  2843. ER_KEYRING_OKV_FAILED_TO_STORE_OR_GENERATE_KEY
  2844. eng "Could not store/generate the key - failed to set key attribute x-key-ready"
  2845. ER_KEYRING_OKV_FAILED_TO_RETRIEVE_KEY_SIGNATURE
  2846. eng "Could not retrieve key signature from custom attributes"
  2847. ER_KEYRING_OKV_FAILED_TO_RETRIEVE_KEY
  2848. eng "Could not retrieve key from OKV"
  2849. ER_KEYRING_OKV_FAILED_TO_LOAD_SSL_TRUST_STORE
  2850. eng "Error loading trust store"
  2851. ER_KEYRING_OKV_FAILED_TO_SET_CERTIFICATE_FILE
  2852. eng "Error setting the certificate file."
  2853. ER_KEYRING_OKV_FAILED_TO_SET_KEY_FILE
  2854. eng "Error setting the key file."
  2855. ER_KEYRING_OKV_KEY_MISMATCH
  2856. eng "Private key does not match the certificate public key"
  2857. ER_KEYRING_ENCRYPTED_FILE_INCORRECT_KEYRING_FILE
  2858. eng "Incorrect Keyring file"
  2859. ER_KEYRING_ENCRYPTED_FILE_DECRYPTION_FAILED
  2860. eng "Keyring_encrypted_file decryption failed. Please verify --keyring-encrypted-file-password option value."
  2861. ER_KEYRING_ENCRYPTED_FILE_FOUND_MALFORMED_BACKUP_FILE
  2862. eng "Found malformed keyring backup file - removing it"
  2863. ER_KEYRING_ENCRYPTED_FILE_FAILED_TO_RESTORE_KEYRING
  2864. eng "Error while restoring keyring from backup file cannot overwrite keyring with backup"
  2865. ER_KEYRING_ENCRYPTED_FILE_FAILED_TO_FLUSH_KEYRING
  2866. eng "Error while flushing in-memory keyring into keyring file"
  2867. ER_KEYRING_ENCRYPTED_FILE_ENCRYPTION_FAILED
  2868. eng "Keyring_encrypted_file encryption failed. Please verify --keyring-encrypted-file-password option value."
  2869. ER_KEYRING_ENCRYPTED_FILE_INVALID_KEYRING_DIR
  2870. eng "keyring_encrypted_file_data cannot be set to new value as the keyring file cannot be created/accessed in the provided path"
  2871. ER_KEYRING_ENCRYPTED_FILE_FAILED_TO_CREATE_KEYRING_DIR
  2872. eng "Could not create keyring directory The keyring_encrypted_file will stay unusable until correct path to the keyring directory gets provided"
  2873. ER_KEYRING_ENCRYPTED_FILE_PASSWORD_IS_INVALID
  2874. eng "The keyring_encrypted_file_password must be set to a valid value."
  2875. ER_KEYRING_ENCRYPTED_FILE_PASSWORD_IS_TOO_LONG
  2876. eng "Too long keyring_encrypted_file_password value."
  2877. ER_KEYRING_ENCRYPTED_FILE_INIT_FAILURE
  2878. eng "keyring_encrypted_file initialization failure. Please check if the keyring_encrypted_file_data points to readable keyring file or keyring file can be created in the specified location or password to decrypt keyring file is correct."
  2879. ER_KEYRING_ENCRYPTED_FILE_INIT_FAILED_DUE_TO_INTERNAL_ERROR
  2880. eng "keyring_encrypted_file initialization failure due to internal exception inside the plugin"
  2881. ER_KEYRING_ENCRYPTED_FILE_GEN_KEY_FAILED_DUE_TO_INTERNAL_ERROR
  2882. eng "Failed to generate a key due to internal exception inside keyring_encrypted_file plugin"
  2883. ER_KEYRING_AWS_FAILED_TO_SET_CMK_ID
  2884. eng "keyring_aws_cmk_id cannot be set to the new value as AWS KMS seems to not understand the id provided. Please check that CMK id provided is correct."
  2885. ER_KEYRING_AWS_FAILED_TO_SET_REGION
  2886. eng "keyring_aws_region cannot be set to the new value as AWS KMS seems to not understand the region provided. Please check that region provided is correct."
  2887. ER_KEYRING_AWS_FAILED_TO_OPEN_CONF_FILE
  2888. eng "Could not open keyring_aws configuration file: %s. OS returned this error: %s"
  2889. ER_KEYRING_AWS_FAILED_TO_ACCESS_KEY_ID_FROM_CONF_FILE
  2890. eng "Could not read AWS access key id from keyring_aws configuration file: %s. OS returned this error: %s"
  2891. ER_KEYRING_AWS_FAILED_TO_ACCESS_KEY_FROM_CONF_FILE
  2892. eng "Could not read AWS access key from keyring_aws configuration file: %s. OS returned this error: %s"
  2893. ER_KEYRING_AWS_INVALID_CONF_FILE_PATH
  2894. eng "Path to keyring aws configuration file cannot be empty"
  2895. ER_KEYRING_AWS_INVALID_DATA_FILE_PATH
  2896. eng "Path to keyring_aws storage file cannot be empty."
  2897. ER_KEYRING_AWS_FAILED_TO_ACCESS_OR_CREATE_KEYRING_DIR
  2898. eng "Unable to create/access keyring directory."
  2899. ER_KEYRING_AWS_FAILED_TO_ACCESS_OR_CREATE_KEYRING_DATA_FILE
  2900. eng "Unable to create/access keyring_aws storage file. Please check if keyring_aws_data_file points to location where keyring file can be created/accessed. Please also make sure that MySQL server's user has high enough privileges to access this location."
  2901. ER_KEYRING_AWS_FAILED_TO_INIT_DUE_TO_INTERNAL_ERROR
  2902. eng "keyring_aws initialization failed due to internal error when initializing synchronization primitive - %s. OS returned this error: %s:"
  2903. ER_KEYRING_AWS_FAILED_TO_ACCESS_DATA_FILE
  2904. eng "Could not access keyring_aws storage file in the path provided. Please check if the keyring_aws directory can be accessed by MySQL Server"
  2905. ER_KEYRING_AWS_CMK_ID_NOT_SET
  2906. eng "keyring_aws_cmk_id has to be set"
  2907. ER_KEYRING_AWS_FAILED_TO_GET_KMS_CREDENTIAL_FROM_CONF_FILE
  2908. eng "Could not get AWS KMS credentials from the configuration file"
  2909. ER_KEYRING_AWS_INIT_FAILURE
  2910. eng "keyring_aws initialization failure."
  2911. ER_KEYRING_AWS_FAILED_TO_INIT_DUE_TO_PLUGIN_INTERNAL_ERROR
  2912. eng "keyring_aws initialization failure due to internal exception inside the plugin"
  2913. ER_KEYRING_AWS_INVALID_KEY_LENGTH_FOR_CIPHER
  2914. eng "Invalid key length for given block cipher"
  2915. ER_KEYRING_AWS_FAILED_TO_GENERATE_KEY_DUE_TO_INTERNAL_ERROR
  2916. eng "Failed to generate a key due to internal exception inside keyring_file plugin"
  2917. ER_KEYRING_AWS_INCORRECT_FILE
  2918. eng "Incorrect Keyring file"
  2919. ER_KEYRING_AWS_FOUND_MALFORMED_BACKUP_FILE
  2920. eng "Found malformed keyring backup file - removing it"
  2921. ER_KEYRING_AWS_FAILED_TO_RESTORE_FROM_BACKUP_FILE
  2922. eng "Error while restoring keyring from backup file cannot overwrite keyring with backup"
  2923. ER_KEYRING_AWS_FAILED_TO_FLUSH_KEYRING_TO_FILE
  2924. eng "Error while flushing in-memory keyring into keyring file"
  2925. ER_KEYRING_AWS_INCORRECT_REGION
  2926. eng "Wrong region"
  2927. ER_KEYRING_AWS_FAILED_TO_CONNECT_KMS
  2928. eng "Could not connect to AWS KMS with the credentials provided. Please make sure they are correct. AWS KMS returned this error: %s"
  2929. ER_KEYRING_AWS_FAILED_TO_GENERATE_NEW_KEY
  2930. eng "Could not generate a new key. AWS KMS returned this error: %s"
  2931. ER_KEYRING_AWS_FAILED_TO_ENCRYPT_KEY
  2932. eng "Could not encrypt key. AWS KMS returned this error: %s"
  2933. ER_KEYRING_AWS_FAILED_TO_RE_ENCRYPT_KEY
  2934. eng "Could not re-encrypt key. AWS KMS returned this error: %s"
  2935. ER_KEYRING_AWS_FAILED_TO_DECRYPT_KEY
  2936. eng "Could not decrypt key. AWS KMS returned this error: %s"
  2937. ER_KEYRING_AWS_FAILED_TO_ROTATE_CMK
  2938. eng "Could not rotate the CMK. AWS KMS returned this error: %s"
  2939. ER_GRP_RPL_GTID_ALREADY_USED
  2940. eng "The requested GTID '%s:%lld' was already used, the transaction will rollback."
  2941. ER_GRP_RPL_APPLIER_THD_KILLED
  2942. eng "The group replication applier thread was killed."
  2943. ER_GRP_RPL_EVENT_HANDLING_ERROR
  2944. eng "Error at event handling! Got error: %d."
  2945. ER_GRP_RPL_ERROR_GTID_EXECUTION_INFO
  2946. eng "Error when extracting group GTID execution information, some recovery operations may face future issues."
  2947. ER_GRP_RPL_CERTIFICATE_SIZE_ERROR
  2948. eng "An error occurred when trying to reduce the Certification information size for transmission."
  2949. ER_GRP_RPL_CREATE_APPLIER_CACHE_ERROR
  2950. eng "Failed to create group replication pipeline applier cache!"
  2951. ER_GRP_RPL_UNBLOCK_WAITING_THD
  2952. eng "Unblocking the group replication thread waiting for applier to start, as the start group replication was killed."
  2953. ER_GRP_RPL_APPLIER_PIPELINE_NOT_DISPOSED
  2954. eng "The group replication applier pipeline was not properly disposed. Check the error log for further info."
  2955. ER_GRP_RPL_APPLIER_THD_EXECUTION_ABORTED
  2956. eng "The applier thread execution was aborted. Unable to process more transactions, this member will now leave the group."
  2957. ER_GRP_RPL_APPLIER_EXECUTION_FATAL_ERROR
  2958. eng "Fatal error during execution on the Applier process of Group Replication. The server will now leave the group."
  2959. ER_GRP_RPL_ERROR_STOPPING_CHANNELS
  2960. eng "Error stopping all replication channels while server was leaving the group. %s"
  2961. ER_GRP_RPL_ERROR_SENDING_SINGLE_PRIMARY_MSSG
  2962. eng "Error sending single primary message informing that primary did apply relay logs."
  2963. ER_GRP_RPL_UPDATE_TRANS_SNAPSHOT_VER_ERROR
  2964. eng "Error updating transaction snapshot version after transaction being positively certified."
  2965. ER_GRP_RPL_SIDNO_FETCH_ERROR
  2966. eng "Error fetching transaction sidno after transaction being positively certified."
  2967. ER_GRP_RPL_BROADCAST_COMMIT_TRANS_MSSG_FAILED
  2968. eng "Broadcast of committed transactions message failed."
  2969. ER_GRP_RPL_GROUP_NAME_PARSE_ERROR
  2970. eng "Unable to parse the group_replication_group_name during the Certification module initialization."
  2971. ER_GRP_RPL_ADD_GRPSID_TO_GRPGTIDSID_MAP_ERROR
  2972. eng "Unable to add the group_sid in the group_gtid_sid_map during the Certification module initialization."
  2973. ER_GRP_RPL_UPDATE_GRPGTID_EXECUTED_ERROR
  2974. eng "Error updating group_gtid_executed GITD set during the Certification module initialization."
  2975. ER_GRP_RPL_DONOR_TRANS_INFO_ERROR
  2976. eng "Unable to handle the donor's transaction information when initializing the conflict detection component. Possible out of memory error."
  2977. ER_GRP_RPL_SERVER_CONN_ERROR
  2978. eng "Error when establishing a server connection during the Certification module initialization."
  2979. ER_GRP_RPL_ERROR_FETCHING_GTID_EXECUTED_SET
  2980. eng "Error when extracting this member GTID executed set. Certification module can't be properly initialized."
  2981. ER_GRP_RPL_ADD_GTID_TO_GRPGTID_EXECUTED_ERROR
  2982. eng "Error while adding the server GTID EXECUTED set to the group_gtid_execute during the Certification module initialization."
  2983. ER_GRP_RPL_ERROR_FETCHING_GTID_SET
  2984. eng "Error when extracting this member retrieved set for its applier. Certification module can't be properly initialized."
  2985. ER_GRP_RPL_ADD_RETRIEVED_SET_TO_GRP_GTID_EXECUTED_ERROR
  2986. eng "Error while adding the member retrieved set to the group_gtid_executed during the Certification module initialization."
  2987. ER_GRP_RPL_CERTIFICATION_INITIALIZATION_FAILURE
  2988. eng "Error during Certification module initialization."
  2989. ER_GRP_RPL_UPDATE_LAST_CONFLICT_FREE_TRANS_ERROR
  2990. eng "Unable to update last conflict free transaction, this transaction will not be tracked on performance_schema.replication_group_member_stats.last_conflict_free_transaction."
  2991. ER_GRP_RPL_UPDATE_TRANS_SNAPSHOT_REF_VER_ERROR
  2992. eng "Error updating transaction snapshot version reference for internal storage."
  2993. ER_GRP_RPL_FETCH_TRANS_SIDNO_ERROR
  2994. eng "Error fetching transaction sidno while adding to the group_gtid_executed set."
  2995. ER_GRP_RPL_ERROR_VERIFYING_SIDNO
  2996. eng "Error while ensuring the sidno be present in the group_gtid_executed."
  2997. ER_GRP_RPL_CANT_GENERATE_GTID
  2998. eng "Impossible to generate Global Transaction Identifier: the integer component reached the maximal value. Restart the group with a new group_replication_group_name."
  2999. ER_GRP_RPL_INVALID_GTID_SET
  3000. eng "Invalid stable transactions set."
  3001. ER_GRP_RPL_UPDATE_GTID_SET_ERROR
  3002. eng "Error updating stable transactions set."
  3003. ER_GRP_RPL_RECEIVED_SET_MISSING_GTIDS
  3004. eng "There was an error when filling the missing GTIDs on the applier channel received set. Despite not critical, on the long run this may cause performance issues."
  3005. OBSOLETE_ER_GRP_RPL_SKIP_COMPUTATION_TRANS_COMMITTED
  3006. eng "Skipping the computation of the Transactions_committed_all_members field as an older instance of this computation is still ongoing."
  3007. ER_GRP_RPL_NULL_PACKET
  3008. eng "Null packet on certifier's queue."
  3009. ER_GRP_RPL_CANT_READ_GTID
  3010. eng "Error reading GTIDs from the message."
  3011. ER_GRP_RPL_PROCESS_GTID_SET_ERROR
  3012. eng "Error processing stable transactions set."
  3013. ER_GRP_RPL_PROCESS_INTERSECTION_GTID_SET_ERROR
  3014. eng "Error processing intersection of stable transactions set."
  3015. ER_GRP_RPL_SET_STABLE_TRANS_ERROR
  3016. eng "Error setting stable transactions set."
  3017. ER_GRP_RPL_CANT_READ_GRP_GTID_EXTRACTED
  3018. eng "Error reading group_gtid_extracted from the View_change_log_event."
  3019. ER_GRP_RPL_CANT_READ_WRITE_SET_ITEM
  3020. eng "Error reading the write set item '%s' from the View_change_log_event."
  3021. ER_GRP_RPL_INIT_CERTIFICATION_INFO_FAILURE
  3022. eng "Error during certification_info initialization."
  3023. ER_GRP_RPL_CONFLICT_DETECTION_DISABLED
  3024. eng "Primary had applied all relay logs, disabled conflict detection."
  3025. ER_GRP_RPL_MSG_DISCARDED
  3026. eng "Message received while the plugin is not ready, message discarded."
  3027. ER_GRP_RPL_MISSING_GRP_RPL_APPLIER
  3028. eng "Message received without a proper group replication applier."
  3029. ER_GRP_RPL_CERTIFIER_MSSG_PROCESS_ERROR
  3030. eng "Error processing message in Certifier."
  3031. ER_GRP_RPL_SRV_NOT_ONLINE
  3032. eng "This server was not declared online since it is on status %s."
  3033. ER_GRP_RPL_SRV_ONLINE
  3034. eng "This server was declared online within the replication group."
  3035. ER_GRP_RPL_DISABLE_SRV_READ_MODE_RESTRICTED
  3036. eng "When declaring the plugin online it was not possible to disable the server read mode settings. Try to disable it manually."
  3037. ER_GRP_RPL_MEM_ONLINE
  3038. eng "The member with address %s:%u was declared online within the replication group."
  3039. ER_GRP_RPL_MEM_UNREACHABLE
  3040. eng "Member with address %s:%u has become unreachable."
  3041. ER_GRP_RPL_MEM_REACHABLE
  3042. eng "Member with address %s:%u is reachable again."
  3043. ER_GRP_RPL_SRV_BLOCKED
  3044. eng "This server is not able to reach a majority of members in the group. This server will now block all updates. The server will remain blocked until contact with the majority is restored. It is possible to use group_replication_force_members to force a new group membership."
  3045. ER_GRP_RPL_SRV_BLOCKED_FOR_SECS
  3046. eng "This server is not able to reach a majority of members in the group. This server will now block all updates. The server will remain blocked for the next %lu seconds. Unless contact with the majority is restored, after this time the member will error out and leave the group. It is possible to use group_replication_force_members to force a new group membership."
  3047. ER_GRP_RPL_CHANGE_GRP_MEM_NOT_PROCESSED
  3048. eng "A group membership change was received but the plugin is already leaving due to the configured timeout on group_replication_unreachable_majority_timeout option."
  3049. ER_GRP_RPL_MEMBER_CONTACT_RESTORED
  3050. eng "The member has resumed contact with a majority of the members in the group. Regular operation is restored and transactions are unblocked."
  3051. ER_GRP_RPL_MEMBER_REMOVED
  3052. eng "Members removed from the group: %s"
  3053. ER_GRP_RPL_PRIMARY_MEMBER_LEFT_GRP
  3054. eng "Primary server with address %s left the group. Electing new Primary."
  3055. ER_GRP_RPL_MEMBER_ADDED
  3056. eng "Members joined the group: %s"
  3057. ER_GRP_RPL_MEMBER_EXIT_PLUGIN_ERROR
  3058. eng "There was a previous plugin error while the member joined the group. The member will now exit the group."
  3059. ER_GRP_RPL_MEMBER_CHANGE
  3060. eng "Group membership changed to %s on view %s."
  3061. ER_GRP_RPL_MEMBER_LEFT_GRP
  3062. eng "Group membership changed: This member has left the group."
  3063. ER_GRP_RPL_MEMBER_EXPELLED
  3064. eng "Member was expelled from the group due to network failures, changing member status to ERROR."
  3065. ER_GRP_RPL_SESSION_OPEN_FAILED
  3066. eng "Unable to open session to (re)set read only mode. Skipping."
  3067. ER_GRP_RPL_NEW_PRIMARY_ELECTED
  3068. eng "A new primary with address %s:%u was elected. %s"
  3069. ER_GRP_RPL_DISABLE_READ_ONLY_FAILED
  3070. eng "Unable to disable super read only flag. Try to disable it manually"
  3071. ER_GRP_RPL_ENABLE_READ_ONLY_FAILED
  3072. eng "Unable to set super read only flag. Try to set it manually."
  3073. ER_GRP_RPL_SRV_PRIMARY_MEM
  3074. eng "This server is working as primary member."
  3075. ER_GRP_RPL_SRV_SECONDARY_MEM
  3076. eng "This server is working as secondary member with primary member address %s:%u."
  3077. ER_GRP_RPL_NO_SUITABLE_PRIMARY_MEM
  3078. eng "Unable to set any member as primary. No suitable candidate."
  3079. ER_GRP_RPL_SUPER_READ_ONLY_ACTIVATE_ERROR
  3080. eng "Error when activating super_read_only mode on start. The member will now exit the group."
  3081. ER_GRP_RPL_EXCEEDS_AUTO_INC_VALUE
  3082. eng "Group contains %lu members which is greater than group_replication_auto_increment_increment value of %lu. This can lead to a higher transactional abort rate."
  3083. ER_GRP_RPL_DATA_NOT_PROVIDED_BY_MEM
  3084. eng "Member with address '%s:%u' didn't provide any data during the last group change. Group information can be outdated and lead to errors on recovery."
  3085. ER_GRP_RPL_MEMBER_ALREADY_EXISTS
  3086. eng "There is already a member with server_uuid %s. The member will now exit the group."
  3087. OBSOLETE_ER_GRP_RPL_GRP_CHANGE_INFO_EXTRACT_ERROR
  3088. eng "Error when extracting information for group change. Operations and checks made to group joiners may be incomplete."
  3089. ER_GRP_RPL_GTID_EXECUTED_EXTRACT_ERROR
  3090. eng "Error when extracting this member GTID executed set. Operations and checks made to group joiners may be incomplete."
  3091. ER_GRP_RPL_GTID_SET_EXTRACT_ERROR
  3092. eng "Error when extracting this member retrieved set for its applier. Operations and checks made to group joiners may be incomplete."
  3093. ER_GRP_RPL_START_FAILED
  3094. eng "The START GROUP_REPLICATION command failed since the group already has 9 members."
  3095. ER_GRP_RPL_MEMBER_VER_INCOMPATIBLE
  3096. eng "Member version is incompatible with the group."
  3097. ER_GRP_RPL_TRANS_NOT_PRESENT_IN_GRP
  3098. eng "The member contains transactions not present in the group. The member will now exit the group."
  3099. ER_GRP_RPL_TRANS_GREATER_THAN_GRP
  3100. eng "It was not possible to assess if the member has more transactions than the group. The member will now exit the group."
  3101. ER_GRP_RPL_MEMBER_VERSION_LOWER_THAN_GRP
  3102. eng "Member version is lower than some group member, but since option 'group_replication_allow_local_lower_version_join is enabled, member will be allowed to join."
  3103. ER_GRP_RPL_LOCAL_GTID_SETS_PROCESS_ERROR
  3104. eng "Error processing local GTID sets when comparing this member transactions against the group."
  3105. ER_GRP_RPL_MEMBER_TRANS_GREATER_THAN_GRP
  3106. eng "This member has more executed transactions than those present in the group. Local transactions: %s > Group transactions: %s"
  3107. ER_GRP_RPL_BLOCK_SIZE_DIFF_FROM_GRP
  3108. eng "The member is configured with a group_replication_gtid_assignment_block_size option value '%llu' different from the group '%llu'. The member will now exit the group."
  3109. ER_GRP_RPL_TRANS_WRITE_SET_EXTRACT_DIFF_FROM_GRP
  3110. eng "The member is configured with a transaction-write-set-extraction option value '%s' different from the group '%s'. The member will now exit the group."
  3111. ER_GRP_RPL_MEMBER_CFG_INCOMPATIBLE_WITH_GRP_CFG
  3112. eng "The member configuration is not compatible with the group configuration. Variables such as group_replication_single_primary_mode or group_replication_enforce_update_everywhere_checks must have the same value on every server in the group. (member configuration option: [%s], group configuration option: [%s])."
  3113. ER_GRP_RPL_MEMBER_STOP_RPL_CHANNELS_ERROR
  3114. eng "Error stopping all replication channels while server was leaving the group. %s"
  3115. ER_GRP_RPL_PURGE_APPLIER_LOGS
  3116. eng "Detected previous RESET MASTER invocation or an issue exists in the group replication applier relay log. Purging existing applier logs."
  3117. ER_GRP_RPL_RESET_APPLIER_MODULE_LOGS_ERROR
  3118. eng "Unknown error occurred while resetting applier's module logs."
  3119. ER_GRP_RPL_APPLIER_THD_SETUP_ERROR
  3120. eng "Failed to setup the group replication applier thread."
  3121. ER_GRP_RPL_APPLIER_THD_START_ERROR
  3122. eng "Error while starting the group replication applier thread"
  3123. ER_GRP_RPL_APPLIER_THD_STOP_ERROR
  3124. eng "Failed to stop the group replication applier thread."
  3125. ER_GRP_RPL_FETCH_TRANS_DATA_FAILED
  3126. eng "Failed to fetch transaction data containing required transaction info for applier"
  3127. ER_GRP_RPL_SLAVE_IO_THD_PRIMARY_UNKNOWN
  3128. eng "Can't start slave IO THREAD of channel '%s' when group replication is running with single-primary mode and the primary member is not known."
  3129. ER_GRP_RPL_SALVE_IO_THD_ON_SECONDARY_MEMBER
  3130. eng "Can't start slave IO THREAD of channel '%s' when group replication is running with single-primary mode on a secondary member."
  3131. ER_GRP_RPL_SLAVE_SQL_THD_PRIMARY_UNKNOWN
  3132. eng "Can't start slave SQL THREAD of channel '%s' when group replication is running with single-primary mode and the primary member is not known."
  3133. ER_GRP_RPL_SLAVE_SQL_THD_ON_SECONDARY_MEMBER
  3134. eng "Can't start slave SQL THREAD of channel '%s' when group replication is running with single-primary mode on a secondary member."
  3135. ER_GRP_RPL_NEEDS_INNODB_TABLE
  3136. eng "Table %s does not use the InnoDB storage engine. This is not compatible with Group Replication."
  3137. ER_GRP_RPL_PRIMARY_KEY_NOT_DEFINED
  3138. eng "Table %s does not have any PRIMARY KEY. This is not compatible with Group Replication."
  3139. ER_GRP_RPL_FK_WITH_CASCADE_UNSUPPORTED
  3140. eng "Table %s has a foreign key with 'CASCADE', 'SET NULL' or 'SET DEFAULT' clause. This is not compatible with Group Replication."
  3141. ER_GRP_RPL_AUTO_INC_RESET
  3142. eng "group_replication_auto_increment_increment is reset to %lu"
  3143. ER_GRP_RPL_AUTO_INC_OFFSET_RESET
  3144. eng "auto_increment_offset is reset to %lu"
  3145. ER_GRP_RPL_AUTO_INC_SET
  3146. eng "group_replication_auto_increment_increment is set to %lu"
  3147. ER_GRP_RPL_AUTO_INC_OFFSET_SET
  3148. eng "auto_increment_offset is set to %lu"
  3149. ER_GRP_RPL_FETCH_TRANS_CONTEXT_FAILED
  3150. eng "Failed to fetch transaction context containing required transaction info for certification"
  3151. ER_GRP_RPL_FETCH_FORMAT_DESC_LOG_EVENT_FAILED
  3152. eng "Failed to fetch Format_description_log_event containing required server info for applier"
  3153. ER_GRP_RPL_FETCH_TRANS_CONTEXT_LOG_EVENT_FAILED
  3154. eng "Failed to fetch Transaction_context_log_event containing required transaction info for certification"
  3155. ER_GRP_RPL_FETCH_SNAPSHOT_VERSION_FAILED
  3156. eng "Failed to read snapshot version from transaction context event required for certification"
  3157. ER_GRP_RPL_FETCH_GTID_LOG_EVENT_FAILED
  3158. eng "Failed to fetch Gtid_log_event containing required transaction info for certification"
  3159. ER_GRP_RPL_UPDATE_SERV_CERTIFICATE_FAILED
  3160. eng "Unable to update certification result on server side, thread_id: %lu"
  3161. ER_GRP_RPL_ADD_GTID_INFO_WITH_LOCAL_GTID_FAILED
  3162. eng "Unable to add gtid information to the group_gtid_executed set when gtid was provided for local transactions"
  3163. ER_GRP_RPL_ADD_GTID_INFO_WITHOUT_LOCAL_GTID_FAILED
  3164. eng "Unable to add gtid information to the group_gtid_executed set when no gtid was provided for local transactions"
  3165. ER_GRP_RPL_NOTIFY_CERTIFICATION_OUTCOME_FAILED
  3166. eng "Failed to notify certification outcome"
  3167. ER_GRP_RPL_ADD_GTID_INFO_WITH_REMOTE_GTID_FAILED
  3168. eng "Unable to add gtid information to the group_gtid_executed set when gtid was provided for remote transactions"
  3169. ER_GRP_RPL_ADD_GTID_INFO_WITHOUT_REMOTE_GTID_FAILED
  3170. eng "Unable to add gtid information to the group_gtid_executed set when gtid was not provided for remote transactions"
  3171. ER_GRP_RPL_FETCH_VIEW_CHANGE_LOG_EVENT_FAILED
  3172. eng "Failed to fetch View_change_log_event containing required info for certification"
  3173. ER_GRP_RPL_CONTACT_WITH_SRV_FAILED
  3174. eng "Error when contacting the server to ensure the proper logging of a group change in the binlog"
  3175. ER_GRP_RPL_SRV_WAIT_TIME_OUT
  3176. eng "Timeout when waiting for the server to execute local transactions in order assure the group change proper logging"
  3177. ER_GRP_RPL_FETCH_LOG_EVENT_FAILED
  3178. eng "Failed to fetch Log_event containing required server info for applier"
  3179. ER_GRP_RPL_START_GRP_RPL_FAILED
  3180. eng "Unable to start Group Replication. Replication applier infrastructure is not initialized since the server was started with --initialize, --initialize-insecure or --upgrade=MINIMAL on a server upgrade."
  3181. ER_GRP_RPL_CONN_INTERNAL_PLUGIN_FAIL
  3182. eng "Failed to establish an internal server connection to execute plugin operations"
  3183. ER_GRP_RPL_SUPER_READ_ON
  3184. eng "Setting super_read_only=ON."
  3185. ER_GRP_RPL_SUPER_READ_OFF
  3186. eng "Setting super_read_only=OFF."
  3187. ER_GRP_RPL_KILLED_SESSION_ID
  3188. eng "killed session id: %d status: %d"
  3189. ER_GRP_RPL_KILLED_FAILED_ID
  3190. eng "killed failed id: %d failed: %d"
  3191. ER_GRP_RPL_INTERNAL_QUERY
  3192. eng "Internal query: %s result in error. Error number: %ld"
  3193. ER_GRP_RPL_COPY_FROM_EMPTY_STRING
  3194. eng "Error copying from empty string "
  3195. ER_GRP_RPL_QUERY_FAIL
  3196. eng "Query execution resulted in failure. errno: %d"
  3197. ER_GRP_RPL_CREATE_SESSION_UNABLE
  3198. eng "Unable to create a session for executing the queries on the server"
  3199. ER_GRP_RPL_MEMBER_NOT_FOUND
  3200. eng "The member with address %s:%u has unexpectedly disappeared, killing the current group replication recovery connection"
  3201. ER_GRP_RPL_MAXIMUM_CONNECTION_RETRIES_REACHED
  3202. eng "Maximum number of retries when trying to connect to a donor reached. Aborting group replication incremental recovery."
  3203. ER_GRP_RPL_ALL_DONORS_LEFT_ABORT_RECOVERY
  3204. eng "All donors left. Aborting group replication incremental recovery."
  3205. ER_GRP_RPL_ESTABLISH_RECOVERY_WITH_DONOR
  3206. eng "Establishing group recovery connection with a possible donor. Attempt %d/%d"
  3207. ER_GRP_RPL_ESTABLISH_RECOVERY_WITH_ANOTHER_DONOR
  3208. eng "Retrying group recovery connection with another donor. Attempt %d/%d"
  3209. ER_GRP_RPL_NO_VALID_DONOR
  3210. eng "No valid donors exist in the group, retrying"
  3211. ER_GRP_RPL_CONFIG_RECOVERY
  3212. eng "Error when configuring the asynchronous recovery channel connection to the donor."
  3213. ER_GRP_RPL_ESTABLISHING_CONN_GRP_REC_DONOR
  3214. eng "Establishing connection to a group replication recovery donor %s at %s port: %d."
  3215. ER_GRP_RPL_CREATE_GRP_RPL_REC_CHANNEL
  3216. eng "Error while creating the group replication recovery channel with donor %s at %s port: %d."
  3217. ER_GRP_RPL_DONOR_SERVER_CONN
  3218. eng "There was an error when connecting to the donor server. Please check that group_replication_recovery channel credentials and all MEMBER_HOST column values of performance_schema.replication_group_members table are correct and DNS resolvable."
  3219. ER_GRP_RPL_CHECK_STATUS_TABLE
  3220. eng "For details please check performance_schema.replication_connection_status table and error log messages of Slave I/O for channel group_replication_recovery."
  3221. ER_GRP_RPL_STARTING_GRP_REC
  3222. eng "Error while starting the group replication incremental recovery receiver/applier threads"
  3223. ER_GRP_RPL_DONOR_CONN_TERMINATION
  3224. eng "Terminating existing group replication donor connection and purging the corresponding logs."
  3225. ER_GRP_RPL_STOPPING_GRP_REC
  3226. eng "Error when stopping the group replication incremental recovery's donor connection"
  3227. ER_GRP_RPL_PURGE_REC
  3228. eng "Error when purging the group replication recovery's relay logs"
  3229. ER_GRP_RPL_UNABLE_TO_KILL_CONN_REC_DONOR_APPLIER
  3230. eng "Unable to kill the current group replication recovery donor connection after an applier error. Incremental recovery will shutdown."
  3231. ER_GRP_RPL_UNABLE_TO_KILL_CONN_REC_DONOR_FAILOVER
  3232. eng "Unable to kill the current group replication recovery donor connection during failover. Incremental recovery will shutdown."
  3233. ER_GRP_RPL_FAILED_TO_NOTIFY_GRP_MEMBERSHIP_EVENT
  3234. eng "Unexpected error when notifying an internal component named %s regarding a group membership event."
  3235. ER_GRP_RPL_FAILED_TO_BROADCAST_GRP_MEMBERSHIP_NOTIFICATION
  3236. eng "An undefined error was found while broadcasting an internal group membership notification! This is likely to happen if your components or plugins are not properly loaded or are malfunctioning!"
  3237. ER_GRP_RPL_FAILED_TO_BROADCAST_MEMBER_STATUS_NOTIFICATION
  3238. eng "An undefined error was found while broadcasting an internal group member status notification! This is likely to happen if your components or plugins are not properly loaded or are malfunctioning!"
  3239. ER_GRP_RPL_OOM_FAILED_TO_GENERATE_IDENTIFICATION_HASH
  3240. eng "No memory to generate write identification hash"
  3241. ER_GRP_RPL_WRITE_IDENT_HASH_BASE64_ENCODING_FAILED
  3242. eng "Base 64 encoding of the write identification hash failed"
  3243. ER_GRP_RPL_INVALID_BINLOG_FORMAT
  3244. eng "Binlog format should be ROW for Group Replication"
  3245. OBSOLETE_ER_GRP_RPL_BINLOG_CHECKSUM_SET
  3246. eng "binlog_checksum should be NONE for Group Replication"
  3247. ER_GRP_RPL_TRANS_WRITE_SET_EXTRACTION_NOT_SET
  3248. eng "A transaction_write_set_extraction algorithm should be selected when running Group Replication"
  3249. ER_GRP_RPL_UNSUPPORTED_TRANS_ISOLATION
  3250. eng "Transaction isolation level (tx_isolation) is set to SERIALIZABLE, which is not compatible with Group Replication"
  3251. ER_GRP_RPL_CANNOT_EXECUTE_TRANS_WHILE_STOPPING
  3252. eng "Transaction cannot be executed while Group Replication is stopping."
  3253. ER_GRP_RPL_CANNOT_EXECUTE_TRANS_WHILE_RECOVERING
  3254. eng "Transaction cannot be executed while Group Replication is recovering. Try again when the server is ONLINE."
  3255. ER_GRP_RPL_CANNOT_EXECUTE_TRANS_IN_ERROR_STATE
  3256. eng "Transaction cannot be executed while Group Replication is on ERROR state. Check for errors and restart the plugin"
  3257. ER_GRP_RPL_CANNOT_EXECUTE_TRANS_IN_OFFLINE_MODE
  3258. eng "Transaction cannot be executed while Group Replication is OFFLINE. Check for errors and restart the plugin"
  3259. ER_GRP_RPL_MULTIPLE_CACHE_TYPE_NOT_SUPPORTED_FOR_SESSION
  3260. eng "We can only use one cache type at a time on session %u"
  3261. ER_GRP_RPL_FAILED_TO_REINIT_BINLOG_CACHE_FOR_READ
  3262. eng "Failed to reinit binlog cache log for read on session %u"
  3263. ER_GRP_RPL_FAILED_TO_CREATE_TRANS_CONTEXT
  3264. eng "Failed to create the context of the current transaction on session %u"
  3265. ER_GRP_RPL_FAILED_TO_EXTRACT_TRANS_WRITE_SET
  3266. eng "Failed to extract the set of items written during the execution of the current transaction on session %u"
  3267. ER_GRP_RPL_FAILED_TO_GATHER_TRANS_WRITE_SET
  3268. eng "Failed to gather the set of items written during the execution of the current transaction on session %u"
  3269. ER_GRP_RPL_TRANS_SIZE_EXCEEDS_LIMIT
  3270. eng "Error on session %u. Transaction of size %llu exceeds specified limit %lu. To increase the limit please adjust group_replication_transaction_size_limit option."
  3271. OBSOLETE_ER_GRP_RPL_REINIT_OF_INTERNAL_CACHE_FOR_READ_FAILED
  3272. eng "Error while re-initializing an internal cache, for read operations, on session %u"
  3273. OBSOLETE_ER_GRP_RPL_APPENDING_DATA_TO_INTERNAL_CACHE_FAILED
  3274. eng "Error while appending data to an internal cache on session %u"
  3275. ER_GRP_RPL_WRITE_TO_TRANSACTION_MESSAGE_FAILED
  3276. eng "Error while writing to transaction message on session %u"
  3277. ER_GRP_RPL_FAILED_TO_REGISTER_TRANS_OUTCOME_NOTIFICTION
  3278. eng "Unable to register for getting notifications regarding the outcome of the transaction on session %u"
  3279. ER_GRP_RPL_MSG_TOO_LONG_BROADCASTING_TRANS_FAILED
  3280. eng "Error broadcasting transaction to the group on session %u. Message is too big."
  3281. ER_GRP_RPL_BROADCASTING_TRANS_TO_GRP_FAILED
  3282. eng "Error while broadcasting the transaction to the group on session %u"
  3283. ER_GRP_RPL_ERROR_WHILE_WAITING_FOR_CONFLICT_DETECTION
  3284. eng "Error while waiting for conflict detection procedure to finish on session %u"
  3285. OBSOLETE_ER_GRP_RPL_REINIT_OF_INTERNAL_CACHE_FOR_WRITE_FAILED
  3286. eng "Error while re-initializing an internal cache, for write operations, on session %u"
  3287. OBSOLETE_ER_GRP_RPL_FAILED_TO_CREATE_COMMIT_CACHE
  3288. eng "Failed to create group replication commit cache on session %u"
  3289. OBSOLETE_ER_GRP_RPL_REINIT_OF_COMMIT_CACHE_FOR_WRITE_FAILED
  3290. eng "Failed to reinit group replication commit cache for write on session %u"
  3291. OBSOLETE_ER_GRP_RPL_PREV_REC_SESSION_RUNNING
  3292. eng "A previous recovery session is still running. Please stop the group replication plugin and wait for it to stop"
  3293. ER_GRP_RPL_FATAL_REC_PROCESS
  3294. eng "Fatal error during the incremental recovery process of Group Replication. The server will leave the group."
  3295. OBSOLETE_ER_GRP_RPL_WHILE_STOPPING_REP_CHANNEL
  3296. eng "Error stopping all replication channels while server was leaving the group. %s"
  3297. ER_GRP_RPL_UNABLE_TO_EVALUATE_APPLIER_STATUS
  3298. eng "Unable to evaluate the group replication applier execution status. Group replication recovery will shutdown to avoid data corruption."
  3299. ER_GRP_RPL_ONLY_ONE_SERVER_ALIVE
  3300. eng "Only one server alive. Declaring this server as online within the replication group"
  3301. ER_GRP_RPL_CERTIFICATION_REC_PROCESS
  3302. eng "Error when processing certification information in the incremental recovery process"
  3303. ER_GRP_RPL_UNABLE_TO_ENSURE_EXECUTION_REC
  3304. eng "Unable to ensure the execution of group transactions received during recovery."
  3305. ER_GRP_RPL_WHILE_SENDING_MSG_REC
  3306. eng "Error while sending message in the group replication incremental recovery process."
  3307. ER_GRP_RPL_READ_UNABLE_FOR_SUPER_READ_ONLY
  3308. eng "Unable to read the server value for the super_read_only variable."
  3309. ER_GRP_RPL_READ_UNABLE_FOR_READ_ONLY_SUPER_READ_ONLY
  3310. eng "Unable to read the server values for the read_only and super_read_only variables."
  3311. ER_GRP_RPL_UNABLE_TO_RESET_SERVER_READ_MODE
  3312. eng "Unable to reset the server read mode settings. Try to reset them manually."
  3313. ER_GRP_RPL_UNABLE_TO_CERTIFY_PLUGIN_TRANS
  3314. eng "Due to a plugin error, some transactions were unable to be certified and will now rollback."
  3315. ER_GRP_RPL_UNBLOCK_CERTIFIED_TRANS
  3316. eng "Error when trying to unblock non certified or consistent transactions. Check for consistency errors when restarting the service"
  3317. OBSOLETE_ER_GRP_RPL_SERVER_WORKING_AS_SECONDARY
  3318. eng "This server is working as secondary member with primary member address %s:%u."
  3319. ER_GRP_RPL_FAILED_TO_START_WITH_INVALID_SERVER_ID
  3320. eng "Unable to start Group Replication. Replication applier infrastructure is not initialized since the server was started with server_id=0. Please, restart the server with server_id larger than 0."
  3321. ER_GRP_RPL_FORCE_MEMBERS_MUST_BE_EMPTY
  3322. eng "group_replication_force_members must be empty on group start. Current value: '%s'"
  3323. ER_GRP_RPL_PLUGIN_STRUCT_INIT_NOT_POSSIBLE_ON_SERVER_START
  3324. eng "It was not possible to guarantee the initialization of plugin structures on server start"
  3325. ER_GRP_RPL_FAILED_TO_ENABLE_SUPER_READ_ONLY_MODE
  3326. eng "Could not enable the server read only mode and guarantee a safe recovery execution"
  3327. ER_GRP_RPL_FAILED_TO_INIT_COMMUNICATION_ENGINE
  3328. eng "Error on group communication engine initialization"
  3329. ER_GRP_RPL_FAILED_TO_START_ON_SECONDARY_WITH_ASYNC_CHANNELS
  3330. eng "Can't start group replication on secondary member with single-primary mode while asynchronous replication channels are running."
  3331. ER_GRP_RPL_FAILED_TO_START_COMMUNICATION_ENGINE
  3332. eng "Error on group communication engine start"
  3333. ER_GRP_RPL_TIMEOUT_ON_VIEW_AFTER_JOINING_GRP
  3334. eng "Timeout on wait for view after joining group"
  3335. ER_GRP_RPL_FAILED_TO_CALL_GRP_COMMUNICATION_INTERFACE
  3336. eng "Error calling group communication interfaces"
  3337. ER_GRP_RPL_MEMBER_SERVER_UUID_IS_INCOMPATIBLE_WITH_GRP
  3338. eng "Member server_uuid is incompatible with the group. Server_uuid %s matches group_replication_group_name %s."
  3339. ER_GRP_RPL_MEMBER_CONF_INFO
  3340. eng "Member configuration: member_id: %lu; member_uuid: \"%s\"; single-primary mode: \"%s\"; group_replication_auto_increment_increment: %lu; group_replication_view_change_uuid: \"%s\";"
  3341. ER_GRP_RPL_FAILED_TO_CONFIRM_IF_SERVER_LEFT_GRP
  3342. eng "Unable to confirm whether the server has left the group or not. Check performance_schema.replication_group_members to check group membership information."
  3343. ER_GRP_RPL_SERVER_IS_ALREADY_LEAVING
  3344. eng "Skipping leave operation: concurrent attempt to leave the group is on-going."
  3345. ER_GRP_RPL_SERVER_ALREADY_LEFT
  3346. eng "Skipping leave operation: member already left the group."
  3347. ER_GRP_RPL_WAITING_FOR_VIEW_UPDATE
  3348. eng "Going to wait for view modification"
  3349. ER_GRP_RPL_TIMEOUT_RECEIVING_VIEW_CHANGE_ON_SHUTDOWN
  3350. eng "While leaving the group due to a stop, shutdown or failure there was a timeout receiving a view change. This can lead to a possible inconsistent state. Check the log for more details"
  3351. ER_GRP_RPL_REQUESTING_NON_MEMBER_SERVER_TO_LEAVE
  3352. eng "Requesting to leave the group despite of not being a member"
  3353. ER_GRP_RPL_IS_STOPPING
  3354. eng "Plugin 'group_replication' is stopping."
  3355. ER_GRP_RPL_IS_STOPPED
  3356. eng "Plugin 'group_replication' has been stopped."
  3357. ER_GRP_RPL_FAILED_TO_ENABLE_READ_ONLY_MODE_ON_SHUTDOWN
  3358. eng "On plugin shutdown it was not possible to enable the server read only mode. Local transactions will be accepted and committed."
  3359. ER_GRP_RPL_RECOVERY_MODULE_TERMINATION_TIMED_OUT_ON_SHUTDOWN
  3360. eng "On shutdown there was a timeout on the Group Replication recovery module termination. Check the log for more details"
  3361. ER_GRP_RPL_APPLIER_TERMINATION_TIMED_OUT_ON_SHUTDOWN
  3362. eng "On shutdown there was a timeout on the Group Replication applier termination."
  3363. ER_GRP_RPL_FAILED_TO_SHUTDOWN_REGISTRY_MODULE
  3364. eng "Unexpected failure while shutting down registry module!"
  3365. ER_GRP_RPL_FAILED_TO_INIT_HANDLER
  3366. eng "Failure during Group Replication handler initialization"
  3367. ER_GRP_RPL_FAILED_TO_REGISTER_SERVER_STATE_OBSERVER
  3368. eng "Failure when registering the server state observers"
  3369. ER_GRP_RPL_FAILED_TO_REGISTER_TRANS_STATE_OBSERVER
  3370. eng "Failure when registering the transactions state observers"
  3371. ER_GRP_RPL_FAILED_TO_REGISTER_BINLOG_STATE_OBSERVER
  3372. eng "Failure when registering the binlog state observers"
  3373. ER_GRP_RPL_FAILED_TO_START_ON_BOOT
  3374. eng "Unable to start Group Replication on boot"
  3375. ER_GRP_RPL_FAILED_TO_STOP_ON_PLUGIN_UNINSTALL
  3376. eng "Failure when stopping Group Replication on plugin uninstall"
  3377. ER_GRP_RPL_FAILED_TO_UNREGISTER_SERVER_STATE_OBSERVER
  3378. eng "Failure when unregistering the server state observers"
  3379. ER_GRP_RPL_FAILED_TO_UNREGISTER_TRANS_STATE_OBSERVER
  3380. eng "Failure when unregistering the transactions state observers"
  3381. ER_GRP_RPL_FAILED_TO_UNREGISTER_BINLOG_STATE_OBSERVER
  3382. eng "Failure when unregistering the binlog state observers"
  3383. ER_GRP_RPL_ALL_OBSERVERS_UNREGISTERED
  3384. eng "All Group Replication server observers have been successfully unregistered"
  3385. ER_GRP_RPL_FAILED_TO_PARSE_THE_GRP_NAME
  3386. eng "Unable to parse the group_replication_group_name."
  3387. ER_GRP_RPL_FAILED_TO_GENERATE_SIDNO_FOR_GRP
  3388. eng "Unable to parse the group_replication_group_name."
  3389. ER_GRP_RPL_APPLIER_NOT_STARTED_DUE_TO_RUNNING_PREV_SHUTDOWN
  3390. eng "Cannot start the Group Replication applier as a previous shutdown is still running: The thread will stop once its task is complete."
  3391. ER_GRP_RPL_FAILED_TO_INIT_APPLIER_MODULE
  3392. eng "Unable to initialize the Group Replication applier module."
  3393. ER_GRP_RPL_APPLIER_INITIALIZED
  3394. eng "Group Replication applier module successfully initialized!"
  3395. ER_GRP_RPL_COMMUNICATION_SSL_CONF_INFO
  3396. eng "Group communication SSL configuration: group_replication_ssl_mode: \"%s\"; server_key_file: \"%s\"; server_cert_file: \"%s\"; client_key_file: \"%s\"; client_cert_file: \"%s\"; ca_file: \"%s\"; ca_path: \"%s\"; cipher: \"%s\"; tls_version: \"%s\"; tls_ciphersuites: \"%s\"; crl_file: \"%s\"; crl_path: \"%s\"; ssl_fips_mode: \"%s\""
  3397. ER_GRP_RPL_ABORTS_AS_SSL_NOT_SUPPORTED_BY_MYSQLD
  3398. eng "MySQL server does not have SSL support and group_replication_ssl_mode is \"%s\", START GROUP_REPLICATION will abort"
  3399. ER_GRP_RPL_SSL_DISABLED
  3400. eng "Group communication SSL configuration: group_replication_ssl_mode: \"%s\""
  3401. ER_GRP_RPL_UNABLE_TO_INIT_COMMUNICATION_ENGINE
  3402. eng "Unable to initialize the group communication engine"
  3403. ER_GRP_RPL_BINLOG_DISABLED
  3404. eng "Binlog must be enabled for Group Replication"
  3405. ER_GRP_RPL_GTID_MODE_OFF
  3406. eng "Gtid mode should be ON for Group Replication"
  3407. ER_GRP_RPL_LOG_REPLICA_UPDATES_NOT_SET
  3408. eng "LOG_REPLICA_UPDATES should be ON for Group Replication"
  3409. ER_GRP_RPL_INVALID_TRANS_WRITE_SET_EXTRACTION_VALUE
  3410. eng "Extraction of transaction write sets requires an hash algorithm configuration. Please, double check that the parameter transaction-write-set-extraction is set to a valid algorithm."
  3411. ER_GRP_RPL_RELAY_LOG_INFO_REPO_MUST_BE_TABLE
  3412. eng "Relay log info repository must be set to TABLE"
  3413. ER_GRP_RPL_MASTER_INFO_REPO_MUST_BE_TABLE
  3414. eng "Master info repository must be set to TABLE."
  3415. ER_GRP_RPL_INCORRECT_TYPE_SET_FOR_PARALLEL_APPLIER
  3416. eng "In order to use parallel applier on Group Replication, parameter replica-parallel-type must be set to 'LOGICAL_CLOCK'."
  3417. ER_GRP_RPL_REPLICA_PRESERVE_COMMIT_ORDER_NOT_SET
  3418. eng "Group Replication requires replica-preserve-commit-order to be set to ON when using more than 1 applier threads."
  3419. ER_GRP_RPL_SINGLE_PRIM_MODE_NOT_ALLOWED_WITH_UPDATE_EVERYWHERE
  3420. eng "It is not allowed to run single primary mode with 'group_replication_enforce_update_everywhere_checks' enabled."
  3421. ER_GRP_RPL_MODULE_TERMINATE_ERROR
  3422. eng "error_message: %s"
  3423. ER_GRP_RPL_GRP_NAME_OPTION_MANDATORY
  3424. eng "The group_replication_group_name option is mandatory"
  3425. ER_GRP_RPL_GRP_NAME_IS_TOO_LONG
  3426. eng "The group_replication_group_name '%s' is not a valid UUID, its length is too big"
  3427. ER_GRP_RPL_GRP_NAME_IS_NOT_VALID_UUID
  3428. eng "The group_replication_group_name '%s' is not a valid UUID"
  3429. ER_GRP_RPL_FLOW_CTRL_MIN_QUOTA_GREATER_THAN_MAX_QUOTA
  3430. eng "group_replication_flow_control_min_quota cannot be larger than group_replication_flow_control_max_quota"
  3431. ER_GRP_RPL_FLOW_CTRL_MIN_RECOVERY_QUOTA_GREATER_THAN_MAX_QUOTA
  3432. eng "group_replication_flow_control_min_recovery_quota cannot be larger than group_replication_flow_control_max_quota"
  3433. ER_GRP_RPL_FLOW_CTRL_MAX_QUOTA_SMALLER_THAN_MIN_QUOTAS
  3434. eng "group_replication_flow_control_max_quota cannot be smaller than group_replication_flow_control_min_quota or group_replication_flow_control_min_recovery_quota"
  3435. ER_GRP_RPL_INVALID_SSL_RECOVERY_STRING
  3436. eng "The given value for recovery ssl option 'group_replication_%s' is invalid as its length is beyond the limit"
  3437. ER_GRP_RPL_SUPPORTS_ONLY_ONE_FORCE_MEMBERS_SET
  3438. eng "There is one group_replication_force_members operation already ongoing"
  3439. ER_GRP_RPL_FORCE_MEMBERS_SET_UPDATE_NOT_ALLOWED
  3440. eng "group_replication_force_members can only be updated when Group Replication is running and a majority of the members are unreachable"
  3441. ER_GRP_RPL_GRP_COMMUNICATION_INIT_WITH_CONF
  3442. eng "Initialized group communication with configuration: group_replication_group_name: '%s'; group_replication_local_address: '%s'; group_replication_group_seeds: '%s'; group_replication_bootstrap_group: '%s'; group_replication_poll_spin_loops: %lu; group_replication_compression_threshold: %lu; group_replication_ip_allowlist: '%s'; group_replication_communication_debug_options: '%s'; group_replication_member_expel_timeout: '%lu'; group_replication_communication_max_message_size: %lu; group_replication_message_cache_size: '%luu; group_replication_communication_stack: '%lu'"
  3443. ER_GRP_RPL_UNKNOWN_GRP_RPL_APPLIER_PIPELINE_REQUESTED
  3444. eng "Unknown group replication applier pipeline requested"
  3445. ER_GRP_RPL_FAILED_TO_BOOTSTRAP_EVENT_HANDLING_INFRASTRUCTURE
  3446. eng "Unable to bootstrap group replication event handling infrastructure. Unknown handler type: %d"
  3447. ER_GRP_RPL_APPLIER_HANDLER_NOT_INITIALIZED
  3448. eng "One of the group replication applier handlers is null due to an initialization error"
  3449. ER_GRP_RPL_APPLIER_HANDLER_IS_IN_USE
  3450. eng "A group replication applier handler, marked as unique, is already in use."
  3451. ER_GRP_RPL_APPLIER_HANDLER_ROLE_IS_IN_USE
  3452. eng "A group replication applier handler role, that was marked as unique, is already in use."
  3453. ER_GRP_RPL_FAILED_TO_INIT_APPLIER_HANDLER
  3454. eng "Error on group replication applier handler initialization"
  3455. ER_GRP_RPL_SQL_SERVICE_FAILED_TO_INIT_SESSION_THREAD
  3456. eng "Error when initializing a session thread for internal server connection."
  3457. ER_GRP_RPL_SQL_SERVICE_COMM_SESSION_NOT_INITIALIZED
  3458. eng "Error running internal SQL query: %s. The internal server communication session is not initialized"
  3459. ER_GRP_RPL_SQL_SERVICE_SERVER_SESSION_KILLED
  3460. eng "Error running internal SQL query: %s. The internal server session was killed or server is shutting down."
  3461. ER_GRP_RPL_SQL_SERVICE_FAILED_TO_RUN_SQL_QUERY
  3462. eng "Error running internal SQL query: %s. Got internal SQL error: %s(%d)"
  3463. ER_GRP_RPL_SQL_SERVICE_SERVER_INTERNAL_FAILURE
  3464. eng "Error running internal SQL query: %s. Internal failure."
  3465. ER_GRP_RPL_SQL_SERVICE_RETRIES_EXCEEDED_ON_SESSION_STATE
  3466. eng "Error, maximum number of retries exceeded when waiting for the internal server session state to be operating"
  3467. ER_GRP_RPL_SQL_SERVICE_FAILED_TO_FETCH_SECURITY_CTX
  3468. eng "Error when trying to fetch security context when contacting the server for internal plugin requests."
  3469. ER_GRP_RPL_SQL_SERVICE_SERVER_ACCESS_DENIED_FOR_USER
  3470. eng "There was an error when trying to access the server with user: %s. Make sure the user is present in the server and that the MySQL upgrade procedure was run correctly."
  3471. ER_GRP_RPL_SQL_SERVICE_MAX_CONN_ERROR_FROM_SERVER
  3472. eng "Failed to establish an internal server connection to execute plugin operations since the server does not have available connections, please increase @@GLOBAL.MAX_CONNECTIONS. Server error: %i."
  3473. ER_GRP_RPL_SQL_SERVICE_SERVER_ERROR_ON_CONN
  3474. eng "Failed to establish an internal server connection to execute plugin operations. Server error: %i. Server error message: %s"
  3475. ER_GRP_RPL_UNREACHABLE_MAJORITY_TIMEOUT_FOR_MEMBER
  3476. eng "This member could not reach a majority of the members for more than %ld seconds. The member will now leave the group as instructed by the group_replication_unreachable_majority_timeout option."
  3477. ER_GRP_RPL_SERVER_SET_TO_READ_ONLY_DUE_TO_ERRORS
  3478. eng "The server was automatically set into read only mode after an error was detected."
  3479. ER_GRP_RPL_GMS_LISTENER_FAILED_TO_LOG_NOTIFICATION
  3480. eng "Unable to log notification to table (errno: %lu) (res: %d)! Message: %s"
  3481. ER_GRP_RPL_GRP_COMMUNICATION_ENG_INIT_FAILED
  3482. eng "Failure in group communication engine '%s' initialization"
  3483. ER_GRP_RPL_SET_GRP_COMMUNICATION_ENG_LOGGER_FAILED
  3484. eng "Unable to set the group communication engine logger"
  3485. ER_GRP_RPL_DEBUG_OPTIONS
  3486. eng "Current debug options are: '%s'."
  3487. ER_GRP_RPL_INVALID_DEBUG_OPTIONS
  3488. eng "Some debug options in '%s' are not valid."
  3489. ER_GRP_RPL_EXIT_GRP_GCS_ERROR
  3490. eng "Error calling group communication interfaces while trying to leave the group"
  3491. ER_GRP_RPL_GRP_MEMBER_OFFLINE
  3492. eng "Member is not ONLINE, it is not possible to force a new group membership"
  3493. ER_GRP_RPL_GCS_INTERFACE_ERROR
  3494. eng "Error calling group communication interfaces"
  3495. ER_GRP_RPL_FORCE_MEMBER_VALUE_SET_ERROR
  3496. eng "Error setting group_replication_force_members value '%s' on group communication interfaces"
  3497. ER_GRP_RPL_FORCE_MEMBER_VALUE_SET
  3498. eng "The group_replication_force_members value '%s' was set in the group communication interfaces"
  3499. ER_GRP_RPL_FORCE_MEMBER_VALUE_TIME_OUT
  3500. eng "Timeout on wait for view after setting group_replication_force_members value '%s' into group communication interfaces"
  3501. ER_GRP_RPL_BROADCAST_COMMIT_MSSG_TOO_BIG
  3502. eng "Broadcast of committed transactions message failed. Message is too big."
  3503. ER_GRP_RPL_SEND_STATS_ERROR
  3504. eng "Error while sending stats message"
  3505. ER_GRP_RPL_MEMBER_STATS_INFO
  3506. eng "Flow control - update member stats: %s stats certifier_queue %d, applier_queue %d certified %ld (%ld), applied %ld (%ld), local %ld (%ld), quota %ld (%ld) mode=%d"
  3507. ER_GRP_RPL_FLOW_CONTROL_STATS
  3508. eng "Flow control: throttling to %ld commits per %ld sec, with %d writing and %d non-recovering members, min capacity %lld, lim throttle %lld"
  3509. ER_GRP_RPL_UNABLE_TO_CONVERT_PACKET_TO_EVENT
  3510. eng "Unable to convert a packet into an event on the applier. Error: %s"
  3511. ER_GRP_RPL_PIPELINE_CREATE_FAILED
  3512. eng "Failed to create group replication pipeline cache."
  3513. ER_GRP_RPL_PIPELINE_REINIT_FAILED_WRITE
  3514. eng "Failed to reinit group replication pipeline cache for write."
  3515. ER_GRP_RPL_UNABLE_TO_CONVERT_EVENT_TO_PACKET
  3516. eng "Unable to convert the event into a packet on the applier. Error: %s"
  3517. ER_GRP_RPL_PIPELINE_FLUSH_FAIL
  3518. eng "Failed to flush group replication pipeline cache."
  3519. ER_GRP_RPL_PIPELINE_REINIT_FAILED_READ
  3520. eng "Failed to reinit group replication pipeline cache for read."
  3521. OBSOLETE_ER_GRP_RPL_STOP_REP_CHANNEL
  3522. eng "Error stopping all replication channels while server was leaving the group. Got error: %d. Please check the error log for more details."
  3523. ER_GRP_RPL_GCS_GR_ERROR_MSG
  3524. eng "%s"
  3525. ER_GRP_RPL_SLAVE_IO_THREAD_UNBLOCKED
  3526. eng "The slave IO thread of channel '%s' is unblocked as the member is declared ONLINE now."
  3527. ER_GRP_RPL_SLAVE_IO_THREAD_ERROR_OUT
  3528. eng "The slave IO thread of channel '%s' will error out as the member failed to come ONLINE."
  3529. ER_GRP_RPL_SLAVE_APPLIER_THREAD_UNBLOCKED
  3530. eng "The slave applier thread of channel '%s' is unblocked as the member is declared ONLINE now."
  3531. ER_GRP_RPL_SLAVE_APPLIER_THREAD_ERROR_OUT
  3532. eng "The slave applier thread of channel '%s' will error out as the member failed to come ONLINE."
  3533. ER_LDAP_AUTH_FAILED_TO_CREATE_OR_GET_CONNECTION
  3534. eng "LDAP authentication initialize: failed to create/ get connection from the pool. "
  3535. ER_LDAP_AUTH_DEINIT_FAILED
  3536. eng "LDAP authentication de_initialize Failed"
  3537. ER_LDAP_AUTH_SKIPPING_USER_GROUP_SEARCH
  3538. eng "Skipping group search, No group attribute mentioned"
  3539. ER_LDAP_AUTH_POOL_DISABLE_MAX_SIZE_ZERO
  3540. eng "Pool max size is 0, connection pool is disabled"
  3541. ER_LDAP_AUTH_FAILED_TO_CREATE_LDAP_OBJECT_CREATOR
  3542. eng "Connection pool initialization, failed to create LDAP object creator"
  3543. ER_LDAP_AUTH_FAILED_TO_CREATE_LDAP_OBJECT
  3544. eng "Connection pool initialization, failed to create LDAP object"
  3545. ER_LDAP_AUTH_TLS_CONF
  3546. eng "LDAP TLS configuration"
  3547. ER_LDAP_AUTH_TLS_CONNECTION
  3548. eng "LDAP TLS connection"
  3549. ER_LDAP_AUTH_CONN_POOL_NOT_CREATED
  3550. eng "LDAP pool is not created."
  3551. ER_LDAP_AUTH_CONN_POOL_INITIALIZING
  3552. eng "LDAP pool is initializing"
  3553. ER_LDAP_AUTH_CONN_POOL_DEINITIALIZING
  3554. eng "LDAP pool is de-initializing"
  3555. ER_LDAP_AUTH_ZERO_MAX_POOL_SIZE_UNCHANGED
  3556. eng "Pool max size old and new values are 0"
  3557. ER_LDAP_AUTH_POOL_REINITIALIZING
  3558. eng "LDAP pool is re-initializing"
  3559. ER_LDAP_AUTH_FAILED_TO_WRITE_PACKET
  3560. eng "Plug-in has failed to write the packet."
  3561. ER_LDAP_AUTH_SETTING_USERNAME
  3562. eng "Setting LDAP user name as : %s"
  3563. ER_LDAP_AUTH_USER_AUTH_DATA
  3564. eng "User authentication data: %s size: %lu"
  3565. ER_LDAP_AUTH_INFO_FOR_USER
  3566. eng "User is authenticated as: %s external user: %s"
  3567. ER_LDAP_AUTH_USER_GROUP_SEARCH_INFO
  3568. eng "Group search information base DN: %s scope: %d filter: %s attribute: %s"
  3569. ER_LDAP_AUTH_GRP_SEARCH_SPECIAL_HDL
  3570. eng "Special handling for group search, {GA} found"
  3571. ER_LDAP_AUTH_GRP_IS_FULL_DN
  3572. eng "Group search special handling, group full DN found. "
  3573. ER_LDAP_AUTH_USER_NOT_FOUND_IN_ANY_GRP
  3574. eng "User %s is not member of any group."
  3575. ER_LDAP_AUTH_USER_FOUND_IN_MANY_GRPS
  3576. eng "User %s is member of more than one group"
  3577. ER_LDAP_AUTH_USER_HAS_MULTIPLE_GRP_NAMES
  3578. eng "For user %s has multiple user group names. Please check if group attribute name is correct"
  3579. ER_LDAP_AUTH_SEARCHED_USER_GRP_NAME
  3580. eng "Searched group name: %s"
  3581. ER_LDAP_AUTH_OBJECT_CREATE_TIMESTAMP
  3582. eng "LDAP authentication object creation time_stamp: %s dn: %s"
  3583. ER_LDAP_AUTH_CERTIFICATE_NAME
  3584. eng "Certificate name: %s"
  3585. ER_LDAP_AUTH_FAILED_TO_POOL_DEINIT
  3586. eng "Failed to pool de-initialized: pool is already reconstructing"
  3587. ER_LDAP_AUTH_FAILED_TO_INITIALIZE_POOL_IN_RECONSTRUCTING
  3588. eng "Pool initialization failed: pool is already initialized"
  3589. ER_LDAP_AUTH_FAILED_TO_INITIALIZE_POOL_IN_INIT_STATE
  3590. eng "Pool initialization failed: pool is initializing"
  3591. ER_LDAP_AUTH_FAILED_TO_INITIALIZE_POOL_IN_DEINIT_STATE
  3592. eng "Pool initialization failed: pool is de-initializing"
  3593. ER_LDAP_AUTH_FAILED_TO_DEINITIALIZE_POOL_IN_RECONSTRUCT_STATE
  3594. eng "Failed to pool deinitialized: pool is already reconstructing"
  3595. ER_LDAP_AUTH_FAILED_TO_DEINITIALIZE_NOT_READY_POOL
  3596. eng "Failed to pool deinitialized : pool is not ready"
  3597. ER_LDAP_AUTH_FAILED_TO_GET_CONNECTION_AS_PLUGIN_NOT_READY
  3598. eng "Ldap_connection_pool::get: Failed to return connection as plug-in is not ready/initializing/de-initializing"
  3599. ER_LDAP_AUTH_CONNECTION_POOL_INIT_FAILED
  3600. eng "Connection pool has failed to initialized"
  3601. ER_LDAP_AUTH_MAX_ALLOWED_CONNECTION_LIMIT_HIT
  3602. eng "Ldap_connetion_pool::get LDAP maximum connection allowed size is reached. Increase the maximum limit."
  3603. ER_LDAP_AUTH_MAX_POOL_SIZE_SET_FAILED
  3604. eng "Set max pool size failed."
  3605. ER_LDAP_AUTH_PLUGIN_FAILED_TO_READ_PACKET
  3606. eng "Plug-in has failed to read the packet from client"
  3607. ER_LDAP_AUTH_CREATING_LDAP_CONNECTION
  3608. eng "Ldap_authentication::initialize: creating new LDAP connection. "
  3609. ER_LDAP_AUTH_GETTING_CONNECTION_FROM_POOL
  3610. eng "Ldap_authentication::initialize: getting connection from pool. "
  3611. ER_LDAP_AUTH_RETURNING_CONNECTION_TO_POOL
  3612. eng "Ldap_authentication::de_initialize putting back connection in the pool"
  3613. ER_LDAP_AUTH_SEARCH_USER_GROUP_ATTR_NOT_FOUND
  3614. eng "Ldap_authentication::search_user_group no group attribute found"
  3615. ER_LDAP_AUTH_LDAP_INFO_NULL
  3616. eng "Ldap_connetion_pool::put ldap info null"
  3617. ER_LDAP_AUTH_FREEING_CONNECTION
  3618. eng "Ldap_connection_pool::put connection is freeing. "
  3619. ER_LDAP_AUTH_CONNECTION_PUSHED_TO_POOL
  3620. eng "Ldap_connection_pool::put connection in pushed in the pool"
  3621. ER_LDAP_AUTH_CONNECTION_CREATOR_ENTER
  3622. eng "Ldap_connection_creator::Ldap_connection_creator"
  3623. ER_LDAP_AUTH_STARTING_TLS
  3624. eng "starting TLS"
  3625. ER_LDAP_AUTH_CONNECTION_GET_LDAP_INFO_NULL
  3626. eng "Ldap_connection_pool::get: (ldap_info == NULL)|| (*ldap_info)"
  3627. ER_LDAP_AUTH_DELETING_CONNECTION_KEY
  3628. eng "Ldap_connection_pool::deinit: deleting connection key %s"
  3629. ER_LDAP_AUTH_POOLED_CONNECTION_KEY
  3630. eng " Ldap_connection_pool::get pooled connection key: %s"
  3631. ER_LDAP_AUTH_CREATE_CONNECTION_KEY
  3632. eng "Ldap_connection_pool::get create connection key: %s"
  3633. ER_LDAP_AUTH_COMMUNICATION_HOST_INFO
  3634. eng "LDAP communication host %s port %u"
  3635. ER_LDAP_AUTH_METHOD_TO_CLIENT
  3636. eng "Sending authentication method to client : %s"
  3637. ER_LDAP_AUTH_SASL_REQUEST_FROM_CLIENT
  3638. eng "SASL request received from mysql client: %s"
  3639. ER_LDAP_AUTH_SASL_PROCESS_SASL
  3640. eng "Ldap_sasl_authentication::process_sasl rc: %s"
  3641. ER_LDAP_AUTH_SASL_BIND_SUCCESS_INFO
  3642. eng "Ldap_sasl_authentication::process_sasl sasl bind succeed. dn: %s method: %s server credential: %s"
  3643. ER_LDAP_AUTH_STARTED_FOR_USER
  3644. eng "LDAP authentication started for user name: %s"
  3645. ER_LDAP_AUTH_DISTINGUISHED_NAME
  3646. eng "%s"
  3647. ER_LDAP_AUTH_INIT_FAILED
  3648. eng "LDAP authentication initialize is failed with: %s"
  3649. ER_LDAP_AUTH_OR_GROUP_RETRIEVAL_FAILED
  3650. eng "LDAP authentication failed or group retrieval failed: %s"
  3651. ER_LDAP_AUTH_USER_GROUP_SEARCH_FAILED
  3652. eng "Search user group has failed: %s"
  3653. ER_LDAP_AUTH_USER_BIND_FAILED
  3654. eng "LDAP user bind has failed: %s"
  3655. ER_LDAP_AUTH_POOL_GET_FAILED_TO_CREATE_CONNECTION
  3656. eng "Connection pool get: Failed to create LDAP connection. %s"
  3657. ER_LDAP_AUTH_FAILED_TO_CREATE_LDAP_CONNECTION
  3658. eng "Failed to create new LDAP connection: %s"
  3659. ER_LDAP_AUTH_FAILED_TO_ESTABLISH_TLS_CONNECTION
  3660. eng "Failed to establish TLS connection: %s"
  3661. ER_LDAP_AUTH_FAILED_TO_SEARCH_DN
  3662. eng "Failed to search user full dn: %s"
  3663. ER_LDAP_AUTH_CONNECTION_POOL_REINIT_ENTER
  3664. eng "Ldap_connection_pool::reinit"
  3665. ER_SYSTEMD_NOTIFY_PATH_TOO_LONG
  3666. eng "The path '%s', from the NOTIFY_SOCKET environment variable, is too long. At %u bytes it exceeds the limit of %u bytes for an AF_UNIX socket."
  3667. ER_SYSTEMD_NOTIFY_CONNECT_FAILED
  3668. eng "Failed to connect to systemd notification socket named %s. Error: '%s'"
  3669. ER_SYSTEMD_NOTIFY_WRITE_FAILED
  3670. eng "Failed to write '%s' to systemd notification. Error: '%s'"
  3671. ER_FOUND_MISSING_GTIDS
  3672. eng "Cannot replicate to server with server_uuid='%.36s' because the present server has purged required binary logs. The connecting server needs to replicate the missing transactions from elsewhere, or be replaced by a new server created from a more recent backup. To prevent this error in the future, consider increasing the binary log expiration period on the present server. %s."
  3673. ER_PID_FILE_PRIV_DIRECTORY_INSECURE
  3674. eng "Insecure configuration for --pid-file: Location '%s' in the path is accessible to all OS users. Consider choosing a different directory."
  3675. ER_CANT_CHECK_PID_PATH
  3676. eng "Can't start server: can't check PID filepath: %s"
  3677. ER_VALIDATE_PWD_STATUS_VAR_REGISTRATION_FAILED
  3678. eng "validate_password status variables registration failed."
  3679. ER_VALIDATE_PWD_STATUS_VAR_UNREGISTRATION_FAILED
  3680. eng "validate_password status variables unregistration failed."
  3681. ER_VALIDATE_PWD_DICT_FILE_OPEN_FAILED
  3682. eng "Dictionary file open failed"
  3683. ER_VALIDATE_PWD_COULD_BE_NULL
  3684. eng "given password string could be null"
  3685. ER_VALIDATE_PWD_STRING_CONV_TO_LOWERCASE_FAILED
  3686. eng "failed to convert the password string to lower case"
  3687. ER_VALIDATE_PWD_STRING_CONV_TO_BUFFER_FAILED
  3688. eng "failed to convert the password string into a buffer"
  3689. ER_VALIDATE_PWD_STRING_HANDLER_MEM_ALLOCATION_FAILED
  3690. eng "memory allocation failed for string handler"
  3691. ER_VALIDATE_PWD_STRONG_POLICY_DICT_FILE_UNSPECIFIED
  3692. eng "Since the validate_password_policy is mentioned as Strong, dictionary file must be specified"
  3693. ER_VALIDATE_PWD_CONVERT_TO_BUFFER_FAILED
  3694. eng "convert_to_buffer service failed"
  3695. ER_VALIDATE_PWD_VARIABLE_REGISTRATION_FAILED
  3696. eng "%s variable registration failed."
  3697. ER_VALIDATE_PWD_VARIABLE_UNREGISTRATION_FAILED
  3698. eng "%s variable unregistration failed."
  3699. ER_KEYRING_MIGRATION_EXTRA_OPTIONS
  3700. eng "Please specify options specific to keyring migration. Any additional options can be ignored. NOTE: Although some options are valid, migration tool can still report error example: plugin variables for which plugin is not loaded yet."
  3701. OBSOLETE_ER_INVALID_DEFAULT_UTF8MB4_COLLATION
  3702. eng "Invalid default collation %s: utf8mb4_0900_ai_ci or utf8mb4_general_ci expected"
  3703. ER_IB_MSG_0
  3704. eng "%s"
  3705. ER_IB_MSG_1
  3706. eng "%s"
  3707. ER_IB_MSG_2
  3708. eng "%s"
  3709. ER_IB_MSG_3
  3710. eng "%s"
  3711. ER_IB_MSG_4
  3712. eng "%s"
  3713. ER_IB_MSG_5
  3714. eng "%s"
  3715. ER_IB_MSG_6
  3716. eng "%s"
  3717. ER_IB_MSG_7
  3718. eng "%s"
  3719. ER_IB_MSG_8
  3720. eng "%s"
  3721. ER_IB_MSG_9
  3722. eng "%s"
  3723. ER_IB_MSG_10
  3724. eng "%s"
  3725. ER_IB_MSG_11
  3726. eng "%s"
  3727. ER_IB_MSG_12
  3728. eng "%s"
  3729. ER_IB_MSG_13
  3730. eng "%s"
  3731. ER_IB_MSG_14
  3732. eng "%s"
  3733. ER_IB_MSG_15
  3734. eng "%s"
  3735. ER_IB_MSG_16
  3736. eng "%s"
  3737. ER_IB_MSG_17
  3738. eng "%s"
  3739. ER_IB_MSG_18
  3740. eng "%s"
  3741. ER_IB_MSG_19
  3742. eng "%s"
  3743. ER_IB_MSG_20
  3744. eng "%s"
  3745. ER_IB_MSG_21
  3746. eng "%s"
  3747. ER_IB_MSG_22
  3748. eng "%s"
  3749. ER_IB_MSG_23
  3750. eng "%s"
  3751. ER_IB_MSG_24
  3752. eng "%s"
  3753. ER_IB_MSG_25
  3754. eng "%s"
  3755. ER_IB_MSG_26
  3756. eng "%s"
  3757. ER_IB_MSG_27
  3758. eng "%s"
  3759. ER_IB_MSG_28
  3760. eng "%s"
  3761. ER_IB_MSG_29
  3762. eng "%s"
  3763. ER_IB_MSG_30
  3764. eng "%s"
  3765. ER_IB_MSG_31
  3766. eng "%s"
  3767. ER_IB_MSG_32
  3768. eng "%s"
  3769. ER_IB_MSG_33
  3770. eng "%s"
  3771. ER_IB_MSG_34
  3772. eng "%s"
  3773. ER_IB_MSG_35
  3774. eng "%s"
  3775. ER_IB_MSG_36
  3776. eng "%s"
  3777. ER_IB_MSG_37
  3778. eng "%s"
  3779. ER_IB_MSG_38
  3780. eng "%s"
  3781. ER_IB_MSG_39
  3782. eng "%s"
  3783. ER_IB_MSG_40
  3784. eng "%s"
  3785. ER_IB_MSG_41
  3786. eng "%s"
  3787. ER_IB_MSG_42
  3788. eng "%s"
  3789. ER_IB_MSG_43
  3790. eng "%s"
  3791. ER_IB_MSG_44
  3792. eng "%s"
  3793. ER_IB_MSG_45
  3794. eng "%s"
  3795. ER_IB_MSG_46
  3796. eng "%s"
  3797. ER_IB_MSG_47
  3798. eng "%s"
  3799. ER_IB_MSG_48
  3800. eng "%s"
  3801. ER_IB_MSG_49
  3802. eng "%s"
  3803. ER_IB_MSG_50
  3804. eng "%s"
  3805. ER_IB_MSG_51
  3806. eng "%s"
  3807. ER_IB_MSG_52
  3808. eng "%s"
  3809. ER_IB_MSG_53
  3810. eng "%s"
  3811. ER_IB_MSG_54
  3812. eng "Failed to set NUMA memory policy of buffer pool page frames with mbind(%p,%zu,%s,...,...,%s) failed with %s"
  3813. ER_IB_MSG_55
  3814. eng "%s"
  3815. ER_IB_MSG_56
  3816. eng "%s"
  3817. ER_IB_MSG_57
  3818. eng "%s"
  3819. ER_IB_MSG_58
  3820. eng "%s"
  3821. ER_IB_MSG_59
  3822. eng "%s"
  3823. ER_IB_MSG_60
  3824. eng "%s"
  3825. ER_IB_MSG_61
  3826. eng "%s"
  3827. ER_IB_MSG_62
  3828. eng "%s"
  3829. ER_IB_MSG_63
  3830. eng "%s"
  3831. ER_IB_MSG_64
  3832. eng "%s"
  3833. ER_IB_MSG_65
  3834. eng "%s"
  3835. ER_IB_MSG_66
  3836. eng "%s"
  3837. ER_IB_MSG_67
  3838. eng "%s"
  3839. ER_IB_MSG_68
  3840. eng "%s"
  3841. ER_IB_MSG_69
  3842. eng "%s"
  3843. ER_IB_MSG_70
  3844. eng "%s"
  3845. ER_IB_MSG_71
  3846. eng "%s"
  3847. ER_IB_MSG_72
  3848. eng "%s"
  3849. ER_IB_MSG_73
  3850. eng "%s"
  3851. ER_IB_MSG_74
  3852. eng "%s"
  3853. ER_IB_MSG_75
  3854. eng "%s"
  3855. ER_IB_MSG_76
  3856. eng "%s"
  3857. ER_IB_MSG_77
  3858. eng "%s"
  3859. ER_IB_MSG_78
  3860. eng "%s"
  3861. ER_IB_MSG_79
  3862. eng "%s"
  3863. ER_IB_MSG_80
  3864. eng "%s"
  3865. ER_IB_MSG_81
  3866. eng "%s"
  3867. ER_IB_MSG_82
  3868. eng "%s"
  3869. ER_IB_MSG_83
  3870. eng "%s"
  3871. ER_IB_MSG_84
  3872. eng "%s"
  3873. ER_IB_MSG_85
  3874. eng "%s"
  3875. ER_IB_MSG_86
  3876. eng "%s"
  3877. OBSOLETE_ER_IB_MSG_87
  3878. eng "%s"
  3879. OBSOLETE_ER_IB_MSG_88
  3880. eng "%s"
  3881. OBSOLETE_ER_IB_MSG_89
  3882. eng "%s"
  3883. OBSOLETE_ER_IB_MSG_90
  3884. eng "%s"
  3885. OBSOLETE_ER_IB_MSG_91
  3886. eng "%s"
  3887. OBSOLETE_ER_IB_MSG_92
  3888. eng "%s"
  3889. OBSOLETE_ER_IB_MSG_93
  3890. eng "%s"
  3891. OBSOLETE_ER_IB_MSG_94
  3892. eng "%s"
  3893. ER_IB_MSG_95
  3894. eng "%s"
  3895. ER_IB_MSG_96
  3896. eng "%s"
  3897. ER_IB_MSG_97
  3898. eng "%s"
  3899. ER_IB_MSG_98
  3900. eng "%s"
  3901. ER_IB_MSG_99
  3902. eng "%s"
  3903. ER_IB_MSG_100
  3904. eng "%s"
  3905. ER_IB_MSG_101
  3906. eng "%s"
  3907. ER_IB_MSG_102
  3908. eng "%s"
  3909. ER_IB_MSG_103
  3910. eng "%s"
  3911. ER_IB_MSG_104
  3912. eng "%s"
  3913. ER_IB_MSG_105
  3914. eng "%s"
  3915. ER_IB_MSG_106
  3916. eng "%s"
  3917. ER_IB_MSG_107
  3918. eng "%s"
  3919. ER_IB_MSG_108
  3920. eng "%s"
  3921. ER_IB_MSG_109
  3922. eng "%s"
  3923. ER_IB_MSG_110
  3924. eng "%s"
  3925. ER_IB_MSG_111
  3926. eng "%s"
  3927. ER_IB_MSG_112
  3928. eng "%s"
  3929. OBSOLETE_ER_IB_MSG_113
  3930. eng "%s"
  3931. OBSOLETE_ER_IB_MSG_114
  3932. eng "%s"
  3933. OBSOLETE_ER_IB_MSG_115
  3934. eng "%s"
  3935. OBSOLETE_ER_IB_MSG_116
  3936. eng "%s"
  3937. OBSOLETE_ER_IB_MSG_117
  3938. eng "%s"
  3939. OBSOLETE_ER_IB_MSG_118
  3940. eng "%s"
  3941. ER_IB_MSG_119
  3942. eng "%s"
  3943. ER_IB_MSG_120
  3944. eng "%s"
  3945. ER_IB_MSG_121
  3946. eng "%s"
  3947. ER_IB_MSG_122
  3948. eng "%s"
  3949. ER_IB_MSG_123
  3950. eng "%s"
  3951. ER_IB_MSG_124
  3952. eng "%s"
  3953. ER_IB_MSG_125
  3954. eng "%s"
  3955. ER_IB_MSG_126
  3956. eng "%s"
  3957. ER_IB_MSG_127
  3958. eng "%s"
  3959. ER_IB_MSG_128
  3960. eng "%s"
  3961. ER_IB_MSG_129
  3962. eng "%s"
  3963. ER_IB_MSG_130
  3964. eng "%s"
  3965. ER_IB_MSG_131
  3966. eng "%s"
  3967. ER_IB_MSG_132
  3968. eng "%s"
  3969. ER_IB_MSG_133
  3970. eng "%s"
  3971. ER_IB_MSG_134
  3972. eng "%s"
  3973. ER_IB_MSG_135
  3974. eng "%s"
  3975. ER_IB_MSG_136
  3976. eng "%s"
  3977. ER_IB_MSG_137
  3978. eng "%s"
  3979. ER_IB_MSG_138
  3980. eng "%s"
  3981. ER_IB_MSG_139
  3982. eng "%s"
  3983. ER_IB_MSG_140
  3984. eng "%s"
  3985. ER_IB_MSG_141
  3986. eng "%s"
  3987. ER_IB_MSG_142
  3988. eng "%s"
  3989. ER_IB_MSG_143
  3990. eng "%s"
  3991. ER_IB_MSG_144
  3992. eng "%s"
  3993. ER_IB_MSG_145
  3994. eng "%s"
  3995. ER_IB_MSG_146
  3996. eng "%s"
  3997. ER_IB_MSG_147
  3998. eng "%s"
  3999. ER_IB_MSG_148
  4000. eng "%s"
  4001. ER_IB_CLONE_INTERNAL
  4002. eng "%s"
  4003. ER_IB_CLONE_TIMEOUT
  4004. eng "%s"
  4005. ER_IB_CLONE_STATUS_FILE
  4006. eng "%s"
  4007. ER_IB_CLONE_SQL
  4008. eng "%s"
  4009. ER_IB_CLONE_VALIDATE
  4010. eng "%s"
  4011. ER_IB_CLONE_PUNCH_HOLE
  4012. eng "%s"
  4013. ER_IB_CLONE_GTID_PERSIST
  4014. eng "%s"
  4015. ER_IB_MSG_156
  4016. eng "%s"
  4017. ER_IB_MSG_157
  4018. eng "%s"
  4019. ER_IB_MSG_158
  4020. eng "%s"
  4021. ER_IB_MSG_159
  4022. eng "%s"
  4023. ER_IB_MSG_160
  4024. eng "%s"
  4025. ER_IB_MSG_161
  4026. eng "%s"
  4027. ER_IB_MSG_162
  4028. eng "%s"
  4029. ER_IB_MSG_163
  4030. eng "%s"
  4031. ER_IB_MSG_164
  4032. eng "%s"
  4033. ER_IB_MSG_165
  4034. eng "%s"
  4035. ER_IB_MSG_166
  4036. eng "%s"
  4037. ER_IB_MSG_167
  4038. eng "%s"
  4039. ER_IB_MSG_168
  4040. eng "%s"
  4041. ER_IB_MSG_169
  4042. eng "%s"
  4043. ER_IB_MSG_170
  4044. eng "%s"
  4045. ER_IB_MSG_171
  4046. eng "%s"
  4047. ER_IB_MSG_172
  4048. eng "%s"
  4049. ER_IB_MSG_173
  4050. eng "%s"
  4051. ER_IB_MSG_174
  4052. eng "%s"
  4053. ER_IB_MSG_175
  4054. eng "%s"
  4055. ER_IB_MSG_176
  4056. eng "%s"
  4057. ER_IB_MSG_177
  4058. eng "%s"
  4059. ER_IB_MSG_178
  4060. eng "%s"
  4061. ER_IB_MSG_179
  4062. eng "%s"
  4063. ER_IB_MSG_180
  4064. eng "%s"
  4065. ER_IB_MSG_181
  4066. eng "%s"
  4067. ER_IB_MSG_182
  4068. eng "%s"
  4069. ER_IB_MSG_183
  4070. eng "%s"
  4071. ER_IB_MSG_184
  4072. eng "%s"
  4073. ER_IB_MSG_185
  4074. eng "%s"
  4075. ER_IB_MSG_186
  4076. eng "%s"
  4077. ER_IB_MSG_187
  4078. eng "%s"
  4079. ER_IB_MSG_188
  4080. eng "%s"
  4081. ER_IB_MSG_189
  4082. eng "%s"
  4083. ER_IB_MSG_190
  4084. eng "%s"
  4085. ER_IB_MSG_191
  4086. eng "%s"
  4087. ER_IB_MSG_192
  4088. eng "%s"
  4089. ER_IB_MSG_193
  4090. eng "%s"
  4091. ER_IB_MSG_194
  4092. eng "%s"
  4093. ER_IB_MSG_195
  4094. eng "%s"
  4095. ER_IB_MSG_196
  4096. eng "%s"
  4097. ER_IB_MSG_197
  4098. eng "%s"
  4099. ER_IB_MSG_198
  4100. eng "%s"
  4101. ER_IB_MSG_199
  4102. eng "%s"
  4103. ER_IB_MSG_200
  4104. eng "%s"
  4105. ER_IB_MSG_201
  4106. eng "%s"
  4107. ER_IB_MSG_202
  4108. eng "%s"
  4109. ER_IB_MSG_203
  4110. eng "%s"
  4111. ER_IB_MSG_204
  4112. eng "%s"
  4113. ER_IB_MSG_205
  4114. eng "%s"
  4115. ER_IB_MSG_206
  4116. eng "%s"
  4117. ER_IB_MSG_207
  4118. eng "%s"
  4119. ER_IB_MSG_208
  4120. eng "%s"
  4121. ER_IB_MSG_209
  4122. eng "%s"
  4123. ER_IB_MSG_210
  4124. eng "%s"
  4125. ER_IB_MSG_211
  4126. eng "%s"
  4127. ER_IB_MSG_212
  4128. eng "%s"
  4129. ER_IB_MSG_213
  4130. eng "%s"
  4131. ER_IB_MSG_214
  4132. eng "%s"
  4133. ER_IB_MSG_215
  4134. eng "%s"
  4135. ER_IB_MSG_216
  4136. eng "%s"
  4137. ER_IB_MSG_217
  4138. eng "%s"
  4139. ER_IB_MSG_218
  4140. eng "%s"
  4141. ER_IB_MSG_219
  4142. eng "%s"
  4143. ER_IB_MSG_220
  4144. eng "%s"
  4145. ER_IB_MSG_221
  4146. eng "%s"
  4147. ER_IB_MSG_222
  4148. eng "%s"
  4149. ER_IB_MSG_223
  4150. eng "%s"
  4151. ER_IB_MSG_224
  4152. eng "%s"
  4153. ER_IB_MSG_225
  4154. eng "%s"
  4155. ER_IB_MSG_226
  4156. eng "%s"
  4157. ER_IB_MSG_227
  4158. eng "%s"
  4159. ER_IB_MSG_228
  4160. eng "%s"
  4161. ER_IB_MSG_229
  4162. eng "%s"
  4163. ER_IB_MSG_230
  4164. eng "%s"
  4165. ER_IB_MSG_231
  4166. eng "%s"
  4167. ER_IB_MSG_232
  4168. eng "%s"
  4169. ER_IB_MSG_233
  4170. eng "%s"
  4171. ER_IB_MSG_234
  4172. eng "%s"
  4173. ER_IB_MSG_235
  4174. eng "%s"
  4175. ER_IB_MSG_236
  4176. eng "%s"
  4177. ER_IB_MSG_237
  4178. eng "%s"
  4179. ER_IB_MSG_238
  4180. eng "%s"
  4181. ER_IB_MSG_239
  4182. eng "%s"
  4183. ER_IB_MSG_240
  4184. eng "%s"
  4185. ER_IB_MSG_241
  4186. eng "%s"
  4187. ER_IB_MSG_242
  4188. eng "%s"
  4189. ER_IB_MSG_243
  4190. eng "%s"
  4191. ER_IB_MSG_244
  4192. eng "%s"
  4193. ER_IB_MSG_245
  4194. eng "%s"
  4195. ER_IB_MSG_246
  4196. eng "%s"
  4197. ER_IB_MSG_247
  4198. eng "%s"
  4199. ER_IB_MSG_248
  4200. eng "%s"
  4201. ER_IB_MSG_249
  4202. eng "%s"
  4203. ER_IB_MSG_250
  4204. eng "%s"
  4205. ER_IB_MSG_251
  4206. eng "%s"
  4207. ER_IB_MSG_252
  4208. eng "%s"
  4209. ER_IB_MSG_253
  4210. eng "%s"
  4211. ER_IB_MSG_254
  4212. eng "%s"
  4213. ER_IB_MSG_255
  4214. eng "%s"
  4215. ER_IB_MSG_256
  4216. eng "%s"
  4217. ER_IB_MSG_257
  4218. eng "%s"
  4219. ER_IB_MSG_258
  4220. eng "%s"
  4221. ER_IB_MSG_259
  4222. eng "%s"
  4223. ER_IB_MSG_260
  4224. eng "%s"
  4225. ER_IB_MSG_261
  4226. eng "%s"
  4227. ER_IB_MSG_262
  4228. eng "%s"
  4229. ER_IB_MSG_263
  4230. eng "%s"
  4231. ER_IB_MSG_264
  4232. eng "%s"
  4233. ER_IB_MSG_265
  4234. eng "%s"
  4235. ER_IB_MSG_266
  4236. eng "%s"
  4237. ER_IB_MSG_267
  4238. eng "%s"
  4239. ER_IB_MSG_268
  4240. eng "%s"
  4241. ER_IB_MSG_269
  4242. eng "%s"
  4243. ER_IB_MSG_270
  4244. eng "%s"
  4245. ER_IB_MSG_271
  4246. eng "%s"
  4247. ER_IB_MSG_272
  4248. eng "Table flags are 0x%lx in the data dictionary but the flags in file %s are 0x%llx!"
  4249. ER_IB_MSG_273
  4250. eng "Can't read encryption key from file %s!"
  4251. OBSOLETE_ER_IB_MSG_274
  4252. eng "Cannot close file %s, because n_pending_flushes %zu"
  4253. OBSOLETE_ER_IB_MSG_275
  4254. eng "Cannot close file %s, because modification count %lld != flush count %lld"
  4255. OBSOLETE_ER_IB_MSG_276
  4256. eng "Cannot close file %s, because it is in use"
  4257. OBSOLETE_ER_IB_MSG_277
  4258. eng "Open file list len in shard %zu is %llu"
  4259. ER_IB_MSG_278
  4260. eng "Tablespace %s, waiting for IO to stop for %lld seconds"
  4261. OBSOLETE_ER_IB_MSG_279
  4262. eng "%s"
  4263. ER_IB_MSG_280
  4264. eng "%s"
  4265. ER_IB_MSG_281
  4266. eng "%s"
  4267. ER_IB_MSG_282
  4268. eng "%s"
  4269. ER_IB_MSG_283
  4270. eng "%s"
  4271. ER_IB_MSG_284
  4272. eng "You must raise the value of innodb_open_files in my.cnf! Remember that InnoDB keeps all log files and all system tablespace files open for the whole time mysqld is running, and needs to open also some .ibd files if the file-per-table storage model is used. Current open files %zu, max allowed open files %zu."
  4273. ER_IB_MSG_285
  4274. eng "Max tablespace id is too high, %lu"
  4275. ER_IB_WARN_ACCESSING_NONEXISTINC_SPACE
  4276. eng "Trying to access missing tablespace %lu"
  4277. ER_IB_MSG_287
  4278. eng "Trying to close/delete tablespace '%s' but there are %lu pending operations on it."
  4279. ER_IB_MSG_288
  4280. eng "Trying to delete/close tablespace '%s' but there are %lu flushes and %zu pending I/O's on it."
  4281. ER_IB_MSG_289
  4282. eng "%s"
  4283. OBSOLETE_ER_IB_MSG_290
  4284. eng "Cannot delete tablespace %lu because it is not found in the tablespace memory cache."
  4285. ER_IB_MSG_291
  4286. eng "While deleting tablespace %lu in DISCARD TABLESPACE. File rename/delete failed: %s"
  4287. ER_IB_MSG_292
  4288. eng "Cannot delete tablespace %lu in DISCARD TABLESPACE: %s"
  4289. ER_IB_MSG_293
  4290. eng "Cannot rename '%s' to '%s' for space ID %lu because the source file does not exist."
  4291. ER_IB_MSG_294
  4292. eng "Cannot rename '%s' to '%s' for space ID %lu because the target file exists. Remove the target file and try again."
  4293. ER_IB_MSG_295
  4294. eng "Cannot rename file '%s' (space id %lu) retried %llu times. There are either pending IOs or flushes or the file is being extended."
  4295. ER_IB_MSG_296
  4296. eng "Cannot find space id %lu in the tablespace memory cache, though the file '%s' in a rename operation should have that ID."
  4297. ER_IB_MSG_297
  4298. eng "Rename waiting for IO to resume"
  4299. ER_IB_MSG_298
  4300. eng "Cannot find tablespace for '%s' in the tablespace memory cache"
  4301. ER_IB_MSG_299
  4302. eng "Cannot find tablespace for '%s' in the tablespace memory cache"
  4303. ER_IB_MSG_300
  4304. eng "Tablespace '%s' is already in the tablespace memory cache"
  4305. ER_IB_MSG_301
  4306. eng "Cannot create file '%s'"
  4307. ER_IB_MSG_UNEXPECTED_FILE_EXISTS
  4308. eng "The file '%s' already exists though the corresponding table did not exist. Have you moved InnoDB .ibd files around without using the SQL commands DISCARD TABLESPACE and IMPORT TABLESPACE, or did mysqld crash in the middle of CREATE TABLE? You can resolve the problem by removing the file '%s' under the 'datadir' of MySQL."
  4309. ER_IB_MSG_303
  4310. eng "posix_fallocate(): Failed to preallocate data for file %s, desired size %llu Operating system error number %d - %s. Check that the disk is not full or a disk quota exceeded. Make sure the file system supports this function. Refer to your operating system documentation for operating system error code information."
  4311. ER_IB_MSG_304
  4312. eng "Could not write the first page to tablespace '%s'"
  4313. ER_IB_MSG_305
  4314. eng "File flush of tablespace '%s' failed"
  4315. ER_IB_MSG_306
  4316. eng "Could not find a valid tablespace file for `%s`. %s"
  4317. ER_IB_MSG_307
  4318. eng "Ignoring data file '%s' with space ID %lu. Another data file called '%s' exists with the same space ID"
  4319. ER_IB_MSG_308
  4320. eng "%s"
  4321. ER_IB_MSG_309
  4322. eng "%s"
  4323. ER_IB_MSG_310
  4324. eng "%s"
  4325. ER_IB_MSG_311
  4326. eng "%s"
  4327. ER_IB_MSG_312
  4328. eng "Can't set encryption information for tablespace %s!"
  4329. ER_IB_MSG_313
  4330. eng "%s"
  4331. ER_IB_MSG_314
  4332. eng "%s"
  4333. ER_IB_MSG_315
  4334. eng "%s"
  4335. ER_IB_MSG_316
  4336. eng "%s"
  4337. ER_IB_MSG_317
  4338. eng "%s"
  4339. ER_IB_MSG_318
  4340. eng "%s"
  4341. ER_IB_MSG_319
  4342. eng "%s"
  4343. ER_IB_MSG_320
  4344. eng "%s"
  4345. ER_IB_MSG_321
  4346. eng "%s"
  4347. ER_IB_MSG_322
  4348. eng "%s"
  4349. ER_IB_MSG_323
  4350. eng "%s"
  4351. ER_IB_MSG_324
  4352. eng "%s"
  4353. ER_IB_MSG_325
  4354. eng "%s"
  4355. ER_IB_MSG_326
  4356. eng "%s"
  4357. OBSOLETE_ER_IB_MSG_327
  4358. eng "%s"
  4359. ER_IB_MSG_328
  4360. eng "%s"
  4361. ER_IB_MSG_329
  4362. eng "%s"
  4363. ER_IB_MSG_330
  4364. eng "%s"
  4365. ER_IB_MSG_331
  4366. eng "%s"
  4367. ER_IB_MSG_332
  4368. eng "%s"
  4369. ER_IB_MSG_333
  4370. eng "%s"
  4371. ER_IB_MSG_334
  4372. eng "%s"
  4373. ER_IB_MSG_335
  4374. eng "%s"
  4375. ER_IB_MSG_336
  4376. eng "%s"
  4377. ER_IB_MSG_337
  4378. eng "%s"
  4379. ER_IB_MSG_338
  4380. eng "%s"
  4381. ER_IB_MSG_339
  4382. eng "%s"
  4383. ER_IB_MSG_340
  4384. eng "%s"
  4385. ER_IB_MSG_341
  4386. eng "%s"
  4387. ER_IB_MSG_342
  4388. eng "%s"
  4389. ER_IB_MSG_343
  4390. eng "%s"
  4391. ER_IB_MSG_344
  4392. eng "%s"
  4393. ER_IB_MSG_345
  4394. eng "%s"
  4395. ER_IB_MSG_346
  4396. eng "%s"
  4397. ER_IB_MSG_347
  4398. eng "%s"
  4399. ER_IB_MSG_348
  4400. eng "%s"
  4401. ER_IB_MSG_349
  4402. eng "%s"
  4403. ER_IB_MSG_350
  4404. eng "%s"
  4405. OBSOLETE_ER_IB_MSG_351
  4406. eng "%s"
  4407. ER_IB_MSG_UNPROTECTED_LOCATION_ALLOWED
  4408. eng "The datafile '%s' for tablespace %s is in an unprotected location. This file cannot be recovered after a crash until this location is added to innodb_directories."
  4409. OBSOLETE_ER_IB_MSG_353
  4410. eng "%s"
  4411. ER_IB_MSG_354
  4412. eng "%s"
  4413. ER_IB_MSG_355
  4414. eng "%s"
  4415. ER_IB_MSG_356
  4416. eng "%s"
  4417. ER_IB_MSG_357
  4418. eng "%s"
  4419. ER_IB_MSG_358
  4420. eng "%s"
  4421. ER_IB_MSG_359
  4422. eng "%s"
  4423. ER_IB_MSG_360
  4424. eng "%s"
  4425. ER_IB_MSG_361
  4426. eng "%s"
  4427. ER_IB_MSG_362
  4428. eng "%s"
  4429. OBSOLETE_ER_IB_MSG_363
  4430. eng "%s"
  4431. ER_IB_MSG_364
  4432. eng "%s"
  4433. ER_IB_MSG_365
  4434. eng "%s"
  4435. ER_IB_MSG_IGNORE_SCAN_PATH
  4436. eng "Scan path '%s' is ignored because %s"
  4437. ER_IB_MSG_367
  4438. eng "%s"
  4439. ER_IB_MSG_368
  4440. eng "%s"
  4441. ER_IB_MSG_369
  4442. eng "%s"
  4443. ER_IB_MSG_370
  4444. eng "%s"
  4445. ER_IB_MSG_371
  4446. eng "%s"
  4447. ER_IB_MSG_372
  4448. eng "%s"
  4449. ER_IB_MSG_373
  4450. eng "%s"
  4451. ER_IB_MSG_374
  4452. eng "%s"
  4453. ER_IB_MSG_375
  4454. eng "%s"
  4455. ER_IB_MSG_376
  4456. eng "%s"
  4457. ER_IB_MSG_377
  4458. eng "%s"
  4459. ER_IB_MSG_378
  4460. eng "%s"
  4461. ER_IB_MSG_379
  4462. eng "%s"
  4463. ER_IB_MSG_380
  4464. eng "%s"
  4465. ER_IB_MSG_381
  4466. eng "%s"
  4467. ER_IB_MSG_382
  4468. eng "%s"
  4469. ER_IB_MSG_383
  4470. eng "%s"
  4471. ER_IB_MSG_384
  4472. eng "%s"
  4473. ER_IB_MSG_385
  4474. eng "%s"
  4475. ER_IB_MSG_386
  4476. eng "%s"
  4477. ER_IB_MSG_387
  4478. eng "%s"
  4479. ER_IB_MSG_GENERAL_TABLESPACE_UNDER_DATADIR
  4480. eng "A general tablespace cannot be located under the datadir. Cannot open file '%s'."
  4481. ER_IB_MSG_IMPLICIT_TABLESPACE_IN_DATADIR
  4482. eng "A file-per-table tablespace cannot be located in the datadir. Cannot open file '%s'."
  4483. ER_IB_MSG_390
  4484. eng "%s"
  4485. ER_IB_MSG_391
  4486. eng "%s"
  4487. ER_IB_MSG_392
  4488. eng "%s"
  4489. ER_IB_MSG_393
  4490. eng "%s"
  4491. ER_IB_MSG_394
  4492. eng "%s"
  4493. ER_IB_MSG_395
  4494. eng "%s"
  4495. ER_IB_MSG_396
  4496. eng "%s"
  4497. ER_IB_MSG_397
  4498. eng "%s"
  4499. ER_IB_MSG_398
  4500. eng "%s"
  4501. ER_IB_MSG_399
  4502. eng "%s"
  4503. OBSOLETE_ER_IB_MSG_400
  4504. eng "%s"
  4505. ER_IB_MSG_401
  4506. eng "%s"
  4507. ER_IB_MSG_402
  4508. eng "%s"
  4509. ER_IB_MSG_403
  4510. eng "%s"
  4511. ER_IB_MSG_404
  4512. eng "%s"
  4513. ER_IB_MSG_405
  4514. eng "%s"
  4515. ER_IB_MSG_406
  4516. eng "%s"
  4517. ER_IB_MSG_407
  4518. eng "%s"
  4519. ER_IB_MSG_408
  4520. eng "%s"
  4521. ER_IB_MSG_409
  4522. eng "%s"
  4523. ER_IB_MSG_410
  4524. eng "%s"
  4525. ER_IB_MSG_411
  4526. eng "%s"
  4527. ER_IB_MSG_412
  4528. eng "%s"
  4529. ER_IB_MSG_413
  4530. eng "%s"
  4531. ER_IB_MSG_414
  4532. eng "%s"
  4533. ER_IB_MSG_415
  4534. eng "%s"
  4535. ER_IB_MSG_416
  4536. eng "%s"
  4537. ER_IB_MSG_417
  4538. eng "%s"
  4539. ER_IB_MSG_418
  4540. eng "%s"
  4541. ER_IB_MSG_419
  4542. eng "%s"
  4543. ER_IB_MSG_420
  4544. eng "%s"
  4545. ER_IB_MSG_421
  4546. eng "%s"
  4547. ER_IB_MSG_422
  4548. eng "%s"
  4549. ER_IB_MSG_423
  4550. eng "%s"
  4551. ER_IB_MSG_424
  4552. eng "%s"
  4553. ER_IB_MSG_425
  4554. eng "%s"
  4555. ER_IB_MSG_426
  4556. eng "%s"
  4557. ER_IB_MSG_427
  4558. eng "%s"
  4559. ER_IB_MSG_428
  4560. eng "%s"
  4561. ER_IB_MSG_429
  4562. eng "%s"
  4563. ER_IB_MSG_430
  4564. eng "%s"
  4565. ER_IB_MSG_431
  4566. eng "%s"
  4567. ER_IB_MSG_432
  4568. eng "%s"
  4569. ER_IB_MSG_433
  4570. eng "%s"
  4571. ER_IB_MSG_434
  4572. eng "%s"
  4573. ER_IB_MSG_435
  4574. eng "%s"
  4575. ER_IB_MSG_436
  4576. eng "%s"
  4577. ER_IB_MSG_437
  4578. eng "%s"
  4579. ER_IB_MSG_438
  4580. eng "%s"
  4581. ER_IB_MSG_439
  4582. eng "%s"
  4583. ER_IB_MSG_440
  4584. eng "%s"
  4585. ER_IB_MSG_441
  4586. eng "%s"
  4587. ER_IB_MSG_442
  4588. eng "%s"
  4589. ER_IB_MSG_443
  4590. eng "%s"
  4591. ER_IB_MSG_444
  4592. eng "%s"
  4593. ER_IB_MSG_445
  4594. eng "%s"
  4595. ER_IB_MSG_446
  4596. eng "%s"
  4597. ER_IB_MSG_447
  4598. eng "%s"
  4599. ER_IB_MSG_448
  4600. eng "%s"
  4601. ER_IB_MSG_449
  4602. eng "%s"
  4603. ER_IB_MSG_450
  4604. eng "%s"
  4605. ER_IB_MSG_451
  4606. eng "%s"
  4607. ER_IB_MSG_452
  4608. eng "%s"
  4609. ER_IB_MSG_453
  4610. eng "%s"
  4611. ER_IB_MSG_454
  4612. eng "%s"
  4613. ER_IB_MSG_455
  4614. eng "%s"
  4615. ER_IB_MSG_456
  4616. eng "%s"
  4617. ER_IB_MSG_457
  4618. eng "%s"
  4619. ER_IB_MSG_458
  4620. eng "%s"
  4621. ER_IB_MSG_459
  4622. eng "%s"
  4623. ER_IB_MSG_460
  4624. eng "%s"
  4625. ER_IB_MSG_461
  4626. eng "%s"
  4627. ER_IB_MSG_462
  4628. eng "%s"
  4629. ER_IB_MSG_463
  4630. eng "%s"
  4631. ER_IB_MSG_464
  4632. eng "%s"
  4633. ER_IB_MSG_465
  4634. eng "%s"
  4635. ER_IB_MSG_466
  4636. eng "%s"
  4637. ER_IB_MSG_467
  4638. eng "%s"
  4639. ER_IB_MSG_468
  4640. eng "%s"
  4641. ER_IB_MSG_469
  4642. eng "%s"
  4643. ER_IB_MSG_470
  4644. eng "%s"
  4645. ER_IB_MSG_471
  4646. eng "%s"
  4647. ER_IB_MSG_472
  4648. eng "%s"
  4649. ER_IB_MSG_473
  4650. eng "%s"
  4651. ER_IB_MSG_474
  4652. eng "%s"
  4653. ER_IB_MSG_475
  4654. eng "%s"
  4655. ER_IB_MSG_476
  4656. eng "%s"
  4657. ER_IB_MSG_477
  4658. eng "%s"
  4659. ER_IB_MSG_478
  4660. eng "%s"
  4661. ER_IB_MSG_479
  4662. eng "%s"
  4663. ER_IB_MSG_480
  4664. eng "%s"
  4665. ER_IB_MSG_481
  4666. eng "%s"
  4667. ER_IB_MSG_482
  4668. eng "%s"
  4669. ER_IB_MSG_483
  4670. eng "%s"
  4671. ER_IB_MSG_484
  4672. eng "%s"
  4673. ER_IB_MSG_485
  4674. eng "%s"
  4675. ER_IB_MSG_486
  4676. eng "%s"
  4677. ER_IB_MSG_487
  4678. eng "%s"
  4679. ER_IB_MSG_488
  4680. eng "%s"
  4681. ER_IB_MSG_489
  4682. eng "%s"
  4683. ER_IB_MSG_490
  4684. eng "%s"
  4685. ER_IB_MSG_491
  4686. eng "%s"
  4687. ER_IB_MSG_492
  4688. eng "%s"
  4689. ER_IB_MSG_493
  4690. eng "%s"
  4691. ER_IB_MSG_494
  4692. eng "%s"
  4693. ER_IB_MSG_495
  4694. eng "%s"
  4695. ER_IB_MSG_496
  4696. eng "%s"
  4697. ER_IB_MSG_497
  4698. eng "%s"
  4699. ER_IB_MSG_498
  4700. eng "%s"
  4701. ER_IB_MSG_499
  4702. eng "%s"
  4703. ER_IB_MSG_500
  4704. eng "%s"
  4705. ER_IB_MSG_501
  4706. eng "%s"
  4707. ER_IB_MSG_502
  4708. eng "%s"
  4709. ER_IB_MSG_503
  4710. eng "%s"
  4711. ER_IB_MSG_504
  4712. eng "%s"
  4713. ER_IB_MSG_505
  4714. eng "%s"
  4715. ER_IB_MSG_506
  4716. eng "%s"
  4717. ER_IB_MSG_507
  4718. eng "%s"
  4719. ER_IB_MSG_508
  4720. eng "%s"
  4721. ER_IB_MSG_509
  4722. eng "%s"
  4723. ER_IB_MSG_510
  4724. eng "%s"
  4725. ER_IB_MSG_511
  4726. eng "%s"
  4727. ER_IB_MSG_512
  4728. eng "%s"
  4729. ER_IB_MSG_513
  4730. eng "%s"
  4731. ER_IB_MSG_514
  4732. eng "%s"
  4733. ER_IB_MSG_515
  4734. eng "%s"
  4735. ER_IB_MSG_516
  4736. eng "%s"
  4737. ER_IB_MSG_517
  4738. eng "%s"
  4739. ER_IB_MSG_518
  4740. eng "%s"
  4741. ER_IB_MSG_519
  4742. eng "%s"
  4743. ER_IB_MSG_520
  4744. eng "%s"
  4745. ER_IB_MSG_521
  4746. eng "%s"
  4747. ER_IB_MSG_522
  4748. eng "%s"
  4749. ER_IB_MSG_523
  4750. eng "%s"
  4751. ER_IB_MSG_524
  4752. eng "%s"
  4753. ER_IB_MSG_525
  4754. eng "%s"
  4755. ER_IB_MSG_526
  4756. eng "%s"
  4757. ER_IB_MSG_527
  4758. eng "%s"
  4759. OBSOLETE_ER_IB_MSG_528
  4760. eng "%s"
  4761. OBSOLETE_ER_IB_MSG_529
  4762. eng "%s"
  4763. ER_IB_MSG_530
  4764. eng "%s"
  4765. ER_IB_MSG_531
  4766. eng "%s"
  4767. ER_IB_MSG_532
  4768. eng "%s"
  4769. ER_IB_MSG_533
  4770. eng "%s"
  4771. ER_IB_MSG_534
  4772. eng "%s"
  4773. ER_IB_MSG_535
  4774. eng "%s"
  4775. ER_IB_MSG_536
  4776. eng "%s"
  4777. ER_IB_MSG_537
  4778. eng "%s"
  4779. ER_IB_MSG_538
  4780. eng "%s"
  4781. ER_IB_MSG_539
  4782. eng "%s"
  4783. ER_IB_MSG_540
  4784. eng "%s"
  4785. ER_IB_MSG_541
  4786. eng "%s"
  4787. ER_IB_MSG_542
  4788. eng "%s"
  4789. ER_IB_MSG_543
  4790. eng "%s"
  4791. ER_IB_MSG_544
  4792. eng "%s"
  4793. ER_IB_MSG_545
  4794. eng "%s"
  4795. ER_IB_MSG_546
  4796. eng "%s"
  4797. ER_IB_MSG_547
  4798. eng "%s"
  4799. ER_IB_MSG_548
  4800. eng "%s"
  4801. ER_IB_MSG_549
  4802. eng "%s"
  4803. ER_IB_MSG_550
  4804. eng "%s"
  4805. ER_IB_MSG_551
  4806. eng "%s"
  4807. ER_IB_MSG_552
  4808. eng "%s"
  4809. ER_IB_MSG_553
  4810. eng "%s"
  4811. ER_IB_MSG_554
  4812. eng "%s"
  4813. ER_IB_MSG_555
  4814. eng "%s"
  4815. ER_IB_MSG_556
  4816. eng "%s"
  4817. ER_IB_MSG_557
  4818. eng "%s"
  4819. ER_IB_MSG_558
  4820. eng "%s"
  4821. ER_IB_MSG_559
  4822. eng "%s"
  4823. ER_IB_MSG_560
  4824. eng "%s"
  4825. ER_IB_MSG_561
  4826. eng "%s"
  4827. ER_IB_MSG_562
  4828. eng "%s"
  4829. ER_IB_MSG_563
  4830. eng "%s"
  4831. ER_IB_MSG_564
  4832. eng "%s"
  4833. ER_IB_MSG_INVALID_LOCATION_FOR_TABLE
  4834. eng "Cannot create a tablespace for table %s because the directory is not a valid location. %s"
  4835. ER_IB_MSG_566
  4836. eng "%s"
  4837. ER_IB_MSG_567
  4838. eng "%s"
  4839. ER_IB_MSG_568
  4840. eng "%s"
  4841. ER_IB_MSG_569
  4842. eng "%s"
  4843. ER_IB_MSG_570
  4844. eng "%s"
  4845. ER_IB_MSG_571
  4846. eng "%s"
  4847. OBSOLETE_ER_IB_MSG_572
  4848. eng "%s"
  4849. ER_IB_MSG_573
  4850. eng "%s"
  4851. ER_IB_MSG_574
  4852. eng "%s"
  4853. OBSOLETE_ER_IB_MSG_575
  4854. eng "%s"
  4855. OBSOLETE_ER_IB_MSG_576
  4856. eng "%s"
  4857. OBSOLETE_ER_IB_MSG_577
  4858. eng "%s"
  4859. ER_IB_MSG_578
  4860. eng "%s"
  4861. ER_IB_MSG_579
  4862. eng "%s"
  4863. ER_IB_MSG_580
  4864. eng "%s"
  4865. ER_IB_MSG_581
  4866. eng "%s"
  4867. ER_IB_MSG_582
  4868. eng "%s"
  4869. ER_IB_MSG_583
  4870. eng "%s"
  4871. ER_IB_MSG_584
  4872. eng "%s"
  4873. ER_IB_MSG_585
  4874. eng "%s"
  4875. ER_IB_MSG_586
  4876. eng "%s"
  4877. ER_IB_MSG_587
  4878. eng "%s"
  4879. ER_IB_MSG_588
  4880. eng "%s"
  4881. ER_IB_MSG_589
  4882. eng "%s"
  4883. ER_IB_MSG_590
  4884. eng "%s"
  4885. ER_IB_MSG_591
  4886. eng "%s"
  4887. ER_IB_MSG_592
  4888. eng "%s"
  4889. ER_IB_MSG_593
  4890. eng "%s"
  4891. ER_IB_MSG_594
  4892. eng "%s"
  4893. ER_IB_MSG_595
  4894. eng "%s"
  4895. ER_IB_MSG_596
  4896. eng "%s"
  4897. ER_IB_MSG_597
  4898. eng "%s"
  4899. ER_IB_MSG_598
  4900. eng "%s"
  4901. ER_IB_MSG_599
  4902. eng "%s"
  4903. ER_IB_MSG_600
  4904. eng "%s"
  4905. ER_IB_MSG_601
  4906. eng "%s"
  4907. ER_IB_MSG_602
  4908. eng "%s"
  4909. ER_IB_MSG_603
  4910. eng "%s"
  4911. ER_IB_MSG_604
  4912. eng "%s"
  4913. ER_IB_MSG_605
  4914. eng "%s"
  4915. ER_IB_MSG_606
  4916. eng "%s"
  4917. ER_IB_MSG_607
  4918. eng "%s"
  4919. ER_IB_MSG_608
  4920. eng "%s"
  4921. ER_IB_MSG_609
  4922. eng "%s"
  4923. ER_IB_MSG_610
  4924. eng "%s"
  4925. ER_IB_MSG_611
  4926. eng "%s"
  4927. ER_IB_MSG_612
  4928. eng "%s"
  4929. ER_IB_MSG_613
  4930. eng "%s"
  4931. ER_IB_MSG_614
  4932. eng "%s"
  4933. ER_IB_MSG_615
  4934. eng "%s"
  4935. ER_IB_MSG_616
  4936. eng "%s"
  4937. ER_IB_MSG_617
  4938. eng "%s"
  4939. ER_IB_MSG_618
  4940. eng "%s"
  4941. ER_IB_MSG_619
  4942. eng "%s"
  4943. ER_IB_MSG_620
  4944. eng "%s"
  4945. ER_IB_MSG_621
  4946. eng "%s"
  4947. ER_IB_MSG_622
  4948. eng "%s"
  4949. ER_IB_MSG_623
  4950. eng "%s"
  4951. ER_IB_MSG_624
  4952. eng "%s"
  4953. ER_IB_MSG_625
  4954. eng "%s"
  4955. ER_IB_MSG_626
  4956. eng "%s"
  4957. ER_IB_MSG_627
  4958. eng "%s"
  4959. ER_IB_MSG_628
  4960. eng "%s"
  4961. ER_IB_MSG_629
  4962. eng "%s"
  4963. ER_IB_MSG_630
  4964. eng "%s"
  4965. ER_IB_MSG_631
  4966. eng "%s"
  4967. ER_IB_MSG_632
  4968. eng "%s"
  4969. ER_IB_MSG_633
  4970. eng "%s"
  4971. ER_IB_MSG_634
  4972. eng "%s"
  4973. ER_IB_MSG_635
  4974. eng "%s"
  4975. ER_IB_MSG_636
  4976. eng "%s"
  4977. ER_IB_MSG_637
  4978. eng "%s"
  4979. ER_IB_MSG_638
  4980. eng "%s"
  4981. ER_IB_MSG_639
  4982. eng "%s"
  4983. OBSOLETE_ER_IB_MSG_640
  4984. eng "%s"
  4985. OBSOLETE_ER_IB_MSG_641
  4986. eng "%s"
  4987. ER_IB_MSG_642
  4988. eng "%s"
  4989. ER_IB_MSG_643
  4990. eng "%s"
  4991. ER_IB_MSG_644
  4992. eng "%s"
  4993. ER_IB_MSG_645
  4994. eng "%s"
  4995. ER_IB_MSG_646
  4996. eng "%s"
  4997. ER_IB_MSG_647
  4998. eng "%s"
  4999. ER_IB_MSG_648
  5000. eng "%s"
  5001. ER_IB_MSG_649
  5002. eng "%s"
  5003. ER_IB_MSG_650
  5004. eng "%s"
  5005. ER_IB_MSG_651
  5006. eng "%s"
  5007. ER_IB_MSG_652
  5008. eng "%s"
  5009. ER_IB_MSG_DDL_LOG_DELETE_BY_ID_OK
  5010. eng "%s"
  5011. ER_IB_MSG_654
  5012. eng "%s"
  5013. ER_IB_MSG_655
  5014. eng "%s"
  5015. ER_IB_MSG_656
  5016. eng "%s"
  5017. ER_IB_MSG_657
  5018. eng "%s"
  5019. ER_IB_MSG_658
  5020. eng "%s"
  5021. ER_IB_MSG_659
  5022. eng "%s"
  5023. ER_IB_MSG_660
  5024. eng "%s"
  5025. ER_IB_MSG_661
  5026. eng "%s"
  5027. ER_IB_MSG_662
  5028. eng "%s"
  5029. ER_IB_MSG_663
  5030. eng "%s"
  5031. OBSOLETE_ER_IB_MSG_664
  5032. eng "The transaction log size is too large for innodb_log_buffer_size (%lu >= %lu / 2). Trying to extend it."
  5033. OBSOLETE_ER_IB_MSG_665
  5034. eng "innodb_log_buffer_size was extended to %lu bytes."
  5035. OBSOLETE_ER_IB_MSG_666
  5036. eng "The transaction log files are too small for the single transaction log (size=%lu). So, the last checkpoint age might exceed the log group capacity %llu."
  5037. OBSOLETE_ER_IB_MSG_667
  5038. eng "The age of the last checkpoint is %llu, which exceeds the log group capacity %llu."
  5039. OBSOLETE_ER_IB_MSG_668
  5040. eng "Cannot continue operation. ib_logfiles are too small for innodb_thread_concurrency %lu. The combined size of ib_logfiles should be bigger than 200 kB * innodb_thread_concurrency. To get mysqld to start up, set innodb_thread_concurrency in my.cnf to a lower value, for example, to 8. After an ERROR-FREE shutdown of mysqld you can adjust the size of ib_logfiles. %s"
  5041. OBSOLETE_ER_IB_MSG_669
  5042. eng "Redo log was encrypted, but keyring plugin is not loaded."
  5043. OBSOLETE_ER_IB_MSG_670
  5044. eng "Read redo log encryption metadata successful."
  5045. OBSOLETE_ER_IB_MSG_671
  5046. eng "Can't set redo log tablespace encryption metadata."
  5047. OBSOLETE_ER_IB_MSG_672
  5048. eng "Cannot read the encryption information in log file header, please check if keyring plugin loaded and the key file exists."
  5049. OBSOLETE_ER_IB_MSG_673
  5050. eng "Can't set redo log tablespace to be encrypted in read-only mode."
  5051. OBSOLETE_ER_IB_MSG_674
  5052. eng "Can't set redo log tablespace to be encrypted."
  5053. OBSOLETE_ER_IB_MSG_675
  5054. eng "Can't set redo log tablespace to be encrypted."
  5055. OBSOLETE_ER_IB_MSG_676
  5056. eng "Redo log encryption is enabled."
  5057. OBSOLETE_ER_IB_MSG_677
  5058. eng "Flush waiting for archiver to catch up lag LSN: %llu"
  5059. OBSOLETE_ER_IB_MSG_678
  5060. eng "Flush overwriting data to archive - wait too long (1 minute) lag LSN: %llu"
  5061. OBSOLETE_ER_IB_MSG_679
  5062. eng "%s"
  5063. OBSOLETE_ER_IB_MSG_680
  5064. eng "Starting shutdown..."
  5065. OBSOLETE_ER_IB_MSG_681
  5066. eng "Waiting for %s to exit"
  5067. OBSOLETE_ER_IB_MSG_682
  5068. eng "Waiting for %lu active transactions to finish"
  5069. OBSOLETE_ER_IB_MSG_683
  5070. eng "Waiting for master thread to be suspended"
  5071. OBSOLETE_ER_IB_MSG_684
  5072. eng "Waiting for page_cleaner to finish flushing of buffer pool"
  5073. OBSOLETE_ER_IB_MSG_685
  5074. eng "Pending checkpoint_writes: %lu. Pending log flush writes: %lu."
  5075. OBSOLETE_ER_IB_MSG_686
  5076. eng "Waiting for %lu buffer page I/Os to complete"
  5077. OBSOLETE_ER_IB_MSG_687
  5078. eng "MySQL has requested a very fast shutdown without flushing the InnoDB buffer pool to data files. At the next mysqld startup InnoDB will do a crash recovery!"
  5079. OBSOLETE_ER_IB_MSG_688
  5080. eng "Background thread %s woke up during shutdown"
  5081. OBSOLETE_ER_IB_MSG_689
  5082. eng "Waiting for archiver to finish archiving page and log"
  5083. OBSOLETE_ER_IB_MSG_690
  5084. eng "Background thread %s woke up during shutdown"
  5085. OBSOLETE_ER_IB_MSG_691
  5086. eng "Waiting for dirty buffer pages to be flushed"
  5087. OBSOLETE_ER_IB_MSG_692
  5088. eng "Log sequence number at shutdown %llu is lower than at startup %llu!"
  5089. OBSOLETE_ER_IB_MSG_693
  5090. eng "Waiting for archiver to finish archiving page and log"
  5091. ER_IB_MSG_694
  5092. eng "############### CORRUPT LOG RECORD FOUND ###############"
  5093. ER_IB_MSG_695
  5094. eng "Log record type %d, page %lu:%lu. Log parsing proceeded successfully up to %llu. Previous log record type %d, is multi %llu Recv offset %zd, prev %llu"
  5095. ER_IB_MSG_696
  5096. eng "Hex dump starting %llu bytes before and ending %llu bytes after the corrupted record:"
  5097. ER_IB_MSG_697
  5098. eng "Set innodb_force_recovery to ignore this error."
  5099. ER_IB_MSG_698
  5100. eng "The log file may have been corrupt and it is possible that the log scan did not proceed far enough in recovery! Please run CHECK TABLE on your InnoDB tables to check that they are ok! If mysqld crashes after this recovery; %s"
  5101. ER_IB_MSG_699
  5102. eng "%llu pages with log records were left unprocessed!"
  5103. ER_IB_MSG_700
  5104. eng "%s"
  5105. ER_IB_MSG_701
  5106. eng "%s"
  5107. OBSOLETE_ER_IB_MSG_702
  5108. eng "Invalid redo log header checksum."
  5109. OBSOLETE_ER_IB_MSG_703
  5110. eng "Unsupported redo log format (%lu). The redo log was created before MySQL 5.7.9"
  5111. ER_IB_MSG_704
  5112. eng "Redo log format is v%lu. The redo log was created before MySQL 8.0.3."
  5113. ER_IB_MSG_705
  5114. eng "Unknown redo log format (%lu). Please follow the instructions at %s upgrading-downgrading.html."
  5115. ER_IB_MSG_706
  5116. eng "No valid checkpoint found (corrupted redo log). You can try --innodb-force-recovery=6 as a last resort."
  5117. ER_IB_MSG_707
  5118. eng "Applying a batch of %llu redo log records ..."
  5119. ER_IB_MSG_708
  5120. eng "%s"
  5121. ER_IB_MSG_709
  5122. eng "%s"
  5123. ER_IB_MSG_710
  5124. eng "Apply batch completed!"
  5125. ER_IB_MSG_711
  5126. eng "%s"
  5127. ER_IB_MSG_712
  5128. eng "%s"
  5129. ER_IB_MSG_713
  5130. eng "%s"
  5131. ER_IB_MSG_714
  5132. eng "%s"
  5133. ER_IB_MSG_715
  5134. eng "%s"
  5135. ER_IB_MSG_716
  5136. eng "%s"
  5137. ER_IB_MSG_717
  5138. eng "An optimized(without redo logging) DDL operation has been performed. All modified pages may not have been flushed to the disk yet.\nThis offline backup may not be consistent"
  5139. ER_IB_MSG_718
  5140. eng "Extending tablespace : %lu space name: %s to new size: %lu pages during recovery."
  5141. ER_IB_MSG_719
  5142. eng "Could not extend tablespace: %lu space name: %s to new size: %lu pages during recovery."
  5143. ER_IB_MSG_720
  5144. eng "Log block %llu at lsn %llu has valid header, but checksum field contains %lu, should be %lu."
  5145. ER_IB_MSG_721
  5146. eng "Recovery skipped, --innodb-read-only set!"
  5147. ER_IB_MSG_722
  5148. eng "Log scan progressed past the checkpoint LSN %llu."
  5149. ER_IB_MSG_723
  5150. eng "Log parsing buffer overflow. Recovery may have failed! Please set log_buffer_size to a value higher than %lu."
  5151. ER_IB_MSG_724
  5152. eng "Set innodb_force_recovery to ignore this error.";
  5153. ER_IB_MSG_725
  5154. eng "Doing recovery: scanned up to log sequence number %llu"
  5155. ER_IB_MSG_726
  5156. eng "Database was not shutdown normally!"
  5157. ER_IB_MSG_727
  5158. eng "Starting crash recovery."
  5159. ER_IB_MSG_728
  5160. eng "The user has set SRV_FORCE_NO_LOG_REDO on, skipping log redo"
  5161. ER_IB_MSG_729
  5162. eng "Cannot restore from mysqlbackup, InnoDB running in read-only mode!"
  5163. ER_IB_MSG_730
  5164. eng "The log file was created by mysqlbackup --apply-log at %s. The following crash recovery is part of a normal restore."
  5165. ER_IB_MSG_731
  5166. eng "Opening cloned database"
  5167. ER_IB_MSG_732
  5168. eng "Redo log is from an earlier version, v%lu."
  5169. ER_IB_MSG_733
  5170. eng "Redo log format v%lu not supported. Current supported format is v%lu."
  5171. ER_IB_MSG_734
  5172. eng "Are you sure you are using the right ib_logfiles to start up the database? Log sequence number in the ib_logfiles is %llu, less than the log sequence number in the first system tablespace file header, %llu."
  5173. ER_IB_MSG_735
  5174. eng "The log sequence number %llu in the system tablespace does not match the log sequence number %llu in the ib_logfiles!"
  5175. ER_IB_MSG_736
  5176. eng "Can't initiate database recovery, running in read-only-mode."
  5177. ER_IB_MSG_737
  5178. eng "We scanned the log up to %llu. A checkpoint was at %llu and the maximum LSN on a database page was %llu. It is possible that the database is now corrupt!"
  5179. ER_IB_MSG_738
  5180. eng "Waiting for recv_writer to finish flushing of buffer pool"
  5181. ER_IB_MSG_739
  5182. eng "Recovery parsing buffer extended to %zu."
  5183. ER_IB_MSG_740
  5184. eng "Out of memory while resizing recovery parsing buffer."
  5185. ER_IB_MSG_741
  5186. eng "%s"
  5187. ER_IB_MSG_742
  5188. eng "%s"
  5189. ER_IB_MSG_743
  5190. eng "%s"
  5191. ER_IB_MSG_744
  5192. eng "%s"
  5193. ER_IB_MSG_745
  5194. eng "%s"
  5195. ER_IB_MSG_746
  5196. eng "%s"
  5197. ER_IB_MSG_747
  5198. eng "%s"
  5199. ER_IB_MSG_748
  5200. eng "%s"
  5201. ER_IB_MSG_749
  5202. eng "%s"
  5203. ER_IB_MSG_750
  5204. eng "%s"
  5205. ER_IB_MSG_751
  5206. eng "%s"
  5207. ER_IB_MSG_752
  5208. eng "%s"
  5209. ER_IB_MSG_753
  5210. eng "%s"
  5211. ER_IB_MSG_754
  5212. eng "%s"
  5213. ER_IB_MSG_755
  5214. eng "%s"
  5215. ER_IB_MSG_756
  5216. eng "%s"
  5217. ER_IB_MSG_757
  5218. eng "%s"
  5219. ER_IB_MSG_758
  5220. eng "%s"
  5221. ER_IB_MSG_759
  5222. eng "%s"
  5223. ER_IB_MSG_760
  5224. eng "%s"
  5225. ER_IB_MSG_761
  5226. eng "%s"
  5227. ER_IB_MSG_762
  5228. eng "%s"
  5229. ER_IB_MSG_763
  5230. eng "%s"
  5231. ER_IB_MSG_764
  5232. eng "%s"
  5233. ER_IB_MSG_765
  5234. eng "%s"
  5235. ER_IB_MSG_766
  5236. eng "%s"
  5237. ER_IB_MSG_767
  5238. eng "%s"
  5239. ER_IB_MSG_768
  5240. eng "%s"
  5241. ER_IB_MSG_769
  5242. eng "%s"
  5243. ER_IB_MSG_770
  5244. eng "%s"
  5245. ER_IB_MSG_771
  5246. eng "%s"
  5247. ER_IB_MSG_772
  5248. eng "%s"
  5249. ER_IB_MSG_773
  5250. eng "%s"
  5251. ER_IB_MSG_774
  5252. eng "%s"
  5253. ER_IB_MSG_775
  5254. eng "%s"
  5255. ER_IB_MSG_776
  5256. eng "%s"
  5257. ER_IB_MSG_777
  5258. eng "%s"
  5259. ER_IB_MSG_778
  5260. eng "%s"
  5261. ER_IB_MSG_779
  5262. eng "%s"
  5263. ER_IB_MSG_780
  5264. eng "%s"
  5265. ER_IB_MSG_781
  5266. eng "%s"
  5267. ER_IB_MSG_782
  5268. eng "%s"
  5269. ER_IB_MSG_783
  5270. eng "%s"
  5271. ER_IB_MSG_784
  5272. eng "%s"
  5273. ER_IB_MSG_785
  5274. eng "%s"
  5275. ER_IB_MSG_786
  5276. eng "%s"
  5277. ER_IB_MSG_787
  5278. eng "%s"
  5279. ER_IB_MSG_788
  5280. eng "%s"
  5281. ER_IB_MSG_789
  5282. eng "%s"
  5283. ER_IB_MSG_790
  5284. eng "%s"
  5285. ER_IB_MSG_791
  5286. eng "%s"
  5287. ER_IB_MSG_792
  5288. eng "%s"
  5289. ER_IB_MSG_793
  5290. eng "%s"
  5291. ER_IB_MSG_794
  5292. eng "%s"
  5293. ER_IB_MSG_795
  5294. eng "%s"
  5295. ER_IB_MSG_796
  5296. eng "%s"
  5297. ER_IB_MSG_797
  5298. eng "%s"
  5299. ER_IB_MSG_798
  5300. eng "%s"
  5301. ER_IB_MSG_799
  5302. eng "%s"
  5303. ER_IB_MSG_800
  5304. eng "%s"
  5305. ER_IB_MSG_801
  5306. eng "%s"
  5307. ER_IB_MSG_802
  5308. eng "%s"
  5309. ER_IB_MSG_803
  5310. eng "%s"
  5311. ER_IB_MSG_804
  5312. eng "%s"
  5313. ER_IB_MSG_805
  5314. eng "%s"
  5315. ER_IB_MSG_806
  5316. eng "%s"
  5317. ER_IB_MSG_807
  5318. eng "%s"
  5319. ER_IB_MSG_808
  5320. eng "%s"
  5321. ER_IB_MSG_809
  5322. eng "%s"
  5323. ER_IB_MSG_810
  5324. eng "%s"
  5325. ER_IB_MSG_811
  5326. eng "%s"
  5327. ER_IB_MSG_812
  5328. eng "%s"
  5329. ER_IB_MSG_813
  5330. eng "%s"
  5331. ER_IB_MSG_814
  5332. eng "%s"
  5333. ER_IB_MSG_815
  5334. eng "%s"
  5335. ER_IB_MSG_816
  5336. eng "%s"
  5337. ER_IB_MSG_817
  5338. eng "%s"
  5339. ER_IB_MSG_818
  5340. eng "%s"
  5341. ER_IB_MSG_819
  5342. eng "%s"
  5343. ER_IB_MSG_820
  5344. eng "%s"
  5345. ER_IB_MSG_821
  5346. eng "%s"
  5347. ER_IB_MSG_822
  5348. eng "%s"
  5349. ER_IB_MSG_823
  5350. eng "%s"
  5351. ER_IB_MSG_824
  5352. eng "%s"
  5353. ER_IB_MSG_825
  5354. eng "%s"
  5355. ER_IB_MSG_826
  5356. eng "%s"
  5357. ER_IB_MSG_827
  5358. eng "%s"
  5359. ER_IB_MSG_828
  5360. eng "%s"
  5361. ER_IB_MSG_829
  5362. eng "%s"
  5363. ER_IB_MSG_830
  5364. eng "%s"
  5365. ER_IB_MSG_831
  5366. eng "%s"
  5367. ER_IB_MSG_832
  5368. eng "%s"
  5369. ER_IB_MSG_833
  5370. eng "%s"
  5371. ER_IB_MSG_834
  5372. eng "%s"
  5373. ER_IB_MSG_835
  5374. eng "%s"
  5375. ER_IB_MSG_836
  5376. eng "%s"
  5377. ER_IB_MSG_837
  5378. eng "%s"
  5379. ER_IB_MSG_838
  5380. eng "%s"
  5381. ER_IB_MSG_839
  5382. eng "%s"
  5383. ER_IB_MSG_840
  5384. eng "%s"
  5385. ER_IB_MSG_841
  5386. eng "%s"
  5387. ER_IB_MSG_842
  5388. eng "%s"
  5389. ER_IB_MSG_843
  5390. eng "%s"
  5391. ER_IB_MSG_844
  5392. eng "%s"
  5393. ER_IB_MSG_845
  5394. eng "%s"
  5395. ER_IB_MSG_846
  5396. eng "%s"
  5397. ER_IB_MSG_847
  5398. eng "%s"
  5399. ER_IB_MSG_848
  5400. eng "%s"
  5401. ER_IB_MSG_849
  5402. eng "%s"
  5403. ER_IB_MSG_850
  5404. eng "%s"
  5405. ER_IB_MSG_851
  5406. eng "%s"
  5407. ER_IB_MSG_852
  5408. eng "%s"
  5409. ER_IB_MSG_853
  5410. eng "%s"
  5411. ER_IB_MSG_854
  5412. eng "%s"
  5413. ER_IB_MSG_855
  5414. eng "%s"
  5415. ER_IB_MSG_856
  5416. eng "%s"
  5417. ER_IB_MSG_857
  5418. eng "%s"
  5419. ER_IB_MSG_858
  5420. eng "%s"
  5421. ER_IB_MSG_859
  5422. eng "%s"
  5423. ER_IB_MSG_860
  5424. eng "%s"
  5425. ER_IB_MSG_861
  5426. eng "%s"
  5427. ER_IB_MSG_862
  5428. eng "%s"
  5429. ER_IB_MSG_863
  5430. eng "%s"
  5431. ER_IB_MSG_864
  5432. eng "%s"
  5433. ER_IB_MSG_865
  5434. eng "%s"
  5435. ER_IB_MSG_866
  5436. eng "%s"
  5437. ER_IB_MSG_867
  5438. eng "%s"
  5439. ER_IB_MSG_868
  5440. eng "%s"
  5441. ER_IB_MSG_869
  5442. eng "%s"
  5443. ER_IB_MSG_870
  5444. eng "%s"
  5445. ER_IB_MSG_871
  5446. eng "%s"
  5447. ER_IB_MSG_872
  5448. eng "%s"
  5449. ER_IB_MSG_873
  5450. eng "%s"
  5451. ER_IB_MSG_874
  5452. eng "%s"
  5453. ER_IB_MSG_875
  5454. eng "%s"
  5455. ER_IB_MSG_876
  5456. eng "%s"
  5457. ER_IB_MSG_877
  5458. eng "%s"
  5459. ER_IB_MSG_878
  5460. eng "%s"
  5461. ER_IB_MSG_879
  5462. eng "%s"
  5463. ER_IB_MSG_880
  5464. eng "%s"
  5465. ER_IB_MSG_881
  5466. eng "%s"
  5467. ER_IB_MSG_882
  5468. eng "%s"
  5469. ER_IB_MSG_883
  5470. eng "%s"
  5471. ER_IB_MSG_884
  5472. eng "%s"
  5473. ER_IB_MSG_885
  5474. eng "%s"
  5475. ER_IB_MSG_886
  5476. eng "%s"
  5477. ER_IB_MSG_887
  5478. eng "%s"
  5479. ER_IB_MSG_888
  5480. eng "%s"
  5481. ER_IB_MSG_889
  5482. eng "%s"
  5483. ER_IB_MSG_890
  5484. eng "%s"
  5485. ER_IB_MSG_891
  5486. eng "%s"
  5487. ER_IB_MSG_892
  5488. eng "%s"
  5489. ER_IB_MSG_893
  5490. eng "%s"
  5491. ER_IB_MSG_894
  5492. eng "%s"
  5493. ER_IB_MSG_895
  5494. eng "%s"
  5495. ER_IB_MSG_896
  5496. eng "%s"
  5497. ER_IB_MSG_897
  5498. eng "%s"
  5499. ER_IB_MSG_898
  5500. eng "%s"
  5501. ER_IB_MSG_899
  5502. eng "%s"
  5503. ER_IB_MSG_900
  5504. eng "%s"
  5505. ER_IB_MSG_901
  5506. eng "%s"
  5507. ER_IB_MSG_902
  5508. eng "%s"
  5509. ER_IB_MSG_903
  5510. eng "%s"
  5511. ER_IB_MSG_904
  5512. eng "%s"
  5513. ER_IB_MSG_905
  5514. eng "%s"
  5515. ER_IB_MSG_906
  5516. eng "%s"
  5517. ER_IB_MSG_907
  5518. eng "%s"
  5519. ER_IB_MSG_908
  5520. eng "%s"
  5521. ER_IB_MSG_909
  5522. eng "%s"
  5523. ER_IB_MSG_910
  5524. eng "%s"
  5525. ER_IB_MSG_911
  5526. eng "%s"
  5527. ER_IB_MSG_912
  5528. eng "%s"
  5529. ER_IB_MSG_913
  5530. eng "%s"
  5531. ER_IB_MSG_914
  5532. eng "%s"
  5533. ER_IB_MSG_915
  5534. eng "%s"
  5535. ER_IB_MSG_916
  5536. eng "%s"
  5537. ER_IB_MSG_917
  5538. eng "%s"
  5539. ER_IB_MSG_918
  5540. eng "%s"
  5541. ER_IB_MSG_919
  5542. eng "%s"
  5543. ER_IB_MSG_920
  5544. eng "%s"
  5545. ER_IB_MSG_921
  5546. eng "%s"
  5547. ER_IB_MSG_922
  5548. eng "%s"
  5549. ER_IB_MSG_923
  5550. eng "%s"
  5551. ER_IB_MSG_924
  5552. eng "%s"
  5553. ER_IB_MSG_925
  5554. eng "%s"
  5555. ER_IB_MSG_926
  5556. eng "%s"
  5557. ER_IB_MSG_927
  5558. eng "%s"
  5559. ER_IB_MSG_928
  5560. eng "%s"
  5561. ER_IB_MSG_929
  5562. eng "%s"
  5563. ER_IB_MSG_930
  5564. eng "%s"
  5565. ER_IB_MSG_931
  5566. eng "%s"
  5567. ER_IB_MSG_932
  5568. eng "%s"
  5569. ER_IB_MSG_933
  5570. eng "%s"
  5571. ER_IB_MSG_934
  5572. eng "%s"
  5573. ER_IB_MSG_935
  5574. eng "%s"
  5575. ER_IB_MSG_936
  5576. eng "%s"
  5577. ER_IB_MSG_937
  5578. eng "%s"
  5579. ER_IB_MSG_938
  5580. eng "%s"
  5581. ER_IB_MSG_939
  5582. eng "%s"
  5583. ER_IB_MSG_940
  5584. eng "%s"
  5585. ER_IB_MSG_941
  5586. eng "%s"
  5587. ER_IB_MSG_942
  5588. eng "%s"
  5589. ER_IB_MSG_943
  5590. eng "%s"
  5591. ER_IB_MSG_944
  5592. eng "%s"
  5593. ER_IB_MSG_945
  5594. eng "%s"
  5595. ER_IB_MSG_946
  5596. eng "%s"
  5597. ER_IB_MSG_947
  5598. eng "%s"
  5599. ER_IB_MSG_948
  5600. eng "%s"
  5601. ER_IB_MSG_949
  5602. eng "%s"
  5603. ER_IB_MSG_950
  5604. eng "%s"
  5605. ER_IB_MSG_951
  5606. eng "%s"
  5607. ER_IB_MSG_952
  5608. eng "%s"
  5609. ER_IB_MSG_953
  5610. eng "%s"
  5611. ER_IB_MSG_954
  5612. eng "%s"
  5613. ER_IB_MSG_955
  5614. eng "%s"
  5615. ER_IB_MSG_956
  5616. eng "%s"
  5617. ER_IB_MSG_957
  5618. eng "%s"
  5619. ER_IB_MSG_958
  5620. eng "%s"
  5621. ER_IB_MSG_959
  5622. eng "%s"
  5623. ER_IB_MSG_960
  5624. eng "%s"
  5625. ER_IB_MSG_961
  5626. eng "%s"
  5627. ER_IB_MSG_962
  5628. eng "%s"
  5629. ER_IB_MSG_963
  5630. eng "%s"
  5631. ER_IB_MSG_964
  5632. eng "%s"
  5633. ER_IB_MSG_965
  5634. eng "%s"
  5635. ER_IB_MSG_966
  5636. eng "%s"
  5637. ER_IB_MSG_967
  5638. eng "%s"
  5639. ER_IB_MSG_968
  5640. eng "%s"
  5641. ER_IB_MSG_969
  5642. eng "%s"
  5643. ER_IB_MSG_970
  5644. eng "%s"
  5645. ER_IB_MSG_971
  5646. eng "%s"
  5647. ER_IB_MSG_972
  5648. eng "%s"
  5649. ER_IB_MSG_973
  5650. eng "%s"
  5651. ER_IB_MSG_974
  5652. eng "%s"
  5653. ER_IB_MSG_975
  5654. eng "%s"
  5655. ER_IB_MSG_976
  5656. eng "%s"
  5657. ER_IB_MSG_977
  5658. eng "%s"
  5659. ER_IB_MSG_978
  5660. eng "%s"
  5661. ER_IB_MSG_979
  5662. eng "%s"
  5663. ER_IB_MSG_980
  5664. eng "%s"
  5665. ER_IB_MSG_981
  5666. eng "%s"
  5667. ER_IB_MSG_982
  5668. eng "%s"
  5669. ER_IB_MSG_983
  5670. eng "%s"
  5671. ER_IB_MSG_984
  5672. eng "%s"
  5673. ER_IB_MSG_985
  5674. eng "%s"
  5675. ER_IB_MSG_986
  5676. eng "%s"
  5677. ER_IB_MSG_987
  5678. eng "%s"
  5679. ER_IB_MSG_988
  5680. eng "%s"
  5681. ER_IB_MSG_989
  5682. eng "%s"
  5683. ER_IB_MSG_990
  5684. eng "%s"
  5685. ER_IB_MSG_991
  5686. eng "%s"
  5687. ER_IB_MSG_992
  5688. eng "%s"
  5689. ER_IB_MSG_993
  5690. eng "%s"
  5691. ER_IB_MSG_994
  5692. eng "%s"
  5693. ER_IB_MSG_995
  5694. eng "%s"
  5695. ER_IB_MSG_996
  5696. eng "%s"
  5697. ER_IB_MSG_997
  5698. eng "%s"
  5699. ER_IB_MSG_998
  5700. eng "%s"
  5701. ER_IB_MSG_999
  5702. eng "%s"
  5703. ER_IB_MSG_1000
  5704. eng "%s"
  5705. ER_IB_MSG_1001
  5706. eng "%s"
  5707. ER_IB_MSG_1002
  5708. eng "%s"
  5709. ER_IB_MSG_1003
  5710. eng "%s"
  5711. ER_IB_MSG_1004
  5712. eng "%s"
  5713. ER_IB_MSG_1005
  5714. eng "%s"
  5715. ER_IB_MSG_1006
  5716. eng "%s"
  5717. ER_IB_MSG_1007
  5718. eng "%s"
  5719. ER_IB_MSG_1008
  5720. eng "%s"
  5721. ER_IB_MSG_1009
  5722. eng "%s"
  5723. ER_IB_MSG_1010
  5724. eng "%s"
  5725. ER_IB_MSG_1011
  5726. eng "%s"
  5727. ER_IB_MSG_1012
  5728. eng "%s"
  5729. ER_IB_MSG_1013
  5730. eng "%s"
  5731. ER_IB_MSG_1014
  5732. eng "%s"
  5733. ER_IB_MSG_1015
  5734. eng "%s"
  5735. ER_IB_MSG_1016
  5736. eng "%s"
  5737. ER_IB_MSG_1017
  5738. eng "%s"
  5739. ER_IB_MSG_1018
  5740. eng "%s"
  5741. ER_IB_MSG_1019
  5742. eng "%s"
  5743. ER_IB_MSG_1020
  5744. eng "%s"
  5745. ER_IB_MSG_1021
  5746. eng "%s"
  5747. ER_IB_MSG_1022
  5748. eng "%s"
  5749. ER_IB_MSG_1023
  5750. eng "%s"
  5751. ER_IB_MSG_1024
  5752. eng "%s"
  5753. ER_IB_MSG_1025
  5754. eng "%s"
  5755. ER_IB_MSG_1026
  5756. eng "%s"
  5757. ER_IB_MSG_1027
  5758. eng "%s"
  5759. ER_IB_MSG_1028
  5760. eng "%s"
  5761. ER_IB_MSG_1029
  5762. eng "%s"
  5763. ER_IB_MSG_1030
  5764. eng "%s"
  5765. ER_IB_MSG_1031
  5766. eng "%s"
  5767. ER_IB_MSG_1032
  5768. eng "%s"
  5769. ER_IB_MSG_1033
  5770. eng "%s"
  5771. ER_IB_MSG_1034
  5772. eng "%s"
  5773. ER_IB_MSG_1035
  5774. eng "%s"
  5775. ER_IB_MSG_1036
  5776. eng "%s"
  5777. ER_IB_MSG_1037
  5778. eng "%s"
  5779. ER_IB_MSG_1038
  5780. eng "%s"
  5781. ER_IB_MSG_1039
  5782. eng "%s"
  5783. ER_IB_MSG_1040
  5784. eng "%s"
  5785. ER_IB_MSG_1041
  5786. eng "%s"
  5787. ER_IB_MSG_1042
  5788. eng "%s"
  5789. ER_IB_MSG_1043
  5790. eng "%s"
  5791. ER_IB_MSG_1044
  5792. eng "%s"
  5793. ER_IB_MSG_1045
  5794. eng "%s"
  5795. ER_IB_MSG_1046
  5796. eng "Old log sequence number %llu was greater than the new log sequence number %llu. Please submit a bug report to http://bugs.mysql.com"
  5797. ER_IB_MSG_1047
  5798. eng "Semaphore wait has lasted > %llu seconds. We intentionally crash the server because it appears to be hung."
  5799. ER_IB_MSG_1048
  5800. eng "Waiting for %llu table(s) to be dropped"
  5801. ER_IB_MSG_1049
  5802. eng "Waiting for change buffer merge to complete number of bytes of change buffer just merged: %llu"
  5803. OBSOLETE_ER_IB_MSG_1050
  5804. eng "Can't set undo tablespace(s) to be encrypted since --innodb_undo_tablespaces=0."
  5805. ER_IB_MSG_1051
  5806. eng "Can't set undo tablespace(s) to be encrypted in read-only-mode."
  5807. ER_IB_MSG_1052
  5808. eng "Can't set undo tablespace '%s' to be encrypted."
  5809. ER_IB_MSG_1053
  5810. eng "Can't set undo tablespace '%s' to be encrypted. Failed to write header page."
  5811. ER_IB_MSG_1054
  5812. eng "Can't set undo tablespace '%s' to be encrypted. Error %d - %s"
  5813. ER_IB_MSG_1055
  5814. eng "Encryption is enabled for undo tablespace '%s'."
  5815. ER_IB_MSG_1056
  5816. eng "Can't rotate encryption on undo tablespace '%s'."
  5817. ER_IB_MSG_1057
  5818. eng "Encryption is enabled for undo tablespace '%s'."
  5819. ER_IB_MSG_1058
  5820. eng "os_file_get_status() failed on '%s'. Can't determine file permissions."
  5821. ER_IB_MSG_1059
  5822. eng "%s can't be opened in %s mode."
  5823. ER_IB_MSG_1060
  5824. eng "'%s' not a regular file."
  5825. ER_IB_MSG_1061
  5826. eng "Cannot create %s"
  5827. ER_IB_MSG_1062
  5828. eng "Setting log file %s size to %llu MB. Progress : %u%%"
  5829. ER_IB_MSG_1063
  5830. eng "Cannot set log file %s to size %llu MB"
  5831. ER_IB_MSG_1064
  5832. eng "Cannot create log files in read-only mode"
  5833. ER_IB_MSG_1065
  5834. eng "Redo log encryption is enabled, but the keyring is not loaded."
  5835. ER_IB_MSG_1066
  5836. eng "Cannot create file for log file %s."
  5837. ER_IB_MSG_1067
  5838. eng "Renaming log file %s to %s"
  5839. ER_IB_MSG_1068
  5840. eng "New log files created, LSN=%llu"
  5841. ER_IB_MSG_1069
  5842. eng "Unable to open '%s'."
  5843. ER_IB_MSG_1070
  5844. eng "Cannot create construction log file '%s' for undo tablespace '%s'."
  5845. ER_IB_MSG_1071
  5846. eng "Creating UNDO Tablespace %s"
  5847. ER_IB_MSG_1072
  5848. eng "Setting file %s size to %llu MB"
  5849. ER_IB_MSG_1073
  5850. eng "Physically writing the file full"
  5851. ER_IB_MSG_1074
  5852. eng "Error in creating %s: probably out of disk space"
  5853. ER_IB_MSG_1075
  5854. eng "Can't set encryption metadata for space %s"
  5855. ER_IB_MSG_1076
  5856. eng "Cannot read first page of '%s' - %s"
  5857. ER_IB_MSG_1077
  5858. eng "Undo tablespace number %lu was being truncated when mysqld quit."
  5859. ER_IB_MSG_1078
  5860. eng "Cannot recover a truncated undo tablespace in read-only mode"
  5861. ER_IB_MSG_1079
  5862. eng "Reconstructing undo tablespace number %lu."
  5863. ER_IB_MSG_1080
  5864. eng "Cannot create %s because %s already uses Space ID=%lu! Did you change innodb_undo_directory?"
  5865. ER_IB_MSG_1081
  5866. eng "UNDO tablespace %s must be %s"
  5867. ER_IB_MSG_1082
  5868. eng "Error creating file for %s"
  5869. ER_IB_MSG_1083
  5870. eng "Error reading encryption for %s"
  5871. ER_IB_MSG_CANNOT_OPEN_57_UNDO
  5872. eng "Unable to open undo tablespace number %lu"
  5873. ER_IB_MSG_1085
  5874. eng "Opened %llu existing undo tablespaces."
  5875. ER_IB_MSG_1086
  5876. eng "Cannot create undo tablespaces since innodb_%s has been set. Using %llu existing undo tablespaces."
  5877. ER_IB_MSG_1087
  5878. eng "Cannot continue InnoDB startup in %s mode because there are no existing undo tablespaces found."
  5879. ER_IB_MSG_1088
  5880. eng "Could not create undo tablespace '%s'."
  5881. ER_IB_MSG_1089
  5882. eng "Error %d - %s - opening newly created undo tablespace '%s'."
  5883. ER_IB_MSG_1090
  5884. eng "Created %llu undo tablespaces."
  5885. ER_IB_MSG_1091
  5886. eng "Unable to create encrypted undo tablespace number %lu. please check if the keyring is initialized correctly"
  5887. ER_IB_MSG_1092
  5888. eng "Encryption is enabled for undo tablespace number %lu."
  5889. ER_IB_MSG_1093
  5890. eng "Unable to initialize the header page in undo tablespace number %lu."
  5891. ER_IB_MSG_1094
  5892. eng "Cannot delete old undo tablespaces because they contain undo logs for XA PREPARED transactions."
  5893. ER_IB_MSG_1095
  5894. eng "Upgrading %zu existing undo tablespaces that were tracked in the system tablespace to %lu new independent undo tablespaces."
  5895. ER_IB_MSG_1096
  5896. eng "Deleting %llu new independent undo tablespaces that we just created."
  5897. ER_IB_MSG_1097
  5898. eng "Waiting for purge to start"
  5899. ER_IB_MSG_1098
  5900. eng "Creating shared tablespace for temporary tables"
  5901. ER_IB_MSG_1099
  5902. eng "The %s data file must be writable!"
  5903. ER_IB_MSG_1100
  5904. eng "Could not create the shared %s."
  5905. ER_IB_MSG_1101
  5906. eng "Unable to create the shared %s."
  5907. ER_IB_MSG_1102
  5908. eng "The %s data file cannot be re-opened after check_file_spec() succeeded!"
  5909. ER_IB_MSG_1103
  5910. eng "%d threads created by InnoDB had not exited at shutdown!"
  5911. ER_IB_MSG_1104
  5912. eng "InnoDB Database creation was aborted %swith error %s. You may need to delete the ibdata1 file before trying to start up again."
  5913. ER_IB_MSG_1105
  5914. eng "Plugin initialization aborted %swith error %s."
  5915. ER_IB_MSG_1106
  5916. eng "Waiting for %llu buffer page I/Os to complete"
  5917. ER_IB_MSG_1107
  5918. eng "PUNCH HOLE support available"
  5919. ER_IB_MSG_1108
  5920. eng "PUNCH HOLE support not available"
  5921. ER_IB_MSG_1109
  5922. eng "Size of InnoDB's ulint is %zu but size of void* is %zu. The sizes should be the same so that on a 64-bit platforms you can allocate more than 4 GB of memory."
  5923. ER_IB_MSG_1110
  5924. eng "Database upgrade cannot be accomplished in read-only mode."
  5925. ER_IB_MSG_1111
  5926. eng "Database upgrade cannot be accomplished with innodb_force_recovery > 0"
  5927. ER_IB_MSG_1112
  5928. eng "%s"
  5929. ER_IB_MSG_1113
  5930. eng "%s"
  5931. ER_IB_MSG_1114
  5932. eng "%s"
  5933. ER_IB_MSG_1115
  5934. eng "%s"
  5935. ER_IB_MSG_1116
  5936. eng "%s"
  5937. ER_IB_MSG_1117
  5938. eng "%s"
  5939. OBSOLETE_ER_IB_MSG_1118
  5940. eng "%s"
  5941. ER_IB_MSG_1119
  5942. eng "%s"
  5943. ER_IB_MSG_1120
  5944. eng "%s"
  5945. ER_IB_MSG_1121
  5946. eng "%s"
  5947. ER_IB_MSG_1122
  5948. eng "MySQL was built without a memory barrier capability on this architecture, which might allow a mutex/rw_lock violation under high thread concurrency. This may cause a hang."
  5949. ER_IB_MSG_1123
  5950. eng "Compressed tables use zlib %s"
  5951. ER_IB_MSG_1124
  5952. eng "%s"
  5953. ER_IB_MSG_1125
  5954. eng "Startup called second time during the process lifetime. In the MySQL Embedded Server Library you cannot call server_init() more than once during the process lifetime."
  5955. ER_IB_MSG_1126
  5956. eng "%s"
  5957. ER_IB_MSG_1127
  5958. eng "Unable to create monitor file %s: %s"
  5959. ER_IB_MSG_1128
  5960. eng "Disabling background log and ibuf IO write threads."
  5961. ER_IB_MSG_1129
  5962. eng "Cannot initialize AIO sub-system"
  5963. ER_IB_MSG_1130
  5964. eng "Initializing buffer pool, total size = %lf%c, instances = %lu, chunk size =%lf%c "
  5965. ER_IB_MSG_1131
  5966. eng "Cannot allocate memory for the buffer pool"
  5967. ER_IB_MSG_1132
  5968. eng "Completed initialization of buffer pool"
  5969. ER_IB_MSG_1133
  5970. eng "Small buffer pool size (%lluM), the flst_validate() debug function can cause a deadlock if the buffer pool fills up."
  5971. ER_IB_MSG_1134
  5972. eng "Could not open or create the system tablespace. If you tried to add new data files to the system tablespace, and it failed here, you should now edit innodb_data_file_path in my.cnf back to what it was, and remove the new ibdata files InnoDB created in this failed attempt. InnoDB only wrote those files full of zeros, but did not yet use them in any way. But be careful: do not remove old data files which contain your precious data!"
  5973. ER_IB_MSG_1135
  5974. eng "Cannot create log files because data files are corrupt or the database was not shut down cleanly after creating the data files."
  5975. ER_IB_MSG_1136
  5976. eng "Only one log file found"
  5977. ER_IB_MSG_1137
  5978. eng "Log file %s size %llu is not a multiple of innodb_page_size"
  5979. ER_IB_MSG_1138
  5980. eng "Log file %s is of different size %llu bytes than other log files %llu bytes!"
  5981. ER_IB_MSG_1139
  5982. eng "Use --innodb-directories to find the tablespace files. If that fails then use --innodb-force-recovery=1 to ignore this and to permanently lose all changes to the missing tablespace(s)"
  5983. ER_IB_MSG_1140
  5984. eng "The log file may have been corrupt and it is possible that the log scan or parsing did not proceed far enough in recovery. Please run CHECK TABLE on your InnoDB tables to check that they are ok! It may be safest to recover your InnoDB database from a backup!"
  5985. ER_IB_MSG_1141
  5986. eng "Cannot resize log files in read-only mode."
  5987. ER_IB_MSG_1142
  5988. eng "Cannot open DD tablespace."
  5989. ER_IB_MSG_1143
  5990. eng "Starting to delete and rewrite log files."
  5991. ER_IB_MSG_1144
  5992. eng "Undo from 5.7 found. It will be purged"
  5993. ER_IB_MSG_1145
  5994. eng "%s"
  5995. ER_IB_MSG_1146
  5996. eng "%s"
  5997. ER_IB_MSG_1147
  5998. eng "Tablespace size stored in header is %lu pages, but the sum of data file sizes is %lu pages"
  5999. ER_IB_MSG_1148
  6000. eng "Cannot start InnoDB. The tail of the system tablespace is missing. Have you edited innodb_data_file_path in my.cnf in an inappropriate way, removing ibdata files from there? You can set innodb_force_recovery=1 in my.cnf to force a startup if you are trying to recover a badly corrupt database."
  6001. ER_IB_MSG_1149
  6002. eng "Tablespace size stored in header is %lu pages, but the sum of data file sizes is only %lu pages"
  6003. ER_IB_MSG_1150
  6004. eng "Cannot start InnoDB. The tail of the system tablespace is missing. Have you edited innodb_data_file_path in my.cnf in an InnoDB: inappropriate way, removing ibdata files from there? You can set innodb_force_recovery=1 in my.cnf to force InnoDB: a startup if you are trying to recover a badly corrupt database."
  6005. ER_IB_MSG_1151
  6006. eng "%s started; log sequence number %llu"
  6007. ER_IB_MSG_1152
  6008. eng "Waiting for purge to complete"
  6009. OBSOLETE_ER_IB_MSG_1153
  6010. eng "Waiting for dict_stats_thread to exit"
  6011. ER_IB_MSG_1154
  6012. eng "Query counter shows %lld queries still inside InnoDB at shutdown"
  6013. ER_IB_MSG_1155
  6014. eng "Shutdown completed; log sequence number %llu"
  6015. ER_IB_MSG_1156
  6016. eng "Cannot continue operation."
  6017. ER_IB_MSG_1157
  6018. eng "%s"
  6019. ER_IB_MSG_1158
  6020. eng "%s"
  6021. ER_IB_MSG_1159
  6022. eng "%s"
  6023. ER_IB_MSG_1160
  6024. eng "%s"
  6025. ER_IB_MSG_1161
  6026. eng "%s"
  6027. ER_IB_MSG_1162
  6028. eng "%s"
  6029. ER_IB_MSG_1163
  6030. eng "%s"
  6031. ER_IB_MSG_1164
  6032. eng "%s"
  6033. ER_IB_MSG_1165
  6034. eng "%s"
  6035. ER_IB_MSG_UNDO_TRUNCATE_FAIL_TO_READ_LOG_FILE
  6036. eng "Unable to read the existing undo truncate log file '%s'. The error is %s"
  6037. ER_IB_MSG_UNDO_MARKED_FOR_TRUNCATE
  6038. eng "Undo tablespace %s is marked for truncate"
  6039. OBSOLETE_ER_IB_MSG_UNDO_INJECT_BEFORE_MDL
  6040. eng "%s"
  6041. ER_IB_MSG_UNDO_TRUNCATE_START
  6042. eng "Truncating UNDO tablespace %s"
  6043. OBSOLETE_ER_IB_MSG_UNDO_INJECT_BEFORE_DDL_LOG_START
  6044. eng "%s"
  6045. ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_LOG_CREATE
  6046. eng "Cannot create truncate log for undo tablespace '%s'."
  6047. OBSOLETE_ER_IB_MSG_UNDO_INJECT_BEFORE_TRUNCATE
  6048. eng "%s"
  6049. ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_FAILURE
  6050. eng "Failed to truncate undo tablespace '%s'."
  6051. OBSOLETE_ER_IB_MSG_UNDO_INJECT_BEFORE_STATE_UPDATE
  6052. eng "%s"
  6053. ER_IB_MSG_UNDO_TRUNCATE_COMPLETE
  6054. eng "Completed truncate of undo tablespace %s."
  6055. OBSOLETE_ER_IB_MSG_UNDO_INJECT_TRUNCATE_DONE
  6056. eng "%s"
  6057. ER_IB_MSG_1177
  6058. eng "%s"
  6059. ER_IB_MSG_1178
  6060. eng "%s"
  6061. ER_IB_MSG_1179
  6062. eng "%s"
  6063. ER_IB_MSG_1180
  6064. eng "%s"
  6065. ER_IB_MSG_1181
  6066. eng "%s"
  6067. ER_IB_MSG_1182
  6068. eng "%s"
  6069. ER_IB_MSG_1183
  6070. eng "%s"
  6071. ER_IB_MSG_1184
  6072. eng "%s"
  6073. ER_IB_MSG_1185
  6074. eng "%s"
  6075. ER_IB_MSG_1186
  6076. eng "%s"
  6077. ER_IB_MSG_1187
  6078. eng "%s"
  6079. ER_IB_MSG_1188
  6080. eng "%s"
  6081. ER_IB_MSG_1189
  6082. eng "%s"
  6083. ER_IB_MSG_TRX_RECOVERY_ROLLBACK_COMPLETED
  6084. eng "Rollback of non-prepared transactions completed"
  6085. ER_IB_MSG_1191
  6086. eng "%s"
  6087. ER_IB_MSG_1192
  6088. eng "%s"
  6089. ER_IB_MSG_1193
  6090. eng "%s"
  6091. ER_IB_MSG_1194
  6092. eng "%s"
  6093. ER_IB_MSG_1195
  6094. eng "%s"
  6095. ER_IB_MSG_1196
  6096. eng "%s"
  6097. ER_IB_MSG_1197
  6098. eng "%s"
  6099. ER_IB_MSG_1198
  6100. eng "%s"
  6101. ER_IB_MSG_1199
  6102. eng "%s"
  6103. ER_IB_MSG_1200
  6104. eng "%s"
  6105. ER_IB_MSG_1201
  6106. eng "%s"
  6107. ER_IB_MSG_1202
  6108. eng "%s"
  6109. ER_IB_MSG_1203
  6110. eng "%s"
  6111. ER_IB_MSG_1204
  6112. eng "%s"
  6113. ER_IB_MSG_1205
  6114. eng "%s"
  6115. ER_IB_MSG_1206
  6116. eng "%s"
  6117. ER_IB_MSG_1207
  6118. eng "%s"
  6119. ER_IB_MSG_1208
  6120. eng "%s"
  6121. ER_IB_MSG_1209
  6122. eng "%s"
  6123. ER_IB_MSG_1210
  6124. eng "%s"
  6125. ER_IB_MSG_1211
  6126. eng "%s"
  6127. ER_IB_MSG_1212
  6128. eng "%s"
  6129. ER_IB_MSG_1213
  6130. eng "gettimeofday() failed: %s"
  6131. ER_IB_MSG_1214
  6132. eng "Can't create UNDO tablespace %s %s"
  6133. ER_IB_MSG_1215
  6134. eng "%s"
  6135. ER_IB_MSG_1216
  6136. eng "%s"
  6137. ER_IB_MSG_1217
  6138. eng "%s"
  6139. ER_IB_MSG_1218
  6140. eng "%s"
  6141. ER_IB_MSG_1219
  6142. eng "%s"
  6143. ER_IB_MSG_1220
  6144. eng "%s"
  6145. ER_IB_MSG_1221
  6146. eng "%s"
  6147. ER_IB_MSG_1222
  6148. eng "%s"
  6149. ER_IB_MSG_1223
  6150. eng "%s"
  6151. ER_IB_MSG_1224
  6152. eng "%s"
  6153. ER_IB_MSG_1225
  6154. eng "%s"
  6155. ER_IB_MSG_1226
  6156. eng "%s"
  6157. ER_IB_MSG_1227
  6158. eng "%s"
  6159. ER_IB_MSG_1228
  6160. eng "%s"
  6161. ER_IB_MSG_1229
  6162. eng "%s"
  6163. OBSOLETE_ER_IB_MSG_1230
  6164. eng "%s"
  6165. ER_IB_MSG_1231
  6166. eng "%s"
  6167. ER_IB_MSG_1232
  6168. eng "%s"
  6169. ER_IB_MSG_1233
  6170. eng "%s"
  6171. ER_IB_MSG_1234
  6172. eng "%s"
  6173. ER_IB_MSG_1235
  6174. eng "%s"
  6175. ER_IB_MSG_1236
  6176. eng "%s"
  6177. ER_IB_MSG_1237
  6178. eng "%s"
  6179. ER_IB_MSG_1238
  6180. eng "%s"
  6181. ER_IB_MSG_1239
  6182. eng "%s"
  6183. ER_IB_MSG_1240
  6184. eng "%s"
  6185. ER_IB_MSG_1241
  6186. eng "%s"
  6187. ER_IB_MSG_1242
  6188. eng "Can't set redo log tablespace to be encrypted in read-only mode."
  6189. ER_IB_MSG_1243
  6190. eng "Can't set redo log tablespace to be encrypted."
  6191. ER_IB_MSG_1244
  6192. eng "Can't set redo log tablespace to be encrypted."
  6193. ER_IB_MSG_1245
  6194. eng "Redo log encryption is enabled."
  6195. ER_IB_MSG_1246
  6196. eng "Waiting for archiver to finish archiving page and log"
  6197. ER_IB_MSG_1247
  6198. eng "Starting shutdown..."
  6199. ER_IB_MSG_1248
  6200. eng "Waiting for %s to exit."
  6201. ER_IB_MSG_1249
  6202. eng "Waiting for rollback of %zu recovered transactions, before shutdown."
  6203. ER_IB_MSG_1250
  6204. eng "Waiting for master thread to be suspended."
  6205. ER_IB_MSG_1251
  6206. eng "Waiting for page_cleaner to finish flushing of buffer pool."
  6207. ER_IB_MSG_1252
  6208. eng "Waiting for %lu buffer page I/Os to complete."
  6209. ER_IB_MSG_1253
  6210. eng "MySQL has requested a very fast shutdown without flushing the InnoDB buffer pool to data files. At the next mysqld startup InnoDB will do a crash recovery!"
  6211. OBSOLETE_ER_IB_MSG_1254
  6212. eng "%s"
  6213. ER_IB_MSG_1255
  6214. eng "%s"
  6215. ER_IB_MSG_1256
  6216. eng "%s"
  6217. ER_IB_MSG_1257
  6218. eng "%s"
  6219. ER_IB_MSG_1258
  6220. eng "%s"
  6221. ER_IB_MSG_1259
  6222. eng "%s"
  6223. ER_IB_MSG_1260
  6224. eng "%s"
  6225. ER_IB_MSG_1261
  6226. eng "%s"
  6227. ER_IB_MSG_1262
  6228. eng "%s"
  6229. ER_IB_MSG_1263
  6230. eng "%s"
  6231. ER_IB_MSG_1264
  6232. eng "%s"
  6233. ER_IB_MSG_1265
  6234. eng "%s"
  6235. ER_IB_MSG_1266
  6236. eng "%s"
  6237. ER_IB_MSG_1267
  6238. eng "%s"
  6239. ER_IB_MSG_1268
  6240. eng "%s"
  6241. ER_IB_MSG_1269
  6242. eng "%s"
  6243. ER_IB_MSG_1270
  6244. eng "%s"
  6245. ER_RPL_SLAVE_SQL_THREAD_STOP_CMD_EXEC_TIMEOUT
  6246. eng "STOP SLAVE command execution is incomplete: Slave SQL thread got the stop signal, thread is busy, SQL thread will stop once the current task is complete."
  6247. ER_RPL_SLAVE_IO_THREAD_STOP_CMD_EXEC_TIMEOUT
  6248. eng "STOP SLAVE command execution is incomplete: Slave IO thread got the stop signal, thread is busy, IO thread will stop once the current task is complete."
  6249. ER_RPL_GTID_UNSAFE_STMT_ON_NON_TRANS_TABLE
  6250. eng "Statement violates GTID consistency: Updates to non-transactional tables can only be done in either autocommitted statements or single-statement transactions, and never in the same statement as updates to transactional tables."
  6251. ER_RPL_GTID_UNSAFE_STMT_CREATE_SELECT
  6252. eng "Statement violates GTID consistency: CREATE TABLE ... SELECT."
  6253. OBSOLETE_ER_RPL_GTID_UNSAFE_STMT_ON_TEMPORARY_TABLE
  6254. eng "Statement violates GTID consistency: CREATE TEMPORARY TABLE and DROP TEMPORARY TABLE can only be executed outside transactional context. These statements are also not allowed in a function or trigger because functions and triggers are also considered to be multi-statement transactions."
  6255. ER_BINLOG_ROW_VALUE_OPTION_IGNORED
  6256. eng "When %.192s, the option binlog_row_value_options=%.192s will be ignored and updates will be written in full format to binary log."
  6257. ER_BINLOG_USE_V1_ROW_EVENTS_IGNORED
  6258. eng "When %.192s, the option log_bin_use_v1_row_events=1 will be ignored and row events will be written in new format to binary log."
  6259. ER_BINLOG_ROW_VALUE_OPTION_USED_ONLY_FOR_AFTER_IMAGES
  6260. eng "When %.192s, the option binlog_row_value_options=%.192s will be used only for the after-image. Full values will be written in the before-image, so the saving in disk space due to binlog_row_value_options is limited to less than 50%%."
  6261. ER_CONNECTION_ABORTED
  6262. eng "Aborted connection %u to db: '%-.192s' user: '%-.48s' host: '%-.255s' (%-.64s)."
  6263. ER_NORMAL_SERVER_SHUTDOWN
  6264. eng "%s: Normal shutdown."
  6265. ER_KEYRING_MIGRATE_FAILED
  6266. eng "Can not perform keyring migration : %s."
  6267. ER_GRP_RPL_LOWER_CASE_TABLE_NAMES_DIFF_FROM_GRP
  6268. eng "The member is configured with a lower_case_table_names option value '%u' different from the group '%u'. The member will now exit the group. If there is existing data on member, it may be incompatible with group if it was created with a lower_case_table_names value different from the group."
  6269. ER_OOM_SAVE_GTIDS
  6270. eng "An out-of-memory error occurred while saving the set of GTIDs from the last binary log into the mysql.gtid_executed table"
  6271. ER_LCTN_NOT_FOUND
  6272. eng "The lower_case_table_names setting for the data dictionary was not found. Starting the server using lower_case_table_names = '%u'."
  6273. OBSOLETE_ER_REGEXP_INVALID_CAPTURE_GROUP_NAME
  6274. eng "A capture group has an invalid name."
  6275. ER_COMPONENT_FILTER_WRONG_VALUE
  6276. eng "Variable '%-.64s' can't be set to the value of '%-.200s'"
  6277. ER_XPLUGIN_FAILED_TO_STOP_SERVICES
  6278. eng "Stopping services failed with error \"%s\""
  6279. ER_INCONSISTENT_ERROR
  6280. eng "Query caused different errors on master and slave. Error on master: message (format)='%s' error code=%d; Error on slave:actual message='%s', error code=%d. Default database:'%s'. Query:'%s'"
  6281. ER_SERVER_MASTER_FATAL_ERROR_READING_BINLOG
  6282. eng "Got fatal error %d from master when reading data from binary log: '%-.512s'"
  6283. ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE
  6284. eng "Replication event checksum verification failed while reading from network."
  6285. ER_SLAVE_CREATE_EVENT_FAILURE
  6286. eng "Failed to create %s"
  6287. ER_SLAVE_FATAL_ERROR
  6288. eng "Fatal error: %s"
  6289. ER_SLAVE_HEARTBEAT_FAILURE
  6290. eng "Unexpected master's heartbeat data: %s"
  6291. ER_SLAVE_INCIDENT
  6292. eng "The incident %s occurred on the master. Message: %s"
  6293. ER_SLAVE_MASTER_COM_FAILURE
  6294. eng "Master command %s failed: %s"
  6295. ER_SLAVE_RELAY_LOG_READ_FAILURE
  6296. eng "Relay log read failure: %s"
  6297. ER_SLAVE_RELAY_LOG_WRITE_FAILURE
  6298. eng "Relay log write failure: %s"
  6299. ER_SERVER_SLAVE_MI_INIT_REPOSITORY
  6300. eng "Slave failed to initialize master info structure from the repository"
  6301. ER_SERVER_SLAVE_RLI_INIT_REPOSITORY
  6302. eng "Slave failed to initialize relay log info structure from the repository"
  6303. ER_SERVER_NET_PACKET_TOO_LARGE
  6304. eng "Got a packet bigger than 'max_allowed_packet' bytes"
  6305. ER_SERVER_NO_SYSTEM_TABLE_ACCESS
  6306. eng "Access to %.64s '%.64s.%.64s' is rejected."
  6307. ER_SERVER_UNKNOWN_ERROR
  6308. eng "Unknown error"
  6309. ER_SERVER_UNKNOWN_SYSTEM_VARIABLE
  6310. eng "Unknown system variable '%-.64s'"
  6311. ER_SERVER_NO_SESSION_TO_SEND_TO
  6312. eng "A message intended for a client cannot be sent there as no client-session is attached. Therefore, we're sending the information to the error-log instead: MY-%06d - %s"
  6313. ER_SERVER_NEW_ABORTING_CONNECTION 08S01
  6314. eng "Aborted connection %u to db: '%-.192s' user: '%-.48s' host: '%-.255s' (%-.64s; diagnostics area: MY-%06d - %-.64s)"
  6315. ER_SERVER_OUT_OF_SORTMEMORY
  6316. eng "Out of sort memory, consider increasing server sort buffer size!"
  6317. ER_SERVER_RECORD_FILE_FULL
  6318. eng "The table '%-.192s' is full!"
  6319. ER_SERVER_DISK_FULL_NOWAIT
  6320. eng "Create table/tablespace '%-.192s' failed, as disk is full."
  6321. ER_SERVER_HANDLER_ERROR
  6322. eng "Handler reported error %d - %s"
  6323. ER_SERVER_NOT_FORM_FILE
  6324. eng "Incorrect information in file: '%-.200s'"
  6325. ER_SERVER_CANT_OPEN_FILE
  6326. eng "Can't open file: '%-.200s' (OS errno: %d - %s)"
  6327. ER_SERVER_FILE_NOT_FOUND
  6328. eng "Can't find file: '%-.200s' (OS errno: %d - %s)"
  6329. ER_SERVER_FILE_USED
  6330. eng "'%-.192s' is locked against change (OS errno: %d - %s)"
  6331. ER_SERVER_CANNOT_LOAD_FROM_TABLE_V2
  6332. eng "Cannot load from %s.%s. The table is probably corrupted!"
  6333. ER_ERROR_INFO_FROM_DA
  6334. eng "Error in diagnostics area: MY-%06d - %s"
  6335. ER_SERVER_TABLE_CHECK_FAILED
  6336. eng "Incorrect definition of table %s.%s: expected column '%s' at position %d, found '%s'."
  6337. ER_SERVER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE_V2
  6338. eng "The column count of %s.%s is wrong. Expected %d, found %d. Created with MySQL %d, now running %d. Please perform the MySQL upgrade procedure."
  6339. ER_SERVER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2
  6340. eng "Column count of %s.%s is wrong. Expected %d, found %d. The table is probably corrupted"
  6341. ER_SERVER_ACL_TABLE_ERROR
  6342. eng ""
  6343. ER_SERVER_SLAVE_INIT_QUERY_FAILED
  6344. eng "Slave SQL thread aborted. Can't execute init_replica query, MY-%06d - '%s'"
  6345. ER_SERVER_SLAVE_CONVERSION_FAILED
  6346. eng "Column %d of table '%-.192s.%-.192s' cannot be converted from type '%-.32s' to type '%-.32s'"
  6347. ER_SERVER_SLAVE_IGNORED_TABLE
  6348. eng "Slave SQL thread ignored the query because of replicate-*-table rules"
  6349. ER_CANT_REPLICATE_ANONYMOUS_WITH_AUTO_POSITION
  6350. eng "Cannot replicate anonymous transaction when AUTO_POSITION = 1, at file %.400s, position %lld."
  6351. ER_CANT_REPLICATE_ANONYMOUS_WITH_GTID_MODE_ON
  6352. eng "Cannot replicate anonymous transaction when @@GLOBAL.GTID_MODE = ON, at file %.400s, position %lld."
  6353. ER_CANT_REPLICATE_GTID_WITH_GTID_MODE_OFF
  6354. eng "Cannot replicate GTID-transaction when @@GLOBAL.GTID_MODE = OFF, at file %.400s, position %lld."
  6355. # This entry is intended for testing (for instance, the server-log test
  6356. # component throws this, and has the built-in filtering engine select these)
  6357. # as it is disjunct from all error-codes used in real operation. Message is
  6358. # kept intentionally short to despam resulting output files.
  6359. ER_SERVER_TEST_MESSAGE
  6360. eng "Simulated error"
  6361. ER_AUDIT_LOG_JSON_FILTER_PARSING_ERROR
  6362. eng "%s"
  6363. ER_AUDIT_LOG_JSON_FILTERING_NOT_ENABLED
  6364. eng "Audit Log filtering has not been installed."
  6365. ER_PLUGIN_FAILED_TO_OPEN_TABLES
  6366. eng "Failed to open the %s filter tables."
  6367. ER_PLUGIN_FAILED_TO_OPEN_TABLE
  6368. eng "Failed to open '%s.%s' %s table."
  6369. ER_AUDIT_LOG_JSON_FILTER_NAME_CANNOT_BE_EMPTY
  6370. eng "Filter name cannot be empty."
  6371. ER_AUDIT_LOG_USER_NAME_INVALID_CHARACTER
  6372. eng "Invalid character in the user name."
  6373. ER_AUDIT_LOG_UDF_INSUFFICIENT_PRIVILEGE
  6374. eng "Request ignored for '%s'@'%s'. SUPER or AUDIT_ADMIN needed to perform operation"
  6375. ER_AUDIT_LOG_NO_KEYRING_PLUGIN_INSTALLED
  6376. eng "No keyring installed."
  6377. ER_AUDIT_LOG_HOST_NAME_INVALID_CHARACTER
  6378. eng "Invalid character in the host name."
  6379. ER_AUDIT_LOG_ENCRYPTION_PASSWORD_HAS_NOT_BEEN_SET
  6380. eng "Audit log encryption password has not been set; it will be generated automatically. Use audit_log_encryption_password_get to obtain the password or audit_log_encryption_password_set to set a new one."
  6381. ER_AUDIT_LOG_COULD_NOT_CREATE_AES_KEY
  6382. eng "Could not create AES key. OpenSSL's EVP_BytesToKey function failed."
  6383. ER_AUDIT_LOG_ENCRYPTION_PASSWORD_CANNOT_BE_FETCHED
  6384. eng "Audit log encryption password cannot be fetched from the keyring. Password used so far is used for encryption."
  6385. ER_COULD_NOT_REINITIALIZE_AUDIT_LOG_FILTERS
  6386. eng "Could not reinitialize audit log filters."
  6387. ER_AUDIT_LOG_JSON_USER_NAME_CANNOT_BE_EMPTY
  6388. eng "User cannot be empty."
  6389. ER_AUDIT_LOG_USER_FIRST_CHARACTER_MUST_BE_ALPHANUMERIC
  6390. eng "First character of the user name must be alphanumeric."
  6391. ER_AUDIT_LOG_JSON_FILTER_DOES_NOT_EXIST
  6392. eng "Specified filter has not been found."
  6393. ER_IB_MSG_1271
  6394. eng "Cannot upgrade server earlier than 5.7 to 8.0"
  6395. ER_STARTING_INIT
  6396. eng "%s (mysqld %s) initializing of server in progress as process %lu"
  6397. ER_ENDING_INIT
  6398. eng "%s (mysqld %s) initializing of server has completed"
  6399. ER_IB_MSG_1272
  6400. eng "Cannot boot server version %lu on data directory built by version %llu. Downgrade is not supported"
  6401. ER_SERVER_SHUTDOWN_INFO
  6402. eng "Received SHUTDOWN from user %s. Shutting down mysqld (Version: %s)."
  6403. ER_GRP_RPL_PLUGIN_ABORT
  6404. eng "The plugin encountered a critical error and will abort: %s"
  6405. OBSOLETE_ER_REGEXP_INVALID_FLAG
  6406. eng "Invalid match mode flag in regular expression."
  6407. OBSOLETE_ER_XA_REPLICATION_FILTERS
  6408. eng "The use of replication filters with XA transactions is not supported, and can lead to an undefined state in the replication slave."
  6409. OBSOLETE_ER_UPDATE_GTID_PURGED_WITH_GR
  6410. eng "Cannot update GTID_PURGED with the Group Replication plugin running"
  6411. ER_AUDIT_LOG_TABLE_DEFINITION_NOT_UPDATED
  6412. eng "'%s.%s' table definition has not been upgraded; Please perform the MySQL upgrade procedure."
  6413. ER_DD_INITIALIZE_SQL_ERROR
  6414. eng "Execution of server-side SQL statement '%s' failed with error code = %d, error message = '%s'."
  6415. ER_NO_PATH_FOR_SHARED_LIBRARY
  6416. eng "No paths allowed for shared library."
  6417. ER_UDF_ALREADY_EXISTS
  6418. eng "Function '%-.192s' already exists."
  6419. ER_SET_EVENT_FAILED
  6420. eng "Got Error: %ld from SetEvent."
  6421. ER_FAILED_TO_ALLOCATE_SSL_BIO
  6422. eng "Error allocating SSL BIO."
  6423. ER_IB_MSG_1273
  6424. eng "%s"
  6425. ER_PID_FILEPATH_LOCATIONS_INACCESSIBLE
  6426. eng "One or several locations were inaccessible while checking PID filepath."
  6427. ER_UNKNOWN_VARIABLE_IN_PERSISTED_CONFIG_FILE
  6428. eng "Currently unknown variable '%s' was read from the persisted config file."
  6429. ER_FAILED_TO_HANDLE_DEFAULTS_FILE
  6430. eng "Fatal error in defaults handling. Program aborted!"
  6431. ER_DUPLICATE_SYS_VAR
  6432. eng "Duplicate variable name '%s'."
  6433. ER_FAILED_TO_INIT_SYS_VAR
  6434. eng "Failed to initialize system variables."
  6435. ER_SYS_VAR_NOT_FOUND
  6436. eng "Variable name '%s' not found."
  6437. ER_IB_MSG_1274
  6438. eng "Some (%d) threads are still active"
  6439. ER_IB_MSG_1275
  6440. eng "%s"
  6441. # Unused since MySQL 8.0.15
  6442. OBSOLETE_ER_TARGET_TS_UNENCRYPTED
  6443. eng "Source tablespace is encrypted but target tablespace is not."
  6444. ER_IB_MSG_WAIT_FOR_ENCRYPT_THREAD
  6445. eng "Waiting for tablespace_alter_encrypt_thread to exit"
  6446. ER_IB_MSG_1277
  6447. eng "%s"
  6448. ER_IB_MSG_NO_ENCRYPT_PROGRESS_FOUND
  6449. eng "%s"
  6450. ER_IB_MSG_RESUME_OP_FOR_SPACE
  6451. eng "%s"
  6452. ER_IB_MSG_1280
  6453. eng "%s"
  6454. ER_IB_MSG_1281
  6455. eng "%s"
  6456. ER_IB_MSG_1282
  6457. eng "%s"
  6458. ER_IB_MSG_1283
  6459. eng "%s"
  6460. ER_IB_MSG_1284
  6461. eng "%s"
  6462. ER_CANT_SET_ERROR_SUPPRESSION_LIST_FROM_COMMAND_LINE
  6463. eng "%s: Could not add suppression rule for code \"%s\". Rule-set may be full, or code may not correspond to an error-log message."
  6464. ER_INVALID_VALUE_OF_BIND_ADDRESSES
  6465. eng "Invalid value for command line option bind-addresses: '%s'"
  6466. ER_RELAY_LOG_SPACE_LIMIT_DISABLED
  6467. eng "Ignoring the @@global.relay_log_space_limit option because @@global.relay_log_purge is disabled."
  6468. ER_GRP_RPL_ERROR_GTID_SET_EXTRACTION
  6469. eng "Error when extracting GTID execution information: %s"
  6470. ER_GRP_RPL_MISSING_GRP_RPL_ACTION_COORDINATOR
  6471. eng "Message received without a proper group coordinator module."
  6472. ER_GRP_RPL_JOIN_WHEN_GROUP_ACTION_RUNNING
  6473. eng "A member cannot join the group while a group configuration operation is running."
  6474. ER_GRP_RPL_JOINER_EXIT_WHEN_GROUP_ACTION_RUNNING
  6475. eng "A member is joining the group while a group configuration operation is occurring. The member will now leave the group"
  6476. ER_GRP_RPL_CHANNEL_THREAD_WHEN_GROUP_ACTION_RUNNING
  6477. eng "Can't start slave %s when group replication is running a group configuration operation."
  6478. ER_GRP_RPL_APPOINTED_PRIMARY_NOT_PRESENT
  6479. eng "A primary election was invoked but the requested primary member is not in the group. Request ignored."
  6480. ER_GRP_RPL_ERROR_ON_MESSAGE_SENDING
  6481. eng "Error while sending message. Context: %s"
  6482. ER_GRP_RPL_CONFIGURATION_ACTION_ERROR
  6483. eng "Error while executing a group configuration operation: %s"
  6484. ER_GRP_RPL_CONFIGURATION_ACTION_LOCAL_TERMINATION
  6485. eng "Configuration operation '%s' terminated. %s"
  6486. ER_GRP_RPL_CONFIGURATION_ACTION_START
  6487. eng "Starting group operation local execution: %s"
  6488. ER_GRP_RPL_CONFIGURATION_ACTION_END
  6489. eng "Termination of group operation local execution: %s"
  6490. ER_GRP_RPL_CONFIGURATION_ACTION_KILLED_ERROR
  6491. eng "A configuration change was killed in this member. The member will now leave the group as its configuration may have diverged."
  6492. ER_GRP_RPL_PRIMARY_ELECTION_PROCESS_ERROR
  6493. eng "There was an issue on the primary election process: %s The member will now leave the group."
  6494. ER_GRP_RPL_PRIMARY_ELECTION_STOP_ERROR
  6495. eng "There was an issue when stopping a previous election process: %s"
  6496. ER_GRP_RPL_NO_STAGE_SERVICE
  6497. eng "It was not possible to initialize stage logging for this task. The operation will still run without stage tracking."
  6498. ER_GRP_RPL_UDF_REGISTER_ERROR
  6499. eng "Could not execute the installation of Group Replication UDF function: %s. Check if the function is already present, if so, try to remove it"
  6500. ER_GRP_RPL_UDF_UNREGISTER_ERROR
  6501. eng "Could not uninstall Group Replication UDF functions. Try to remove them manually if present."
  6502. ER_GRP_RPL_UDF_REGISTER_SERVICE_ERROR
  6503. eng "Could not execute the installation of Group Replication UDF functions. Check for other errors in the log and try to reinstall the plugin"
  6504. ER_GRP_RPL_SERVER_UDF_ERROR
  6505. eng "The function '%s' failed. %s"
  6506. OBSOLETE_ER_CURRENT_PASSWORD_NOT_REQUIRED
  6507. eng "Do not specify the current password while changing it for other users."
  6508. OBSOLETE_ER_INCORRECT_CURRENT_PASSWORD
  6509. eng "Incorrect current password. Specify the correct password which has to be replaced."
  6510. OBSOLETE_ER_MISSING_CURRENT_PASSWORD
  6511. eng "Current password needs to be specified in the REPLACE clause in order to change it."
  6512. ER_SERVER_WRONG_VALUE_FOR_VAR
  6513. eng "Variable '%-.64s' can't be set to the value of '%-.200s'"
  6514. ER_COULD_NOT_CREATE_WINDOWS_REGISTRY_KEY
  6515. eng "%s was unable to create a new Windows registry key %s for %s; continuing to use the previous ident."
  6516. ER_SERVER_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TRX_IN_SBR
  6517. eng "Statement violates GTID consistency: CREATE TEMPORARY TABLE and DROP TEMPORARY TABLE are not allowed inside a transaction or inside a procedure in a transactional context when @@session.binlog_format=STATEMENT."
  6518. OBSOLETE_ER_SECONDARY_ENGINE
  6519. eng "Secondary engine operation failed. %s."
  6520. OBSOLETE_ER_SECONDARY_ENGINE_DDL
  6521. eng "DDLs on a table with a secondary engine defined are not allowed."
  6522. OBSOLETE_ER_NO_SESSION_TEMP
  6523. eng "Unable to allocate temporary tablespace for this session"
  6524. ER_XPLUGIN_FAILED_TO_SWITCH_SECURITY_CTX
  6525. eng "Unable to switch security context to user: %s"
  6526. ER_RPL_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAULT_EXPRESSION
  6527. eng "Statement violates GTID consistency: ALTER TABLE ... ADD COLUMN .. with expression as DEFAULT."
  6528. ER_UPGRADE_PARSE_ERROR
  6529. eng "Error in parsing %s '%s'.'%s' during upgrade. %s"
  6530. ER_DATA_DIRECTORY_UNUSABLE
  6531. eng "The designated data directory %s is unusable. You can remove all files that the server added to it."
  6532. bgn "Зададената папка за базата %s е неизползваема. Можете да изтриете файловете които сървъра добави в нея."
  6533. ER_LDAP_AUTH_USER_GROUP_SEARCH_ROOT_BIND
  6534. eng "Group search rebinding via root DN: %s "
  6535. ER_PLUGIN_INSTALL_ERROR
  6536. eng "Error installing plugin '%s': %s"
  6537. ER_PLUGIN_UNINSTALL_ERROR
  6538. eng "Error uninstalling plugin '%s': %s"
  6539. ER_SHARED_TABLESPACE_USED_BY_PARTITIONED_TABLE
  6540. eng "Partitioned table '%s' is not allowed to use shared tablespace '%s'. Please move all partitions to file-per-table tablespaces before upgrade."
  6541. ER_UNKNOWN_TABLESPACE_TYPE
  6542. eng "Cannot determine the type of the tablespace named '%s'."
  6543. ER_WARN_DEPRECATED_UTF8_ALIAS_OPTION
  6544. eng "%s: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous."
  6545. ER_WARN_DEPRECATED_UTF8MB3_CHARSET_OPTION
  6546. eng "%s: The character set UTF8MB3 is deprecated and will be removed in a future release. Please consider using UTF8MB4 instead."
  6547. ER_WARN_DEPRECATED_UTF8MB3_COLLATION_OPTION
  6548. eng "%s: '%-.64s' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead."
  6549. ER_SSL_MEMORY_INSTRUMENTATION_INIT_FAILED
  6550. eng "The SSL library function %s failed. This is typically caused by the SSL library already being used. As a result the SSL memory allocation will not be instrumented."
  6551. bgn "Функцията от SSL библиотеката %s върна грешка. Това обикновено е защото SSL библиотеката вече е била използвана. Заради това SSL паметта няма да се инструментира."
  6552. ER_IB_MSG_MADV_DONTDUMP_UNSUPPORTED
  6553. eng "Disabling @@core_file because @@innodb_buffer_pool_in_core_file is disabled, yet MADV_DONTDUMP is not supported on this platform"
  6554. ER_IB_MSG_MADVISE_FAILED
  6555. eng "Disabling @@core_file because @@innodb_buffer_pool_in_core_file is disabled, yet madvise(%p,%zu,%s) failed with %s"
  6556. OBSOLETE_ER_COLUMN_CHANGE_SIZE
  6557. eng "Could not change column '%s' of table '%s'. The resulting size of index '%s' would exceed the max key length of %d bytes."
  6558. ER_WARN_REMOVED_SQL_MODE
  6559. eng "sql_mode=0x%08x has been removed and will be ignored"
  6560. ER_IB_MSG_FAILED_TO_ALLOCATE_WAIT
  6561. eng "Failed to allocate memory for a pool of size %zu bytes. Will wait for %zu seconds for a thread to free a resource."
  6562. ER_IB_MSG_NUM_POOLS
  6563. eng "Number of pools: %zu"
  6564. ER_IB_MSG_USING_UNDO_SPACE
  6565. eng "Using undo tablespace '%s'."
  6566. ER_IB_MSG_FAIL_TO_SAVE_SPACE_STATE
  6567. eng "%s Unable to save the current state of tablespace '%s' to the data dictionary"
  6568. ER_IB_MSG_MAX_UNDO_SPACES_REACHED
  6569. eng "Cannot create undo tablespace %s at %s because %d undo tablespaces already exist."
  6570. ER_IB_MSG_ERROR_OPENING_NEW_UNDO_SPACE
  6571. eng "Error %d opening newly created undo tablespace %s."
  6572. ER_IB_MSG_FAILED_SDI_Z_BUF_ERROR
  6573. eng "SDI Compression failed, Z_BUF_ERROR"
  6574. ER_IB_MSG_FAILED_SDI_Z_MEM_ERROR
  6575. eng "SDI Compression failed, Z_MEM_ERROR"
  6576. ER_IB_MSG_SDI_Z_STREAM_ERROR
  6577. eng "SDI Compression failed, Z_STREAM_ERROR"
  6578. ER_IB_MSG_SDI_Z_UNKNOWN_ERROR
  6579. eng "%s"
  6580. ER_IB_MSG_FOUND_WRONG_UNDO_SPACE
  6581. eng "Expected to find undo tablespace '%s' for Space ID=%lu, but found '%s' instead! Did you change innodb_undo_directory?"
  6582. ER_IB_MSG_NOT_END_WITH_IBU
  6583. eng "Cannot use %s as an undo tablespace because it does not end with '.ibu'."
  6584. OBSOLETE_ER_IB_MSG_UNDO_TRUNCATE_EMPTY_FILE
  6585. eng "ib_undo_trunc_empty_file"
  6586. OBSOLETE_ER_IB_MSG_UNDO_INJECT_BEFORE_DD_UPDATE
  6587. eng "ib_undo_trunc_before_dd_update"
  6588. OBSOLETE_ER_IB_MSG_UNDO_INJECT_BEFORE_UNDO_LOGGING
  6589. eng "ib_undo_trunc_before_done_logging"
  6590. OBSOLETE_ER_IB_MSG_UNDO_INJECT_BEFORE_RSEG
  6591. eng "ib_undo_trunc_before_rsegs"
  6592. ER_IB_MSG_FAILED_TO_FINISH_TRUNCATE
  6593. eng "%s Failed to finish truncating Undo Tablespace '%s'"
  6594. ER_IB_MSG_DEPRECATED_INNODB_UNDO_TABLESPACES
  6595. eng "The setting INNODB_UNDO_TABLESPACES is deprecated and is no longer used. InnoDB always creates 2 undo tablespaces to start with. If you need more, please use CREATE UNDO TABLESPACE."
  6596. ER_IB_MSG_WRONG_TABLESPACE_DIR
  6597. eng "The directory for tablespace %s does not exist or is incorrect."
  6598. ER_IB_MSG_LOCK_FREE_HASH_USAGE_STATS
  6599. eng "%s"
  6600. ER_CLONE_DONOR_TRACE
  6601. eng "Clone donor reported : %.512s."
  6602. ER_CLONE_PROTOCOL_TRACE
  6603. eng "Clone received unexpected response from donor : %.512s."
  6604. ER_CLONE_CLIENT_TRACE
  6605. eng "Client: %.512s."
  6606. ER_CLONE_SERVER_TRACE
  6607. eng "Server: %.512s."
  6608. ER_THREAD_POOL_PFS_TABLES_INIT_FAILED
  6609. eng "Failed to initialize the performance schema tables service."
  6610. ER_THREAD_POOL_PFS_TABLES_ADD_FAILED
  6611. eng "Failed to add thread pool performance schema tables."
  6612. ER_CANT_SET_DATA_DIR
  6613. eng "Failed to set datadir to \'%-.200s\' (OS errno: %d - %s)"
  6614. ER_INNODB_INVALID_INNODB_UNDO_DIRECTORY_LOCATION
  6615. eng "The innodb_undo_directory is not allowed to be an ancestor of the datadir."
  6616. ER_SERVER_RPL_ENCRYPTION_FAILED_TO_FETCH_KEY
  6617. eng "Failed to fetch key from keyring, please check if keyring is loaded."
  6618. ER_SERVER_RPL_ENCRYPTION_KEY_NOT_FOUND
  6619. eng "Can't find key from keyring, please check in the server log if a keyring is loaded and initialized successfully."
  6620. ER_SERVER_RPL_ENCRYPTION_KEYRING_INVALID_KEY
  6621. eng "Fetched an invalid key from keyring."
  6622. ER_SERVER_RPL_ENCRYPTION_HEADER_ERROR
  6623. eng "Error reading a replication log encryption header: %s."
  6624. ER_SERVER_RPL_ENCRYPTION_FAILED_TO_ROTATE_LOGS
  6625. eng "Failed to rotate some logs after changing binlog encryption settings. Please fix the problem and rotate the logs manually."
  6626. ER_SERVER_RPL_ENCRYPTION_KEY_EXISTS_UNEXPECTED
  6627. eng "Key %s exists unexpected."
  6628. ER_SERVER_RPL_ENCRYPTION_FAILED_TO_GENERATE_KEY
  6629. eng "Failed to generate key, please check if keyring is loaded."
  6630. ER_SERVER_RPL_ENCRYPTION_FAILED_TO_STORE_KEY
  6631. eng "Failed to store key, please check if keyring is loaded."
  6632. ER_SERVER_RPL_ENCRYPTION_FAILED_TO_REMOVE_KEY
  6633. eng "Failed to remove key, please check if keyring is loaded."
  6634. ER_SERVER_RPL_ENCRYPTION_MASTER_KEY_RECOVERY_FAILED
  6635. eng "Unable to recover binlog encryption master key, please check if keyring is loaded."
  6636. ER_SERVER_RPL_ENCRYPTION_UNABLE_TO_INITIALIZE
  6637. eng "Failed to initialize binlog encryption, please check if keyring is loaded."
  6638. ER_SERVER_RPL_ENCRYPTION_UNABLE_TO_ROTATE_MASTER_KEY_AT_STARTUP
  6639. eng "Failed to rotate binlog encryption master key at startup, please check if keyring is loaded."
  6640. ER_SERVER_RPL_ENCRYPTION_IGNORE_ROTATE_MASTER_KEY_AT_STARTUP
  6641. eng "Ignoring binlog_rotate_encryption_master_key_at_startup because binlog_encryption option is disabled."
  6642. ER_INVALID_ADMIN_ADDRESS
  6643. eng "Invalid value for command line option admin-address: '%s'"
  6644. ER_SERVER_STARTUP_ADMIN_INTERFACE
  6645. eng "Admin interface ready for connections, address: '%s' port: %d"
  6646. ER_CANT_CREATE_ADMIN_THREAD
  6647. eng "Can't create thread to handle admin connections (errno= %d)"
  6648. ER_WARNING_RETAIN_CURRENT_PASSWORD_CLAUSE_VOID
  6649. eng "RETAIN CURRENT PASSWORD ignored for user '%s'@'%s' as its authentication plugin %s does not support multiple passwords."
  6650. ER_WARNING_DISCARD_OLD_PASSWORD_CLAUSE_VOID
  6651. eng "DISCARD OLD PASSWORD ignored for user '%s'@'%s' as its authentication plugin %s does not support multiple passwords."
  6652. OBSOLETE_ER_SECOND_PASSWORD_CANNOT_BE_EMPTY
  6653. eng "Empty password can not be retained as second password for user '%s'@'%s'."
  6654. OBSOLETE_ER_PASSWORD_CANNOT_BE_RETAINED_ON_PLUGIN_CHANGE
  6655. eng "Current password can not be retained for user '%s'@'%s' because authentication plugin is being changed."
  6656. OBSOLETE_ER_CURRENT_PASSWORD_CANNOT_BE_RETAINED
  6657. eng "Current password can not be retained for user '%s'@'%s' because new password is empty."
  6658. ER_WARNING_AUTHCACHE_INVALID_USER_ATTRIBUTES
  6659. eng "Can not read and process value of User_attributes column from mysql.user table for user: '%s@%s'; Ignoring user."
  6660. ER_MYSQL_NATIVE_PASSWORD_SECOND_PASSWORD_USED_INFORMATION
  6661. eng "Second password was used for login by user: '%s'@'%s'."
  6662. ER_SHA256_PASSWORD_SECOND_PASSWORD_USED_INFORMATION
  6663. eng "Second password was used for login by user: '%s'@'%s'."
  6664. ER_CACHING_SHA2_PASSWORD_SECOND_PASSWORD_USED_INFORMATION
  6665. eng "Second password was used for login by user: '%s'@'%s'."
  6666. ER_GRP_RPL_SEND_TRX_PREPARED_MESSAGE_FAILED
  6667. eng "Error sending transaction '%d:%lld' prepared message from session '%u'."
  6668. ER_GRP_RPL_RELEASE_COMMIT_AFTER_GROUP_PREPARE_FAILED
  6669. eng "Error releasing transaction '%d:%lld' for commit on session '%u' after being prepared on all group members."
  6670. ER_GRP_RPL_TRX_ALREADY_EXISTS_ON_TCM_ON_AFTER_CERTIFICATION
  6671. eng "Transaction '%d:%lld' already exists on Group Replication consistency manager while being registered after conflict detection."
  6672. ER_GRP_RPL_FAILED_TO_INSERT_TRX_ON_TCM_ON_AFTER_CERTIFICATION
  6673. eng "Error registering transaction '%d:%lld' on Group Replication consistency manager after conflict detection."
  6674. ER_GRP_RPL_REGISTER_TRX_TO_WAIT_FOR_GROUP_PREPARE_FAILED
  6675. eng "Error registering transaction '%d:%lld' from session '%u' to wait for being prepared on all group members."
  6676. ER_GRP_RPL_TRX_WAIT_FOR_GROUP_PREPARE_FAILED
  6677. eng "Error on transaction '%d:%lld' from session '%u' while waiting for being prepared on all group members."
  6678. ER_GRP_RPL_TRX_DOES_NOT_EXIST_ON_TCM_ON_HANDLE_REMOTE_PREPARE
  6679. eng "Transaction '%d:%lld' does not exist on Group Replication consistency manager while receiving remote transaction prepare."
  6680. ER_GRP_RPL_RELEASE_BEGIN_TRX_AFTER_DEPENDENCIES_COMMIT_FAILED
  6681. eng "Error releasing transaction '%d:%lld' for execution on session '%u' after its dependencies did complete commit."
  6682. ER_GRP_RPL_REGISTER_TRX_TO_WAIT_FOR_DEPENDENCIES_FAILED
  6683. eng "Error registering transaction from session '%u' to wait for its dependencies to complete commit."
  6684. ER_GRP_RPL_WAIT_FOR_DEPENDENCIES_FAILED
  6685. eng "Error on session '%u' while waiting for its dependencies to complete commit."
  6686. ER_GRP_RPL_REGISTER_TRX_TO_WAIT_FOR_SYNC_BEFORE_EXECUTION_FAILED
  6687. eng "Error registering transaction from session '%u' to wait for sync before execution."
  6688. ER_GRP_RPL_SEND_TRX_SYNC_BEFORE_EXECUTION_FAILED
  6689. eng "Error sending sync before execution message from session '%u'."
  6690. ER_GRP_RPL_TRX_WAIT_FOR_SYNC_BEFORE_EXECUTION_FAILED
  6691. eng "Error on transaction from session '%u' while waiting for sync before execution."
  6692. ER_GRP_RPL_RELEASE_BEGIN_TRX_AFTER_WAIT_FOR_SYNC_BEFORE_EXEC
  6693. eng "Error releasing transaction for execution on session '%u' after wait for sync before execution."
  6694. ER_GRP_RPL_TRX_WAIT_FOR_GROUP_GTID_EXECUTED
  6695. eng "Error waiting for group executed transactions commit on session '%u'."
  6696. OBSOLETE_ER_UNIT_NOT_FOUND SU001
  6697. eng "There's no unit of measure named '%s'."
  6698. OBSOLETE_ER_GEOMETRY_IN_UNKNOWN_LENGTH_UNIT SU001
  6699. eng "The function %s uses %s as a unit, but was passed geometry without units (\"SRID 0\"). Conversion is not possible."
  6700. ER_WARN_PROPERTY_STRING_PARSE_FAILED
  6701. eng "Could not parse key-value pairs in property string '%s'"
  6702. ER_INVALID_PROPERTY_KEY
  6703. eng "Property key '%s' is invalid."
  6704. ER_GRP_RPL_GTID_SET_EXTRACT_ERROR_DURING_RECOVERY
  6705. eng "Error when extracting the group_replication_applier channel received transactions set. Unable to ensure the execution of group transactions received during recovery."
  6706. ER_SERVER_RPL_ENCRYPTION_FAILED_TO_ENCRYPT
  6707. eng "Failed to encrypt content to write into binlog file: %s."
  6708. ER_CANNOT_GET_SERVER_VERSION_FROM_TABLESPACE_HEADER
  6709. eng "Cannot get the server version number from the dictionary tablespace header."
  6710. ER_CANNOT_SET_SERVER_VERSION_IN_TABLESPACE_HEADER
  6711. eng "Cannot set the server version number in the dictionary tablespace header."
  6712. ER_SERVER_UPGRADE_VERSION_NOT_SUPPORTED
  6713. eng "Upgrading the server from server version '%u' is not supported."
  6714. ER_SERVER_UPGRADE_FROM_VERSION
  6715. eng "MySQL server upgrading from version '%u' to '%u'."
  6716. ER_GRP_RPL_ERROR_ON_CERT_DB_INSTALL
  6717. eng "The certification information could not be set in this server: '%s'"
  6718. ER_GRP_RPL_FORCE_MEMBERS_WHEN_LEAVING
  6719. eng "A request to force a new group membership was issued when the member is leaving the group."
  6720. ER_TRG_WRONG_ORDER
  6721. eng "Trigger %s.%s for table %s.%s is listed in wrong order. Please drop and recreate all triggers for the table."
  6722. OBSOLETE_ER_SECONDARY_ENGINE_PLUGIN
  6723. eng "%s"
  6724. ER_LDAP_AUTH_GRP_SEARCH_NOT_SPECIAL_HDL
  6725. eng "Special handling for group search, {GA} not found"
  6726. ER_LDAP_AUTH_GRP_USER_OBJECT_HAS_GROUP_INFO
  6727. eng "User group retrieval: User object has group information"
  6728. ER_LDAP_AUTH_GRP_INFO_FOUND_IN_MANY_OBJECTS
  6729. eng "Group information found in multiple user objects. Search filter configuration is incorrect."
  6730. ER_LDAP_AUTH_GRP_INCORRECT_ATTRIBUTE
  6731. eng "User group retrieval: no group attribute found. Incorrect group search attribute. "
  6732. ER_LDAP_AUTH_GRP_NULL_ATTRIBUTE_VALUE
  6733. eng "User group retrieval: Group attribute values is NULL. "
  6734. ER_LDAP_AUTH_GRP_DN_PARSING_FAILED
  6735. eng "User group retrieval: parsing DN failed. "
  6736. ER_LDAP_AUTH_GRP_OBJECT_HAS_USER_INFO
  6737. eng "User group retrieval: Group object has user information"
  6738. ER_LDAP_AUTH_LDAPS
  6739. eng "Reserved port for ldaps using ldaps"
  6740. ER_LDAP_MAPPING_GET_USER_PROXY
  6741. eng "Get user proxy"
  6742. ER_LDAP_MAPPING_USER_DONT_BELONG_GROUP
  6743. eng "Get user proxy: User doesn't belongs to any group, user name will be treated as authenticated user."
  6744. ER_LDAP_MAPPING_INFO
  6745. eng "Get user proxy: configured mapping info: %s"
  6746. ER_LDAP_MAPPING_EMPTY_MAPPING
  6747. eng "Get user proxy: User doesn't have group mapping information, First LDAP group will be treated as authenticated user."
  6748. ER_LDAP_MAPPING_PROCESS_MAPPING
  6749. eng "Process group proxy mapping"
  6750. ER_LDAP_MAPPING_CHECK_DELIMI_QUOTE
  6751. eng "Check delimiter after quote"
  6752. ER_LDAP_MAPPING_PROCESS_DELIMITER
  6753. eng "Processing delimiter"
  6754. ER_LDAP_MAPPING_PROCESS_DELIMITER_EQUAL_NOT_FOUND
  6755. eng "Processing delimiter, separator = not found, resetting position"
  6756. ER_LDAP_MAPPING_PROCESS_DELIMITER_TRY_COMMA
  6757. eng ""Processing delimiter, failed to get data for = separator try for separator ,.""
  6758. ER_LDAP_MAPPING_PROCESS_DELIMITER_COMMA_NOT_FOUND
  6759. eng "Processing delimiter, separator , not found, resetting position"
  6760. ER_LDAP_MAPPING_NO_SEPEARATOR_END_OF_GROUP
  6761. eng "Processing delimiter: No mapping separator is found, end of group information"
  6762. ER_LDAP_MAPPING_GETTING_NEXT_MAPPING
  6763. eng "Getting next mapping information"
  6764. ER_LDAP_MAPPING_PARSING_CURRENT_STATE
  6765. eng "Parsing mapping, current state: %d delimiter char: %c "
  6766. ER_LDAP_MAPPING_PARSING_MAPPING_INFO
  6767. eng "Parsing mapping info, LDAP group: %s MySQL proxy: %s"
  6768. ER_LDAP_MAPPING_PARSING_ERROR
  6769. eng "Mapping parsing error"
  6770. ER_LDAP_MAPPING_TRIMMING_SPACES
  6771. eng "Trimming left spaces"
  6772. ER_LDAP_MAPPING_IS_QUOTE
  6773. eng "Checking if current characters is quote"
  6774. ER_LDAP_MAPPING_NON_DESIRED_STATE
  6775. eng "Not desired state or un-defined states."
  6776. ER_INVALID_NAMED_PIPE_FULL_ACCESS_GROUP
  6777. eng "Invalid value for named_pipe_full_access_group."
  6778. # This error is not supposed to be reported to the users. It is only
  6779. # meant for internal use to signal that a statement should be
  6780. # reprepared for a secondary storage engine. The error should be
  6781. # caught and handled by the server.
  6782. ER_PREPARE_FOR_SECONDARY_ENGINE
  6783. eng "Retry the statement using a secondary storage engine."
  6784. ER_SERVER_WARN_DEPRECATED
  6785. eng "'%s' is deprecated and will be removed in a future release. Please use %s instead"
  6786. ER_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATORY_ROLES
  6787. eng "Cannot set mandatory_roles: AuthId `%.64s`@`%.64s` has '%s' privilege."
  6788. ER_SERVER_BINLOG_MASTER_KEY_RECOVERY_OUT_OF_COMBINATION
  6789. eng "Unable to recover binary log master key, the combination of new_master_key_seqno=%u, master_key_seqno=%u and old_master_key_seqno=%u are wrong."
  6790. ER_SERVER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_AUX_KEY
  6791. eng "Failed to remove auxiliary binary log encryption key from keyring, please check if keyring is loaded. The cleanup of the binary log master key rotation process did not finish as expected and the cleanup will take place upon server restart or next 'ALTER INSTANCE ROTATE BINLOG MASTER KEY' execution."
  6792. OBSOLETE_ER_CANNOT_GRANT_SYSTEM_PRIV_TO_MANDATORY_ROLE
  6793. eng "AuthId `%.64s`@`%.64s` is set as mandatory_roles. Cannot grant the '%s' privilege."
  6794. OBSOLETE_ER_PARTIAL_REVOKE_AND_DB_GRANT_BOTH_EXISTS
  6795. eng "'%s' privilege for database '%s' exists both as partial revoke and mysql.db simultaneously. It could mean 'mysql' schema is corrupted."
  6796. OBSOLETE_ER_DB_ACCESS_DENIED
  6797. eng "Access denied for AuthId `%.64s`@`%.64s` to database '%-.192s'."
  6798. OBSOLETE_ER_PARTIAL_REVOKES_EXIST
  6799. eng "At least one partial revoke exists on a database. The system variable '@@partial_revokes' must be set to ON."
  6800. ER_TURNING_ON_PARTIAL_REVOKES
  6801. eng "At least one partial revoke exists on a database. Turning ON the system variable '@@partial_revokes'."
  6802. ER_WARN_PARTIAL_REVOKE_AND_DB_GRANT
  6803. eng "For user '%s'@'%s', one or more privileges granted through mysql.db for database '%s', conflict with partial revoke. It could mean 'mysql' schema is corrupted."
  6804. ER_WARN_INCORRECT_PRIVILEGE_FOR_DB_RESTRICTIONS
  6805. eng "For user %s, ignored restrictions for privilege(s) '%s' for database '%s' as these are not valid database privileges."
  6806. ER_WARN_INVALID_DB_RESTRICTIONS
  6807. eng "For user %s, ignored restrictions for privilege(s) '%s' for database '%s' as corresponding global privilege(s) are not granted."
  6808. ER_GRP_RPL_INVALID_COMMUNICATION_PROTOCOL
  6809. eng "'%s' is an invalid value for group_replication_communication_protocol_join, please use a MySQL version between 5.7.14 and this server's version"
  6810. ER_GRP_RPL_STARTED_AUTO_REJOIN
  6811. eng "Started auto-rejoin procedure attempt %lu of %lu"
  6812. ER_GRP_RPL_TIMEOUT_RECEIVED_VC_ON_REJOIN
  6813. eng "Timeout while waiting for a view change event during the auto-rejoin procedure"
  6814. ER_GRP_RPL_FINISHED_AUTO_REJOIN
  6815. eng "Auto-rejoin procedure attempt %lu of %lu finished. Member was%s able to join the group."
  6816. ER_GRP_RPL_DEFAULT_TABLE_ENCRYPTION_DIFF_FROM_GRP
  6817. eng "The member is configured with a default_table_encryption option value '%d' different from the group '%d'. The member will now exit the group."
  6818. ER_SERVER_UPGRADE_OFF
  6819. eng "Server shutting down because upgrade is required, yet prohibited by the command line option '--upgrade=NONE'."
  6820. ER_SERVER_UPGRADE_SKIP
  6821. eng "Server upgrade is required, but skipped by command line option '--upgrade=MINIMAL'."
  6822. ER_SERVER_UPGRADE_PENDING
  6823. eng "Server upgrade started with version %d, but server upgrade of version %d is still pending."
  6824. ER_SERVER_UPGRADE_FAILED
  6825. eng "Failed to upgrade server."
  6826. ER_SERVER_UPGRADE_STATUS
  6827. eng "Server upgrade from '%d' to '%d' %s."
  6828. ER_SERVER_UPGRADE_REPAIR_REQUIRED
  6829. eng "Table '%s' requires repair."
  6830. ER_SERVER_UPGRADE_REPAIR_STATUS
  6831. eng "Table '%s' repair %s."
  6832. ER_SERVER_UPGRADE_INFO_FILE
  6833. eng "Could not open server upgrade info file '%s' for writing. Please make sure the file is writable."
  6834. ER_SERVER_UPGRADE_SYS_SCHEMA
  6835. eng "Upgrading the sys schema."
  6836. ER_SERVER_UPGRADE_MYSQL_TABLES
  6837. eng "Running queries to upgrade MySQL server."
  6838. ER_SERVER_UPGRADE_SYSTEM_TABLES
  6839. eng "Upgrading system table data."
  6840. ER_SERVER_UPGRADE_EMPTY_SYS
  6841. eng "Found empty sys database. Installing the sys schema."
  6842. ER_SERVER_UPGRADE_NO_SYS_VERSION
  6843. eng "A sys schema exists with no sys.version view. If you have a user created sys schema, this must be renamed for the upgrade to succeed."
  6844. ER_SERVER_UPGRADE_SYS_VERSION_EMPTY
  6845. eng "A sys schema exists with a sys.version view, but it returns no results."
  6846. ER_SERVER_UPGRADE_SYS_SCHEMA_OUTDATED
  6847. eng "Found outdated sys schema version %s."
  6848. ER_SERVER_UPGRADE_SYS_SCHEMA_UP_TO_DATE
  6849. eng "The sys schema is already up to date (version %s)."
  6850. ER_SERVER_UPGRADE_SYS_SCHEMA_OBJECT_COUNT
  6851. eng "Found %d sys %s, but expected %d. Re-installing the sys schema."
  6852. ER_SERVER_UPGRADE_CHECKING_DB
  6853. eng "Checking '%s' schema."
  6854. ER_IB_MSG_DDL_LOG_DELETE_BY_ID_TMCT
  6855. eng "Too many concurrent transactions while clearing the DDL Log. Please increase the number of Rollback Segments."
  6856. ER_IB_MSG_POST_RECOVER_DDL_LOG_RECOVER
  6857. eng "Error in DDL Log recovery during Post-Recovery processing."
  6858. ER_IB_MSG_POST_RECOVER_POST_TS_ENCRYPT
  6859. eng "Error in Post-Tablespace-Encryption during Post-Recovery processing."
  6860. ER_IB_MSG_DDL_LOG_FAIL_POST_DDL
  6861. eng "Error in DLL Log cleanup during Post-DDL processing."
  6862. ER_SERVER_BINLOG_UNSAFE_SYSTEM_FUNCTION
  6863. eng "'%s' statement is unsafe because it uses a system function that may return a different value on the slave."
  6864. ER_SERVER_UPGRADE_HELP_TABLE_STATUS
  6865. eng "Upgrade of help tables %s."
  6866. ER_GRP_RPL_SRV_GTID_WAIT_ERROR
  6867. eng "Error when waiting for the server to execute local transactions in order assure the group change proper logging"
  6868. ER_GRP_DELAYED_VCLE_LOGGING
  6869. eng "Unable to log the group change View log event in its exaction position in the log. This will not however affect the group replication recovery process or the overall plugin process."
  6870. OBSOLETE_ER_CANNOT_GRANT_ROLES_TO_ANONYMOUS_USER
  6871. eng "Cannot grant roles to an anonymous user."
  6872. ER_BINLOG_UNABLE_TO_ROTATE_GTID_TABLE_READONLY
  6873. eng "Unable to create a new binlog file: Table `mysql.gtid_executed` couldn't be opened. %s"
  6874. ER_NETWORK_NAMESPACES_NOT_SUPPORTED
  6875. eng "Network Namespaces is not supported on this platform"
  6876. ER_UNKNOWN_NETWORK_NAMESPACE
  6877. eng "Unknown network namespace '%s'"
  6878. ER_NETWORK_NAMESPACE_NOT_ALLOWED_FOR_WILDCARD_ADDRESS
  6879. eng "Network namespace not allowed for wildcard interface address"
  6880. ER_SETNS_FAILED
  6881. eng "setns() failed with error '%s'"
  6882. ER_WILDCARD_NOT_ALLOWED_FOR_MULTIADDRESS_BIND
  6883. eng "Wildcard address value not allowed for multivalued bind address"
  6884. ER_NETWORK_NAMESPACE_FILE_PATH_TOO_LONG
  6885. eng "The path to a special network namespace file is too long. (got %u > max %u)"
  6886. ER_IB_MSG_TOO_LONG_PATH
  6887. eng "Cannot create tablespace '%s'. The filepath is too long for this OS."
  6888. ER_IB_RECV_FIRST_REC_GROUP_INVALID
  6889. eng "The last block of redo had corrupted first_rec_group and became fixed (%u -> %u)."
  6890. ER_DD_UPGRADE_COMPLETED
  6891. eng "Data dictionary upgrade from version '%u' to '%u' completed."
  6892. ER_SSL_SERVER_CERT_VERIFY_FAILED
  6893. eng "Server SSL certificate doesn't verify: %s"
  6894. ER_PERSIST_OPTION_USER_TRUNCATED
  6895. eng "Truncated a user name for %s that was too long while reading the persisted variables file"
  6896. ER_PERSIST_OPTION_HOST_TRUNCATED
  6897. eng "Truncated a host name for %s that was too long while reading the persisted variables file"
  6898. ER_NET_WAIT_ERROR
  6899. eng "The wait_timeout period was exceeded, the idle time since last command was too long."
  6900. ER_IB_MSG_1285
  6901. eng "'%s' found not encrypted while '%s' is ON. Trying to encrypt it now."
  6902. ER_IB_MSG_CLOCK_MONOTONIC_UNSUPPORTED
  6903. eng "CLOCK_MONOTONIC is unsupported, so do not change the system time when MySQL is running !"
  6904. ER_IB_MSG_CLOCK_GETTIME_FAILED
  6905. eng "clock_gettime() failed: %s"
  6906. ER_PLUGIN_NOT_EARLY_DUP
  6907. eng "Plugin '%s' is not to be used as an "early" plugin. Don't add it to --early-plugin-load, keyring migration etc."
  6908. bgn "Приставката '%s' не може да се използва като ранна приставка. Не я добавайте в --early-plugin-load и т.н."
  6909. ER_PLUGIN_NO_INSTALL_DUP
  6910. eng "Plugin '%s' is marked as not dynamically installable. You have to stop the server to install it."
  6911. # When using this error message, use the ER_WARN_DEPRECATED_SYNTAX error
  6912. # code.
  6913. OBSOLETE_ER_WARN_DEPRECATED_SQL_CALC_FOUND_ROWS
  6914. eng "SQL_CALC_FOUND_ROWS is deprecated and will be removed in a future release. Consider using two separate queries instead."
  6915. # When using this error message, use the ER_WARN_DEPRECATED_SYNTAX error
  6916. # code.
  6917. OBSOLETE_ER_WARN_DEPRECATED_FOUND_ROWS
  6918. eng "FOUND_ROWS() is deprecated and will be removed in a future release. Consider using COUNT(*) instead."
  6919. ER_BINLOG_UNSAFE_DEFAULT_EXPRESSION_IN_SUBSTATEMENT
  6920. eng "The statement is unsafe because it invokes a trigger or a stored function that modifies a table that has a column with a DEFAULT expression that may return a different value on the slave."
  6921. ER_GRP_RPL_MEMBER_VER_READ_COMPATIBLE
  6922. eng "Member version is read compatible with the group."
  6923. ER_LOCK_ORDER_INIT_FAILED
  6924. eng "Lock order disabled (reason: init failed)."
  6925. ER_AUDIT_LOG_KEYRING_ID_TIMESTAMP_VALUE_IS_INVALID
  6926. eng "Keyring ID timestamp value is invalid: '%s'"
  6927. ER_AUDIT_LOG_FILE_NAME_TIMESTAMP_VALUE_IS_MISSING_OR_INVALID
  6928. eng "Cannot process audit log file. File name timestamp value is missing or invalid: '%s'"
  6929. ER_AUDIT_LOG_FILE_NAME_DOES_NOT_HAVE_REQUIRED_FORMAT
  6930. eng "Cannot process audit log file. File name does not have required format: '%s'"
  6931. ER_AUDIT_LOG_FILE_NAME_KEYRING_ID_VALUE_IS_MISSING
  6932. eng "Cannot process audit log file. File name keyring ID value is missing: '%s'"
  6933. ER_AUDIT_LOG_FILE_HAS_BEEN_SUCCESSFULLY_PROCESSED
  6934. eng "Audit log file has been successfully processed: '%s'"
  6935. ER_AUDIT_LOG_COULD_NOT_OPEN_FILE_FOR_READING
  6936. eng "Could not open audit log file for reading: '%s'"
  6937. ER_AUDIT_LOG_INVALID_FILE_CONTENT
  6938. eng "Invalid audit log file content: '%s'"
  6939. ER_AUDIT_LOG_CANNOT_READ_PASSWORD
  6940. eng "Cannot read password: '%.32s'."
  6941. ER_AUDIT_LOG_CANNOT_STORE_PASSWORD
  6942. eng "Cannot store password: '%.32s'."
  6943. ER_AUDIT_LOG_CANNOT_REMOVE_PASSWORD
  6944. eng "Cannot remove password: '%.32s'."
  6945. ER_AUDIT_LOG_PASSWORD_HAS_BEEN_COPIED
  6946. eng "'audit_log' password has been copied into '%.32s' and will be removed with first purged password."
  6947. OBSOLETE_ER_AUDIT_LOG_INSUFFICIENT_PRIVILEGE
  6948. eng "Request ignored for '%.64s'@'%.64s'. Role needed to perform operation: '%.32s'"
  6949. OBSOLETE_ER_WRONG_MVI_VALUE
  6950. eng "Can't store an array or an object in a scalar key part of the index '%.192s'"
  6951. OBSOLETE_ER_WARN_FUNC_INDEX_NOT_APPLICABLE
  6952. eng "Cannot use functional index '%-.64s' due to type or collation conversion"
  6953. OBSOLETE_ER_EXCEEDED_MV_KEYS_NUM
  6954. eng "Exceeded max number of values per record for multi-valued index '%-.64s' by %u value(s)"
  6955. OBSOLETE_ER_EXCEEDED_MV_KEYS_SPACE
  6956. eng "Exceeded max total length of values per record for multi-valued index '%-.64s' by %u bytes"
  6957. OBSOLETE_ER_FUNCTIONAL_INDEX_DATA_IS_TOO_LONG 22001
  6958. eng "Data too long for functional index '%-.64s'"
  6959. OBSOLETE_ER_INVALID_JSON_VALUE_FOR_FUNC_INDEX 22018
  6960. eng "Invalid JSON value for CAST for functional index '%-.64s'"
  6961. OBSOLETE_ER_JSON_VALUE_OUT_OF_RANGE_FOR_FUNC_INDEX 22003
  6962. eng "Out of range JSON value for CAST for functional index '%-.64s'"
  6963. ER_LDAP_EMPTY_USERDN_PASSWORD
  6964. eng "Empty user dn or password is not allowed, not attempting LDAP bind."
  6965. OBSOLETE_ER_GROUPING_ON_TIMESTAMP_IN_DST
  6966. eng "Grouping on temporal is non-deterministic for timezones having DST. Please consider switching to UTC for this query."
  6967. ER_ACL_WRONG_OR_MISSING_ACL_TABLES_LOG
  6968. eng "The current layout of the ACL tables does not conform to the server's expected layout. They're either altered, missing or not upgraded from a previous version. However a best effort attempt to read data from these tables will still be made."
  6969. ER_LOCK_ORDER_FAILED_WRITE_FILE
  6970. eng "LOCK_ORDER: Failed to write to file <%s>."
  6971. ER_LOCK_ORDER_FAILED_READ_FILE
  6972. eng "LOCK_ORDER: Failed to read from file <%s>."
  6973. ER_LOCK_ORDER_MESSAGE
  6974. eng "LOCK_ORDER message: %s"
  6975. ER_LOCK_ORDER_DEPENDENCIES_SYNTAX
  6976. eng "Lock order dependencies file <%s> (%d:%d) - (%d:%d) : %s"
  6977. ER_LOCK_ORDER_SCANNER_SYNTAX
  6978. eng "Lock order scanner: (%d:%d) - (%d:%d) : %s"
  6979. ER_DATA_DIRECTORY_UNUSABLE_DELETABLE
  6980. eng "The newly created data directory %s by --initialize is unusable. You can remove it."
  6981. bgn "Новосъздадената от --initialize папка за базата %s е неизползваема. Можете да я изтриете."
  6982. ER_IB_MSG_BTREE_LEVEL_LIMIT_EXCEEDED
  6983. eng "No. of B-tree level created for index %s has crossed the permissible limit. If debug option innodb_limit_optimistic_insert_debug is being used try tweaking it to include more records in a page."
  6984. ER_IB_CLONE_START_STOP
  6985. eng "%s"
  6986. ER_IB_CLONE_OPERATION
  6987. eng "%s"
  6988. ER_IB_CLONE_RESTART
  6989. eng "%s"
  6990. ER_IB_CLONE_USER_DATA
  6991. eng "Clone removing all user data for provisioning: %s"
  6992. ER_IB_CLONE_NON_INNODB_TABLE
  6993. eng "Non innodb table: %s.%s is not cloned and is empty."
  6994. ER_CLONE_SHUTDOWN_TRACE
  6995. eng "Clone shutting down server as RESTART failed. Please start server to complete clone operation."
  6996. ER_GRP_RPL_GTID_PURGED_EXTRACT_ERROR
  6997. eng "Error when extracting this member GTID purged set. Operations and checks made to group joiners may be incomplete."
  6998. ER_GRP_RPL_CLONE_PROCESS_PREPARE_ERROR
  6999. eng "There was an issue when configuring the remote cloning process: %s"
  7000. ER_GRP_RPL_CLONE_PROCESS_EXEC_ERROR
  7001. eng "There was an issue when cloning from another server: %s"
  7002. ER_GRP_RPL_RECOVERY_EVAL_ERROR
  7003. eng "There was an issue when trying to evaluate the best distributed recovery strategy while joining.%s"
  7004. ER_GRP_RPL_NO_POSSIBLE_RECOVERY
  7005. eng "No valid or ONLINE members exist to get the missing data from the group. For cloning check if donors of the same version and with clone plugin installed exist. For incremental recovery check if you have donors where the required data was not purged from the binary logs."
  7006. ER_GRP_RPL_CANT_KILL_THREAD
  7007. eng "The group replication plugin could not kill the plugin routine for %s. %s"
  7008. ER_GRP_RPL_RECOVERY_STRAT_CLONE_THRESHOLD
  7009. eng "This member will start distributed recovery using clone. It is due to the number of missing transactions being higher than the configured threshold of %llu."
  7010. ER_GRP_RPL_RECOVERY_STRAT_CLONE_PURGED
  7011. eng "This member will start distributed recovery using clone. It is due to no ONLINE member has the missing data for recovering in its binary logs."
  7012. ER_GRP_RPL_RECOVERY_STRAT_CHOICE
  7013. eng "Distributed recovery will transfer data using: %s"
  7014. ER_GRP_RPL_RECOVERY_STRAT_FALLBACK
  7015. eng "Due to some issue on the previous step distributed recovery is now executing: %s"
  7016. ER_GRP_RPL_RECOVERY_STRAT_NO_FALLBACK
  7017. eng "Due to a critical cloning error or lack of donors, distributed recovery cannot be executed. The member will now leave the group."
  7018. ER_GRP_RPL_SLAVE_THREAD_ERROR_ON_CLONE
  7019. eng "The '%s' thread of channel '%s' will error out as the server will attempt to clone another server"
  7020. ER_UNKNOWN_TABLE_IN_UPGRADE
  7021. eng "Unknown table '%-.129s'"
  7022. ER_IDENT_CAUSES_TOO_LONG_PATH_IN_UPGRADE
  7023. eng "Long database name and identifier for object resulted in path length exceeding %d characters. Path: '%s'."
  7024. ER_XA_CANT_CREATE_MDL_BACKUP
  7025. eng "XA: Failed to take MDL Lock backup of PREPARED XA transaction during client disconnect."
  7026. ER_AUDIT_LOG_SUPER_PRIVILEGE_REQUIRED
  7027. eng "SUPER privilege or AUDIT_ADMIN role required for '%s'@'%s' user."
  7028. ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_TYPE
  7029. eng "Invalid argument type"
  7030. ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_COUNT
  7031. eng "Invalid argument count"
  7032. ER_AUDIT_LOG_HAS_NOT_BEEN_INSTALLED
  7033. eng "audit_log plugin has not been installed using INSTALL PLUGIN syntax."
  7034. ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_TYPE
  7035. eng "Invalid \"max_array_length\" argument type."
  7036. ER_LOG_CANNOT_WRITE_EXTENDED
  7037. eng "Failed to write to %s: %s (%s)"
  7038. OBSOLETE_ER_UPGRADE_WITH_PARTITIONED_TABLES_REJECTED
  7039. eng "Upgrading from server version %d with partitioned tables and lower_case_table_names == 1 on a case sensitive file system may cause issues, and is therefore prohibited. To upgrade anyway, restart the new server version with the command line option 'upgrade=FORCE'. When upgrade is completed, please execute 'RENAME TABLE <part_table_name> TO <new_table_name>; RENAME TABLE <new_table_name> TO <part_table_name>;' for each of the partitioned tables. Please see the documentation for further information."
  7040. ER_KEYRING_AWS_INCORRECT_PROXY
  7041. eng "Incorrect environment variable %s, invalid port: %s"
  7042. ER_GRP_RPL_SERVER_SET_TO_OFFLINE_MODE_DUE_TO_ERRORS
  7043. eng "The server was automatically set into offline mode after an error was detected."
  7044. ER_GRP_RPL_MESSAGE_SERVICE_FATAL_ERROR
  7045. eng "A message sent through the Group Replication message deliver service was not delivered successfully. The server will now leave the group. Try to add the server back to the group and check if the problem persists, or check previous messages in the log for hints of what could be the problem."
  7046. ER_WARN_WRONG_COMPRESSION_ALGORITHM_LOG
  7047. eng "Invalid MASTER_COMPRESSION_ALGORITHMS '%.192s' found in repository for channel '%.192s'. Resetting to 'uncompressed' (no compression)."
  7048. ER_WARN_WRONG_COMPRESSION_LEVEL_LOG
  7049. eng "Invalid MASTER_ZSTD_COMPRESSION_LEVEL found in repository for channel '%.192s'. Resetting to %u."
  7050. ER_PROTOCOL_COMPRESSION_RESET_LOG
  7051. eng "Option --protocol-compression-algorithms is reset to default value."
  7052. ER_XPLUGIN_COMPRESSION_ERROR
  7053. eng "Fatal error while compressing outgoing data - %s"
  7054. ER_MYSQLBACKUP_MSG
  7055. eng "%s"
  7056. ER_WARN_UNKNOWN_KEYRING_AWS_REGION
  7057. eng "Unknown keyring_aws_region '%.192s'. Connection to AWS KMS may fail."
  7058. ER_WARN_LOG_PRIVILEGE_CHECKS_USER_DOES_NOT_EXIST
  7059. eng "PRIVILEGE_CHECKS_USER for replication channel '%.192s' was set to `%.64s`@`%.255s`, but this is not an existing user. Correct this before starting replication threads."
  7060. ER_WARN_LOG_PRIVILEGE_CHECKS_USER_CORRUPT
  7061. eng "Invalid, corrupted PRIVILEGE_CHECKS_USER was found in the replication configuration repository for channel '%.192s'. Use CHANGE MASTER TO PRIVILEGE_CHECKS_USER to correct the configuration."
  7062. ER_WARN_LOG_PRIVILEGE_CHECKS_USER_NEEDS_RPL_APPLIER_PRIV
  7063. eng "PRIVILEGE_CHECKS_USER for replication channel '%.192s' was set to `%.64s`@`%.255s`, but this user does not have REPLICATION_APPLIER privilege. Correct this before starting the replication threads."
  7064. ER_FILE_PRIVILEGE_FOR_REPLICATION_CHECKS
  7065. eng "The PRIVILEGE_CHECKS_USER for channel '%.192s' would need FILE privilege to execute a LOAD DATA INFILE statement replicated in statement format. Consider using binlog_format=ROW on master. If the replicated events are trusted, recover from the failure by temporarily granting FILE to the PRIVILEGE_CHECKS_USER."
  7066. ER_RPL_SLAVE_SQL_THREAD_STARTING_WITH_PRIVILEGE_CHECKS
  7067. eng "Slave SQL thread%s initialized, starting replication in log '%s' at position %s, relay log '%s' position: %s, user: '%.64s'@'%.255s', roles: %.512s"
  7068. ER_AUDIT_LOG_CANNOT_GENERATE_PASSWORD
  7069. eng "Cannot generate password: '%.32s'"
  7070. ER_INIT_FAILED_TO_GENERATE_ROOT_PASSWORD
  7071. eng "Failed to generate a random password for root. Probabably not enough enthropy."
  7072. ER_PLUGIN_LOAD_OPTIONS_IGNORED
  7073. eng "Ignoring --plugin-load[_add] list as the server is running with --initialize(-insecure)."
  7074. ER_WARN_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATORY_ROLES
  7075. eng "Cannot set mandatory_roles: AuthId `%.64s`@`%.64s` has '%s' privilege. AuthId(s) set in the mandatory_roles are ignored."
  7076. ER_IB_MSG_SKIP_HIDDEN_DIR
  7077. eng "Directory '%s' will not be scanned because it is a hidden directory."
  7078. ER_WARN_RPL_RECOVERY_NO_ROTATE_EVENT_FROM_MASTER_EOF
  7079. eng "Server was not able to find a rotate event from master server to initialize relay log recovery for channel '%s'. Skipping relay log recovery for the channel."
  7080. ER_IB_LOB_ROLLBACK_INDEX_LEN
  7081. eng "Rolling back LOB for transaction %llu undo number %llu : current index length %llu. (iteration %llu)"
  7082. ER_CANT_PROCESS_EXPRESSION_FOR_GENERATED_COLUMN_TO_DD
  7083. eng "Error in processing (possibly deprecated) expression or function '%.128s' for generated column %.64s.%.64s.%.64s"
  7084. ER_RPL_SLAVE_QUEUE_EVENT_FAILED_INVALID_NON_ROW_FORMAT
  7085. eng "The queue event failed for channel '%s' as an invalid event according to REQUIRE_ROW_FORMAT was found."
  7086. ER_RPL_SLAVE_APPLY_LOG_EVENT_FAILED_INVALID_NON_ROW_FORMAT
  7087. eng "The application of relay events failed for channel '%s' as an invalid event according to REQUIRE_ROW_FORMAT was found."
  7088. ER_LOG_PRIV_CHECKS_REQUIRE_ROW_FORMAT_NOT_SET
  7089. eng "PRIVILEGE_CHECKS_USER for replication channel '%.192s' can't be set to `%.64s`@`%.255s` unless REQUIRE_ROW_FORMAT is also set to %d."
  7090. ER_RPL_SLAVE_SQL_THREAD_DETECTED_UNEXPECTED_EVENT_SEQUENCE
  7091. eng "An unexpected event sequence was detected by the SQL thread while applying an event."
  7092. ER_IB_MSG_UPGRADE_PARTITION_FILE
  7093. eng "Updating partition file name '%s' to '%s' and all other partition files during upgrade"
  7094. ER_IB_MSG_DOWNGRADE_PARTITION_FILE
  7095. eng "Updating partition file name '%s' to '%s' and all other partition files during downgrade"
  7096. ER_IB_MSG_UPGRADE_PARTITION_FILE_IMPORT
  7097. eng "Updating partition file name '%s' to '%s' for import"
  7098. ER_IB_WARN_OPEN_PARTITION_FILE
  7099. eng "Unable to open partition file with new name '%s'. Please check if innodb_directories is set to include all external file paths"
  7100. ER_IB_MSG_FIL_STATE_MOVED_CORRECTED
  7101. eng "%s DD ID: %llu - Partition tablespace %u, name '%s' is corrected to '%s'"
  7102. ER_IB_MSG_FIL_STATE_MOVED_CHANGED_PATH
  7103. eng "%s DD ID: %llu - Tablespace %u, name '%s', '%s' is moved to '%s'"
  7104. ER_IB_MSG_FIL_STATE_MOVED_CHANGED_NAME
  7105. eng "%s DD ID: %llu - Partition tablespace %u, name '%s', '%s' is updated to '%s'"
  7106. ER_IB_MSG_FIL_STATE_MOVED_TOO_MANY
  7107. eng "%s Too many files have been moved, disabling logging of detailed messages"
  7108. ER_GR_ELECTED_PRIMARY_GTID_INFORMATION
  7109. eng "Elected primary member %s: %s"
  7110. ER_SCHEMA_NAME_IN_UPPER_CASE_NOT_ALLOWED
  7111. eng "Schema name '%s' containing upper case characters is not allowed with lower_case_table_names = 1."
  7112. ER_TABLE_NAME_IN_UPPER_CASE_NOT_ALLOWED
  7113. eng "Table name '%s.%s' containing upper case characters is not allowed with lower_case_table_names = 1."
  7114. ER_SCHEMA_NAME_IN_UPPER_CASE_NOT_ALLOWED_FOR_FK
  7115. eng "Schema name '%s' containing upper case characters, used by foreign key '%s' in table '%s.%s', is not allowed with lower_case_table_names = 1."
  7116. ER_TABLE_NAME_IN_UPPER_CASE_NOT_ALLOWED_FOR_FK
  7117. eng "Table name '%s.%s' containing upper case characters, used by foreign key '%s' in table '%s.%s', is not allowed with lower_case_table_names = 1."
  7118. ER_IB_MSG_DICT_PARTITION_NOT_FOUND
  7119. eng "Table Partition: %s is not found in InnoDB dictionary"
  7120. ER_ACCESS_DENIED_FOR_USER_ACCOUNT_BLOCKED_BY_PASSWORD_LOCK
  7121. eng "Access denied for user '%-.48s'@'%-.64s'. Account is blocked for %s day(s) (%s day(s) remaining) due to %u consecutive failed logins. Use FLUSH PRIVILEGES or ALTER USER to reset."
  7122. ER_INNODB_OUT_OF_RESOURCES
  7123. eng "%s"
  7124. ER_DD_UPGRADE_FOUND_PREPARED_XA_TRANSACTION
  7125. eng "Upgrade cannot proceed due to an existing prepared XA transaction."
  7126. ER_MIGRATE_TABLE_TO_DD_OOM
  7127. eng "Could not allocate memory for key_info when migrating table %s.%s"
  7128. ER_RPL_RELAY_LOG_RECOVERY_INFO_AFTER_CLONE
  7129. eng "Relay log information for channel '%s' was found after a clone operation. Relay log recovery will be executed to adjust positions and file information for this new server. Should that automatic procedure fail please adjust the positions through 'CHANGE MASTER TO'"
  7130. ER_IB_MSG_57_UNDO_SPACE_DELETE_FAIL
  7131. eng "Failed to delete 5.7 undo tablespace: %s during upgrade"
  7132. ER_IB_MSG_DBLWR_1285
  7133. eng "Empty doublewrite file: %s"
  7134. ER_IB_MSG_DBLWR_1286
  7135. eng "Using '%s' for doublewrite"
  7136. ER_IB_MSG_DBLWR_1287
  7137. eng "Error reading doublewrite buffer from the system tablespace"
  7138. ER_IB_MSG_DBLWR_1288
  7139. eng "Cannot create doublewrite buffer: you must increase your buffer pool size. Cannot continue operation."
  7140. ER_IB_MSG_DBLWR_1290
  7141. eng "The page in the doublewrite file is corrupt. Cannot continue operation. You can try to recover the database with innodb_force_recovery=6"
  7142. ER_IB_MSG_BAD_DBLWR_FILE_NAME
  7143. eng "The doublewrite filename '%s' is incorrect."
  7144. OBSOLETE_ER_IB_MSG_DBLWR_1292
  7145. eng "%s"
  7146. ER_IB_MSG_DBLWR_1293
  7147. eng "Doublewrite file create failed: %s"
  7148. ER_IB_MSG_DBLWR_1294
  7149. eng "DBLWRThread: pthread_setaffinity() failed!"
  7150. ER_IB_MSG_DBLWR_1295
  7151. eng "%s"
  7152. ER_IB_MSG_DBLWR_1296
  7153. eng "%s"
  7154. ER_IB_MSG_DBLWR_1297
  7155. eng "Doublewrite file read failed: %s"
  7156. ER_IB_MSG_DBLWR_1298
  7157. eng "Dump of the data file page:"
  7158. ER_IB_MSG_DBLWR_1300
  7159. eng "%s"
  7160. ER_IB_MSG_DBLWR_1301
  7161. eng "%s"
  7162. ER_IB_MSG_DBLWR_1304
  7163. eng "%s"
  7164. ER_IB_MSG_DBLWR_1305
  7165. eng "%s"
  7166. ER_IB_MSG_DBLWR_1306
  7167. eng "%s"
  7168. ER_IB_MSG_DBLWR_1307
  7169. eng "%s"
  7170. ER_IB_MSG_DBLWR_1308
  7171. eng "%s"
  7172. ER_IB_MSG_DBLWR_1309
  7173. eng "%s"
  7174. ER_IB_MSG_DBLWR_1310
  7175. eng "%s"
  7176. ER_IB_MSG_DBLWR_1311
  7177. eng "%s"
  7178. ER_IB_MSG_DBLWR_1312
  7179. eng "%s"
  7180. ER_IB_MSG_DBLWR_1313
  7181. eng "%s"
  7182. ER_IB_MSG_DBLWR_1314
  7183. eng "%s"
  7184. ER_IB_MSG_DBLWR_1315
  7185. eng "%s"
  7186. ER_IB_MSG_DBLWR_1316
  7187. eng "%s"
  7188. ER_IB_MSG_DBLWR_1317
  7189. eng "%s"
  7190. ER_IB_MSG_DBLWR_1318
  7191. eng "%s"
  7192. ER_IB_MSG_DBLWR_1319
  7193. eng "Doublewrite load file %s size %lu is not a multiple of the configured page size %lu""
  7194. ER_IB_MSG_DBLWR_1320
  7195. eng "Doublewrite file %s truncate failed"
  7196. ER_IB_MSG_DBLWR_1321
  7197. eng "Doublewrite file %s failed to writ zeros"
  7198. ER_IB_MSG_DBLWR_1322
  7199. eng "Doublewrite create file %s size %lu is not a multiple of the configured page size %lu""
  7200. ER_IB_MSG_DBLWR_1323
  7201. eng "%s"
  7202. ER_IB_MSG_DBLWR_1324
  7203. eng "%s"
  7204. ER_IB_MSG_DBLWR_1325
  7205. eng "%s"
  7206. ER_IB_MSG_DBLWR_1326
  7207. eng "%s"
  7208. ER_IB_MSG_DBLWR_1327
  7209. eng "%s"
  7210. ER_IB_MSG_GTID_FLUSH_AT_SHUTDOWN
  7211. eng "Could not flush all GTIDs during slow shutdown. Will recover GTIDs when server restarts."
  7212. ER_IB_MSG_57_STAT_SPACE_DELETE_FAIL
  7213. eng "Failed to delete 5.7 stat tablespace: %s during upgrade"
  7214. ER_NDBINFO_UPGRADING_SCHEMA
  7215. eng "Installing ndbinfo schema version %s"
  7216. ER_NDBINFO_NOT_UPGRADING_SCHEMA
  7217. eng "Installed ndbinfo schema is current. Not upgrading."
  7218. ER_NDBINFO_UPGRADING_SCHEMA_FAIL
  7219. eng "Failed to upgrade ndbinfo schema."
  7220. ER_IB_MSG_CREATE_LOG_FILE
  7221. eng "Creating log file %s"
  7222. ER_IB_MSG_INNODB_START_INITIALIZE
  7223. eng "InnoDB initialization has started."
  7224. ER_IB_MSG_INNODB_END_INITIALIZE
  7225. eng "InnoDB initialization has ended."
  7226. ER_IB_MSG_PAGE_ARCH_NO_RESET_POINTS
  7227. eng "Could not find appropriate reset points."
  7228. ER_IB_WRN_PAGE_ARCH_FLUSH_DATA
  7229. eng "Unable to flush. Page archiving data may be corrupt in case of a crash."
  7230. ER_IB_ERR_PAGE_ARCH_INVALID_DOUBLE_WRITE_BUF
  7231. eng "Page archiver's doublewrite buffer for %ld is not valid."
  7232. ER_IB_ERR_PAGE_ARCH_RECOVERY_FAILED
  7233. eng "Page archiver system's recovery failed."
  7234. ER_IB_ERR_PAGE_ARCH_INVALID_FORMAT
  7235. eng "Invalid archived file name format. The archived file is supposed to have the format %s + [0-9]*."
  7236. ER_INVALID_XPLUGIN_SOCKET_SAME_AS_SERVER
  7237. eng "X Plugins UNIX socket must use different file than MySQL server. X Plugin won't be accessible through UNIX socket"
  7238. ER_INNODB_UNABLE_TO_ACQUIRE_DD_OBJECT
  7239. eng "%s"
  7240. ER_WARN_LOG_DEPRECATED_PARTITION_PREFIX_KEY
  7241. eng "Column '%.64s.%.64s.%.64s' having prefix key part '%.64s(%u)' is ignored by the partitioning function. Use of prefixed columns in the PARTITION BY KEY() clause is deprecated and will be removed in a future release."
  7242. ER_IB_MSG_UNDO_TRUNCATE_TOO_OFTEN
  7243. eng "Undo Truncation is occurring too often. Consider increasing --innodb-max-undo-log-size."
  7244. ER_GRP_RPL_IS_STARTING
  7245. eng "Plugin 'group_replication' is starting."
  7246. ER_IB_MSG_INVALID_LOCATION_FOR_TABLESPACE
  7247. eng "Cannot create tablespace %s because the directory is not a valid location. %s";
  7248. ER_IB_MSG_INVALID_LOCATION_WRONG_DB
  7249. eng "Scanned file '%s' for tablespace %s cannot be opened because it is not in a sub-directory named for the schema.");
  7250. ER_IB_MSG_CANNOT_FIND_DD_UNDO_SPACE
  7251. eng "Cannot find undo tablespace %s with filename '%s' as indicated by the Data Dictionary. Did you move or delete this tablespace? Any undo logs in it cannot be used."
  7252. ER_GRP_RPL_RECOVERY_ENDPOINT_FORMAT
  7253. eng "Invalid input value for recovery socket endpoints '%s'. Please, provide a valid, comma separated, list of endpoints (IP:port)".
  7254. ER_GRP_RPL_RECOVERY_ENDPOINT_INVALID
  7255. eng "The server is not listening on endpoint '%s'. Only endpoints that the server is listening on are valid recovery endpoints."
  7256. ER_GRP_RPL_RECOVERY_ENDPOINT_INVALID_DONOR_ENDPOINT
  7257. eng "Received invalid recovery endpoints configuration from donor. This member is not a valid donor for recovery, so it will be skipped."
  7258. ER_GRP_RPL_RECOVERY_ENDPOINT_INTERFACES_IPS
  7259. eng "Failed to retrieve IP addresses from enabled host network interfaces."
  7260. ER_WARN_TLS_CHANNEL_INITIALIZATION_ERROR
  7261. eng "Failed to initialize TLS for channel: %s. See below for the description of exact issue."
  7262. ER_XPLUGIN_FAILED_TO_VALIDATE_ADDRESS
  7263. eng "Validation of value '%s' set to `Mysqlx_bind_address` failed: %s. Skipping this value."
  7264. ER_XPLUGIN_FAILED_TO_BIND_INTERFACE_ADDRESS
  7265. eng "Value '%s' set to `Mysqlx_bind_address`, X Plugin can't bind to it. Skipping this value."
  7266. ER_IB_ERR_RECOVERY_REDO_DISABLED
  7267. eng "Server was killed when InnoDB redo logging was disabled. Data files could be corrupt. You can try to restart the database with innodb_force_recovery=6"
  7268. ER_IB_WRN_FAST_SHUTDOWN_REDO_DISABLED
  7269. eng "InnoDB cannot do cold shutdown 'innodb_fast_shutdown = 2' and is forcing 'innodb_fast_shutdown = 1' as redo logging is disabled. InnoDB would flush all dirty pages to ensure physical data consistency."
  7270. ER_IB_WRN_REDO_DISABLED
  7271. eng "InnoDB redo logging is disabled. All data could be lost in case of a server crash."
  7272. ER_IB_WRN_REDO_ENABLED
  7273. eng "InnoDB redo logging is enabled. Data is now safe and can be recovered in case of a server crash."
  7274. ER_TLS_CONFIGURED_FOR_CHANNEL
  7275. eng "Channel %s configured to support TLS. Encrypted connections are now supported for this channel."
  7276. ER_TLS_CONFIGURATION_REUSED
  7277. eng "No TLS configuration was given for channel %s; re-using TLS configuration of channel %s."
  7278. ER_IB_TABLESPACE_PATH_VALIDATION_SKIPPED
  7279. eng "Skipping InnoDB tablespace path validation. Manually moved tablespace files will not be detected!"
  7280. ER_IB_CANNOT_UPGRADE_WITH_DISCARDED_TABLESPACES
  7281. eng "Upgrade failed because database contains discarded tablespaces."
  7282. ER_USERNAME_TRUNKATED
  7283. eng "The user name '%s' exceeds the maximum number of allowed characters %d and is trunkated."
  7284. ER_HOSTNAME_TRUNKATED
  7285. eng "The host name '%s' exceeds the maximum number of allowed characters %d and is trunkated."
  7286. ER_IB_MSG_TRX_RECOVERY_ROLLBACK_NOT_COMPLETED
  7287. eng "Rollback of non-prepared transactions not completed, due to fast shutdown"
  7288. ER_AUTHCACHE_ROLE_EDGES_IGNORED_EMPTY_NAME
  7289. eng "Found an entry in the 'role_edges' table with empty authorization ID; Skipped"
  7290. ER_AUTHCACHE_ROLE_EDGES_UNKNOWN_AUTHORIZATION_ID
  7291. eng "Found an entry in the 'role_edges' table with unknown authorization ID '%s'; Skipped"
  7292. ER_AUTHCACHE_DEFAULT_ROLES_IGNORED_EMPTY_NAME
  7293. eng "Found an entry in the 'default_roles' table with empty authorization ID; Skipped"
  7294. ER_AUTHCACHE_DEFAULT_ROLES_UNKNOWN_AUTHORIZATION_ID
  7295. eng "Found an entry in the 'default_roles' table with unknown authorization ID '%s'; Skipped"
  7296. ER_IB_ERR_DDL_LOG_INSERT_FAILURE
  7297. eng "Couldn't insert entry in ddl log for ddl."
  7298. ER_IB_LOCK_VALIDATE_LATCH_ORDER_VIOLATION
  7299. eng "%s"
  7300. ER_IB_RELOCK_LATCH_ORDER_VIOLATION
  7301. eng "%s"
  7302. OBSOLETE_ER_IB_MSG_1352
  7303. eng "%s"
  7304. OBSOLETE_ER_IB_MSG_1353
  7305. eng "%s"
  7306. OBSOLETE_ER_IB_MSG_1354
  7307. eng "%s"
  7308. OBSOLETE_ER_IB_MSG_1355
  7309. eng "%s"
  7310. OBSOLETE_ER_IB_MSG_1356
  7311. eng "%s"
  7312. ER_IB_MSG_1357
  7313. eng "%s"
  7314. ER_IB_MSG_1358
  7315. eng "%s"
  7316. ER_IB_MSG_1359
  7317. eng "%s"
  7318. ER_IB_FAILED_TO_DELETE_TABLESPACE_FILE
  7319. eng "%s"
  7320. ER_IB_UNABLE_TO_EXPAND_TEMPORARY_TABLESPACE_POOL
  7321. eng "%s"
  7322. ER_IB_TMP_TABLESPACE_CANNOT_CREATE_DIRECTORY
  7323. eng "%s"
  7324. ER_IB_MSG_SCANNING_TEMP_TABLESPACE_DIR
  7325. eng "%s"
  7326. ER_IB_ERR_TEMP_TABLESPACE_DIR_DOESNT_EXIST
  7327. eng "%s"
  7328. ER_IB_ERR_TEMP_TABLESPACE_DIR_EMPTY
  7329. eng "%s"
  7330. ER_IB_ERR_TEMP_TABLESPACE_DIR_CONTAINS_SEMICOLON
  7331. eng "%s"
  7332. ER_IB_ERR_TEMP_TABLESPACE_DIR_SUBDIR_OF_DATADIR
  7333. eng "%s"
  7334. ER_IB_ERR_SCHED_SETAFFNINITY_FAILED
  7335. eng "%s"
  7336. ER_IB_ERR_UNKNOWN_PAGE_FETCH_MODE
  7337. eng "%s"
  7338. ER_IB_ERR_LOG_PARSING_BUFFER_OVERFLOW
  7339. eng "%s"
  7340. ER_IB_ERR_NOT_ENOUGH_MEMORY_FOR_PARSE_BUFFER
  7341. eng "%s"
  7342. ER_IB_MSG_1372
  7343. eng "%s"
  7344. ER_IB_MSG_1373
  7345. eng "%s"
  7346. ER_IB_MSG_1374
  7347. eng "%s"
  7348. ER_IB_MSG_1375
  7349. eng "%s"
  7350. ER_IB_ERR_ZLIB_UNCOMPRESS_FAILED
  7351. eng "%s"
  7352. ER_IB_ERR_ZLIB_BUF_ERROR
  7353. eng "%s"
  7354. ER_IB_ERR_ZLIB_MEM_ERROR
  7355. eng "%s"
  7356. ER_IB_ERR_ZLIB_DATA_ERROR
  7357. eng "%s"
  7358. ER_IB_ERR_ZLIB_UNKNOWN_ERROR
  7359. eng "%s"
  7360. ER_IB_MSG_1381
  7361. eng "%s"
  7362. ER_IB_ERR_INDEX_RECORDS_WRONG_ORDER
  7363. eng "%s"
  7364. ER_IB_ERR_INDEX_DUPLICATE_KEY
  7365. eng "%s"
  7366. ER_IB_ERR_FOUND_N_DUPLICATE_KEYS
  7367. eng "%s"
  7368. ER_IB_ERR_FOUND_N_RECORDS_WRONG_ORDER
  7369. eng "%s"
  7370. ER_IB_ERR_PARALLEL_READ_OOM
  7371. eng "%s"
  7372. ER_IB_MSG_UNDO_MARKED_ACTIVE
  7373. eng "The state of undo tablespace %s is set to active implicitly."
  7374. ER_IB_MSG_UNDO_ALTERED_ACTIVE
  7375. eng "The state of undo tablespace %s is set to 'active' by ALTER TABLESPACE."
  7376. ER_IB_MSG_UNDO_ALTERED_INACTIVE
  7377. eng "The state of undo tablespace %s is set to 'inactive' by ALTER TABLESPACE."
  7378. ER_IB_MSG_UNDO_MARKED_EMPTY
  7379. eng "The state of undo tablespace %s is set to 'empty'."
  7380. ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_CLONE
  7381. eng "Delaying truncate of undo tablespace %s due to clone activity."
  7382. ER_IB_MSG_UNDO_TRUNCATE_DELAY_BY_MDL
  7383. eng "Delaying truncate of undo tablespace %s due to a metadata lock."
  7384. ER_IB_MSG_INJECT_CRASH
  7385. eng "Injected debug crash point: %s"
  7386. ER_IB_MSG_INJECT_FAILURE
  7387. eng "Injected debug failure point: %s"
  7388. ER_GRP_RPL_TIMEOUT_RECEIVED_VC_LEAVE_ON_REJOIN
  7389. eng "Timeout while waiting for a view change event during the leave step before a auto-rejoin attempt."
  7390. ER_RPL_ASYNC_RECONNECT_FAIL_NO_SOURCE
  7391. eng "Failed to automatically re-connect to a different source, for channel '%s', because %s. To fix this %s."
  7392. ER_UDF_REGISTER_SERVICE_ERROR
  7393. eng "Could not execute the installation of UDF functions. Check for other errors in the log"
  7394. ER_UDF_REGISTER_ERROR
  7395. eng "Could not execute the installation of UDF function: %s. Check if the function is already present, if so, try to remove it."
  7396. ER_UDF_UNREGISTER_ERROR
  7397. eng "Could not uninstall UDF functions. Try to remove them manually if present."
  7398. ER_EMPTY_PRIVILEGE_NAME_IGNORED
  7399. eng "An empty or illegal privilege identifier was ignored when global privileges were read from disk."
  7400. ER_IB_MSG_INCORRECT_SIZE
  7401. eng "%s"
  7402. ER_TMPDIR_PATH_TOO_LONG
  7403. eng "A tmpdir temporary path \"%s\" is too long (> %zu) for this OS. This would not leave enough space for a temporary filename of length %zu within it."
  7404. ER_ERROR_LOG_DESTINATION_NOT_A_FILE
  7405. eng "Error-log destination \"%s\" is not a file. Can not restore error log messages from previous run."
  7406. ER_NO_ERROR_LOG_PARSER_CONFIGURED
  7407. eng "None of the log-sinks selected with --log-error-services=... provides a log-parser. The server will not be able to make the previous runs' error-logs available in performance_schema.error_log."
  7408. ER_UPGRADE_NONEXISTENT_SCHEMA
  7409. eng "The schema \"%.64s\" referenced by %.16s \"%.128s\" does not exist. Please clean up any orphan %.16s before upgrading."
  7410. ER_IB_MSG_CREATED_UNDO_SPACE
  7411. eng "Created undo tablespace '%s'."
  7412. ER_IB_MSG_DROPPED_UNDO_SPACE
  7413. eng "Dropped undo tablespace '%s'."
  7414. ER_IB_MSG_MASTER_KEY_ROTATED
  7415. eng "The InnoDB Encryption Master Key has been rotated in %d tablespaces."
  7416. ER_IB_DBLWR_DECOMPRESS_FAILED
  7417. eng "Failed to decompress a DBLWR page (err=%d). The original size is %d. Reporting the dblwr page as corrupted."
  7418. ER_IB_DBLWR_DECRYPT_FAILED
  7419. eng "Decrypting a page in doublewrite file failed: %s."
  7420. ER_IB_DBLWR_KEY_MISSING
  7421. eng "Encryption key missing: %s."
  7422. ER_INNODB_IO_WRITE_ERROR_RETRYING
  7423. eng "I/O error while writing to file: %s. Retrying ..."
  7424. ER_INNODB_IO_WRITE_FAILED
  7425. eng "Failed to write data to file: %s"
  7426. ER_LOG_COMPONENT_CANNOT_INIT
  7427. eng "Log component %s failed to initialize."
  7428. ER_RPL_ASYNC_CHANNEL_CANT_CONNECT
  7429. eng "The Monitor IO thread failed to connect to the source (host:%s port:%u network_namespace:%s) for channel '%s', thence it will try to connect to another source."
  7430. ER_RPL_ASYNC_SENDER_ADDED
  7431. eng "The source (host:%s port:%u network_namespace:%s) for channel '%s' has joined the group (group_name: %s), and so added its entry into replication_asynchronous_connection_failover table."
  7432. ER_RPL_ASYNC_SENDER_REMOVED
  7433. eng "The source (host:%s port:%u network_namespace:%s) for channel '%s' has left the group (group_name: %s), and so removed its entry from replication_asynchronous_connection_failover table."
  7434. ER_RPL_ASYNC_CHANNEL_STOPPED_QUORUM_LOST
  7435. eng "The Monitor IO thread detected that the source (host:%s port:%u network_namespace:%s) does not belong to the group majority, thence the channel '%s' will try to connect to another source."
  7436. ER_RPL_ASYNC_CHANNEL_CANT_CONNECT_NO_QUORUM
  7437. eng "The IO thread detected that the source (host:%s port:%u network_namespace:%s) does not belong to the group majority, thence the channel '%s' will try to connect to another source."
  7438. ER_RPL_ASYNC_EXECUTING_QUERY
  7439. eng "%s on the source (host:%s port:%u network_namespace:%s) for channel '%s'."
  7440. ER_RPL_REPLICA_MONITOR_IO_THREAD_EXITING
  7441. eng "Replica Monitor IO thread exiting."
  7442. ER_RPL_ASYNC_MANAGED_NAME_REMOVED
  7443. eng "The group (group_name: %s) for the channel '%s' has been removed, and so removed its entry from replication_asynchronous_connection_failover_managed and all the group members from replication_asynchronous_connection_failover table."
  7444. ER_RPL_ASYNC_MANAGED_NAME_ADDED
  7445. eng "The group (group_name: %s) for the channel '%s' has been added, and so added its entry in replication_asynchronous_connection_failover_managed and source to replication_asynchronous_connection_failover table."
  7446. ER_RPL_ASYNC_READ_FAILOVER_TABLE
  7447. eng "Error reading failover sources for channel '%s' from replication_asynchronous_connection_failover table."
  7448. ER_RPL_REPLICA_MONITOR_IO_THREAD_RECONNECT_CHANNEL
  7449. eng "Error %s the channel '%s', the operation will be automatically retried."
  7450. ER_SLAVE_ANONYMOUS_TO_GTID_IS_LOCAL_OR_UUID_AND_GTID_MODE_NOT_ON
  7451. eng "Replication channel '%.192s' is configured with ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS='%s', which is invalid when GTID_MODE <> ON. If you intend to use GTID_MODE = ON everywhere, change to ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = OFF and use the procedure for enabling GTIDs online (see the documentation). If you intend to use GTIDs on this replica and cannot enable GTIDs on the source, enable GTID_MODE = ON and leave ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = LOCAL|<UUID>. If you intend to not use GTIDs at all in the replication topology, change to ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS=OFF and leave GTID_MODE = '%s'."
  7452. ER_REPLICA_ANONYMOUS_TO_GTID_UUID_SAME_AS_GROUP_NAME
  7453. eng "Replication channel '%.192s' is configured with ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS='%s' which is equal to group_replication_group_name. To fix this issue, either change the group_replication_group_name or use a different value for ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS."
  7454. ER_GRP_RPL_GRP_NAME_IS_SAME_AS_ANONYMOUS_TO_GTID_UUID
  7455. eng "The group_replication_group_name '%s' is the same as the UUID value for ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS in a server channel"
  7456. ER_WARN_GTID_THRESHOLD_BREACH
  7457. eng "The integer component of the GTID number is high. Suggest restarting the server with a new server_uuid to prevent it from reaching the maximum number 2^63-1, which will make it impossible to write the binary log and invoke the behavior specified by binlog_error_action."
  7458. ER_HEALTH_INFO
  7459. eng "%s"
  7460. ER_HEALTH_WARNING
  7461. eng "%s"
  7462. ER_HEALTH_ERROR
  7463. eng "%s"
  7464. ER_HEALTH_WARNING_DISK_USAGE_LEVEL_1
  7465. eng "%s: Warning Level 1 (%llu MiB): mount point = '%s', available = %llu MiB, total = %llu MiB, used = %.2f%%, low limit = %llu MiB, critical level = %llu MiB"
  7466. ER_HEALTH_WARNING_DISK_USAGE_LEVEL_2
  7467. eng "%s: Warning Level 2 (%llu MiB): mount point = '%s', available = %llu MiB, total = %llu MiB, used = %.2f%%, low limit = %llu MiB, critical level = %llu MiB"
  7468. ER_HEALTH_WARNING_DISK_USAGE_LEVEL_3
  7469. eng "%s: Warning Level 3 (%llu MiB): mount point = '%s', available = %llu MiB, total = %llu MiB, used = %.2f%%, low limit = %llu MiB, critical level = %llu MiB"
  7470. ER_IB_INNODB_TBSP_OUT_OF_SPACE
  7471. eng "InnoDB: Size of tablespace %s is more than the maximum size allowed."
  7472. ER_GRP_RPL_APPLIER_CHANNEL_STILL_RUNNING
  7473. eng "The group_replication_applier channel is still running, most likely it is waiting for a database/table lock, which is preventing the channel from stopping. Please check database/table locks, including the ones created by backup tools."
  7474. ER_RPL_ASYNC_RECONNECT_GTID_MODE_OFF_CHANNEL
  7475. eng "Detected misconfiguration: replication channel \'%.192s\' was configured with SOURCE_CONNECTION_AUTO_FAILOVER = 1, but the server was started with a value other then --gtid-mode = ON. Either reconfigure replication using CHANGE MASTER TO SOURCE_CONNECTION_AUTO_FAILOVER = 0 FOR CHANNEL \'%.192s\', or change GTID_MODE to value ON, before starting the replica receiver thread."
  7476. ER_FIREWALL_SERVICES_NOT_ACQUIRED
  7477. eng "Could not acquire required component services."
  7478. ER_FIREWALL_UDF_REGISTER_FAILED
  7479. eng "Automatic registration of function(s) failed."
  7480. ER_FIREWALL_PFS_TABLE_REGISTER_FAILED
  7481. eng "Automatic registration of Performance schema table(s) failed."
  7482. ER_IB_MSG_STATS_SAMPLING_TOO_LARGE
  7483. eng "%s"
  7484. ER_AUDIT_LOG_FILE_PRUNE_FAILED
  7485. eng "Failed to auto-prune file '%s', Error (%d): %s"
  7486. ER_AUDIT_LOG_FILE_AUTO_PRUNED
  7487. eng "File '%s' auto-pruned"
  7488. ER_COMPONENTS_INFRASTRUCTURE_MANIFEST_INIT
  7489. eng "Received an error while processing components from manifest file: %s"
  7490. ER_COMPONENTS_INFRASTRUCTURE_MANIFEST_DEINIT
  7491. eng "Received an error while unloading components read from manifest file: %s"
  7492. ER_WARN_COMPONENTS_INFRASTRUCTURE_MANIFEST_NOT_RO
  7493. eng "Manifest file '%s' is not read-only. For better security, please make sure that the file is read-only."
  7494. ER_WARN_NO_KEYRING_COMPONENT_SERVICE_FOUND
  7495. eng "No suitable '%s' service implementation found to fulfill the request."
  7496. ER_NOTE_KEYRING_COMPONENT_INITIALIZED
  7497. eng "Keyring component initialized successfully."
  7498. ER_KEYRING_COMPONENT_NOT_INITIALIZED
  7499. eng "The component is not initialized properly. Make sure that configuration is proper and use ALTER INSTANCE RELOAD KEYRING to reinitialize the component."
  7500. ER_KEYRING_COMPONENT_EXCEPTION
  7501. eng "Keyring component encountered an exception while executing : '%s' API of service: '%s'"
  7502. ER_KEYRING_COMPONENT_MEMORY_ALLOCATION_ERROR
  7503. eng "Failed to allocated memory for '%s' while executing: '%s' API of service: '%s'"
  7504. ER_NOTE_KEYRING_COMPONENT_AES_INVALID_MODE_BLOCK_SIZE
  7505. eng "Empty or 0 values for AES encryption mode and/or block size are not permitted."
  7506. ER_NOTE_KEYRING_COMPONENT_AES_DATA_IDENTIFIER_EMPTY
  7507. eng "A valid data identifier is required in order to fetch the key required for the AES operation."
  7508. ER_NOTE_KEYRING_COMPONENT_AES_INVALID_KEY
  7509. eng "Key identified by Data ID: '%s' and Auth ID: '%s' is not of type AES."
  7510. ER_NOTE_KEYRING_COMPONENT_AES_OPERATION_ERROR
  7511. eng "Encountered error: '%s' while executing '%s' API of keyring_aes service. Key details are Data ID: '%s' and Auth ID: '%s'."
  7512. ER_NOTE_KEYRING_COMPONENT_READ_DATA_NOT_FOUND
  7513. eng "Could not find the data corresponding to Data ID: '%s', Auth ID: '%s'."
  7514. ER_NOTE_KEYRING_COMPONENT_WRITE_MAXIMUM_DATA_LENGTH
  7515. eng "Maximum permissible size of data is '%zu' bits"
  7516. ER_NOTE_KEYRING_COMPONENT_STORE_FAILED
  7517. eng "Error writing data for Data ID: '%s', Auth ID: '%s'. Either data already exists with same identifier or keyring backend encountered an error."
  7518. ER_NOTE_KEYRING_COMPONENT_REMOVE_FAILED
  7519. eng "Error removing data for Data ID: '%s', Auth ID: '%s'. Either data already exists with same identifier or keyring backend encountered an error."
  7520. ER_NOTE_KEYRING_COMPONENT_GENERATE_FAILED
  7521. eng "Error generating data for Data ID: '%s', Auth ID: '%s'. Either data already exists with same identifier or keyring backend encountered an error."
  7522. ER_NOTE_KEYRING_COMPONENT_KEYS_METADATA_ITERATOR_FETCH_FAILED
  7523. eng "Failed to get metadata from current keys metadata iterator position."
  7524. ER_NOTE_KEYRING_COMPONENT_METADATA_ITERATOR_INVALID_OUT_PARAM
  7525. eng "Key and value length parameters must not be null."
  7526. ER_IB_WRN_FAILED_TO_ACQUIRE_SERVICE
  7527. eng "Innodb could not acquire service : %s"
  7528. ER_IB_WRN_OLD_GEOMETRY_TYPE
  7529. eng "Column %s of type GEOMETRY is in old (5.6) format which could be deprecated in the future. To change the format to latest, please consider rebuilding the table after the upgrade."
  7530. ER_NET_WAIT_ERROR2
  7531. eng "'wait_timeout' period of %s seconds was exceeded for %s. The idle time since last command was too long."
  7532. ER_GRP_RPL_MEMBER_ACTION_TRIGGERED
  7533. eng "The member action "%s" for event "%s" with priority "%u" will be run."
  7534. ER_GRP_RPL_MEMBER_ACTION_FAILURE_IGNORE
  7535. eng "The member action "%s" for event "%s" with priority "%u" failed, this error is ignored as instructed. Please check previous messages in the error log for hints about what could have caused this failure."
  7536. ER_GRP_RPL_MEMBER_ACTION_FAILURE
  7537. eng "The member action "%s" for event "%s" with priority "%u" failed. Please check previous messages in the error log for hints about what could have caused this failure."
  7538. ER_GRP_RPL_MEMBER_ACTION_PARSE_ON_RECEIVE
  7539. eng "Unable to parse the member actions configuration sent by the primary."
  7540. ER_GRP_RPL_MEMBER_ACTION_UPDATE_ACTIONS
  7541. eng "Unable to update the member actions configuration with the one sent by the primary. Please check the tables 'mysql.replication_group_member_actions' and 'mysql.replication_group_configuration_version'."
  7542. ER_GRP_RPL_MEMBER_ACTION_GET_EXCHANGEABLE_DATA
  7543. eng "Unable to read the member actions configuration during group membership change. Please check the tables 'mysql.replication_group_member_actions' and 'mysql.replication_group_configuration_version'."
  7544. ER_GRP_RPL_MEMBER_ACTION_DEFAULT_CONFIGURATION
  7545. eng "This member joined a group on which all members do not support member actions, as such it did reset its member configuration to the default one."
  7546. ER_GRP_RPL_MEMBER_ACTION_UNABLE_TO_SET_DEFAULT_CONFIGURATION
  7547. eng "Unable to reset to member actions default configuration on member join. Please check the tables 'mysql.replication_group_member_actions' and 'mysql.replication_group_configuration_version'."
  7548. ER_GRP_RPL_MEMBER_ACTION_PARSE_ON_MEMBER_JOIN
  7549. eng "Unable to parse the member actions configuration sent by the group on member join."
  7550. ER_GRP_RPL_MEMBER_ACTION_UPDATE_ACTIONS_ON_MEMBER_JOIN
  7551. eng "Unable to update the member actions configuration on member join. Please check the tables 'mysql.replication_group_member_actions' and 'mysql.replication_group_configuration_version'."
  7552. ER_GRP_RPL_MEMBER_ACTION_INVALID_ACTIONS_ON_MEMBER_JOIN
  7553. eng "The group members were unable to send their member actions configuration. Please check the tables 'mysql.replication_group_member_actions' and 'mysql.replication_group_configuration_version' on all members."
  7554. ER_GRP_RPL_MEMBER_ACTION_ENABLED
  7555. eng "Member action enabled: "%s", type: "%s", event: "%s", priority: "%u", error_handling: "%s"."
  7556. ER_GRP_RPL_MEMBER_ACTION_DISABLED
  7557. eng "Member action disabled: "%s", type: "%s", event: "%s", priority: "%u", error_handling: "%s"."
  7558. ER_GRP_RPL_MEMBER_ACTIONS_RESET
  7559. eng "Member actions configuration was reset."
  7560. OBSOLETE_ER_DEPRECATED_TLS_VERSION_SESSION
  7561. eng "Accepted a connection with deprecated protocol '%s' for account `%s`@`%s` from host `%s`. Client supplied username `%s`"
  7562. OBSOLETE_ER_WARN_DEPRECATED_TLS_VERSION_FOR_CHANNEL
  7563. eng "A deprecated TLS version %s is enabled for channel %s"
  7564. ER_FIREWALL_DEPRECATED_USER_PROFILE
  7565. eng "User profile \'%s\' loaded. Firewall user profiles are deprecated, consider migrating to group profiles."
  7566. ER_GRP_RPL_VIEW_CHANGE_UUID_INVALID
  7567. eng "Invalid input value for group_replication_view_change_uuid '%s'. Please, provide a valid UUID."
  7568. ER_GRP_RPL_VIEW_CHANGE_UUID_SAME_AS_GROUP_NAME
  7569. eng "Variable 'group_replication_view_change_uuid' cannot be set to the value of '%s'. If you want to use the UUID of 'group_replication_group_name' for the UUID of View_change_log_events, please set 'group_replication_view_change_uuid' to AUTOMATIC."
  7570. ER_GRP_RPL_GROUP_NAME_SAME_AS_VIEW_CHANGE_UUID
  7571. eng "group_replication_group_name '%s', which is the same as group_replication_view_change_uuid. Please change group_replication_view_change_uuid to AUTOMATIC"
  7572. ER_GRP_RPL_VIEW_CHANGE_UUID_IS_SAME_AS_ANONYMOUS_TO_GTID_UUID
  7573. eng "The group_replication_view_change_uuid '%s' is the same as the UUID value for ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS in a server channel"
  7574. ER_GRP_RPL_GRP_VIEW_CHANGE_UUID_IS_INCOMPATIBLE_WITH_SERVER_UUID
  7575. eng "group_replication_view_change_uuid is incompatible with group. group_replication_view_change_uuid %s matches server_uuid %s."
  7576. ER_GRP_RPL_VIEW_CHANGE_UUID_DIFF_FROM_GRP
  7577. eng "The member is configured with a group_replication_view_change_uuid option value '%s' different from the group '%s'. The member will now exit the group."
  7578. ER_WARN_REPLICA_ANONYMOUS_TO_GTID_UUID_SAME_AS_VIEW_CHANGE_UUID
  7579. eng "Replication channel '%.192s' is configured with ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS='%s' which is equal to group_replication_view_change_uuid. To fix this issue, either change the group_replication_view_change_uuid or use a different value for ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS."
  7580. ER_GRP_RPL_FAILED_TO_PARSE_THE_VIEW_CHANGE_UUID
  7581. eng "Unable to parse the group_replication_view_change_uuid."
  7582. ER_GRP_RPL_FAILED_TO_GENERATE_SIDNO_FOR_VIEW_CHANGE_UUID
  7583. eng "Unable to generate sidno for group_replication_view_change_uuid."
  7584. ER_GRP_RPL_VIEW_CHANGE_UUID_PARSE_ERROR
  7585. eng "Unable to parse the group_replication_view_change_uuid during the Certification module initialization."
  7586. ER_GRP_RPL_UPDATE_GRPGTID_VIEW_CHANGE_UUID_EXECUTED_ERROR
  7587. eng "Error updating group_gtid_executed GTID set with view change uuid during the Certification module initialization."
  7588. ER_GRP_RPL_ADD_VIEW_CHANGE_UUID_TO_GRP_SID_MAP_ERROR
  7589. eng "Unable to add the group_replication_view_change_uuid sidno in the group_gtid_sid_map during the Certification module initialization."
  7590. ER_GRP_RPL_DONOR_VIEW_CHANGE_UUID_TRANS_INFO_ERROR
  7591. eng "Unable to handle the donor's view change uuid transaction information when initializing the conflict detection component. Possible out of memory error."
  7592. ER_WARN_GRP_RPL_VIEW_CHANGE_UUID_FAIL_GET_VARIABLE
  7593. eng "Unable to retrieve group_replication_view_change_uuid during server checks on replication operations."
  7594. ER_WARN_ADUIT_LOG_MAX_SIZE_AND_PRUNE_SECONDS_LOG
  7595. eng "Both audit_log_max_size and audit_log_prune_seconds are set to non-zero. audit_log_max_size takes precedence and audit_log_prune_seconds is ignored"
  7596. ER_WARN_ADUIT_LOG_MAX_SIZE_CLOSE_TO_ROTATE_ON_SIZE_LOG
  7597. eng "audit_log_rotate_on_size is not granular enough for the value of audit_log_max_size supplied. Should be at least %d times smaller."
  7598. ER_PLUGIN_INVALID_TABLE_DEFINITION
  7599. eng "Invalid table definition for '%s.%s'."
  7600. ER_AUTH_KERBEROS_LOGGER_GENERIC_MSG
  7601. eng "%s"
  7602. ER_INSTALL_PLUGIN_CONFLICT_LOG
  7603. eng "Cannot install the %.192s plugin when the %.192s plugin is installed."
  7604. ER_DEPRECATED_PERSISTED_VARIABLE_WITH_ALIAS
  7605. eng "The variable %s has been renamed to %s, and the old name deprecated. Only the old name was found in the persisted variable file. Next time the file is saved, both names will be stored. Issue any SET PERSIST command to save the file, get rid of this warning, and prepare the persisted configuration for when the variable is removed in a future version."
  7606. ER_LOG_COMPONENT_FLUSH_FAILED
  7607. eng "%d error logging component(s) failed to flush. For file-based logs this can happen when the path or permissions of the log-file have changed. Failure to flush filed-based logs may affect log-rotation."
  7608. ER_IB_MSG_REENCRYPTED_TABLESPACE_KEY
  7609. eng "Tablespace key for %s has been re-encrypted using the latest InnoDB master key. However, we recommend that you rebuild the table for better security."
  7610. ER_IB_MSG_REENCRYPTED_GENERAL_TABLESPACE_KEY
  7611. eng "Tablespace key for %s has been re-encrypted using the latest InnoDB master key. However, we recommend that you reencrypt the tablespace for better security."
  7612. ER_IB_ERR_PAGE_ARCH_DBLWR_INIT_FAILED
  7613. eng "Page Archiver's doublewrite buffer initialisation failed. Page tracking is at risk of losing tracked information."
  7614. ER_IB_MSG_RECOVERY_NO_SPACE_IN_REDO_LOG__SKIP_IBUF_MERGES
  7615. eng "There is not enough free space in the redo log during recovery to perform pending ibuf merges. Please retry starting MySQL with --innodb-force-recovery=4."
  7616. ER_IB_MSG_RECOVERY_NO_SPACE_IN_REDO_LOG__UNEXPECTED
  7617. eng "There is not enough free space in the redo log during recovery, restore from backup (or retry with --innodb-force-recovery=6)."
  7618. ER_WARN_AUDIT_LOG_FORMAT_UNIX_TIMESTAMP_ONLY_WHEN_JSON_LOG
  7619. eng "audit_log_format_unix_timestamp is applicable only when audit_log_format = JSON."
  7620. # This error is not supposed to be reported to the users. It is only
  7621. # meant for internal use to signal that a statement should be
  7622. # reprepared for the primary storage engine, without transformations.
  7623. # The error should be caught and handled by the server.
  7624. ER_PREPARE_FOR_PRIMARY_ENGINE
  7625. eng "Retry the statement using the primary storage engine."
  7626. ER_IB_MSG_PAR_RSEG_INIT_COMPLETE_MSG
  7627. eng "Parallel initialization of rseg complete"
  7628. ER_IB_MSG_PAR_RSEG_INIT_TIME_MSG
  7629. eng "Time taken to initialize rseg using %u thread: %u ms."
  7630. ER_DDL_MSG_1
  7631. eng "DDL failed to create a thread to load an index, fall back to single thread"
  7632. ER_MTR_MSG_1
  7633. eng "Debug_check_no_latching failed, slot->type=%d"
  7634. ER_GRP_RPL_MYSQL_NETWORK_PROVIDER_CLIENT_ERROR_CONN_ERR
  7635. eng "Failed to establish MySQL client connection in Group Replication. Error establishing connection. Please refer to the manual to make sure that you configured Group Replication properly to work with MySQL Protocol connections."
  7636. ER_GRP_RPL_MYSQL_NETWORK_PROVIDER_CLIENT_ERROR_COMMAND_ERR
  7637. eng "Failed to establish MySQL client connection in Group Replication. Error sending connection delegation command. Please refer to the manual to make sure that you configured Group Replication properly to work with MySQL Protocol connections."
  7638. ER_GRP_RPL_FAILOVER_CONF_GET_EXCHANGEABLE_DATA
  7639. eng "Unable to read the replication failover channels configuration during group membership change. Please check the tables 'mysql.replication_asynchronous_connection_failover', 'mysql.replication_asynchronous_connection_failover_managed' and 'mysql.replication_group_configuration_version'."
  7640. ER_GRP_RPL_FAILOVER_CONF_DEFAULT_CONFIGURATION
  7641. eng "This member joined a group on which all members do not support replication failover channels integration on Group Replication, as such it did reset its replication failover channels configuration to the default one."
  7642. ER_GRP_RPL_FAILOVER_CONF_UNABLE_TO_SET_DEFAULT_CONFIGURATION
  7643. eng "Unable to reset to replication failover channels default configuration on member join. Please check the tables 'mysql.replication_asynchronous_connection_failover', 'mysql.replication_asynchronous_connection_failover_managed' and 'mysql.replication_group_configuration_version'."
  7644. ER_GRP_RPL_FAILOVER_CONF_PARSE_ON_MEMBER_JOIN
  7645. eng "Unable to parse the replication failover channels configuration sent by the group on member join."
  7646. ER_GRP_RPL_FAILOVER_CONF_CHANNEL_DOES_NOT_EXIST
  7647. eng "Unable to set SOURCE_CONNECTION_AUTO_FAILOVER on a non-existent or misconfigured replication channel '%s', please create the channel and rejoin the server to the group."
  7648. ER_GRP_RPL_FAILOVER_REGISTER_MESSAGE_LISTENER_SERVICE
  7649. eng "Unable to register the listener 'replication_asynchronous_connection_failover_configuration' to the service 'group_replication_message_service_recv'."
  7650. ER_GRP_RPL_FAILOVER_PRIMARY_WITHOUT_MAJORITY
  7651. eng "This server is not able to reach a majority of members in the group. This server will skip the replication failover channels handling until this server is back to the group majority."
  7652. ER_GRP_RPL_FAILOVER_PRIMARY_BACK_TO_MAJORITY
  7653. eng "This server is back to the group majority. Replication failover channels handling is resumed."
  7654. ER_RPL_INCREMENTING_MEMBER_ACTION_VERSION
  7655. eng "Error incrementing member action configuration version for %s.%s table."
  7656. ER_GRP_RPL_SLAVE_THREAD_ERROR_ON_SECONDARY_MEMBER
  7657. eng "The '%s' thread of channel '%s' will error out as this server is a group secondary."
  7658. ER_IB_MSG_CLONE_DDL_NTFN
  7659. eng "Clone DDL Notification: %s"
  7660. ER_IB_MSG_CLONE_DDL_APPLY
  7661. eng "Clone DDL APPLY: %s"
  7662. ER_IB_MSG_CLONE_DDL_INVALIDATE
  7663. eng "Clone DDL Invalidate : %s"
  7664. ER_IB_MSG_UNDO_ENCRYPTION_INFO_LOADED
  7665. eng "Encryption key is loaded for undo tablespace '%s'."
  7666. ER_IB_WRN_ENCRYPTION_INFO_SIZE_MISMATCH
  7667. eng "Ignoring encryption INFO size in redo log: %zu, expected: %zu"
  7668. ER_INVALID_AUTHENTICATION_POLICY
  7669. eng "Option --authentication-policy is set to an invalid value. Please check if the specified authentication plugins are valid."
  7670. ER_AUTHENTICATION_PLUGIN_REGISTRATION_FAILED
  7671. eng "Signature verification failed during registration."
  7672. ER_AUTHENTICATION_PLUGIN_REGISTRATION_INSUFFICIENT_BUFFER
  7673. eng "Buffer too small to hold registration challenge response."
  7674. ER_AUTHENTICATION_PLUGIN_AUTH_DATA_CORRUPT
  7675. eng "FIDO device authenticator data corrupt."
  7676. ER_AUTHENTICATION_PLUGIN_SIGNATURE_CORRUPT
  7677. eng "FIDO device signature corrupt."
  7678. ER_AUTHENTICATION_PLUGIN_VERIFY_SIGNATURE_FAILED
  7679. eng "Signature verification failed during authentication."
  7680. ER_AUTHENTICATION_PLUGIN_OOM
  7681. eng "Out of memory."
  7682. ER_AUTHENTICATION_PLUGIN_LOG
  7683. eng "Can't initialize logging service".
  7684. ER_WARN_REPLICA_GTID_ONLY_AND_GTID_MODE_NOT_ON
  7685. eng "Replication channel '%.192s' is configured with GTID_ONLY=1, which is invalid when GTID_MODE <> ON. If you intend to disable GTIDs in the replication topology, change GTID_ONLY to 0."
  7686. ER_WARN_L_DISABLE_GTID_ONLY_WITH_SOURCE_AUTO_POS_INVALID_POS
  7687. eng "The replication positions relative to the source may be out-of-date on channel '%.192s', due to the use of GTID_ONLY=1. The out-of-date positions can still be used in some cases so, in order to update them, we suggest that you start the replication to receive and apply at least one transaction, which will set the positions to valid values."
  7688. ER_RPL_CANNOT_OPEN_RELAY_LOG
  7689. eng "Could not open relay log: %s"
  7690. ER_AUTHENTICATION_OCI_PLUGIN_NOT_INITIALIZED
  7691. eng "Authentication plugin not initialized."
  7692. ER_AUTHENTICATION_OCI_PRIVATE_KEY_ERROR
  7693. eng "Cannot use the generated private key file."
  7694. ER_AUTHENTICATION_OCI_DOWNLOAD_PUBLIC_KEY
  7695. eng "Unavailable public key with fingerprint %s for user %s in tenancy %s ."
  7696. ER_AUTHENTICATION_OCI_IMDS
  7697. eng "Cannot obtain the OCI configuration from the IMDS service."
  7698. ER_AUTHENTICATION_OCI_IAM
  7699. eng "Cannot initialize the IAM service."
  7700. ER_AUTHENTICATION_OCI_INVALID_AUTHENTICATION_STRING
  7701. eng "Invalid authentication string details for user: `%s`@`%s`."
  7702. ER_AUTHENTICATION_OCI_NO_MATCHING_GROUPS
  7703. eng "None of the groups returned by IAM matches any of the entries from authentication string."
  7704. ER_AUTHENTICATION_OCI_NO_GROUPS_FOUND
  7705. eng "User is not part of any groups. However, account is configured to use group mapping."
  7706. ER_AUTHENTICATION_OCI_NONCE
  7707. eng "Public/private key mismatch (fingerprint %s) while authenticating user %s in tenancy %s ."
  7708. ER_HEALTH_WARNING_MEMORY_USAGE_LEVEL_1
  7709. eng "%s: Warning Level 1 (%llu MiB): available=%llu MiB, total=%llu MiB, used=%.2f%%, mysqld=%llu MiB"
  7710. ER_HEALTH_WARNING_MEMORY_USAGE_LEVEL_2
  7711. eng "%s: Warning Level 2 (%llu MiB): available=%llu MiB, total=%llu MiB, used=%.2f%%, mysqld=%llu MiB"
  7712. ER_HEALTH_WARNING_MEMORY_USAGE_LEVEL_3
  7713. eng "%s: Warning Level 3 (%llu MiB): available=%llu MiB, total=%llu MiB, used=%.2f%%, mysqld=%llu MiB"
  7714. ER_GRP_RPL_SET_SINGLE_CONSENSUS_LEADER
  7715. eng "The member %s:%u, with UUID: %s, was set as the single preferred consensus leader."
  7716. ER_GRP_RPL_ERROR_SET_SINGLE_CONSENSUS_LEADER
  7717. eng "Something went wrong trying to set the member %s:%u, with UUID: %s, as the single preferred consensus leader. Please query the performance_schema.replication_group_communication_information table to see whether the operation took effect, i.e. whether the preferred consensus leader matches the current primary. If not, consider electing a different primary to try again. Please check the error log and GCS_DEBUG_TRACE for more information that may help understanding what went wrong."
  7718. ER_GRP_RPL_SET_MULTI_CONSENSUS_LEADER
  7719. eng "All members were set as consensus leaders."
  7720. ER_GRP_RPL_ERROR_SET_MULTI_CONSENSUS_LEADER
  7721. eng "Something went wrong trying to set all members as consensus leaders. Please query the performance_schema.replication_group_communication_information table to see whether the operation took effect, i.e. whether the consensus leaders match all members. If not, consider resetting the group communication protocol to a version < 8.0.22, or switch to single-primary mode and back again to multi-primary mode, to try again. Please check the error log and GCS_DEBUG_TRACE for more information that may help understanding what went wrong."
  7722. ER_GRP_RPL_PAXOS_SINGLE_LEADER_DIFF_FROM_GRP
  7723. eng "This member is configured with a group_replication_paxos_single_leader option value of '%d' that is different from the group's value ('%d'). This member will now exit the group."
  7724. ER_MFA_USER_ATTRIBUTES_CORRUPT
  7725. eng "Invalid and/or corrupted multi factor authentication methods in User_attributes column in mysql.user table. \"%s\"."
  7726. ER_MFA_PLUGIN_NOT_LOADED
  7727. eng "Plugin \'%-.192s\' is not loaded; Ignoring user"
  7728. ER_WARN_DEPRECATED_CHARSET_OPTION
  7729. eng "%s: The character set %s is deprecated and will be removed in a future release. Please consider using %s instead."
  7730. ER_WARN_DEPRECATED_COLLATION_OPTION
  7731. eng "%s: '%-.64s' is a collation of the deprecated character set %s. Please consider using %s with an appropriate collation instead."
  7732. ER_REGEXP_MISSING_ICU_DATADIR
  7733. eng "Missing data directory for ICU regular expressions: %s."
  7734. ER_IB_WARN_MANY_NON_LRU_FILES_OPENED
  7735. eng "More than 90%% of files opened out of the innodb_open_files limit are files that are not easy to close. The performance of system may degrade. Consider increasing value of the innodb_open_files system variable. There are %zu such files opened out of the total limit for all files opened of %zu."
  7736. ER_IB_MSG_TRYING_TO_OPEN_FILE_FOR_LONG_TIME
  7737. eng "Trying to open a file for %lld seconds. Configuration only allows for %zu open files. Consider setting innobase_open_files higher."
  7738. ER_GLOBAL_CONN_LIMIT
  7739. eng "Connection closed. Global connection memory limit %llu bytes exceeded. Consumed %llu bytes."
  7740. ER_CONN_LIMIT
  7741. eng "Connection closed. Connection memory limit %llu bytes exceeded. Consumed %llu bytes."
  7742. ER_WARN_AUDIT_LOG_DISABLED
  7743. eng "Audit Log is disabled. Enable it with audit_log_disable = false."
  7744. ER_INVALID_TLS_VERSION
  7745. eng "Option --tls-version or --admin-tls-version is set to an invalid value %s."
  7746. ER_RPL_RELAY_LOG_RECOVERY_GTID_ONLY
  7747. eng "Relay log recovery on channel with GTID_ONLY=1. The channel will switch to a new relay log and the GTID protocol will be used to replicate unapplied transactions."
  7748. ER_KEYRING_OKV_STANDBY_SERVER_COUNT_EXCEEDED
  7749. eng "Number of STANDBY_SERVER values exceeded maximum limit of 64."
  7750. ER_WARN_MIGRATION_EMPTY_SOURCE_KEYRING
  7751. eng "Source keyring does not have any keys to migrate."
  7752. ER_WARN_CANNOT_PERSIST_SENSITIVE_VARIABLES
  7753. eng "Cannot persist SENSITIVE system variables because keyring component support is unavailable and persist_sensitive_variables_in_plaintext is set to OFF. Please make sure that keyring services are active and required keys are available."
  7754. ER_CANNOT_INTERPRET_PERSISTED_SENSITIVE_VARIABLES
  7755. eng "Cannot interpret persisted SENSITIVE system variables. Please make sure that keyring services are active and required keys are available."
  7756. ER_PERSISTED_VARIABLES_KEYRING_SUPPORT_REQUIRED
  7757. eng "Keyring has to be loaded through manifest file in order to support secure storage for persisted variables"
  7758. ER_PERSISTED_VARIABLES_MASTER_KEY_NOT_FOUND
  7759. eng "Could not find master key %s in keyring"
  7760. ER_PERSISTED_VARIABLES_MASTER_KEY_CANNOT_BE_GENERATED
  7761. eng "A new master key %s could not be generated"
  7762. ER_PERSISTED_VARIABLES_ENCRYPTION_FAILED
  7763. eng "Failed to encrypt %s using %s"
  7764. ER_PERSISTED_VARIABLES_DECRYPTION_FAILED
  7765. eng "Failed to decrypt %s using %s"
  7766. ER_PERSISTED_VARIABLES_LACK_KEYRING_SUPPORT
  7767. eng "Persisting SENSITIVE variables in encrypted form requires keyring component loaded through manifest file."
  7768. ER_MY_MALLOC_USING_JEMALLOC
  7769. eng "Using jemalloc.dll for my_malloc and ut::malloc etc."
  7770. ER_MY_MALLOC_USING_STD_MALLOC
  7771. eng "%s."
  7772. ER_MY_MALLOC_LOADLIBRARY_FAILED
  7773. eng "%s."
  7774. ER_MY_MALLOC_GETPROCADDRESS_FAILED
  7775. eng "%s."
  7776. ER_ACCOUNT_WITH_EXPIRED_PASSWORD
  7777. eng "Password for the account '%-.48s'@'%-.64s' has expired. To log in, either change it using a client that supports expired passwords or send the change request to an administrator."
  7778. ER_THREAD_POOL_PLUGIN_STARTED
  7779. eng "Thread pool plugin started successfully with parameters: %s"
  7780. ER_THREAD_POOL_DEDICATED_LISTENERS_INVALID
  7781. eng "thread_pool_dedicated_listeners cannot be set unless thread_pool_max_transactions_limit > 0"
  7782. ER_GRP_RPL_FAILED_TO_LOG_VIEW_CHANGE
  7783. eng "This member was unable to log the View_change_log_event into the binary log, hence it will leave the group. Please check that there is available disk space and add the member back to the group."
  7784. # DO NOT add server-to-client messages here;
  7785. # they go in messages_to_clients.txt
  7786. # in the same directory as this file.
  7787. #
  7788. # This file is for messages intended for the error log only.
  7789. #
  7790. # See the FAQ in errmsg_readme.txt in the
  7791. # same directory as this file for more
  7792. # information.
  7793. #
  7794. # End of 8.0 error messages intended to be written to the server error log.
  7795. #
  7796. ################################################################################
  7797. # Error numbers 50000 to 51999 are reserved. Please do not use them for
  7798. # other error messages.
  7799. ################################################################################
  7800. reserved-error-section 50000 51999
  7801. # DO NOT append error messages here at the end.
  7802. #
  7803. # If you came here to add a message, please read the FAQ in
  7804. # errmsg_readme.txt to see where it should go.
  7805. #
  7806. # Messages the server sends to the error log and messages
  7807. # the server sends to its clients go to different places.
  7808. # Messages for different server versions go to different places.
  7809. # Messages that are built into the client library (libmysql/C-API)
  7810. # go into yet a different place.