github.com/XiaoMi/Gaea@v1.2.5/mysql/error_code.go (about) 1 // Copyright 2015 PingCAP, Inc. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // See the License for the specific language governing permissions and 12 // limitations under the License. 13 14 package mysql 15 16 // MySQL error code. 17 // This value is numeric. It is not portable to other database systems. 18 const ( 19 ErrErrorFirst uint16 = 1000 20 ErrHashchk = 1000 21 ErrNisamchk = 1001 22 ErrNo = 1002 23 ErrYes = 1003 24 ErrCantCreateFile = 1004 25 ErrCantCreateTable = 1005 26 ErrCantCreateDB = 1006 27 ErrDBCreateExists = 1007 28 ErrDBDropExists = 1008 29 ErrDBDropDelete = 1009 30 ErrDBDropRmdir = 1010 31 ErrCantDeleteFile = 1011 32 ErrCantFindSystemRec = 1012 33 ErrCantGetStat = 1013 34 ErrCantGetWd = 1014 35 ErrCantLock = 1015 36 ErrCantOpenFile = 1016 37 ErrFileNotFound = 1017 38 ErrCantReadDir = 1018 39 ErrCantSetWd = 1019 40 ErrCheckread = 1020 41 ErrDiskFull = 1021 42 ErrDupKey = 1022 43 ErrErrorOnClose = 1023 44 ErrErrorOnRead = 1024 45 ErrErrorOnRename = 1025 46 ErrErrorOnWrite = 1026 47 ErrFileUsed = 1027 48 ErrFilsortAbort = 1028 49 ErrFormNotFound = 1029 50 ErrGetErrno = 1030 51 ErrIllegalHa = 1031 52 ErrKeyNotFound = 1032 53 ErrNotFormFile = 1033 54 ErrNotKeyFile = 1034 55 ErrOldKeyFile = 1035 56 ErrOpenAsReadonly = 1036 57 ErrOutofMemory = 1037 58 ErrOutOfSortMemory = 1038 59 ErrUnexpectedEOF = 1039 60 ErrConCount = 1040 61 ErrOutOfResources = 1041 62 ErrBadHost = 1042 63 ErrHandshake = 1043 64 ErrDBaccessDenied = 1044 65 ErrAccessDenied = 1045 66 ErrNoDB = 1046 67 ErrUnknownCom = 1047 68 ErrBadNull = 1048 69 ErrBadDB = 1049 70 ErrTableExists = 1050 71 ErrBadTable = 1051 72 ErrNonUniq = 1052 73 ErrServerShutdown = 1053 74 ErrBadField = 1054 75 ErrFieldNotInGroupBy = 1055 76 ErrWrongGroupField = 1056 77 ErrWrongSumSelect = 1057 78 ErrWrongValueCount = 1058 79 ErrTooLongIdent = 1059 80 ErrDupFieldName = 1060 81 ErrDupKeyName = 1061 82 ErrDupEntry = 1062 83 ErrWrongFieldSpec = 1063 84 ErrParse = 1064 85 ErrEmptyQuery = 1065 86 ErrNonuniqTable = 1066 87 ErrInvalidDefault = 1067 88 ErrMultiplePriKey = 1068 89 ErrTooManyKeys = 1069 90 ErrTooManyKeyParts = 1070 91 ErrTooLongKey = 1071 92 ErrKeyColumnDoesNotExits = 1072 93 ErrBlobUsedAsKey = 1073 94 ErrTooBigFieldlength = 1074 95 ErrWrongAutoKey = 1075 96 ErrReady = 1076 97 ErrNormalShutdown = 1077 98 ErrGotSignal = 1078 99 ErrShutdownComplete = 1079 100 ErrForcingClose = 1080 101 ErrIpsock = 1081 102 ErrNoSuchIndex = 1082 103 ErrWrongFieldTerminators = 1083 104 ErrBlobsAndNoTerminated = 1084 105 ErrTextFileNotReadable = 1085 106 ErrFileExists = 1086 107 ErrLoadInfo = 1087 108 ErrAlterInfo = 1088 109 ErrWrongSubKey = 1089 110 ErrCantRemoveAllFields = 1090 111 ErrCantDropFieldOrKey = 1091 112 ErrInsertInfo = 1092 113 ErrUpdateTableUsed = 1093 114 ErrNoSuchThread = 1094 115 ErrKillDenied = 1095 116 ErrNoTablesUsed = 1096 117 ErrTooBigSet = 1097 118 ErrNoUniqueLogFile = 1098 119 ErrTableNotLockedForWrite = 1099 120 ErrTableNotLocked = 1100 121 ErrBlobCantHaveDefault = 1101 122 ErrWrongDBName = 1102 123 ErrWrongTableName = 1103 124 ErrTooBigSelect = 1104 125 ErrUnknown = 1105 126 ErrUnknownProcedure = 1106 127 ErrWrongParamcountToProcedure = 1107 128 ErrWrongParametersToProcedure = 1108 129 ErrUnknownTable = 1109 130 ErrFieldSpecifiedTwice = 1110 131 ErrInvalidGroupFuncUse = 1111 132 ErrUnsupportedExtension = 1112 133 ErrTableMustHaveColumns = 1113 134 ErrRecordFileFull = 1114 135 ErrUnknownCharacterSet = 1115 136 ErrTooManyTables = 1116 137 ErrTooManyFields = 1117 138 ErrTooBigRowsize = 1118 139 ErrStackOverrun = 1119 140 ErrWrongOuterJoin = 1120 141 ErrNullColumnInIndex = 1121 142 ErrCantFindUdf = 1122 143 ErrCantInitializeUdf = 1123 144 ErrUdfNoPaths = 1124 145 ErrUdfExists = 1125 146 ErrCantOpenLibrary = 1126 147 ErrCantFindDlEntry = 1127 148 ErrFunctionNotDefined = 1128 149 ErrHostIsBlocked = 1129 150 ErrHostNotPrivileged = 1130 151 ErrPasswordAnonymousUser = 1131 152 ErrPasswordNotAllowed = 1132 153 ErrPasswordNoMatch = 1133 154 ErrUpdateInfo = 1134 155 ErrCantCreateThread = 1135 156 ErrWrongValueCountOnRow = 1136 157 ErrCantReopenTable = 1137 158 ErrInvalidUseOfNull = 1138 159 ErrRegexp = 1139 160 ErrMixOfGroupFuncAndFields = 1140 161 ErrNonexistingGrant = 1141 162 ErrTableaccessDenied = 1142 163 ErrColumnaccessDenied = 1143 164 ErrIllegalGrantForTable = 1144 165 ErrGrantWrongHostOrUser = 1145 166 ErrNoSuchTable = 1146 167 ErrNonexistingTableGrant = 1147 168 ErrNotAllowedCommand = 1148 169 ErrSyntax = 1149 170 ErrDelayedCantChangeLock = 1150 171 ErrTooManyDelayedThreads = 1151 172 ErrAbortingConnection = 1152 173 ErrNetPacketTooLarge = 1153 174 ErrNetReadErrorFromPipe = 1154 175 ErrNetFcntl = 1155 176 ErrNetPacketsOutOfOrder = 1156 177 ErrNetUncompress = 1157 178 ErrNetRead = 1158 179 ErrNetReadInterrupted = 1159 180 ErrNetErrorOnWrite = 1160 181 ErrNetWriteInterrupted = 1161 182 ErrTooLongString = 1162 183 ErrTableCantHandleBlob = 1163 184 ErrTableCantHandleAutoIncrement = 1164 185 ErrDelayedInsertTableLocked = 1165 186 ErrWrongColumnName = 1166 187 ErrWrongKeyColumn = 1167 188 ErrWrongMrgTable = 1168 189 ErrDupUnique = 1169 190 ErrBlobKeyWithoutLength = 1170 191 ErrPrimaryCantHaveNull = 1171 192 ErrTooManyRows = 1172 193 ErrRequiresPrimaryKey = 1173 194 ErrNoRaidCompiled = 1174 195 ErrUpdateWithoutKeyInSafeMode = 1175 196 ErrKeyDoesNotExist = 1176 197 ErrCheckNoSuchTable = 1177 198 ErrCheckNotImplemented = 1178 199 ErrCantDoThisDuringAnTransaction = 1179 200 ErrErrorDuringCommit = 1180 201 ErrErrorDuringRollback = 1181 202 ErrErrorDuringFlushLogs = 1182 203 ErrErrorDuringCheckpoint = 1183 204 ErrNewAbortingConnection = 1184 205 ErrDumpNotImplemented = 1185 206 ErrFlushMasterBinlogClosed = 1186 207 ErrIndexRebuild = 1187 208 ErrMaster = 1188 209 ErrMasterNetRead = 1189 210 ErrMasterNetWrite = 1190 211 ErrFtMatchingKeyNotFound = 1191 212 ErrLockOrActiveTransaction = 1192 213 ErrUnknownSystemVariable = 1193 214 ErrCrashedOnUsage = 1194 215 ErrCrashedOnRepair = 1195 216 ErrWarningNotCompleteRollback = 1196 217 ErrTransCacheFull = 1197 218 ErrSlaveMustStop = 1198 219 ErrSlaveNotRunning = 1199 220 ErrBadSlave = 1200 221 ErrMasterInfo = 1201 222 ErrSlaveThread = 1202 223 ErrTooManyUserConnections = 1203 224 ErrSetConstantsOnly = 1204 225 ErrLockWaitTimeout = 1205 226 ErrLockTableFull = 1206 227 ErrReadOnlyTransaction = 1207 228 ErrDropDBWithReadLock = 1208 229 ErrCreateDBWithReadLock = 1209 230 ErrWrongArguments = 1210 231 ErrNoPermissionToCreateUser = 1211 232 ErrUnionTablesInDifferentDir = 1212 233 ErrLockDeadlock = 1213 234 ErrTableCantHandleFt = 1214 235 ErrCannotAddForeign = 1215 236 ErrNoReferencedRow = 1216 237 ErrRowIsReferenced = 1217 238 ErrConnectToMaster = 1218 239 ErrQueryOnMaster = 1219 240 ErrErrorWhenExecutingCommand = 1220 241 ErrWrongUsage = 1221 242 ErrWrongNumberOfColumnsInSelect = 1222 243 ErrCantUpdateWithReadlock = 1223 244 ErrMixingNotAllowed = 1224 245 ErrDupArgument = 1225 246 ErrUserLimitReached = 1226 247 ErrSpecificAccessDenied = 1227 248 ErrLocalVariable = 1228 249 ErrGlobalVariable = 1229 250 ErrNoDefault = 1230 251 ErrWrongValueForVar = 1231 252 ErrWrongTypeForVar = 1232 253 ErrVarCantBeRead = 1233 254 ErrCantUseOptionHere = 1234 255 ErrNotSupportedYet = 1235 256 ErrMasterFatalErrorReadingBinlog = 1236 257 ErrSlaveIgnoredTable = 1237 258 ErrIncorrectGlobalLocalVar = 1238 259 ErrWrongFkDef = 1239 260 ErrKeyRefDoNotMatchTableRef = 1240 261 ErrOperandColumns = 1241 262 ErrSubqueryNo1Row = 1242 263 ErrUnknownStmtHandler = 1243 264 ErrCorruptHelpDB = 1244 265 ErrCyclicReference = 1245 266 ErrAutoConvert = 1246 267 ErrIllegalReference = 1247 268 ErrDerivedMustHaveAlias = 1248 269 ErrSelectReduced = 1249 270 ErrTablenameNotAllowedHere = 1250 271 ErrNotSupportedAuthMode = 1251 272 ErrSpatialCantHaveNull = 1252 273 ErrCollationCharsetMismatch = 1253 274 ErrSlaveWasRunning = 1254 275 ErrSlaveWasNotRunning = 1255 276 ErrTooBigForUncompress = 1256 277 ErrZlibZMem = 1257 278 ErrZlibZBuf = 1258 279 ErrZlibZData = 1259 280 ErrCutValueGroupConcat = 1260 281 ErrWarnTooFewRecords = 1261 282 ErrWarnTooManyRecords = 1262 283 ErrWarnNullToNotnull = 1263 284 ErrWarnDataOutOfRange = 1264 285 WarnDataTruncated = 1265 286 ErrWarnUsingOtherHandler = 1266 287 ErrCantAggregate2collations = 1267 288 ErrDropUser = 1268 289 ErrRevokeGrants = 1269 290 ErrCantAggregate3collations = 1270 291 ErrCantAggregateNcollations = 1271 292 ErrVariableIsNotStruct = 1272 293 ErrUnknownCollation = 1273 294 ErrSlaveIgnoredSslParams = 1274 295 ErrServerIsInSecureAuthMode = 1275 296 ErrWarnFieldResolved = 1276 297 ErrBadSlaveUntilCond = 1277 298 ErrMissingSkipSlave = 1278 299 ErrUntilCondIgnored = 1279 300 ErrWrongNameForIndex = 1280 301 ErrWrongNameForCatalog = 1281 302 ErrWarnQcResize = 1282 303 ErrBadFtColumn = 1283 304 ErrUnknownKeyCache = 1284 305 ErrWarnHostnameWontWork = 1285 306 ErrUnknownStorageEngine = 1286 307 ErrWarnDeprecatedSyntax = 1287 308 ErrNonUpdatableTable = 1288 309 ErrFeatureDisabled = 1289 310 ErrOptionPreventsStatement = 1290 311 ErrDuplicatedValueInType = 1291 312 ErrTruncatedWrongValue = 1292 313 ErrTooMuchAutoTimestampCols = 1293 314 ErrInvalidOnUpdate = 1294 315 ErrUnsupportedPs = 1295 316 ErrGetErrmsg = 1296 317 ErrGetTemporaryErrmsg = 1297 318 ErrUnknownTimeZone = 1298 319 ErrWarnInvalidTimestamp = 1299 320 ErrInvalidCharacterString = 1300 321 ErrWarnAllowedPacketOverflowed = 1301 322 ErrConflictingDeclarations = 1302 323 ErrSpNoRecursiveCreate = 1303 324 ErrSpAlreadyExists = 1304 325 ErrSpDoesNotExist = 1305 326 ErrSpDropFailed = 1306 327 ErrSpStoreFailed = 1307 328 ErrSpLilabelMismatch = 1308 329 ErrSpLabelRedefine = 1309 330 ErrSpLabelMismatch = 1310 331 ErrSpUninitVar = 1311 332 ErrSpBadselect = 1312 333 ErrSpBadreturn = 1313 334 ErrSpBadstatement = 1314 335 ErrUpdateLogDeprecatedIgnored = 1315 336 ErrUpdateLogDeprecatedTranslated = 1316 337 ErrQueryInterrupted = 1317 338 ErrSpWrongNoOfArgs = 1318 339 ErrSpCondMismatch = 1319 340 ErrSpNoreturn = 1320 341 ErrSpNoreturnend = 1321 342 ErrSpBadCursorQuery = 1322 343 ErrSpBadCursorSelect = 1323 344 ErrSpCursorMismatch = 1324 345 ErrSpCursorAlreadyOpen = 1325 346 ErrSpCursorNotOpen = 1326 347 ErrSpUndeclaredVar = 1327 348 ErrSpWrongNoOfFetchArgs = 1328 349 ErrSpFetchNoData = 1329 350 ErrSpDupParam = 1330 351 ErrSpDupVar = 1331 352 ErrSpDupCond = 1332 353 ErrSpDupCurs = 1333 354 ErrSpCantAlter = 1334 355 ErrSpSubselectNyi = 1335 356 ErrStmtNotAllowedInSfOrTrg = 1336 357 ErrSpVarcondAfterCurshndlr = 1337 358 ErrSpCursorAfterHandler = 1338 359 ErrSpCaseNotFound = 1339 360 ErrFparserTooBigFile = 1340 361 ErrFparserBadHeader = 1341 362 ErrFparserEOFInComment = 1342 363 ErrFparserErrorInParameter = 1343 364 ErrFparserEOFInUnknownParameter = 1344 365 ErrViewNoExplain = 1345 366 ErrFrmUnknownType = 1346 367 ErrWrongObject = 1347 368 ErrNonupdateableColumn = 1348 369 ErrViewSelectDerived = 1349 370 ErrViewSelectClause = 1350 371 ErrViewSelectVariable = 1351 372 ErrViewSelectTmptable = 1352 373 ErrViewWrongList = 1353 374 ErrWarnViewMerge = 1354 375 ErrWarnViewWithoutKey = 1355 376 ErrViewInvalid = 1356 377 ErrSpNoDropSp = 1357 378 ErrSpGotoInHndlr = 1358 379 ErrTrgAlreadyExists = 1359 380 ErrTrgDoesNotExist = 1360 381 ErrTrgOnViewOrTempTable = 1361 382 ErrTrgCantChangeRow = 1362 383 ErrTrgNoSuchRowInTrg = 1363 384 ErrNoDefaultForField = 1364 385 ErrDivisionByZero = 1365 386 ErrTruncatedWrongValueForField = 1366 387 ErrIllegalValueForType = 1367 388 ErrViewNonupdCheck = 1368 389 ErrViewCheckFailed = 1369 390 ErrProcaccessDenied = 1370 391 ErrRelayLogFail = 1371 392 ErrPasswdLength = 1372 393 ErrUnknownTargetBinlog = 1373 394 ErrIoErrLogIndexRead = 1374 395 ErrBinlogPurgeProhibited = 1375 396 ErrFseekFail = 1376 397 ErrBinlogPurgeFatalErr = 1377 398 ErrLogInUse = 1378 399 ErrLogPurgeUnknownErr = 1379 400 ErrRelayLogInit = 1380 401 ErrNoBinaryLogging = 1381 402 ErrReservedSyntax = 1382 403 ErrWsasFailed = 1383 404 ErrDiffGroupsProc = 1384 405 ErrNoGroupForProc = 1385 406 ErrOrderWithProc = 1386 407 ErrLoggingProhibitChangingOf = 1387 408 ErrNoFileMapping = 1388 409 ErrWrongMagic = 1389 410 ErrPsManyParam = 1390 411 ErrKeyPart0 = 1391 412 ErrViewChecksum = 1392 413 ErrViewMultiupdate = 1393 414 ErrViewNoInsertFieldList = 1394 415 ErrViewDeleteMergeView = 1395 416 ErrCannotUser = 1396 417 ErrXaerNota = 1397 418 ErrXaerInval = 1398 419 ErrXaerRmfail = 1399 420 ErrXaerOutside = 1400 421 ErrXaerRmerr = 1401 422 ErrXaRbrollback = 1402 423 ErrNonexistingProcGrant = 1403 424 ErrProcAutoGrantFail = 1404 425 ErrProcAutoRevokeFail = 1405 426 ErrDataTooLong = 1406 427 ErrSpBadSQLstate = 1407 428 ErrStartup = 1408 429 ErrLoadFromFixedSizeRowsToVar = 1409 430 ErrCantCreateUserWithGrant = 1410 431 ErrWrongValueForType = 1411 432 ErrTableDefChanged = 1412 433 ErrSpDupHandler = 1413 434 ErrSpNotVarArg = 1414 435 ErrSpNoRetset = 1415 436 ErrCantCreateGeometryObject = 1416 437 ErrFailedRoutineBreakBinlog = 1417 438 ErrBinlogUnsafeRoutine = 1418 439 ErrBinlogCreateRoutineNeedSuper = 1419 440 ErrExecStmtWithOpenCursor = 1420 441 ErrStmtHasNoOpenCursor = 1421 442 ErrCommitNotAllowedInSfOrTrg = 1422 443 ErrNoDefaultForViewField = 1423 444 ErrSpNoRecursion = 1424 445 ErrTooBigScale = 1425 446 ErrTooBigPrecision = 1426 447 ErrMBiggerThanD = 1427 448 ErrWrongLockOfSystemTable = 1428 449 ErrConnectToForeignDataSource = 1429 450 ErrQueryOnForeignDataSource = 1430 451 ErrForeignDataSourceDoesntExist = 1431 452 ErrForeignDataStringInvalidCantCreate = 1432 453 ErrForeignDataStringInvalid = 1433 454 ErrCantCreateFederatedTable = 1434 455 ErrTrgInWrongSchema = 1435 456 ErrStackOverrunNeedMore = 1436 457 ErrTooLongBody = 1437 458 ErrWarnCantDropDefaultKeycache = 1438 459 ErrTooBigDisplaywidth = 1439 460 ErrXaerDupid = 1440 461 ErrDatetimeFunctionOverflow = 1441 462 ErrCantUpdateUsedTableInSfOrTrg = 1442 463 ErrViewPreventUpdate = 1443 464 ErrPsNoRecursion = 1444 465 ErrSpCantSetAutocommit = 1445 466 ErrMalformedDefiner = 1446 467 ErrViewFrmNoUser = 1447 468 ErrViewOtherUser = 1448 469 ErrNoSuchUser = 1449 470 ErrForbidSchemaChange = 1450 471 ErrRowIsReferenced2 = 1451 472 ErrNoReferencedRow2 = 1452 473 ErrSpBadVarShadow = 1453 474 ErrTrgNoDefiner = 1454 475 ErrOldFileFormat = 1455 476 ErrSpRecursionLimit = 1456 477 ErrSpProcTableCorrupt = 1457 478 ErrSpWrongName = 1458 479 ErrTableNeedsUpgrade = 1459 480 ErrSpNoAggregate = 1460 481 ErrMaxPreparedStmtCountReached = 1461 482 ErrViewRecursive = 1462 483 ErrNonGroupingFieldUsed = 1463 484 ErrTableCantHandleSpkeys = 1464 485 ErrNoTriggersOnSystemSchema = 1465 486 ErrRemovedSpaces = 1466 487 ErrAutoincReadFailed = 1467 488 ErrUsername = 1468 489 ErrHostname = 1469 490 ErrWrongStringLength = 1470 491 ErrNonInsertableTable = 1471 492 ErrAdminWrongMrgTable = 1472 493 ErrTooHighLevelOfNestingForSelect = 1473 494 ErrNameBecomesEmpty = 1474 495 ErrAmbiguousFieldTerm = 1475 496 ErrForeignServerExists = 1476 497 ErrForeignServerDoesntExist = 1477 498 ErrIllegalHaCreateOption = 1478 499 ErrPartitionRequiresValues = 1479 500 ErrPartitionWrongValues = 1480 501 ErrPartitionMaxvalue = 1481 502 ErrPartitionSubpartition = 1482 503 ErrPartitionSubpartMix = 1483 504 ErrPartitionWrongNoPart = 1484 505 ErrPartitionWrongNoSubpart = 1485 506 ErrWrongExprInPartitionFunc = 1486 507 ErrNoConstExprInRangeOrList = 1487 508 ErrFieldNotFoundPart = 1488 509 ErrListOfFieldsOnlyInHash = 1489 510 ErrInconsistentPartitionInfo = 1490 511 ErrPartitionFuncNotAllowed = 1491 512 ErrPartitionsMustBeDefined = 1492 513 ErrRangeNotIncreasing = 1493 514 ErrInconsistentTypeOfFunctions = 1494 515 ErrMultipleDefConstInListPart = 1495 516 ErrPartitionEntry = 1496 517 ErrMixHandler = 1497 518 ErrPartitionNotDefined = 1498 519 ErrTooManyPartitions = 1499 520 ErrSubpartition = 1500 521 ErrCantCreateHandlerFile = 1501 522 ErrBlobFieldInPartFunc = 1502 523 ErrUniqueKeyNeedAllFieldsInPf = 1503 524 ErrNoParts = 1504 525 ErrPartitionMgmtOnNonpartitioned = 1505 526 ErrForeignKeyOnPartitioned = 1506 527 ErrDropPartitionNonExistent = 1507 528 ErrDropLastPartition = 1508 529 ErrCoalesceOnlyOnHashPartition = 1509 530 ErrReorgHashOnlyOnSameNo = 1510 531 ErrReorgNoParam = 1511 532 ErrOnlyOnRangeListPartition = 1512 533 ErrAddPartitionSubpart = 1513 534 ErrAddPartitionNoNewPartition = 1514 535 ErrCoalescePartitionNoPartition = 1515 536 ErrReorgPartitionNotExist = 1516 537 ErrSameNamePartition = 1517 538 ErrNoBinlog = 1518 539 ErrConsecutiveReorgPartitions = 1519 540 ErrReorgOutsideRange = 1520 541 ErrPartitionFunctionFailure = 1521 542 ErrPartState = 1522 543 ErrLimitedPartRange = 1523 544 ErrPluginIsNotLoaded = 1524 545 ErrWrongValue = 1525 546 ErrNoPartitionForGivenValue = 1526 547 ErrFilegroupOptionOnlyOnce = 1527 548 ErrCreateFilegroupFailed = 1528 549 ErrDropFilegroupFailed = 1529 550 ErrTablespaceAutoExtend = 1530 551 ErrWrongSizeNumber = 1531 552 ErrSizeOverflow = 1532 553 ErrAlterFilegroupFailed = 1533 554 ErrBinlogRowLoggingFailed = 1534 555 ErrBinlogRowWrongTableDef = 1535 556 ErrBinlogRowRbrToSbr = 1536 557 ErrEventAlreadyExists = 1537 558 ErrEventStoreFailed = 1538 559 ErrEventDoesNotExist = 1539 560 ErrEventCantAlter = 1540 561 ErrEventDropFailed = 1541 562 ErrEventIntervalNotPositiveOrTooBig = 1542 563 ErrEventEndsBeforeStarts = 1543 564 ErrEventExecTimeInThePast = 1544 565 ErrEventOpenTableFailed = 1545 566 ErrEventNeitherMExprNorMAt = 1546 567 ErrObsoleteColCountDoesntMatchCorrupted = 1547 568 ErrObsoleteCannotLoadFromTable = 1548 569 ErrEventCannotDelete = 1549 570 ErrEventCompile = 1550 571 ErrEventSameName = 1551 572 ErrEventDataTooLong = 1552 573 ErrDropIndexFk = 1553 574 ErrWarnDeprecatedSyntaxWithVer = 1554 575 ErrCantWriteLockLogTable = 1555 576 ErrCantLockLogTable = 1556 577 ErrForeignDuplicateKeyOldUnused = 1557 578 ErrColCountDoesntMatchPleaseUpdate = 1558 579 ErrTempTablePreventsSwitchOutOfRbr = 1559 580 ErrStoredFunctionPreventsSwitchBinlogFormat = 1560 581 ErrNdbCantSwitchBinlogFormat = 1561 582 ErrPartitionNoTemporary = 1562 583 ErrPartitionConstDomain = 1563 584 ErrPartitionFunctionIsNotAllowed = 1564 585 ErrDdlLog = 1565 586 ErrNullInValuesLessThan = 1566 587 ErrWrongPartitionName = 1567 588 ErrCantChangeTxCharacteristics = 1568 589 ErrDupEntryAutoincrementCase = 1569 590 ErrEventModifyQueue = 1570 591 ErrEventSetVar = 1571 592 ErrPartitionMerge = 1572 593 ErrCantActivateLog = 1573 594 ErrRbrNotAvailable = 1574 595 ErrBase64Decode = 1575 596 ErrEventRecursionForbidden = 1576 597 ErrEventsDB = 1577 598 ErrOnlyIntegersAllowed = 1578 599 ErrUnsuportedLogEngine = 1579 600 ErrBadLogStatement = 1580 601 ErrCantRenameLogTable = 1581 602 ErrWrongParamcountToNativeFct = 1582 603 ErrWrongParametersToNativeFct = 1583 604 ErrWrongParametersToStoredFct = 1584 605 ErrNativeFctNameCollision = 1585 606 ErrDupEntryWithKeyName = 1586 607 ErrBinlogPurgeEmFile = 1587 608 ErrEventCannotCreateInThePast = 1588 609 ErrEventCannotAlterInThePast = 1589 610 ErrSlaveIncident = 1590 611 ErrNoPartitionForGivenValueSilent = 1591 612 ErrBinlogUnsafeStatement = 1592 613 ErrSlaveFatal = 1593 614 ErrSlaveRelayLogReadFailure = 1594 615 ErrSlaveRelayLogWriteFailure = 1595 616 ErrSlaveCreateEventFailure = 1596 617 ErrSlaveMasterComFailure = 1597 618 ErrBinlogLoggingImpossible = 1598 619 ErrViewNoCreationCtx = 1599 620 ErrViewInvalidCreationCtx = 1600 621 ErrSrInvalidCreationCtx = 1601 622 ErrTrgCorruptedFile = 1602 623 ErrTrgNoCreationCtx = 1603 624 ErrTrgInvalidCreationCtx = 1604 625 ErrEventInvalidCreationCtx = 1605 626 ErrTrgCantOpenTable = 1606 627 ErrCantCreateSroutine = 1607 628 ErrNeverUsed = 1608 629 ErrNoFormatDescriptionEventBeforeBinlogStatement = 1609 630 ErrSlaveCorruptEvent = 1610 631 ErrLoadDataInvalidColumn = 1611 632 ErrLogPurgeNoFile = 1612 633 ErrXaRbtimeout = 1613 634 ErrXaRbdeadlock = 1614 635 ErrNeedReprepare = 1615 636 ErrDelayedNotSupported = 1616 637 WarnNoMasterInfo = 1617 638 WarnOptionIgnored = 1618 639 WarnPluginDeleteBuiltin = 1619 640 WarnPluginBusy = 1620 641 ErrVariableIsReadonly = 1621 642 ErrWarnEngineTransactionRollback = 1622 643 ErrSlaveHeartbeatFailure = 1623 644 ErrSlaveHeartbeatValueOutOfRange = 1624 645 ErrNdbReplicationSchema = 1625 646 ErrConflictFnParse = 1626 647 ErrExceptionsWrite = 1627 648 ErrTooLongTableComment = 1628 649 ErrTooLongFieldComment = 1629 650 ErrFuncInexistentNameCollision = 1630 651 ErrDatabaseName = 1631 652 ErrTableName = 1632 653 ErrPartitionName = 1633 654 ErrSubpartitionName = 1634 655 ErrTemporaryName = 1635 656 ErrRenamedName = 1636 657 ErrTooManyConcurrentTrxs = 1637 658 WarnNonASCIISeparatorNotImplemented = 1638 659 ErrDebugSyncTimeout = 1639 660 ErrDebugSyncHitLimit = 1640 661 ErrDupSignalSet = 1641 662 ErrSignalWarn = 1642 663 ErrSignalNotFound = 1643 664 ErrSignalException = 1644 665 ErrResignalWithoutActiveHandler = 1645 666 ErrSignalBadConditionType = 1646 667 WarnCondItemTruncated = 1647 668 ErrCondItemTooLong = 1648 669 ErrUnknownLocale = 1649 670 ErrSlaveIgnoreServerIds = 1650 671 ErrQueryCacheDisabled = 1651 672 ErrSameNamePartitionField = 1652 673 ErrPartitionColumnList = 1653 674 ErrWrongTypeColumnValue = 1654 675 ErrTooManyPartitionFuncFields = 1655 676 ErrMaxvalueInValuesIn = 1656 677 ErrTooManyValues = 1657 678 ErrRowSinglePartitionField = 1658 679 ErrFieldTypeNotAllowedAsPartitionField = 1659 680 ErrPartitionFieldsTooLong = 1660 681 ErrBinlogRowEngineAndStmtEngine = 1661 682 ErrBinlogRowModeAndStmtEngine = 1662 683 ErrBinlogUnsafeAndStmtEngine = 1663 684 ErrBinlogRowInjectionAndStmtEngine = 1664 685 ErrBinlogStmtModeAndRowEngine = 1665 686 ErrBinlogRowInjectionAndStmtMode = 1666 687 ErrBinlogMultipleEnginesAndSelfLoggingEngine = 1667 688 ErrBinlogUnsafeLimit = 1668 689 ErrBinlogUnsafeInsertDelayed = 1669 690 ErrBinlogUnsafeSystemTable = 1670 691 ErrBinlogUnsafeAutoincColumns = 1671 692 ErrBinlogUnsafeUdf = 1672 693 ErrBinlogUnsafeSystemVariable = 1673 694 ErrBinlogUnsafeSystemFunction = 1674 695 ErrBinlogUnsafeNontransAfterTrans = 1675 696 ErrMessageAndStatement = 1676 697 ErrSlaveConversionFailed = 1677 698 ErrSlaveCantCreateConversion = 1678 699 ErrInsideTransactionPreventsSwitchBinlogFormat = 1679 700 ErrPathLength = 1680 701 ErrWarnDeprecatedSyntaxNoReplacement = 1681 702 ErrWrongNativeTableStructure = 1682 703 ErrWrongPerfSchemaUsage = 1683 704 ErrWarnISSkippedTable = 1684 705 ErrInsideTransactionPreventsSwitchBinlogDirect = 1685 706 ErrStoredFunctionPreventsSwitchBinlogDirect = 1686 707 ErrSpatialMustHaveGeomCol = 1687 708 ErrTooLongIndexComment = 1688 709 ErrLockAborted = 1689 710 ErrDataOutOfRange = 1690 711 ErrWrongSpvarTypeInLimit = 1691 712 ErrBinlogUnsafeMultipleEnginesAndSelfLoggingEngine = 1692 713 ErrBinlogUnsafeMixedStatement = 1693 714 ErrInsideTransactionPreventsSwitchSQLLogBin = 1694 715 ErrStoredFunctionPreventsSwitchSQLLogBin = 1695 716 ErrFailedReadFromParFile = 1696 717 ErrValuesIsNotIntType = 1697 718 ErrAccessDeniedNoPassword = 1698 719 ErrSetPasswordAuthPlugin = 1699 720 ErrGrantPluginUserExists = 1700 721 ErrTruncateIllegalFk = 1701 722 ErrPluginIsPermanent = 1702 723 ErrSlaveHeartbeatValueOutOfRangeMin = 1703 724 ErrSlaveHeartbeatValueOutOfRangeMax = 1704 725 ErrStmtCacheFull = 1705 726 ErrMultiUpdateKeyConflict = 1706 727 ErrTableNeedsRebuild = 1707 728 WarnOptionBelowLimit = 1708 729 ErrIndexColumnTooLong = 1709 730 ErrErrorInTriggerBody = 1710 731 ErrErrorInUnknownTriggerBody = 1711 732 ErrIndexCorrupt = 1712 733 ErrUndoRecordTooBig = 1713 734 ErrBinlogUnsafeInsertIgnoreSelect = 1714 735 ErrBinlogUnsafeInsertSelectUpdate = 1715 736 ErrBinlogUnsafeReplaceSelect = 1716 737 ErrBinlogUnsafeCreateIgnoreSelect = 1717 738 ErrBinlogUnsafeCreateReplaceSelect = 1718 739 ErrBinlogUnsafeUpdateIgnore = 1719 740 ErrPluginNoUninstall = 1720 741 ErrPluginNoInstall = 1721 742 ErrBinlogUnsafeWriteAutoincSelect = 1722 743 ErrBinlogUnsafeCreateSelectAutoinc = 1723 744 ErrBinlogUnsafeInsertTwoKeys = 1724 745 ErrTableInFkCheck = 1725 746 ErrUnsupportedEngine = 1726 747 ErrBinlogUnsafeAutoincNotFirst = 1727 748 ErrCannotLoadFromTableV2 = 1728 749 ErrMasterDelayValueOutOfRange = 1729 750 ErrOnlyFdAndRbrEventsAllowedInBinlogStatement = 1730 751 ErrPartitionExchangeDifferentOption = 1731 752 ErrPartitionExchangePartTable = 1732 753 ErrPartitionExchangeTempTable = 1733 754 ErrPartitionInsteadOfSubpartition = 1734 755 ErrUnknownPartition = 1735 756 ErrTablesDifferentMetadata = 1736 757 ErrRowDoesNotMatchPartition = 1737 758 ErrBinlogCacheSizeGreaterThanMax = 1738 759 ErrWarnIndexNotApplicable = 1739 760 ErrPartitionExchangeForeignKey = 1740 761 ErrNoSuchKeyValue = 1741 762 ErrRplInfoDataTooLong = 1742 763 ErrNetworkReadEventChecksumFailure = 1743 764 ErrBinlogReadEventChecksumFailure = 1744 765 ErrBinlogStmtCacheSizeGreaterThanMax = 1745 766 ErrCantUpdateTableInCreateTableSelect = 1746 767 ErrPartitionClauseOnNonpartitioned = 1747 768 ErrRowDoesNotMatchGivenPartitionSet = 1748 769 ErrNoSuchPartitionunused = 1749 770 ErrChangeRplInfoRepositoryFailure = 1750 771 ErrWarningNotCompleteRollbackWithCreatedTempTable = 1751 772 ErrWarningNotCompleteRollbackWithDroppedTempTable = 1752 773 ErrMtsFeatureIsNotSupported = 1753 774 ErrMtsUpdatedDBsGreaterMax = 1754 775 ErrMtsCantParallel = 1755 776 ErrMtsInconsistentData = 1756 777 ErrFulltextNotSupportedWithPartitioning = 1757 778 ErrDaInvalidConditionNumber = 1758 779 ErrInsecurePlainText = 1759 780 ErrInsecureChangeMaster = 1760 781 ErrForeignDuplicateKeyWithChildInfo = 1761 782 ErrForeignDuplicateKeyWithoutChildInfo = 1762 783 ErrSQLthreadWithSecureSlave = 1763 784 ErrTableHasNoFt = 1764 785 ErrVariableNotSettableInSfOrTrigger = 1765 786 ErrVariableNotSettableInTransaction = 1766 787 ErrGtidNextIsNotInGtidNextList = 1767 788 ErrCantChangeGtidNextInTransactionWhenGtidNextListIsNull = 1768 789 ErrSetStatementCannotInvokeFunction = 1769 790 ErrGtidNextCantBeAutomaticIfGtidNextListIsNonNull = 1770 791 ErrSkippingLoggedTransaction = 1771 792 ErrMalformedGtidSetSpecification = 1772 793 ErrMalformedGtidSetEncoding = 1773 794 ErrMalformedGtidSpecification = 1774 795 ErrGnoExhausted = 1775 796 ErrBadSlaveAutoPosition = 1776 797 ErrAutoPositionRequiresGtidModeOn = 1777 798 ErrCantDoImplicitCommitInTrxWhenGtidNextIsSet = 1778 799 ErrGtidMode2Or3RequiresEnforceGtidConsistencyOn = 1779 800 ErrGtidModeRequiresBinlog = 1780 801 ErrCantSetGtidNextToGtidWhenGtidModeIsOff = 1781 802 ErrCantSetGtidNextToAnonymousWhenGtidModeIsOn = 1782 803 ErrCantSetGtidNextListToNonNullWhenGtidModeIsOff = 1783 804 ErrFoundGtidEventWhenGtidModeIsOff = 1784 805 ErrGtidUnsafeNonTransactionalTable = 1785 806 ErrGtidUnsafeCreateSelect = 1786 807 ErrGtidUnsafeCreateDropTemporaryTableInTransaction = 1787 808 ErrGtidModeCanOnlyChangeOneStepAtATime = 1788 809 ErrMasterHasPurgedRequiredGtids = 1789 810 ErrCantSetGtidNextWhenOwningGtid = 1790 811 ErrUnknownExplainFormat = 1791 812 ErrCantExecuteInReadOnlyTransaction = 1792 813 ErrTooLongTablePartitionComment = 1793 814 ErrSlaveConfiguration = 1794 815 ErrInnodbFtLimit = 1795 816 ErrInnodbNoFtTempTable = 1796 817 ErrInnodbFtWrongDocidColumn = 1797 818 ErrInnodbFtWrongDocidIndex = 1798 819 ErrInnodbOnlineLogTooBig = 1799 820 ErrUnknownAlterAlgorithm = 1800 821 ErrUnknownAlterLock = 1801 822 ErrMtsChangeMasterCantRunWithGaps = 1802 823 ErrMtsRecoveryFailure = 1803 824 ErrMtsResetWorkers = 1804 825 ErrColCountDoesntMatchCorruptedV2 = 1805 826 ErrSlaveSilentRetryTransaction = 1806 827 ErrDiscardFkChecksRunning = 1807 828 ErrTableSchemaMismatch = 1808 829 ErrTableInSystemTablespace = 1809 830 ErrIoRead = 1810 831 ErrIoWrite = 1811 832 ErrTablespaceMissing = 1812 833 ErrTablespaceExists = 1813 834 ErrTablespaceDiscarded = 1814 835 ErrInternal = 1815 836 ErrInnodbImport = 1816 837 ErrInnodbIndexCorrupt = 1817 838 ErrInvalidYearColumnLength = 1818 839 ErrNotValidPassword = 1819 840 ErrMustChangePassword = 1820 841 ErrFkNoIndexChild = 1821 842 ErrFkNoIndexParent = 1822 843 ErrFkFailAddSystem = 1823 844 ErrFkCannotOpenParent = 1824 845 ErrFkIncorrectOption = 1825 846 ErrFkDupName = 1826 847 ErrPasswordFormat = 1827 848 ErrFkColumnCannotDrop = 1828 849 ErrFkColumnCannotDropChild = 1829 850 ErrFkColumnNotNull = 1830 851 ErrDupIndex = 1831 852 ErrFkColumnCannotChange = 1832 853 ErrFkColumnCannotChangeChild = 1833 854 ErrFkCannotDeleteParent = 1834 855 ErrMalformedPacket = 1835 856 ErrReadOnlyMode = 1836 857 ErrGtidNextTypeUndefinedGroup = 1837 858 ErrVariableNotSettableInSp = 1838 859 ErrCantSetGtidPurgedWhenGtidModeIsOff = 1839 860 ErrCantSetGtidPurgedWhenGtidExecutedIsNotEmpty = 1840 861 ErrCantSetGtidPurgedWhenOwnedGtidsIsNotEmpty = 1841 862 ErrGtidPurgedWasChanged = 1842 863 ErrGtidExecutedWasChanged = 1843 864 ErrBinlogStmtModeAndNoReplTables = 1844 865 ErrAlterOperationNotSupported = 1845 866 ErrAlterOperationNotSupportedReason = 1846 867 ErrAlterOperationNotSupportedReasonCopy = 1847 868 ErrAlterOperationNotSupportedReasonPartition = 1848 869 ErrAlterOperationNotSupportedReasonFkRename = 1849 870 ErrAlterOperationNotSupportedReasonColumnType = 1850 871 ErrAlterOperationNotSupportedReasonFkCheck = 1851 872 ErrAlterOperationNotSupportedReasonIgnore = 1852 873 ErrAlterOperationNotSupportedReasonNopk = 1853 874 ErrAlterOperationNotSupportedReasonAutoinc = 1854 875 ErrAlterOperationNotSupportedReasonHiddenFts = 1855 876 ErrAlterOperationNotSupportedReasonChangeFts = 1856 877 ErrAlterOperationNotSupportedReasonFts = 1857 878 ErrSQLSlaveSkipCounterNotSettableInGtidMode = 1858 879 ErrDupUnknownInIndex = 1859 880 ErrIdentCausesTooLongPath = 1860 881 ErrAlterOperationNotSupportedReasonNotNull = 1861 882 ErrMustChangePasswordLogin = 1862 883 ErrRowInWrongPartition = 1863 884 ErrErrorLast = 1863 885 ErrGeneratedColumnFunctionIsNotAllowed = 3102 886 ErrBadGeneratedColumn = 3105 887 ErrUnsupportedOnGeneratedColumn = 3106 888 ErrGeneratedColumnNonPrior = 3107 889 ErrDependentByGeneratedColumn = 3108 890 ErrGeneratedColumnRefAutoInc = 3109 891 ErrInvalidJSONText = 3140 892 ErrInvalidJSONPath = 3143 893 ErrInvalidJSONData = 3146 894 ErrInvalidJSONPathWildcard = 3149 895 ErrInvalidJSONContainsPathType = 3150 896 ErrJSONUsedAsKey = 3152 897 ErrWindowNoSuchWindow = 3579 898 ErrWindowCircularityInWindowGraph = 3580 899 ErrWindowNoChildPartitioning = 3581 900 ErrWindowNoInherentFrame = 3582 901 ErrWindowNoRedefineOrderBy = 3583 902 ErrWindowFrameStartIllegal = 3584 903 ErrWindowFrameEndIllegal = 3585 904 ErrWindowFrameIllegal = 3586 905 ErrWindowRangeFrameOrderType = 3587 906 ErrWindowRangeFrameTemporalType = 3588 907 ErrWindowRangeFrameNumericType = 3589 908 ErrWindowRangeBoundNotConstant = 3590 909 ErrWindowDuplicateName = 3591 910 ErrWindowIllegalOrderBy = 3592 911 ErrWindowInvalidWindowFuncUse = 3593 912 ErrWindowInvalidWindowFuncAliasUse = 3594 913 ErrWindowNestedWindowFuncUseInWindowSpec = 3595 914 ErrWindowRowsIntervalUse = 3596 915 ErrWindowNoGroupOrderUnused = 3597 916 ErrWindowExplainJSON = 3598 917 ErrWindowFunctionIgnoresFrame = 3599 918 )