90 Star 482 Fork 142

平凯星辰(北京)科技有限公司 / tidb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
errors.toml 57.44 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378
# AUTOGENERATED BY github.com/pingcap/errors/errdoc-gen
# YOU CAN CHANGE THE 'description'/'workaround' FIELDS IF THEM ARE IMPROPER.
["BR:Backup:ErrBackupChecksumMismatch"]
error = '''
backup checksum mismatch
'''
["BR:Backup:ErrBackupGCSafepointExceeded"]
error = '''
backup GC safepoint exceeded
'''
["BR:Backup:ErrBackupInvalidRange"]
error = '''
backup range invalid
'''
["BR:Backup:ErrBackupKeyIsLocked"]
error = '''
backup key is locked
'''
["BR:Backup:ErrBackupNoLeader"]
error = '''
backup no leader
'''
["BR:Backup:ErrBackupRegion"]
error = '''
backup region error
'''
["BR:Common:ErrEnvNotSpecified"]
error = '''
environment variable not found
'''
["BR:Common:ErrFailedToConnect"]
error = '''
failed to make gRPC channels
'''
["BR:Common:ErrInvalidArgument"]
error = '''
invalid argument
'''
["BR:Common:ErrInvalidMetaFile"]
error = '''
invalid metafile: %s
'''
["BR:Common:ErrUndefinedDbOrTable"]
error = '''
undefined restore databases or tables
'''
["BR:Common:ErrUnknown"]
error = '''
internal error
'''
["BR:Common:ErrUnsupportedOperation"]
error = '''
the operation is not supported
'''
["BR:Common:ErrVersionMismatch"]
error = '''
version mismatch
'''
["BR:EBS:ErrRestoreInvalidPeer"]
error = '''
restore met a invalid peer
'''
["BR:EBS:ErrRestoreRegionWithoutPeer"]
error = '''
restore met a region without any peer
'''
["BR:EBS:ErrRestoreTotalKVMismatch"]
error = '''
restore total tikvs mismatch
'''
["BR:ExternalStorage:ErrStorageInvalidConfig"]
error = '''
invalid external storage config
'''
["BR:ExternalStorage:ErrStorageInvalidPermission"]
error = '''
external storage permission
'''
["BR:ExternalStorage:ErrStorageUnknown"]
error = '''
unknown external storage error
'''
["BR:KV:ErrKVClusterIDMismatch"]
error = '''
tikv cluster ID mismatch
'''
["BR:KV:ErrKVDownloadFailed"]
error = '''
download sst failed
'''
["BR:KV:ErrKVEpochNotMatch"]
error = '''
epoch not match
'''
["BR:KV:ErrKVIngestFailed"]
error = '''
ingest sst failed
'''
["BR:KV:ErrKVKeyNotInRegion"]
error = '''
key not in region
'''
["BR:KV:ErrKVNotLeader"]
error = '''
not leader
'''
["BR:KV:ErrKVRangeIsEmpty"]
error = '''
range is empty
'''
["BR:KV:ErrKVRewriteRuleNotFound"]
error = '''
rewrite rule not found
'''
["BR:KV:ErrKVStorage"]
error = '''
tikv storage occur I/O error
'''
["BR:KV:ErrKVUnknown"]
error = '''
unknown error occur on tikv
'''
["BR:KV:ErrNotTiKVStorage"]
error = '''
storage is not tikv
'''
["BR:KV:ErrPossibleInconsistency"]
error = '''
the cluster state might be inconsistent
'''
["BR:PD:ErrPDBatchScanRegion"]
error = '''
batch scan region
'''
["BR:PD:ErrPDInvalidResponse"]
error = '''
PD invalid response
'''
["BR:PD:ErrPDLeaderNotFound"]
error = '''
PD leader not found
'''
["BR:PD:ErrPDUknownScatterResult"]
error = '''
failed to wait region splitted
'''
["BR:PD:ErrPDUpdateFailed"]
error = '''
failed to update PD
'''
["BR:PiTR:ErrInvalidTaskInfo"]
error = '''
task info is invalid
'''
["BR:PiTR:ErrMalformedMetadata"]
error = '''
malformed metadata
'''
["BR:PiTR:ErrPiTRInvalidCDCLogFormat"]
error = '''
invalid cdc log format
'''
["BR:PiTR:ErrTaskNotFound"]
error = '''
task not found
'''
["BR:Restore:ErrDatabasesAlreadyExisted"]
error = '''
databases already existed in restored cluster
'''
["BR:Restore:ErrRestoreChecksumMismatch"]
error = '''
restore checksum mismatch
'''
["BR:Restore:ErrRestoreIncompatibleSys"]
error = '''
incompatible system table
'''
["BR:Restore:ErrRestoreInvalidBackup"]
error = '''
invalid backup
'''
["BR:Restore:ErrRestoreInvalidRange"]
error = '''
invalid restore range
'''
["BR:Restore:ErrRestoreInvalidRewrite"]
error = '''
invalid rewrite rule
'''
["BR:Restore:ErrRestoreModeMismatch"]
error = '''
restore mode mismatch
'''
["BR:Restore:ErrRestoreNoPeer"]
error = '''
region does not have peer
'''
["BR:Restore:ErrRestoreNotFreshCluster"]
error = '''
cluster is not fresh
'''
["BR:Restore:ErrRestoreRangeMismatch"]
error = '''
restore range mismatch
'''
["BR:Restore:ErrRestoreRejectStore"]
error = '''
failed to restore remove rejected store
'''
["BR:Restore:ErrRestoreResolvedTsConstrain"]
error = '''
resolved ts constrain violation
'''
["BR:Restore:ErrRestoreSchemaNotExists"]
error = '''
schema not exists
'''
["BR:Restore:ErrRestoreSplitFailed"]
error = '''
fail to split region
'''
["BR:Restore:ErrRestoreTableIDMismatch"]
error = '''
restore table ID mismatch
'''
["BR:Restore:ErrRestoreWriteAndIngest"]
error = '''
failed to write and ingest
'''
["BR:Restore:ErrUnsupportedSysTable"]
error = '''
the system table isn't supported for restoring yet
'''
["BR:Stream:ErrStreamLogTaskExist"]
error = '''
stream task already exists
'''
["Lighting:Restore:ErrChecksumMismatch"]
error = '''
checksum mismatched remote vs local => (checksum: %d vs %d) (total_kvs: %d vs %d) (total_bytes:%d vs %d)
'''
["Lightning:Checkpoint:ErrCheckpointNotFound"]
error = '''
checkpoint not found
'''
["Lightning:Checkpoint:ErrCleanCheckpoint"]
error = '''
clean checkpoint error
'''
["Lightning:Checkpoint:ErrInitCheckpoint"]
error = '''
init checkpoint error
'''
["Lightning:Checkpoint:ErrInvalidCheckpoint"]
error = '''
invalid checkpoint
'''
["Lightning:Checkpoint:ErrOpenCheckpoint"]
error = '''
open checkpoint error
'''
["Lightning:Checkpoint:ErrReadCheckpoint"]
error = '''
read checkpoint error
'''
["Lightning:Checkpoint:ErrUnknownCheckpointDriver"]
error = '''
unknown checkpoint driver '%s'
'''
["Lightning:Checkpoint:ErrUpdateCheckpoint"]
error = '''
update checkpoint error
'''
["Lightning:Common:ErrInvalidArgument"]
error = '''
invalid argument
'''
["Lightning:Common:ErrUnknown"]
error = '''
unknown error
'''
["Lightning:Common:ErrVersionMismatch"]
error = '''
version mismatch
'''
["Lightning:Config:ErrInvalidConfig"]
error = '''
invalid config
'''
["Lightning:Config:ErrInvalidSortedKVDir"]
error = '''
invalid sorted-kv-dir '%s' for local backend, please change the config or delete the path
'''
["Lightning:Config:ErrInvalidTLSConfig"]
error = '''
invalid tls config
'''
["Lightning:Config:ErrParseConfigFile"]
error = '''
cannot parse config file '%s'
'''
["Lightning:Config:ErrReadConfigFile"]
error = '''
cannot read config file '%s'
'''
["Lightning:DB:ErrDBConnect"]
error = '''
failed to connect database
'''
["Lightning:DB:ErrInitErrManager"]
error = '''
init error manager error
'''
["Lightning:DB:ErrInitMetaManager"]
error = '''
init meta manager error
'''
["Lightning:KV:EpochNotMatch"]
error = '''
epoch not match
'''
["Lightning:KV:ErrCheckKVVersion"]
error = '''
check tikv version error
'''
["Lightning:KV:ErrCheckMultiIngest"]
error = '''
check multi-ingest support error
'''
["Lightning:KV:ErrCreateKVClient"]
error = '''
create kv client error
'''
["Lightning:KV:ErrKVIngestFailed"]
error = '''
ingest tikv failed
'''
["Lightning:KV:ErrKVRaftProposalDropped"]
error = '''
raft proposal dropped
'''
["Lightning:KV:ErrNoLeader"]
error = '''
write to tikv with no leader returned, region '%d', leader: %d
'''
["Lightning:KV:NotLeader"]
error = '''
not leader
'''
["Lightning:KV:ReadIndexNotReady"]
error = '''
read index not ready
'''
["Lightning:KV:RegionNotFound"]
error = '''
region not found
'''
["Lightning:KV:ServerIsBusy"]
error = '''
server is busy
'''
["Lightning:Loader:ErrInvalidSchemaFile"]
error = '''
invalid schema file
'''
["Lightning:Loader:ErrTableRoute"]
error = '''
table route error
'''
["Lightning:Loader:ErrTooManySourceFiles"]
error = '''
too many source files
'''
["Lightning:MetaMgr:ErrMetaMgrUnknown"]
error = '''
unknown error occur on meta manager
'''
["Lightning:PD:ErrCreatePDClient"]
error = '''
create pd client error
'''
["Lightning:PD:ErrPauseGC"]
error = '''
pause gc error
'''
["Lightning:PD:ErrUpdatePD"]
error = '''
update pd error
'''
["Lightning:PreCheck:ErrCheckCDCPiTR"]
error = '''
check TiCDC/PiTR task error
'''
["Lightning:PreCheck:ErrCheckCSVHeader"]
error = '''
check csv header error
'''
["Lightning:PreCheck:ErrCheckClusterRegion"]
error = '''
check tikv cluster region error
'''
["Lightning:PreCheck:ErrCheckDataSource"]
error = '''
check data source error
'''
["Lightning:PreCheck:ErrCheckLocalResource"]
error = '''
check local storage resource error
'''
["Lightning:PreCheck:ErrCheckTableEmpty"]
error = '''
check table empty error
'''
["Lightning:PreCheck:ErrCheckpointSchemaConflict"]
error = '''
checkpoint schema conflict
'''
["Lightning:PreCheck:ErrPreCheckFailed"]
error = '''
tidb-lightning pre-check failed: %s
'''
["Lightning:PreCheck:ErrSystemRequirementNotMet"]
error = '''
system requirement not met
'''
["Lightning:PreDedup:ErrDuplicateKey"]
error = '''
duplicate key detected on indexID %d of KeyID: %v
'''
["Lightning:Restore:ErrAddIndexFailed"]
error = '''
add index on table %s failed
'''
["Lightning:Restore:ErrAllocTableRowIDs"]
error = '''
allocate table row id error
'''
["Lightning:Restore:ErrCheckLocalFile"]
error = '''
cannot find local file for table: %s engineDir: %s
'''
["Lightning:Restore:ErrCreateSchema"]
error = '''
create schema failed, table: %s, stmt: %s
'''
["Lightning:Restore:ErrDropIndexFailed"]
error = '''
drop index %s on table %s failed
'''
["Lightning:Restore:ErrEncodeKV"]
error = '''
encode kv error in file %s at offset %d
'''
["Lightning:Restore:ErrFoundDuplicateKey"]
error = '''
found duplicate key '%s', value '%s'
'''
["Lightning:Restore:ErrInvalidMetaStatus"]
error = '''
invalid meta status: '%s'
'''
["Lightning:Restore:ErrInvalidSchemaStmt"]
error = '''
invalid schema statement: '%s'
'''
["Lightning:Restore:ErrOpenDuplicateDB"]
error = '''
open duplicate db error
'''
["Lightning:Restore:ErrResolveDuplicateRows"]
error = '''
resolve duplicate rows error on table '%s'
'''
["Lightning:Restore:ErrRestoreTable"]
error = '''
restore table %s failed
'''
["Lightning:Restore:ErrSchemaNotExists"]
error = '''
table `%s`.`%s` schema not found
'''
["Lightning:Restore:ErrTableIsChecksuming"]
error = '''
table '%s' is checksuming
'''
["Lightning:Restore:ErrUnknownBackend"]
error = '''
unknown backend %s
'''
["Lightning:Restore:ErrUnknownColumns"]
error = '''
unknown columns in header (%s) for table %s
'''
["Lightning:Storage:ErrEmptySourceDir"]
error = '''
data-source-dir '%s' doesn't exist or contains no files
'''
["Lightning:Storage:ErrInvalidPermission"]
error = '''
invalid permission
'''
["Lightning:Storage:ErrInvalidStorageConfig"]
error = '''
invalid data-source-dir
'''
["Lightning:Storage:ErrStorageUnknown"]
error = '''
unknown storage error
'''
["admin:8003"]
error = '''
TiDB admin check table failed.
'''
["admin:8223"]
error = '''
data inconsistency in table: %s, index: %s, handle: %s, index-values:%#v != record-values:%#v
'''
["autoid:1075"]
error = '''
Incorrect table definition; there can be only one auto column and it must be defined as a key
'''
["autoid:1467"]
error = '''
Failed to read auto-increment value from storage engine
'''
["autoid:8058"]
error = '''
Invalid allocator type
'''
["autoid:8059"]
error = '''
Failed to read auto-random value from storage engine
'''
["ddl:0"]
error = '''
TiFlash mode will take effect after at least one TiFlash replica is set for the table
'''
["ddl:1025"]
error = '''
Error on rename of '%-.210s' to '%-.210s' (errno: %d - %s)
'''
["ddl:1048"]
error = '''
Column '%-.192s' cannot be null
'''
["ddl:1054"]
error = '''
Unknown column '%-.192s' in '%-.192s'
'''
["ddl:1059"]
error = '''
Identifier name '%-.100s' is too long
'''
["ddl:1061"]
error = '''
Duplicate key name '%-.192s'
'''
["ddl:1067"]
error = '''
Invalid default value for '%-.192s'
'''
["ddl:1069"]
error = '''
Too many keys specified; max %d keys allowed
'''
["ddl:1071"]
error = '''
Specified key was too long (%d bytes); max key length is %d bytes
'''
["ddl:1072"]
error = '''
Key column '%-.192s' doesn't exist in table
'''
["ddl:1089"]
error = '''
Incorrect prefix key; the used key part isn't a string, the used length is longer than the key part, or the storage engine doesn't support unique prefix keys
'''
["ddl:1090"]
error = '''
You can't delete all columns with ALTER TABLE; use DROP TABLE instead
'''
["ddl:1091"]
error = '''
Can't DROP '%-.192s'; check that column/key exists
'''
["ddl:1101"]
error = '''
BLOB/TEXT/JSON column '%-.192s' can't have a default value
'''
["ddl:1102"]
error = '''
Incorrect database name '%-.100s'
'''
["ddl:1103"]
error = '''
Incorrect table name '%-.100s'
'''
["ddl:1111"]
error = '''
Invalid use of group function
'''
["ddl:1113"]
error = '''
A table must have at least 1 column
'''
["ddl:1115"]
error = '''
Unknown character set: '%-.64s'
'''
["ddl:1117"]
error = '''
Too many columns
'''
["ddl:1138"]
error = '''
Invalid use of NULL value
'''
["ddl:1166"]
error = '''
Incorrect column name '%-.100s'
'''
["ddl:1167"]
error = '''
The used storage engine can't index column '%-.192s'
'''
["ddl:1170"]
error = '''
BLOB/TEXT column '%-.192s' used in key specification without a key length
'''
["ddl:1171"]
error = '''
All parts of a PRIMARY KEY must be NOT NULL; if you need NULL in a key, use UNIQUE instead
'''
["ddl:1177"]
error = '''
Can't open table
'''
["ddl:1205"]
error = '''
Timeout waiting for data reorganization
'''
["ddl:1214"]
error = '''
The used table type doesn't support FULLTEXT indexes
'''
["ddl:1221"]
error = '''
Incorrect usage of %s and %s
'''
["ddl:1235"]
error = '''
This version of TiDB doesn't yet support '%s'
'''
["ddl:1246"]
error = '''
Converting column '%s' from %s to %s
'''
["ddl:1248"]
error = '''
Every derived table must have its own alias
'''
["ddl:1253"]
error = '''
COLLATION '%s' is not valid for CHARACTER SET '%s'
'''
["ddl:1264"]
error = '''
Out of range value for column '%s' at row %d
'''
["ddl:1265"]
error = '''
Data truncated for column '%s' at row %d
'''
["ddl:1273"]
error = '''
Unsupported collation when new collation is enabled: '%-.64s'
'''
["ddl:1280"]
error = '''
Incorrect index name '%-.100s'
'''
["ddl:1286"]
error = '''
Unknown storage engine '%s'
'''
["ddl:1292"]
error = '''
Truncated incorrect %-.64s value: '%-.128s'
'''
["ddl:1294"]
error = '''
Invalid ON UPDATE clause for '%-.192s' column
'''
["ddl:1302"]
error = '''
Conflicting declarations: 'CHARACTER SET %s' and 'CHARACTER SET %s'
'''
["ddl:1347"]
error = '''
'%-.192s.%-.192s' is not %s
'''
["ddl:1350"]
error = '''
View's SELECT contains a '%s' clause
'''
["ddl:1353"]
error = '''
In definition of view, derived table or common table expression, SELECT list and column names list have different column counts
'''
["ddl:1391"]
error = '''
Key part '%-.192s' length cannot be 0
'''
["ddl:1452"]
error = '''
Cannot add or update a child row: a foreign key constraint fails (%.192s)
'''
["ddl:1470"]
error = '''
String '%-.70s' is too long for %s (should be no longer than %d)
'''
["ddl:1481"]
error = '''
MAXVALUE can only be used in last partition definition
'''
["ddl:1486"]
error = '''
Constant, random or timezone-dependent expressions in (sub)partitioning function are not allowed
'''
["ddl:1488"]
error = '''
Field in list of fields for partition function not found in table
'''
["ddl:1491"]
error = '''
The %-.192s function returns the wrong type
'''
["ddl:1493"]
error = '''
VALUES LESS THAN value must be strictly increasing for each partition
'''
["ddl:1495"]
error = '''
Multiple definition of same constant in list partitioning
'''
["ddl:1499"]
error = '''
Too many partitions (including subpartitions) were defined
'''
["ddl:1503"]
error = '''
A %-.192s must include all columns in the table's partitioning function
'''
["ddl:1505"]
error = '''
Partition management on a not partitioned table is not possible
'''
["ddl:1507"]
error = '''
Error in list of partitions to %-.64s
'''
["ddl:1508"]
error = '''
Cannot remove all partitions, use DROP TABLE instead
'''
["ddl:1509"]
error = '''
COALESCE PARTITION can only be used on HASH/KEY partitions
'''
["ddl:1512"]
error = '''
%-.64s PARTITION can only be used on RANGE/LIST partitions
'''
["ddl:1517"]
error = '''
Duplicate partition name %-.192s
'''
["ddl:1553"]
error = '''
Cannot drop index '%-.192s': needed in a foreign key constraint
'''
["ddl:1562"]
error = '''
Cannot create temporary table with partitions
'''
["ddl:1563"]
error = '''
Partition constant is out of partition function domain
'''
["ddl:1564"]
error = '''
This partition function is not allowed
'''
["ddl:1567"]
error = '''
Incorrect partition name
'''
["ddl:1628"]
error = '''
Comment for table '%-.64s' is too long (max = %d)
'''
["ddl:1629"]
error = '''
Comment for field '%-.64s' is too long (max = %d)
'''
["ddl:1652"]
error = '''
Duplicate partition field name '%-.192s'
'''
["ddl:1654"]
error = '''
Partition column values of incorrect type
'''
["ddl:1656"]
error = '''
Cannot use MAXVALUE as value in VALUES IN
'''
["ddl:1659"]
error = '''
Field '%-.192s' is of a not allowed type for this type of partitioning
'''
["ddl:1674"]
error = '''
Statement is unsafe because it uses a system function that may return a different value on the slave
'''
["ddl:1681"]
error = '''
The ZEROFILL attribute is deprecated and will be removed in a future release. Use the LPAD function to zero-pad numbers, or store the formatted numbers in a CHAR column.
'''
["ddl:1688"]
error = '''
Comment for index '%-.64s' is too long (max = %d)
'''
["ddl:1697"]
error = '''
VALUES value for partition '%-.64s' must have type INT
'''
["ddl:1701"]
error = '''
Cannot truncate a table referenced in a foreign key constraint (%.192s)
'''
["ddl:1731"]
error = '''
Non matching attribute '%-.64s' between partition and table
'''
["ddl:1732"]
error = '''
Table to exchange with partition is partitioned: '%-.64s'
'''
["ddl:1733"]
error = '''
Table to exchange with partition is temporary: '%-.64s'
'''
["ddl:1736"]
error = '''
Tables have different definitions
'''
["ddl:1737"]
error = '''
Found a row that does not match the partition
'''
["ddl:1740"]
error = '''
Table to exchange with partition has foreign key references: '%-.64s'
'''
["ddl:1793"]
error = '''
Comment for table partition '%-.64s' is too long (max = %d)
'''
["ddl:1826"]
error = '''
Duplicate foreign key constraint name '%s'
'''
["ddl:1828"]
error = '''
Cannot drop column '%-.192s': needed in a foreign key constraint '%-.192s'
'''
["ddl:1829"]
error = '''
Cannot drop column '%-.192s': needed in a foreign key constraint '%-.192s' of table '%-.192s'
'''
["ddl:1832"]
error = '''
Cannot change column '%-.192s': used in a foreign key constraint '%-.192s'
'''
["ddl:1833"]
error = '''
Cannot change column '%-.192s': used in a foreign key constraint '%-.192s' of table '%-.192s'
'''
["ddl:1846"]
error = '''
%s is not supported. Reason: %s. Try %s.
'''
["ddl:3102"]
error = '''
Expression of generated column '%s' contains a disallowed function.
'''
["ddl:3104"]
error = '''
Cannot define foreign key with %s clause on a generated column.
'''
["ddl:3106"]
error = '''
'%s' is not supported for generated columns.
'''
["ddl:3107"]
error = '''
Generated column can refer only to generated columns defined prior to it.
'''
["ddl:3108"]
error = '''
Column '%s' has a generated column dependency.
'''
["ddl:3109"]
error = '''
Generated column '%s' cannot refer to auto-increment column.
'''
["ddl:3152"]
error = '''
JSON column '%-.192s' cannot be used in key specification.
'''
["ddl:3505"]
error = '''
Too long enumeration/set value for column %s.
'''
["ddl:3522"]
error = '''
A primary key index cannot be invisible
'''
["ddl:3593"]
error = '''
You cannot use the window function '%s' in this context.'
'''
["ddl:3730"]
error = '''
Cannot drop table '%s' referenced by a foreign key constraint '%s' on table '%s'.
'''
["ddl:3753"]
error = '''
Cannot create an expression index on a function that returns a JSON or GEOMETRY value
'''
["ddl:3754"]
error = '''
Expression index '%s' cannot refer to an auto-increment column
'''
["ddl:3756"]
error = '''
The primary key cannot be an expression index
'''
["ddl:3757"]
error = '''
Cannot create an expression index on an expression that returns a BLOB or TEXT. Please consider using CAST
'''
["ddl:3758"]
error = '''
Expression of expression index '%s' contains a disallowed function
'''
["ddl:3761"]
error = '''
The used storage engine cannot index the expression '%s'
'''
["ddl:3762"]
error = '''
Expression index on a column is not supported. Consider using a regular index instead
'''
["ddl:3764"]
error = '''
Expression of generated column '%s' cannot refer to a row value
'''
["ddl:3770"]
error = '''
Default value expression of column '%s' contains a disallowed function: `%s`.
'''
["ddl:3780"]
error = '''
Referencing column '%s' and referenced column '%s' in foreign key constraint '%s' are incompatible.
'''
["ddl:3800"]
error = '''
Expression of expression index '%s' cannot refer to a row value
'''
["ddl:3812"]
error = '''
An expression of non-boolean type specified to a check constraint '%s'.
'''
["ddl:3813"]
error = '''
Column check constraint '%s' references other column.
'''
["ddl:3814"]
error = '''
An expression of a check constraint '%s' contains disallowed function: %s.
'''
["ddl:3815"]
error = '''
An expression of a check constraint '%s' contains disallowed function.
'''
["ddl:3816"]
error = '''
An expression of a check constraint '%s' cannot refer to a user or system variable.
'''
["ddl:3818"]
error = '''
Check constraint '%s' cannot refer to an auto-increment column.
'''
["ddl:3819"]
error = '''
Check constraint '%s' is violated.
'''
["ddl:3820"]
error = '''
Check constraint '%s' refers to non-existing column '%s'.
'''
["ddl:3822"]
error = '''
Duplicate check constraint name '%s'.
'''
["ddl:3823"]
error = '''
Column '%s' cannot be used in a check constraint '%s': needed in a foreign key constraint referential action.
'''
["ddl:3837"]
error = '''
Column '%s' has an expression index dependency and cannot be dropped or renamed
'''
["ddl:3855"]
error = '''
Column '%s' has a partitioning function dependency and cannot be dropped or renamed
'''
["ddl:3940"]
error = '''
Constraint '%s' does not exist.
'''
["ddl:3959"]
error = '''
Check constraint '%s' uses column '%s', hence column cannot be dropped or renamed.
'''
["ddl:4135"]
error = '''
Sequence '%-.64s.%-.64s' has run out
'''
["ddl:4136"]
error = '''
Sequence '%-.64s.%-.64s' values are conflicting
'''
["ddl:4137"]
error = '''
Sequence '%-.64s.%-.64s' access error
'''
["ddl:4138"]
error = '''
'%-.64s.%-.64s' is not a SEQUENCE
'''
["ddl:4139"]
error = '''
Unknown SEQUENCE: '%-.300s'
'''
["ddl:8006"]
error = '''
`%s` is unsupported on temporary tables.
'''
["ddl:8148"]
error = '''
Field '%-.192s' is of a not supported type for TTL config, expect DATETIME, DATE or TIMESTAMP
'''
["ddl:8149"]
error = '''
Cannot drop column '%-.192s': needed in TTL config
'''
["ddl:8150"]
error = '''
Cannot set %s on a table without TTL config
'''
["ddl:8151"]
error = '''
Set TTL for temporary table is not allowed
'''
["ddl:8152"]
error = '''
Set TTL for a table referenced by foreign key is not allowed
'''
["ddl:8153"]
error = '''
Unsupported clustered primary key type FLOAT/DOUBLE for TTL
'''
["ddl:8200"]
error = '''
Unsupported tidb_enable_dist_task setting. To utilize distributed task execution, please enable tidb_ddl_enable_fast_reorg first.
'''
["ddl:8201"]
error = '''
TiDB server is not a DDL owner
'''
["ddl:8202"]
error = '''
Cannot decode %s value, because %v
'''
["ddl:8203"]
error = '''
Invalid DDL worker
'''
["ddl:8204"]
error = '''
Invalid DDL job
'''
["ddl:8207"]
error = '''
Invalid storage current version: %d
'''
["ddl:8210"]
error = '''
Invalid %!s(MISSING) state: %!v(MISSING)
'''
["ddl:8211"]
error = '''
Reorg worker panic
'''
["ddl:8212"]
error = '''
Failed to split region ranges: %s
'''
["ddl:8213"]
error = '''
Version %d of DDL job is greater than current one: %d
'''
["ddl:8214"]
error = '''
Cancelled DDL job
'''
["ddl:8215"]
error = '''
Failed to repair table: %s
'''
["ddl:8216"]
error = '''
Invalid auto random: %s
'''
["ddl:8224"]
error = '''
DDL Job:%v not found
'''
["ddl:8225"]
error = '''
This job:%v is finished, so can't be cancelled
'''
["ddl:8226"]
error = '''
This job:%v is almost finished, can't be cancelled now
'''
["ddl:8227"]
error = '''
Unsupported sequence table-option %s
'''
["ddl:8228"]
error = '''
Unsupported sequence default value for column type '%s'
'''
["ddl:8230"]
error = '''
Unsupported using sequence as default value in add column '%s'
'''
["ddl:8231"]
error = '''
%s is not supported
'''
["ddl:8232"]
error = '''
CREATE/ALTER table with union option is not supported
'''
["ddl:8233"]
error = '''
CREATE/ALTER table with insert method option is not supported
'''
["ddl:8236"]
error = '''
Placement policy didn't meet the constraint, reason: %s
'''
["ddl:8237"]
error = '''
Invalid attributes: %s
'''
["ddl:8240"]
error = '''
Placement policy '%s' can't co-exist with direct placement options
'''
["ddl:8241"]
error = '''
Placement policy '%-.192s' is still in use
'''
["ddl:8242"]
error = '''
'%s' is unsupported on cache tables.
'''
["ddl:8245"]
error = '''
column %s id %d does not exist, this column may have been updated by other DDL ran in parallel
'''
["ddl:8246"]
error = '''
Error happened when %s DDL: %s
'''
["ddl:8247"]
error = '''
Ingest failed: %s
'''
["ddl:8256"]
error = '''
Check ingest environment failed: %s
'''
["ddl:8260"]
error = '''
Job [%v] can't be paused: %s
'''
["ddl:8261"]
error = '''
Job [%v] can't be resumed: %s
'''
["ddl:8262"]
error = '''
Job [%v] has already been paused
'''
["ddl:8263"]
error = '''
The operation is not allowed while the bdr role of this cluster is set to %s.
'''
["domain:8027"]
error = '''
Information schema is out of date: schema failed to update in 1 lease, please make sure TiDB can connect to TiKV
'''
["domain:8028"]
error = '''
Information schema is changed during the execution of the statement(for example, table definition may be updated by other DDL ran in parallel). If you see this error often, try increasing `tidb_max_delta_schema_count`. [try again later]
'''
["domain:8243"]
error = '''
HTTP request failed with status %s
'''
["domain:9009"]
error = '''
Prometheus address is not set in PD and etcd
'''
["executor:1044"]
error = '''
Access denied for user '%-.48s'@'%-.255s' to database '%-.192s'
'''
["executor:1049"]
error = '''
Unknown database '%-.192s'
'''
["executor:1133"]
error = '''
Can't find any matching row in the user table
'''
["executor:1142"]
error = '''
%-.128s command denied to user '%-.48s'@'%-.255s' for table '%-.64s'
'''
["executor:1144"]
error = '''
Illegal GRANT/REVOKE command; please consult the manual to see which privileges can be used
'''
["executor:1213"]
error = '''
Deadlock found when trying to get lock; try restarting transaction
'''
["executor:1221"]
error = '''
Incorrect usage of %s and %s
'''
["executor:1235"]
error = '''
%-.32s is not supported. To enable this experimental feature, set '%-.32s' in the configuration file.
'''
["executor:1242"]
error = '''
Subquery returns more than 1 row
'''
["executor:1261"]
error = '''
Row %d doesn't contain data for all columns
'''
["executor:1262"]
error = '''
Row %d was truncated; it contained more data than there were input columns
'''
["executor:1263"]
error = '''
Column set to default value; NULL supplied to NOT NULL column '%s' at row %d
'''
["executor:1295"]
error = '''
This command is not supported in the prepared statement protocol yet
'''
["executor:1305"]
error = '''
%s %s does not exist
'''
["executor:1317"]
error = '''
Query execution was interrupted
'''
["executor:1347"]
error = '''
'%-.192s.%-.192s' is not %s
'''
["executor:1356"]
error = '''
View '%-.192s.%-.192s' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
'''
["executor:1390"]
error = '''
Prepared statement contains too many placeholders
'''
["executor:1396"]
error = '''
Operation %s failed for %.256s
'''
["executor:1410"]
error = '''
You are not allowed to create a user with GRANT
'''
["executor:1524"]
error = '''
Plugin '%-.192s' is not loaded
'''
["executor:1568"]
error = '''
Transaction characteristics can't be changed while a transaction is in progress
'''
["executor:1699"]
error = '''
SET PASSWORD has no significance for user '%-.48s'@'%-.255s' as authentication plugin does not support it.
'''
["executor:1819"]
error = '''
Your password does not satisfy the current policy requirements (%s)
'''
["executor:1820"]
error = '''
You must reset your password using ALTER USER statement before executing this statement
'''
["executor:1827"]
error = '''
The password hash doesn't have the expected format. Check if the correct password algorithm is being used with the PASSWORD() function.
'''
["executor:3008"]
error = '''
Foreign key cascade delete/update exceeds max depth of %v.
'''
["executor:3016"]
error = '''
The password for anonymous user cannot be expired.
'''
["executor:3024"]
error = '''
Query execution was interrupted, maximum statement execution time exceeded
'''
["executor:3523"]
error = '''
Unknown authorization ID %.256s
'''
["executor:3619"]
error = '''
Illegal privilege level specified for %s
'''
["executor:3636"]
error = '''
Recursive query aborted after %d iterations. Try increasing @@cte_max_recursion_depth to a larger value
'''
["executor:3638"]
error = '''
Cannot use these credentials for '%s@%s' because they contradict the password history policy.
'''
["executor:3929"]
error = '''
Dynamic privilege '%s' is not registered with the server.
'''
["executor:8003"]
error = '''
TiDB admin check table failed.
'''
["executor:8068"]
error = '''
Load data: unmatched columns
'''
["executor:8114"]
error = '''
Unknown plan
'''
["executor:8115"]
error = '''
Can not prepare multiple statements
'''
["executor:8116"]
error = '''
Can not prepare DDL statements with parameters
'''
["executor:8117"]
error = '''
Result is empty
'''
["executor:8118"]
error = '''
Failed to build executor
'''
["executor:8119"]
error = '''
Batch insert failed, please clean the table and try again.
'''
["executor:8120"]
error = '''
Can not get start ts
'''
["executor:8124"]
error = '''
Backup failed: %s
'''
["executor:8125"]
error = '''
Restore failed: %s
'''
["executor:8126"]
error = '''
Import failed: %s
'''
["executor:8127"]
error = '''
Export failed: %s
'''
["executor:8133"]
error = '''
data inconsistency in table: %s, index: %s, index-count:%d != record-count:%d
'''
["executor:8134"]
error = '''
data inconsistency in table: %s, index: %s, col: %s, handle: %#v, index-values:%#v != record-values:%#v, compare err:%#v
'''
["executor:8142"]
error = '''
modifying %s will require SET GLOBAL in a future version of TiDB
'''
["executor:8144"]
error = '''
setting %s has no effect in TiDB
'''
["executor:8147"]
error = '''
transaction aborted because lazy uniqueness check is enabled and an error occurred: %s
'''
["executor:8154"]
error = '''
Don't support load data from tidb-server's disk. Or if you want to load local data via client, the path of INFILE '%s' needs to specify the clause of LOCAL first
'''
["executor:8155"]
error = '''
Do not support loading parquet files from local. Please try to load the parquet files from the cloud storage
'''
["executor:8156"]
error = '''
The value of INFILE must not be empty when LOAD DATA from LOCAL
'''
["executor:8157"]
error = '''
The FORMAT '%s' is not supported
'''
["executor:8158"]
error = '''
The URI of %s is invalid. Reason: %s. Please provide a valid URI, such as 's3://import/test.csv?access-key={your_access_key_id ID}&secret-access-key={your_secret_access_key}&session-token={your_session_token}'
'''
["executor:8159"]
error = '''
Access to the %s has been denied. Reason: %s. Please check the URI, access key and secret access key are correct
'''
["executor:8160"]
error = '''
Failed to read source files. Reason: %s. %s
'''
["executor:8162"]
error = '''
'''
["executor:8163"]
error = '''
Unknown option %s
'''
["executor:8164"]
error = '''
Invalid option value for %s
'''
["executor:8165"]
error = '''
Option %s specified more than once
'''
["executor:8166"]
error = '''
Unsupported option %s for %s
'''
["executor:8170"]
error = '''
Job ID %d doesn't exist
'''
["executor:8171"]
error = '''
The current job status cannot perform the operation. %s
'''
["executor:8172"]
error = '''
Unsupported option for LOAD DATA LOCAL INFILE: %s
'''
["executor:8173"]
error = '''
PreCheck failed: %s
'''
["executor:8174"]
error = '''
BRIE Job %d not found
'''
["executor:8175"]
error = '''
Your query has been cancelled due to exceeding the allowed memory limit for a single SQL query. Please try narrowing your query scope or increase the tidb_mem_quota_query limit and try again.[conn=%d]
'''
["executor:8176"]
error = '''
Your query has been cancelled due to exceeding the allowed memory limit for the tidb-server instance and this query is currently using the most memory. Please try narrowing your query scope or increase the tidb_server_memory_limit and try again.[conn=%d]
'''
["executor:8212"]
error = '''
Failed to split region ranges: %s
'''
["executor:8253"]
error = '''
Query execution was interrupted, identified as runaway query
'''
["executor:8254"]
error = '''
Quarantined and interrupted because of being in runaway watch list
'''
["executor:8255"]
error = '''
Unknown background task name '%-.192s'
'''
["expression:1139"]
error = '''
Got error '%-.64s' from regexp
'''
["expression:1235"]
error = '''
function %s has only noop implementation in tidb now, use tidb_enable_noop_functions to enable these functions
'''
["expression:1241"]
error = '''
Operand should contain %d column(s)
'''
["expression:1260"]
error = '''
Some rows were cut by GROUPCONCAT(%s)
'''
["expression:1267"]
error = '''
Illegal mix of collations (%s,%s) and (%s,%s) for operation '%s'
'''
["expression:1270"]
error = '''
Illegal mix of collations (%s,%s), (%s,%s), (%s,%s) for operation '%s'
'''
["expression:1271"]
error = '''
Illegal mix of collations for operation '%s'
'''
["expression:1305"]
error = '''
%s %s does not exist
'''
["expression:1365"]
error = '''
Division by 0
'''
["expression:1426"]
error = '''
Too big precision %d specified for column '%-.192s'. Maximum is %d.
'''
["expression:1582"]
error = '''
Incorrect parameter count in the call to native function '%-.192s'
'''
["expression:3020"]
error = '''
Invalid argument for logarithm
'''
["expression:3064"]
error = '''
Incorrect type for argument %s in function %s.
'''
["expression:3146"]
error = '''
Invalid data type for JSON data in argument %d to function %s; a JSON string or JSON type is required.
'''
["expression:3752"]
error = '''
Value is out of range for expression index '%s' at row %d
'''
["expression:3903"]
error = '''
Invalid JSON value for CAST for expression index '%s'
'''
["expression:3907"]
error = '''
Data too long for expression index '%s'
'''
["expression:8128"]
error = '''
Invalid TABLESAMPLE: %s
'''
["json:3069"]
error = '''
Invalid JSON data provided to function %s: %s
'''
["json:3140"]
error = '''
Invalid JSON text: %-.192s
'''
["json:3143"]
error = '''
Invalid JSON path expression. The error is around character position %d.
'''
["json:3144"]
error = '''
Cannot create a JSON value from a string with CHARACTER SET '%s'.
'''
["json:3149"]
error = '''
In this situation, path expressions may not contain the * and ** tokens or range selection.
'''
["json:3150"]
error = '''
The second argument can only be either 'one' or 'all'.
'''
["json:3157"]
error = '''
The JSON document exceeds the maximum depth.
'''
["json:3158"]
error = '''
JSON documents may not contain NULL member names.
'''
["json:3165"]
error = '''
A path expression is not a path to a cell in an array.
'''
["json:8067"]
error = '''
JSON_OBJECTAGG: unsupported second argument type %v
'''
["kv:1062"]
error = '''
Duplicate entry '%-.64s' for key '%-.192s'
'''
["kv:8004"]
error = '''
Transaction is too large, size: %d
'''
["kv:8005"]
error = '''
Write conflict, txnStartTS %d is stale [try again later]
'''
["kv:8021"]
error = '''
Error: key not exist
'''
["kv:8022"]
error = '''
Error: KV error safe to retry %s [try again later]
'''
["kv:8023"]
error = '''
can not set nil value
'''
["kv:8024"]
error = '''
invalid transaction
'''
["kv:8025"]
error = '''
entry too large, the max entry size is %d, the size of data is %d
'''
["kv:8026"]
error = '''
not implemented
'''
["kv:9007"]
error = '''
Write conflict, txnStartTS=%d, conflictStartTS=%d, conflictCommitTS=%d, key=%s%s%s%s, reason=%s [try again later]
'''
["meta:1007"]
error = '''
Can't create database '%-.192s'; database exists
'''
["meta:1049"]
error = '''
Unknown database '%-.192s'
'''
["meta:1050"]
error = '''
Table '%-.192s' already exists
'''
["meta:1146"]
error = '''
Table '%-.192s.%-.192s' doesn't exist
'''
["meta:1300"]
error = '''
Invalid %s character string: '%.64s'
'''
["meta:8235"]
error = '''
DDL reorg element does not exist
'''
["meta:8238"]
error = '''
Placement policy '%-.192s' already exists
'''
["meta:8239"]
error = '''
Unknown placement policy '%-.192s'
'''
["meta:8248"]
error = '''
Resource group '%-.192s' already exists
'''
["meta:8249"]
error = '''
Unknown resource group '%-.192s'
'''
["planner:1044"]
error = '''
Access denied for user '%-.48s'@'%-.255s' to database '%-.192s'
'''
["planner:1045"]
error = '''
Access denied for user '%-.48s'@'%-.255s'
'''
["planner:1046"]
error = '''
No database selected
'''
["planner:1048"]
error = '''
Column '%-.192s' cannot be null
'''
["planner:1051"]
error = '''
Unknown table '%-.100s'
'''
["planner:1052"]
error = '''
Column '%-.192s' in %-.192s is ambiguous
'''
["planner:1054"]
error = '''
Unknown column '%-.192s' in '%-.192s'
'''
["planner:1055"]
error = '''
Expression #%d of %s is not in GROUP BY clause and contains nonaggregated column '%s' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
'''
["planner:1056"]
error = '''
Can't group on '%-.192s'
'''
["planner:1060"]
error = '''
Duplicate column name '%-.192s'
'''
["planner:1066"]
error = '''
Not unique table/alias: '%-.192s'
'''
["planner:1094"]
error = '''
Unknown thread id: %d
'''
["planner:1105"]
error = '''
Unknown error
'''
["planner:1109"]
error = '''
Unknown table '%-.192s' in %-.32s
'''
["planner:1111"]
error = '''
Invalid use of group function
'''
["planner:1136"]
error = '''
Column count doesn't match value count at row %d
'''
["planner:1142"]
error = '''
%-.128s command denied to user '%-.48s'@'%-.255s' for table '%-.64s'
'''
["planner:1146"]
error = '''
Table '%-.192s.%-.192s' doesn't exist
'''
["planner:1176"]
error = '''
Key '%-.192s' doesn't exist in table '%-.192s'
'''
["planner:1210"]
error = '''
Incorrect arguments to %s
'''
["planner:1221"]
error = '''
Incorrect usage of %s and %s
'''
["planner:1222"]
error = '''
The used SELECT statements have a different number of columns
'''
["planner:1227"]
error = '''
Access denied; you need (at least one of) the %-.128s privilege(s) for this operation
'''
["planner:1235"]
error = '''
This version of TiDB doesn't yet support '%s'
'''
["planner:1241"]
error = '''
Operand should contain %d column(s)
'''
["planner:1242"]
error = '''
Subquery returns more than 1 row
'''
["planner:1247"]
error = '''
Reference '%-.64s' not supported (%s)
'''
["planner:1250"]
error = '''
Table '%s' from one of the %ss cannot be used in %s
'''
["planner:1288"]
error = '''
The target table %-.100s of the %s is not updatable
'''
["planner:1345"]
error = '''
EXPLAIN/SHOW can not be issued; lacking privileges for underlying table
'''
["planner:1352"]
error = '''
View's SELECT refers to a temporary table '%-.192s'
'''
["planner:1356"]
error = '''
View '%-.192s.%-.192s' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
'''
["planner:1391"]
error = '''
Key part '%-.192s' length cannot be 0
'''
["planner:1451"]
error = '''
Cannot delete or update a parent row: a foreign key constraint fails (%.192s)
'''
["planner:1452"]
error = '''
Cannot add or update a child row: a foreign key constraint fails (%.192s)
'''
["planner:1462"]
error = '''
`%-.192s`.`%-.192s` contains view recursion
'''
["planner:1562"]
error = '''
Cannot create temporary table with partitions
'''
["planner:1706"]
error = '''
Primary key/partition key update is not allowed since the table is updated both as '%-.192s' and '%-.192s'.
'''
["planner:1747"]
error = '''
PARTITION () clause on non partitioned table
'''
["planner:1791"]
error = '''
Unknown EXPLAIN format name: '%s'
'''
["planner:1815"]
error = '''
Internal : %s
'''
["planner:1836"]
error = '''
Running in read-only mode
'''
["planner:3029"]
error = '''
Expression #%d of ORDER BY contains aggregate function and applies to the result of a non-aggregated query
'''
["planner:3065"]
error = '''
Expression #%d of ORDER BY clause is not in SELECT list, references column '%s' which is not in SELECT list; this is incompatible with %s
'''
["planner:3066"]
error = '''
Expression #%d of ORDER BY clause is not in SELECT list, contains aggregate function; this is incompatible with %s
'''
["planner:3105"]
error = '''
The value specified for generated column '%s' in table '%s' is not allowed.
'''
["planner:3106"]
error = '''
'%s' is not supported for generated columns.
'''
["planner:3126"]
error = '''
Hint %s is ignored as conflicting/duplicated.
'''
["planner:3128"]
error = '''
Unresolved name '%s' for %s hint
'''
["planner:3573"]
error = '''
Recursive Common Table Expression '%s' should contain a UNION
'''
["planner:3574"]
error = '''
Recursive Common Table Expression '%s' should have one or more non-recursive query blocks followed by one or more recursive ones
'''
["planner:3575"]
error = '''
Recursive Common Table Expression '%s' can contain neither aggregation nor window functions in recursive query block
'''
["planner:3576"]
error = '''
In recursive query block of Recursive Common Table Expression '%s', the recursive table must neither be in the right argument of a LEFT JOIN, nor be forced to be non-first with join order hints
'''
["planner:3577"]
error = '''
In recursive query block of Recursive Common Table Expression '%s', the recursive table must be referenced only once, and not in any subquery
'''
["planner:3579"]
error = '''
Window name '%s' is not defined.
'''
["planner:3580"]
error = '''
There is a circularity in the window dependency graph.
'''
["planner:3581"]
error = '''
A window which depends on another cannot define partitioning.
'''
["planner:3582"]
error = '''
Window '%s' has a frame definition, so cannot be referenced by another window.
'''
["planner:3583"]
error = '''
Window '%s' cannot inherit '%s' since both contain an ORDER BY clause.
'''
["planner:3584"]
error = '''
Window '%s': frame start cannot be UNBOUNDED FOLLOWING.
'''
["planner:3585"]
error = '''
Window '%s': frame end cannot be UNBOUNDED PRECEDING.
'''
["planner:3586"]
error = '''
Window '%s': frame start or end is negative, NULL or of non-integral type
'''
["planner:3587"]
error = '''
Window '%s' with RANGE N PRECEDING/FOLLOWING frame requires exactly one ORDER BY expression, of numeric or temporal type
'''
["planner:3588"]
error = '''
Window '%s' with RANGE frame has ORDER BY expression of datetime type. Only INTERVAL bound value allowed.
'''
["planner:3589"]
error = '''
Window '%s' with RANGE frame has ORDER BY expression of numeric type, INTERVAL bound value not allowed.
'''
["planner:3590"]
error = '''
Window '%s' has a non-constant frame bound.
'''
["planner:3591"]
error = '''
Window '%s' is defined twice.
'''
["planner:3593"]
error = '''
You cannot use the window function '%s' in this context.'
'''
["planner:3594"]
error = '''
You cannot use the alias '%s' of an expression containing a window function in this context.'
'''
["planner:3596"]
error = '''
Window '%s': INTERVAL can only be used with RANGE frames.
'''
["planner:3599"]
error = '''
Window function '%s' ignores the frame clause of window '%s' and aggregates over the whole partition
'''
["planner:3601"]
error = '''
Too many arguments for function %s; maximum allowed is %d
'''
["planner:3602"]
error = '''
Argument %s of GROUPING function is not in GROUP BY
'''
["planner:3637"]
error = '''
Variable '%s' might not be affected by SET_VAR hint.
'''
["planner:8006"]
error = '''
`%s` is unsupported on temporary tables.
'''
["planner:8007"]
error = '''
`drop global temporary table` can only drop global temporary table
'''
["planner:8108"]
error = '''
Unsupported type %T
'''
["planner:8109"]
error = '''
Index '%s' in field list does not exist in table '%s'
'''
["planner:8110"]
error = '''
Cartesian product is unsupported
'''
["planner:8111"]
error = '''
Prepared statement not found
'''
["planner:8112"]
error = '''
Wrong parameter count
'''
["planner:8113"]
error = '''
Schema has changed
'''
["planner:8121"]
error = '''
privilege check for '%s' fail
'''
["planner:8122"]
error = '''
Wildcard fields without any table name appears in wrong place
'''
["planner:8123"]
error = '''
In aggregated query without GROUP BY, expression #%d of SELECT list contains nonaggregated column '%s'; this is incompatible with sql_mode=only_full_group_by
'''
["planner:8132"]
error = '''
Feature '%s' is not supported when security enhanced mode is enabled
'''
["planner:8135"]
error = '''
invalid as of timestamp: %s
'''
["planner:8137"]
error = '''
Column '%s' in ANALYZE column option does not exist in table '%s'
'''
["planner:8145"]
error = '''
variable %s has no effect in TiDB
'''
["planner:8242"]
error = '''
'%s' is unsupported on cache tables.
'''
["privilege:1045"]
error = '''
Access denied for user '%-.48s'@'%-.255s' (using password: %s)
'''
["privilege:1141"]
error = '''
There is no such grant defined for user '%-.48s' on host '%-.255s'
'''
["privilege:1862"]
error = '''
Your password has expired. To log in you must change it using a client that supports expired passwords.
'''
["privilege:3530"]
error = '''
%s is not granted to %s
'''
["schema:1007"]
error = '''
Can't create database '%-.192s'; database exists
'''
["schema:1008"]
error = '''
Can't drop database '%-.192s'; database doesn't exist
'''
["schema:1045"]
error = '''
Access denied for user '%-.48s'@'%-.255s' (using password: %s)
'''
["schema:1049"]
error = '''
Unknown database '%-.192s'
'''
["schema:1050"]
error = '''
Table '%-.192s' already exists
'''
["schema:1051"]
error = '''
Unknown table '%-.100s'
'''
["schema:1054"]
error = '''
Unknown column '%-.192s' in '%-.192s'
'''
["schema:1060"]
error = '''
Duplicate column name '%-.192s'
'''
["schema:1061"]
error = '''
Duplicate key name '%-.192s'
'''
["schema:1066"]
error = '''
Not unique table/alias: '%-.192s'
'''
["schema:1068"]
error = '''
Multiple primary key defined
'''
["schema:1070"]
error = '''
Too many key parts specified; max %d parts allowed
'''
["schema:1091"]
error = '''
Can't DROP '%-.192s'; check that column/key exists
'''
["schema:1099"]
error = '''
Table '%-.192s' was locked with a READ lock and can't be updated
'''
["schema:1100"]
error = '''
Table '%-.192s' was not locked with LOCK TABLES
'''
["schema:1146"]
error = '''
Table '%-.192s.%-.192s' doesn't exist
'''
["schema:1176"]
error = '''
Key '%-.192s' doesn't exist in table '%-.192s'
'''
["schema:1215"]
error = '''
Cannot add foreign key constraint
'''
["schema:1239"]
error = '''
Incorrect foreign key definition for '%-.192s': %s
'''
["schema:1347"]
error = '''
'%-.192s.%-.192s' is not %s
'''
["schema:1382"]
error = '''
The '%-.64s' syntax is reserved for purposes internal to the MySQL server
'''
["schema:1450"]
error = '''
Changing schema from '%-.192s' to '%-.192s' is not allowed.
'''
["schema:1506"]
error = '''
Foreign key clause is not yet supported in conjunction with partitioning
'''
["schema:1822"]
error = '''
Failed to add the foreign key constraint. Missing index for constraint '%s' in the referenced table '%s'
'''
["schema:1824"]
error = '''
Failed to open the referenced table '%s'
'''
["schema:1830"]
error = '''
Column '%-.192s' cannot be NOT NULL: needed in a foreign key constraint '%-.192s' SET NULL
'''
["schema:1831"]
error = '''
Duplicate index '%-.64s' defined on the table '%-.64s.%-.64s'. This is deprecated and will be disallowed in a future release.
'''
["schema:3162"]
error = '''
User %s does not exist.
'''
["schema:3163"]
error = '''
User %s already exists.
'''
["schema:3733"]
error = '''
Foreign key '%s' uses virtual column '%s' which is not supported.
'''
["schema:3734"]
error = '''
Failed to add the foreign key constraint. Missing column '%s' for constraint '%s' in the referenced table '%s'
'''
["schema:3750"]
error = '''
Unable to create or change a table without a primary key, when the system variable 'sql_require_primary_key' is set. Add a primary key to the table or unset this variable to avoid this message. Note that tables without a primary key can cause performance problems in row-based replication, so please consult your DBA before changing this setting.
'''
["schema:3822"]
error = '''
Duplicate check constraint name '%s'.
'''
["schema:4139"]
error = '''
Unknown SEQUENCE: '%-.300s'
'''
["schema:8003"]
error = '''
TiDB admin check table failed.
'''
["schema:8020"]
error = '''
Table '%s' was locked in %s by %v
'''
["schema:8238"]
error = '''
Placement policy '%-.192s' already exists
'''
["schema:8239"]
error = '''
Unknown placement policy '%-.192s'
'''
["schema:8248"]
error = '''
Resource group '%-.192s' already exists
'''
["schema:8249"]
error = '''
Unknown resource group '%-.192s'
'''
["schema:8250"]
error = '''
Resource control feature is disabled. Run `SET GLOBAL tidb_enable_resource_control='on'` to enable the feature
'''
["server:1040"]
error = '''
Too many connections
'''
["server:1045"]
error = '''
Access denied for user '%-.48s'@'%-.255s' (using password: %s)
'''
["server:1148"]
error = '''
The used command is not allowed with this MySQL version
'''
["server:1153"]
error = '''
Got a packet bigger than 'max_allowed_packet' bytes
'''
["server:1184"]
error = '''
Aborted connection %d to db: '%-.192s' user: '%-.48s' host: '%-.255s' (%-.64s)
'''
["server:1251"]
error = '''
Client does not support authentication protocol requested by server; consider upgrading MySQL client
'''
["server:1698"]
error = '''
Access denied for user '%-.48s'@'%-.255s'
'''
["server:1820"]
error = '''
You must reset your password using ALTER USER statement before executing this statement
'''
["server:3159"]
error = '''
Connections using insecure transport are prohibited while --require_secure_transport=ON.
'''
["server:8052"]
error = '''
invalid sequence
'''
["server:8057"]
error = '''
invalid type
'''
["server:8130"]
error = '''
client has multi-statement capability disabled. Run SET GLOBAL tidb_multi_statement_mode='ON' after you understand the security risk
'''
["session:8002"]
error = '''
[%d] can not retry select for update statement
'''
["session:8143"]
error = '''
non-transactional job failed, job id: %d, total jobs: %d. job range: [%s, %s], job sql: %s, err: %v
'''
["session:8146"]
error = '''
cannot migrate the current session: %s
'''
["structure:8217"]
error = '''
invalid encoded hash key flag
'''
["structure:8218"]
error = '''
invalid list index
'''
["structure:8219"]
error = '''
invalid list meta data
'''
["structure:8220"]
error = '''
write on snapshot
'''
["table:1048"]
error = '''
Column '%-.192s' cannot be null
'''
["table:1054"]
error = '''
Unknown column '%-.192s' in '%-.192s'
'''
["table:1114"]
error = '''
The table '%-.192s' is full
'''
["table:1192"]
error = '''
Can't execute the given command because you have active locked tables or an active transaction
'''
["table:1292"]
error = '''
Incorrect %-.32s value: '%-.128s' for column '%.192s' at row %d
'''
["table:1364"]
error = '''
Field '%-.192s' doesn't have a default value
'''
["table:1366"]
error = '''
Incorrect %-.32s value: '%-.128s' for column '%.192s' at row %d
'''
["table:1526"]
error = '''
Table has no partition for value %-.64s
'''
["table:1735"]
error = '''
Unknown partition '%-.64s' in table '%-.64s'
'''
["table:1748"]
error = '''
Found a row not matching the given partition set
'''
["table:3819"]
error = '''
Check constraint '%s' is violated.
'''
["table:4135"]
error = '''
Sequence '%-.64s.%-.64s' has run out
'''
["table:8039"]
error = '''
Index column %s offset out of bound, offset: %d, row: %v
'''
["table:8040"]
error = '''
operation not supported
'''
["table:8041"]
error = '''
can not find the row: %s
'''
["table:8042"]
error = '''
table %s can't be in none state
'''
["table:8043"]
error = '''
can not use non-public column
'''
["table:8044"]
error = '''
index %s can't be in none state
'''
["table:8045"]
error = '''
invalid record key
'''
["table:8046"]
error = '''
column %s can't be in none state
'''
["table:8138"]
error = '''
writing inconsistent data in table: %s, expected-values:{%s} != record-values:{%s}
'''
["table:8139"]
error = '''
writing inconsistent data in table: %s, index: %s, index-handle:%#v != record-handle:%#v, index: %#v, record: %#v
'''
["table:8140"]
error = '''
writing inconsistent data in table: %s, index: %s, col: %s, indexed-value:{%s} != record-value:{%s}
'''
["tikv:1105"]
error = '''
Unknown error
'''
["tikv:1205"]
error = '''
Lock wait timeout exceeded; try restarting transaction
'''
["tikv:1317"]
error = '''
Query execution was interrupted
'''
["tikv:3572"]
error = '''
Statement aborted because lock(s) could not be acquired immediately and NOWAIT is set.
'''
["tikv:8141"]
error = '''
assertion failed: key: %s, assertion: %s, start_ts: %v, existing start ts: %v, existing commit ts: %v
'''
["tikv:8229"]
error = '''
TTL manager has timed out, pessimistic locks may expire, please commit or rollback this transaction
'''
["tikv:8249"]
error = '''
Unknown resource group '%-.192s'
'''
["tikv:8251"]
error = '''
Resource group configuration is unavailable
'''
["tikv:8252"]
error = '''
Exceeded resource group quota limitation
'''
["tikv:9001"]
error = '''
PD server timeout: %s
'''
["tikv:9002"]
error = '''
TiKV server timeout
'''
["tikv:9003"]
error = '''
TiKV server is busy
'''
["tikv:9004"]
error = '''
Resolve lock timeout
'''
["tikv:9005"]
error = '''
Region is unavailable
'''
["tikv:9006"]
error = '''
GC life time is shorter than transaction duration, transaction starts at %v, GC safe point is %v
'''
["tikv:9008"]
error = '''
Store token is up to the limit, store id = %d
'''
["tikv:9010"]
error = '''
TiKV server reports stale command
'''
["tikv:9011"]
error = '''
TiKV max timestamp is not synced
'''
["tikv:9012"]
error = '''
TiFlash server timeout
'''
["tikv:9013"]
error = '''
TiFlash server is busy
'''
["types:1063"]
error = '''
Incorrect column specifier for column '%-.192s'
'''
["types:1064"]
error = '''
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use
'''
["types:1074"]
error = '''
Column length too big for column '%-.192s' (max = %d); use BLOB or TEXT instead
'''
["types:1097"]
error = '''
Too many strings for column %-.192s and SET
'''
["types:1264"]
error = '''
Out of range value for column '%s' at row %d
'''
["types:1265"]
error = '''
Data truncated for column '%s' at row %d
'''
["types:1291"]
error = '''
Column '%-.100s' has duplicated value '%-.64s' in %s
'''
["types:1292"]
error = '''
Truncated incorrect %-.64s value: '%-.128s'
'''
["types:1365"]
error = '''
Division by 0
'''
["types:1367"]
error = '''
Illegal %s '%-.192s' value found during parsing
'''
["types:1406"]
error = '''
Data too long for column '%s' at row %d
'''
["types:1411"]
error = '''
Incorrect %-.32s value: '%-.128s' for function %-.32s
'''
["types:1425"]
error = '''
Too big scale %d specified for column '%-.192s'. Maximum is %d.
'''
["types:1426"]
error = '''
Too big precision %d specified for column '%-.192s'. Maximum is %d.
'''
["types:1427"]
error = '''
For float(M,D), double(M,D) or decimal(M,D), M must be >= D (column '%-.192s').
'''
["types:1439"]
error = '''
Display width out of range for column '%-.192s' (max = %d)
'''
["types:1441"]
error = '''
Datetime function: %-.32s field overflow
'''
["types:1525"]
error = '''
Incorrect %-.32s value: '%-.128s'
'''
["types:1690"]
error = '''
%s value is out of range in '%s'
'''
["types:3013"]
error = '''
Invalid size for column '%s'.
'''
["types:8029"]
error = '''
Bad Number
'''
["types:8030"]
error = '''
Cast to signed converted positive out-of-range integer to its negative complement
'''
["types:8031"]
error = '''
Cast to unsigned converted negative integer to it's positive complement
'''
["types:8032"]
error = '''
invalid year format
'''
["types:8033"]
error = '''
invalid year
'''
["types:8034"]
error = '''
Incorrect datetime value: '%s'
'''
["types:8037"]
error = '''
invalid week mode format: '%v'
'''
["types:8129"]
error = '''
TiDB does not yet support JSON objects with the key length >= 65536
'''
["types:8131"]
error = '''
Build global-level stats failed due to missing partition-level stats: %s
'''
["types:8244"]
error = '''
Build global-level stats failed due to missing partition-level column stats: %s, please run analyze table to refresh columns of all partitions
'''
["variable:1193"]
error = '''
Unknown system variable '%-.64s'
'''
["variable:1231"]
error = '''
Variable '%-.64s' can't be set to the value of '%-.200s'
'''
["variable:1232"]
error = '''
Incorrect argument type to variable '%-.64s'
'''
["variable:1235"]
error = '''
function %s has only noop implementation in tidb now, use tidb_enable_noop_functions to enable these functions
'''
["variable:1238"]
error = '''
Variable '%-.192s' is a %s variable
'''
["variable:1292"]
error = '''
Truncated incorrect %-.64s value: '%-.128s'
'''
["variable:1298"]
error = '''
Unknown or incorrect time zone: '%-.64s'
'''
["variable:1461"]
error = '''
Can't create more than maxPreparedStmtCount statements (current value: %d)
'''
["variable:1621"]
error = '''
%s variable '%s' is read-only. Use SET %s to assign the value
'''
["variable:1681"]
error = '''
Updating '%s' is deprecated. It will be made read-only in a future release.
'''
["variable:3721"]
error = '''
Invalid default collation %s: utf8mb4_0900_ai_ci or utf8mb4_general_ci or utf8mb4_bin expected
'''
["variable:8047"]
error = '''
variable '%s' does not yet support value: %s
'''
["variable:8048"]
error = '''
The isolation level '%s' is not supported. Set tidb_skip_isolation_level_check=1 to skip this error
'''
["variable:8055"]
error = '''
snapshot is older than GC safe point %s
'''
["variable:8136"]
error = '''
option '%s' is no longer supported. Reason: %s
'''
Go
1
https://gitee.com/pingcap/tidb.git
git@gitee.com:pingcap/tidb.git
pingcap
tidb
tidb
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891