2000-07-31 21:29:14 +02:00
/* Copyright Abandoned 1997 TCX DataKonsult AB & Monty Program KB & Detron HB
This file is public domain and comes with NO WARRANTY of any kind */
2002-04-26 09:45:12 +02:00
#define ER_HASHCHK 1000
2000-07-31 21:29:14 +02:00
"hashchk",
2002-04-26 09:45:12 +02:00
#define ER_NISAMCHK 1001
2000-07-31 21:29:14 +02:00
"isamchk",
2002-04-26 09:45:12 +02:00
#define ER_NO 1002
2000-07-31 21:29:14 +02:00
"NO",
2002-04-26 09:45:12 +02:00
#define ER_YES 1003
2000-07-31 21:29:14 +02:00
"YES",
2002-04-26 09:45:12 +02:00
#define ER_CANT_CREATE_FILE 1004
2000-07-31 21:29:14 +02:00
"Can't create file '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_CREATE_TABLE 1005
2000-07-31 21:29:14 +02:00
"Can't create table '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_CREATE_DB 1006
2000-07-31 21:29:14 +02:00
"Can't create database '%-.64s'. (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_DB_CREATE_EXISTS 1007
2000-07-31 21:29:14 +02:00
"Can't create database '%-.64s'. Database exists",
2002-04-26 09:45:12 +02:00
#define ER_DB_DROP_EXISTS 1008
2000-07-31 21:29:14 +02:00
"Can't drop database '%-.64s'. Database doesn't exist",
2002-04-26 09:45:12 +02:00
#define ER_DB_DROP_DELETE 1009
2000-07-31 21:29:14 +02:00
"Error dropping database (can't delete '%-.64s', errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_DB_DROP_RMDIR 1010
2000-07-31 21:29:14 +02:00
"Error dropping database (can't rmdir '%-.64s', errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_DELETE_FILE 1011
2000-07-31 21:29:14 +02:00
"Error on delete of '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_FIND_SYSTEM_REC 1012
2000-07-31 21:29:14 +02:00
"Can't read record in system table",
2002-04-26 09:45:12 +02:00
#define ER_CANT_GET_STAT 1013
2000-07-31 21:29:14 +02:00
"Can't get status of '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_GET_WD 1014
2000-07-31 21:29:14 +02:00
"Can't get working directory (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_LOCK 1015
2000-07-31 21:29:14 +02:00
"Can't lock file (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_OPEN_FILE 1016
2000-07-31 21:29:14 +02:00
"Can't open file: '%-.64s'. (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_FILE_NOT_FOUND 1017
2000-07-31 21:29:14 +02:00
"Can't find file: '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_READ_DIR 1018
2000-07-31 21:29:14 +02:00
"Can't read dir of '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_SET_WD 1019
2000-07-31 21:29:14 +02:00
"Can't change dir to '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CHECKREAD 1020
2000-07-31 21:29:14 +02:00
"Record has changed since last read in table '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_DISK_FULL 1021
2000-07-31 21:29:14 +02:00
"Disk full (%s). Waiting for someone to free some space....",
2002-04-26 09:45:12 +02:00
#define ER_DUP_KEY 1022
2000-07-31 21:29:14 +02:00
"Can't write, duplicate key in table '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_ERROR_ON_CLOSE 1023
2000-07-31 21:29:14 +02:00
"Error on close of '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_ERROR_ON_READ 1024
2000-07-31 21:29:14 +02:00
"Error reading file '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_ERROR_ON_RENAME 1025
2000-07-31 21:29:14 +02:00
"Error on rename of '%-.64s' to '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_ERROR_ON_WRITE 1026
2000-07-31 21:29:14 +02:00
"Error writing file '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_FILE_USED 1027
2000-07-31 21:29:14 +02:00
"'%-.64s' is locked against change",
2002-04-26 09:45:12 +02:00
#define ER_FILSORT_ABORT 1028
2000-07-31 21:29:14 +02:00
"Sort aborted",
2002-04-26 09:45:12 +02:00
#define ER_FORM_NOT_FOUND 1029
2000-07-31 21:29:14 +02:00
"View '%-.64s' doesn't exist for '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_GET_ERRNO 1030
2000-07-31 21:29:14 +02:00
"Got error %d from table handler",
2002-04-26 09:45:12 +02:00
#define ER_ILLEGAL_HA 1031
2000-07-31 21:29:14 +02:00
"Table handler for '%-.64s' doesn't have this option",
2002-04-26 09:45:12 +02:00
#define ER_KEY_NOT_FOUND 1032
2000-07-31 21:29:14 +02:00
"Can't find record in '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_NOT_FORM_FILE 1033
2000-07-31 21:29:14 +02:00
"Incorrect information in file: '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_NOT_KEYFILE 1034
2000-07-31 21:29:14 +02:00
"Incorrect key file for table: '%-.64s'. Try to repair it",
2002-04-26 09:45:12 +02:00
#define ER_OLD_KEYFILE 1035
2000-07-31 21:29:14 +02:00
"Old key file for table '%-.64s'; Repair it!",
2002-04-26 09:45:12 +02:00
#define ER_OPEN_AS_READONLY 1036
2000-07-31 21:29:14 +02:00
"Table '%-.64s' is read only",
2002-04-26 09:45:12 +02:00
#define ER_OUTOFMEMORY 1037
2000-07-31 21:29:14 +02:00
"Out of memory. Restart daemon and try again (needed %d bytes)",
2002-04-26 09:45:12 +02:00
#define ER_OUT_OF_SORTMEMORY 1038
2000-07-31 21:29:14 +02:00
"Out of sort memory. Increase daemon sort buffer size",
2002-04-26 09:45:12 +02:00
#define ER_UNEXPECTED_EOF 1039
2000-07-31 21:29:14 +02:00
"Unexpected eof found when reading file '%-.64s' (errno: %d)",
2002-04-26 09:45:12 +02:00
#define ER_CON_COUNT_ERROR 1040
2000-07-31 21:29:14 +02:00
"Too many connections",
2002-04-26 09:45:12 +02:00
#define ER_OUT_OF_RESOURCES 1041
2000-07-31 21:29:14 +02:00
"Out of memory; Check if mysqld or some other process uses all available memory. If not you may have to use 'ulimit' to allow mysqld to use more memory or you can add more swap space",
2002-04-26 09:45:12 +02:00
#define ER_BAD_HOST_ERROR 1042
2000-07-31 21:29:14 +02:00
"Can't get hostname for your address",
2002-04-26 09:45:12 +02:00
#define ER_HANDSHAKE_ERROR 1043
2000-07-31 21:29:14 +02:00
"Bad handshake",
2002-04-26 09:45:12 +02:00
#define ER_DBACCESS_DENIED_ERROR 1044
2000-07-31 21:29:14 +02:00
"Access denied for user: '%-.32s@%-.64s' to database '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_ACCESS_DENIED_ERROR 1045
2000-07-31 21:29:14 +02:00
"Access denied for user: '%-.32s@%-.64s' (Using password: %s)",
2002-04-26 09:45:12 +02:00
#define ER_NO_DB_ERROR 1046
2000-07-31 21:29:14 +02:00
"No Database Selected",
2002-04-26 09:45:12 +02:00
#define ER_UNKNOWN_COM_ERROR 1047
2000-07-31 21:29:14 +02:00
"Unknown command",
2002-04-26 09:45:12 +02:00
#define ER_BAD_NULL_ERROR 1048
2000-07-31 21:29:14 +02:00
"Column '%-.64s' cannot be null",
2002-04-26 09:45:12 +02:00
#define ER_BAD_DB_ERROR 1049
2000-07-31 21:29:14 +02:00
"Unknown database '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_TABLE_EXISTS_ERROR 1050
2000-07-31 21:29:14 +02:00
"Table '%-.64s' already exists",
2002-04-26 09:45:12 +02:00
#define ER_BAD_TABLE_ERROR 1051
2000-07-31 21:29:14 +02:00
"Unknown table '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_NON_UNIQ_ERROR 1052
2000-07-31 21:29:14 +02:00
"Column: '%-.64s' in %-.64s is ambiguous",
2002-04-26 09:45:12 +02:00
#define ER_SERVER_SHUTDOWN 1053
2000-07-31 21:29:14 +02:00
"Server shutdown in progress",
2002-04-26 09:45:12 +02:00
#define ER_BAD_FIELD_ERROR 1054
2000-07-31 21:29:14 +02:00
"Unknown column '%-.64s' in '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_FIELD_WITH_GROUP 1055
2000-07-31 21:29:14 +02:00
"'%-.64s' isn't in GROUP BY",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_GROUP_FIELD 1056
2000-07-31 21:29:14 +02:00
"Can't group on '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_SUM_SELECT 1057
2000-07-31 21:29:14 +02:00
"Statement has sum functions and columns in same statement",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_VALUE_COUNT 1058
2000-07-31 21:29:14 +02:00
"Column count doesn't match value count",
2002-04-26 09:45:12 +02:00
#define ER_TOO_LONG_IDENT 1059
2000-07-31 21:29:14 +02:00
"Identifier name '%-.100s' is too long",
2002-04-26 09:45:12 +02:00
#define ER_DUP_FIELDNAME 1060
2000-07-31 21:29:14 +02:00
"Duplicate column name '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_DUP_KEYNAME 1061
2000-07-31 21:29:14 +02:00
"Duplicate key name '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_DUP_ENTRY 1062
2000-07-31 21:29:14 +02:00
"Duplicate entry '%-.64s' for key %d",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_FIELD_SPEC 1063
2000-07-31 21:29:14 +02:00
"Incorrect column specifier for column '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_PARSE_ERROR 1064
2000-07-31 21:29:14 +02:00
"%s near '%-.80s' at line %d",
2002-04-26 09:45:12 +02:00
#define ER_EMPTY_QUERY 1065
2000-07-31 21:29:14 +02:00
"Query was empty",
2002-04-26 09:45:12 +02:00
#define ER_NONUNIQ_TABLE 1066
2000-07-31 21:29:14 +02:00
"Not unique table/alias: '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_INVALID_DEFAULT 1067
2000-07-31 21:29:14 +02:00
"Invalid default value for '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_MULTIPLE_PRI_KEY 1068
2000-07-31 21:29:14 +02:00
"Multiple primary key defined",
2002-04-26 09:45:12 +02:00
#define ER_TOO_MANY_KEYS 1069
2000-07-31 21:29:14 +02:00
"Too many keys specified. Max %d keys allowed",
2002-04-26 09:45:12 +02:00
#define ER_TOO_MANY_KEY_PARTS 1070
2000-07-31 21:29:14 +02:00
"Too many key parts specified. Max %d parts allowed",
2002-04-26 09:45:12 +02:00
#define ER_TOO_LONG_KEY 1071
2000-07-31 21:29:14 +02:00
"Specified key was too long. Max key length is %d",
2002-04-26 09:45:12 +02:00
#define ER_KEY_COLUMN_DOES_NOT_EXITS 1072
2000-07-31 21:29:14 +02:00
"Key column '%-.64s' doesn't exist in table",
2002-04-26 09:45:12 +02:00
#define ER_BLOB_USED_AS_KEY 1073
2000-07-31 21:29:14 +02:00
"BLOB column '%-.64s' can't be used in key specification with the used table type",
2002-04-26 09:45:12 +02:00
#define ER_TOO_BIG_FIELDLENGTH 1074
2000-07-31 21:29:14 +02:00
"Too big column length for column '%-.64s' (max = %d). Use BLOB instead",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_AUTO_KEY 1075
2000-07-31 21:29:14 +02:00
"Incorrect table definition; There can only be one auto column and it must be defined as a key",
2002-04-26 09:45:12 +02:00
#define ER_READY 1076
2000-07-31 21:29:14 +02:00
"%s: ready for connections\n",
2002-04-26 09:45:12 +02:00
#define ER_NORMAL_SHUTDOWN 1077
2000-07-31 21:29:14 +02:00
"%s: Normal shutdown\n",
2002-04-26 09:45:12 +02:00
#define ER_GOT_SIGNAL 1078
2000-07-31 21:29:14 +02:00
"%s: Got signal %d. Aborting!\n",
2002-04-26 09:45:12 +02:00
#define ER_SHUTDOWN_COMPLETE 1079
2000-07-31 21:29:14 +02:00
"%s: Shutdown Complete\n",
2002-04-26 09:45:12 +02:00
#define ER_FORCING_CLOSE 1080
2000-07-31 21:29:14 +02:00
"%s: Forcing close of thread %ld user: '%-.32s'\n",
2002-04-26 09:45:12 +02:00
#define ER_IPSOCK_ERROR 1081
2000-07-31 21:29:14 +02:00
"Can't create IP socket",
2002-04-26 09:45:12 +02:00
#define ER_NO_SUCH_INDEX 1082
2000-07-31 21:29:14 +02:00
"Table '%-.64s' has no index like the one used in CREATE INDEX. Recreate the table",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_FIELD_TERMINATORS 1083
2002-01-26 00:19:47 +01:00
"Field separator argument is not what is expected. Check the manual",
2002-04-26 09:45:12 +02:00
#define ER_BLOBS_AND_NO_TERMINATED 1084
2000-07-31 21:29:14 +02:00
"You can't use fixed rowlength with BLOBs. Please use 'fields terminated by'.",
2002-04-26 09:45:12 +02:00
#define ER_TEXTFILE_NOT_READABLE 1085
2000-07-31 21:29:14 +02:00
"The file '%-.64s' must be in the database directory or be readable by all",
2002-04-26 09:45:12 +02:00
#define ER_FILE_EXISTS_ERROR 1086
2000-07-31 21:29:14 +02:00
"File '%-.80s' already exists",
2002-04-26 09:45:12 +02:00
#define ER_LOAD_INFO 1087
2000-07-31 21:29:14 +02:00
"Records: %ld Deleted: %ld Skipped: %ld Warnings: %ld",
2002-04-26 09:45:12 +02:00
#define ER_ALTER_INFO 1088
2000-07-31 21:29:14 +02:00
"Records: %ld Duplicates: %ld",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_SUB_KEY 1089
2002-01-26 00:19:47 +01:00
"Incorrect sub part key. The used key part isn't a string, the used length is longer than the key part or the table handler doesn't support unique sub keys",
2002-04-26 09:45:12 +02:00
#define ER_CANT_REMOVE_ALL_FIELDS 1090
2000-07-31 21:29:14 +02:00
"You can't delete all columns with ALTER TABLE. Use DROP TABLE instead",
2002-04-26 09:45:12 +02:00
#define ER_CANT_DROP_FIELD_OR_KEY 1091
2000-07-31 21:29:14 +02:00
"Can't DROP '%-.64s'. Check that column/key exists",
2002-04-26 09:45:12 +02:00
#define ER_INSERT_INFO 1092
2000-07-31 21:29:14 +02:00
"Records: %ld Duplicates: %ld Warnings: %ld",
2002-04-26 09:45:12 +02:00
#define ER_INSERT_TABLE_USED 1093
2000-07-31 21:29:14 +02:00
"INSERT TABLE '%-.64s' isn't allowed in FROM table list",
2002-04-26 09:45:12 +02:00
#define ER_NO_SUCH_THREAD 1094
2000-07-31 21:29:14 +02:00
"Unknown thread id: %lu",
2002-04-26 09:45:12 +02:00
#define ER_KILL_DENIED_ERROR 1095
2000-07-31 21:29:14 +02:00
"You are not owner of thread %lu",
2002-04-26 09:45:12 +02:00
#define ER_NO_TABLES_USED 1096
2000-07-31 21:29:14 +02:00
"No tables used",
2002-04-26 09:45:12 +02:00
#define ER_TOO_BIG_SET 1097
2000-07-31 21:29:14 +02:00
"Too many strings for column %-.64s and SET",
2002-04-26 09:45:12 +02:00
#define ER_NO_UNIQUE_LOGFILE 1098
2000-07-31 21:29:14 +02:00
"Can't generate a unique log-filename %-.64s.(1-999)\n",
2002-04-26 09:45:12 +02:00
#define ER_TABLE_NOT_LOCKED_FOR_WRITE 1099
2000-07-31 21:29:14 +02:00
"Table '%-.64s' was locked with a READ lock and can't be updated",
2002-04-26 09:45:12 +02:00
#define ER_TABLE_NOT_LOCKED 1100
2000-07-31 21:29:14 +02:00
"Table '%-.64s' was not locked with LOCK TABLES",
2002-04-26 09:45:12 +02:00
#define ER_BLOB_CANT_HAVE_DEFAULT 1101
2000-07-31 21:29:14 +02:00
"BLOB column '%-.64s' can't have a default value",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_DB_NAME 1102
2000-07-31 21:29:14 +02:00
"Incorrect database name '%-.100s'",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_TABLE_NAME 1103
2000-07-31 21:29:14 +02:00
"Incorrect table name '%-.100s'",
2002-04-26 09:45:12 +02:00
#define ER_TOO_BIG_SELECT 1104
2000-07-31 21:29:14 +02:00
"The SELECT would examine too many records and probably take a very long time. Check your WHERE and use SET OPTION SQL_BIG_SELECTS=1 if the SELECT is ok",
2002-04-26 09:45:12 +02:00
#define ER_UNKNOWN_ERROR 1105
2000-07-31 21:29:14 +02:00
"Unknown error",
2002-04-26 09:45:12 +02:00
#define ER_UNKNOWN_PROCEDURE 1106
2000-07-31 21:29:14 +02:00
"Unknown procedure '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_PARAMCOUNT_TO_PROCEDURE 1107
2000-07-31 21:29:14 +02:00
"Incorrect parameter count to procedure '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_PARAMETERS_TO_PROCEDURE 1108
2000-07-31 21:29:14 +02:00
"Incorrect parameters to procedure '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_UNKNOWN_TABLE 1109
2000-07-31 21:29:14 +02:00
"Unknown table '%-.64s' in %-.32s",
2002-04-26 09:45:12 +02:00
#define ER_FIELD_SPECIFIED_TWICE 1110
2000-07-31 21:29:14 +02:00
"Column '%-.64s' specified twice",
2002-04-26 09:45:12 +02:00
#define ER_INVALID_GROUP_FUNC_USE 1111
2000-07-31 21:29:14 +02:00
"Invalid use of group function",
2002-04-26 09:45:12 +02:00
#define ER_UNSUPPORTED_EXTENSION 1112
2000-07-31 21:29:14 +02:00
"Table '%-.64s' uses an extension that doesn't exist in this MySQL version",
2002-04-26 09:45:12 +02:00
#define ER_TABLE_MUST_HAVE_COLUMNS 1113
2000-07-31 21:29:14 +02:00
"A table must have at least 1 column",
2002-04-26 09:45:12 +02:00
#define ER_RECORD_FILE_FULL 1114
2000-07-31 21:29:14 +02:00
"The table '%-.64s' is full",
2002-04-26 09:45:12 +02:00
#define ER_UNKNOWN_CHARACTER_SET 1115
2000-07-31 21:29:14 +02:00
"Unknown character set: '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_TOO_MANY_TABLES 1116
2000-07-31 21:29:14 +02:00
"Too many tables. MySQL can only use %d tables in a join",
2002-04-26 09:45:12 +02:00
#define ER_TOO_MANY_FIELDS 1117
2000-07-31 21:29:14 +02:00
"Too many columns",
2002-04-26 09:45:12 +02:00
#define ER_TOO_BIG_ROWSIZE 1118
2000-07-31 21:29:14 +02:00
"Too big row size. The maximum row size, not counting BLOBs, is %d. You have to change some fields to BLOBs",
2002-04-26 09:45:12 +02:00
#define ER_STACK_OVERRUN 1119
2000-07-31 21:29:14 +02:00
"Thread stack overrun: Used: %ld of a %ld stack. Use 'mysqld -O thread_stack=#' to specify a bigger stack if needed",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_OUTER_JOIN 1120
2000-07-31 21:29:14 +02:00
"Cross dependency found in OUTER JOIN. Examine your ON conditions",
2002-04-26 09:45:12 +02:00
#define ER_NULL_COLUMN_IN_INDEX 1121
2000-07-31 21:29:14 +02:00
"Column '%-.64s' is used with UNIQUE or INDEX but is not defined as NOT NULL",
2002-04-26 09:45:12 +02:00
#define ER_CANT_FIND_UDF 1122
2000-07-31 21:29:14 +02:00
"Can't load function '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_CANT_INITIALIZE_UDF 1123
2000-07-31 21:29:14 +02:00
"Can't initialize function '%-.64s'; %-.80s",
2002-04-26 09:45:12 +02:00
#define ER_UDF_NO_PATHS 1124
2000-07-31 21:29:14 +02:00
"No paths allowed for shared library",
2002-04-26 09:45:12 +02:00
#define ER_UDF_EXISTS 1125
2000-07-31 21:29:14 +02:00
"Function '%-.64s' already exist",
2002-04-26 09:45:12 +02:00
#define ER_CANT_OPEN_LIBRARY 1126
2000-07-31 21:29:14 +02:00
"Can't open shared library '%-.64s' (errno: %d %-.64s)",
2002-04-26 09:45:12 +02:00
#define ER_CANT_FIND_DL_ENTRY 1127
2000-07-31 21:29:14 +02:00
"Can't find function '%-.64s' in library'",
2002-04-26 09:45:12 +02:00
#define ER_FUNCTION_NOT_DEFINED 1128
2000-07-31 21:29:14 +02:00
"Function '%-.64s' is not defined",
2002-04-26 09:45:12 +02:00
#define ER_HOST_IS_BLOCKED 1129
2000-07-31 21:29:14 +02:00
"Host '%-.64s' is blocked because of many connection errors. Unblock with 'mysqladmin flush-hosts'",
2002-04-26 09:45:12 +02:00
#define ER_HOST_NOT_PRIVILEGED 1130
2000-07-31 21:29:14 +02:00
"Host '%-.64s' is not allowed to connect to this MySQL server",
2002-04-26 09:45:12 +02:00
#define ER_PASSWORD_ANONYMOUS_USER 1131
2000-07-31 21:29:14 +02:00
"You are using MySQL as an anonymous users and anonymous users are not allowed to change passwords",
2002-04-26 09:45:12 +02:00
#define ER_PASSWORD_NOT_ALLOWED 1132
2000-07-31 21:29:14 +02:00
"You must have privileges to update tables in the mysql database to be able to change passwords for others",
2002-04-26 09:45:12 +02:00
#define ER_PASSWORD_NO_MATCH 1133
2000-07-31 21:29:14 +02:00
"Can't find any matching row in the user table",
2002-04-26 09:45:12 +02:00
#define ER_UPDATE_INFO 1134
2000-07-31 21:29:14 +02:00
"Rows matched: %ld Changed: %ld Warnings: %ld",
2002-04-26 09:45:12 +02:00
#define ER_CANT_CREATE_THREAD 1135
2000-07-31 21:29:14 +02:00
"Can't create a new thread (errno %d). If you are not out of available memory, you can consult the manual for a possible OS-dependent bug",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_VALUE_COUNT_ON_ROW 1136
2000-07-31 21:29:14 +02:00
"Column count doesn't match value count at row %ld",
2002-04-26 09:45:12 +02:00
#define ER_CANT_REOPEN_TABLE 1137
2000-07-31 21:29:14 +02:00
"Can't reopen table: '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_INVALID_USE_OF_NULL 1138
2000-07-31 21:29:14 +02:00
"Invalid use of NULL value",
2002-04-26 09:45:12 +02:00
#define ER_REGEXP_ERROR 1139
2000-07-31 21:29:14 +02:00
"Got error '%-.64s' from regexp",
2002-04-26 09:45:12 +02:00
#define ER_MIX_OF_GROUP_FUNC_AND_FIELDS 1140
2000-07-31 21:29:14 +02:00
"Mixing of GROUP columns (MIN(),MAX(),COUNT()...) with no GROUP columns is illegal if there is no GROUP BY clause",
2002-04-26 09:45:12 +02:00
#define ER_NONEXISTING_GRANT 1141
2000-07-31 21:29:14 +02:00
"There is no such grant defined for user '%-.32s' on host '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_TABLEACCESS_DENIED_ERROR 1142
2000-07-31 21:29:14 +02:00
"%-.16s command denied to user: '%-.32s@%-.64s' for table '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_COLUMNACCESS_DENIED_ERROR 1143
2000-07-31 21:29:14 +02:00
"%-.16s command denied to user: '%-.32s@%-.64s' for column '%-.64s' in table '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_ILLEGAL_GRANT_FOR_TABLE 1144
2000-07-31 21:29:14 +02:00
"Illegal GRANT/REVOKE command. Please consult the manual which privileges can be used.",
2002-04-26 09:45:12 +02:00
#define ER_GRANT_WRONG_HOST_OR_USER 1145
2000-07-31 21:29:14 +02:00
"The host or user argument to GRANT is too long",
2002-04-26 09:45:12 +02:00
#define ER_NO_SUCH_TABLE 1146
2000-07-31 21:29:14 +02:00
"Table '%-.64s.%-.64s' doesn't exist",
2002-04-26 09:45:12 +02:00
#define ER_NONEXISTING_TABLE_GRANT 1147
2000-07-31 21:29:14 +02:00
"There is no such grant defined for user '%-.32s' on host '%-.64s' on table '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_NOT_ALLOWED_COMMAND 1148
2000-07-31 21:29:14 +02:00
"The used command is not allowed with this MySQL version",
2002-04-26 09:45:12 +02:00
#define ER_SYNTAX_ERROR 1149
2002-12-20 13:58:27 +01:00
"You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use",
2002-04-26 09:45:12 +02:00
#define ER_DELAYED_CANT_CHANGE_LOCK 1150
2000-07-31 21:29:14 +02:00
"Delayed insert thread couldn't get requested lock for table %-.64s",
2002-04-26 09:45:12 +02:00
#define ER_TOO_MANY_DELAYED_THREADS 1151
2000-07-31 21:29:14 +02:00
"Too many delayed threads in use",
2002-04-26 09:45:12 +02:00
#define ER_ABORTING_CONNECTION 1152
2000-07-31 21:29:14 +02:00
"Aborted connection %ld to db: '%-.64s' user: '%-.32s' (%-.64s)",
2002-04-26 09:45:12 +02:00
#define ER_NET_PACKET_TOO_LARGE 1153
2000-07-31 21:29:14 +02:00
"Got a packet bigger than 'max_allowed_packet'",
2002-04-26 09:45:12 +02:00
#define ER_NET_READ_ERROR_FROM_PIPE 1154
2000-07-31 21:29:14 +02:00
"Got a read error from the connection pipe",
2002-04-26 09:45:12 +02:00
#define ER_NET_FCNTL_ERROR 1155
2000-07-31 21:29:14 +02:00
"Got an error from fcntl()",
2002-04-26 09:45:12 +02:00
#define ER_NET_PACKETS_OUT_OF_ORDER 1156
2000-07-31 21:29:14 +02:00
"Got packets out of order",
2002-04-26 09:45:12 +02:00
#define ER_NET_UNCOMPRESS_ERROR 1157
2000-07-31 21:29:14 +02:00
"Couldn't uncompress communication packet",
2002-04-26 09:45:12 +02:00
#define ER_NET_READ_ERROR 1158
2000-07-31 21:29:14 +02:00
"Got an error reading communication packets",
2002-04-26 09:45:12 +02:00
#define ER_NET_READ_INTERRUPTED 1159
2000-07-31 21:29:14 +02:00
"Got timeout reading communication packets",
2002-04-26 09:45:12 +02:00
#define ER_NET_ERROR_ON_WRITE 1160
2000-07-31 21:29:14 +02:00
"Got an error writing communication packets",
2002-04-26 09:45:12 +02:00
#define ER_NET_WRITE_INTERRUPTED 1161
2000-07-31 21:29:14 +02:00
"Got timeout writing communication packets",
2002-04-26 09:45:12 +02:00
#define ER_TOO_LONG_STRING 1162
2000-07-31 21:29:14 +02:00
"Result string is longer than max_allowed_packet",
2002-04-26 09:45:12 +02:00
#define ER_TABLE_CANT_HANDLE_BLOB 1163
2000-07-31 21:29:14 +02:00
"The used table type doesn't support BLOB/TEXT columns",
2002-04-26 09:45:12 +02:00
#define ER_TABLE_CANT_HANDLE_AUTO_INCREMENT 1164
2000-07-31 21:29:14 +02:00
"The used table type doesn't support AUTO_INCREMENT columns",
2002-04-26 09:45:12 +02:00
#define ER_DELAYED_INSERT_TABLE_LOCKED 1165
2000-07-31 21:29:14 +02:00
"INSERT DELAYED can't be used with table '%-.64s', because it is locked with LOCK TABLES",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_COLUMN_NAME 1166
2000-07-31 21:29:14 +02:00
"Incorrect column name '%-.100s'",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_KEY_COLUMN 1167
2000-07-31 21:29:14 +02:00
"The used table handler can't index column '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_MRG_TABLE 1168
2000-07-31 21:29:14 +02:00
"All tables in the MERGE table are not identically defined",
2002-04-26 09:45:12 +02:00
#define ER_DUP_UNIQUE 1169
2000-07-31 21:29:14 +02:00
"Can't write, because of unique constraint, to table '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_BLOB_KEY_WITHOUT_LENGTH 1170
2000-07-31 21:29:14 +02:00
"BLOB column '%-.64s' used in key specification without a key length",
2002-04-26 09:45:12 +02:00
#define ER_PRIMARY_CANT_HAVE_NULL 1171
2000-07-31 21:29:14 +02:00
"All parts of a PRIMARY KEY must be NOT NULL; If you need NULL in a key, use UNIQUE instead",
2002-04-26 09:45:12 +02:00
#define ER_TOO_MANY_ROWS 1172
2000-07-31 21:29:14 +02:00
"Result consisted of more than one row",
2002-04-26 09:45:12 +02:00
#define ER_REQUIRES_PRIMARY_KEY 1173
2000-07-31 21:29:14 +02:00
"This table type requires a primary key",
2002-04-26 09:45:12 +02:00
#define ER_NO_RAID_COMPILED 1174
2000-07-31 21:29:14 +02:00
"This version of MySQL is not compiled with RAID support",
2002-04-26 09:45:12 +02:00
#define ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE 1175
2000-07-31 21:29:14 +02:00
"You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column",
2002-04-26 09:45:12 +02:00
#define ER_KEY_DOES_NOT_EXITS 1176
2002-01-26 00:19:47 +01:00
"Key '%-.64s' doesn't exist in table '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_CHECK_NO_SUCH_TABLE 1177
2002-01-26 00:19:47 +01:00
"Can't open table",
2002-04-26 09:45:12 +02:00
#define ER_CHECK_NOT_IMPLEMENTED 1178
2002-12-20 13:58:27 +01:00
"The handler for the table doesn't support %s",
2002-04-26 09:45:12 +02:00
#define ER_CANT_DO_THIS_DURING_AN_TRANSACTION 1179
2002-01-26 00:19:47 +01:00
"You are not allowed to execute this command in a transaction",
2002-04-26 09:45:12 +02:00
#define ER_ERROR_DURING_COMMIT 1180
2002-01-26 00:19:47 +01:00
"Got error %d during COMMIT",
2002-04-26 09:45:12 +02:00
#define ER_ERROR_DURING_ROLLBACK 1181
2002-01-26 00:19:47 +01:00
"Got error %d during ROLLBACK",
2002-04-26 09:45:12 +02:00
#define ER_ERROR_DURING_FLUSH_LOGS 1182
2002-01-26 00:19:47 +01:00
"Got error %d during FLUSH_LOGS",
2002-04-26 09:45:12 +02:00
#define ER_ERROR_DURING_CHECKPOINT 1183
2002-01-26 00:19:47 +01:00
"Got error %d during CHECKPOINT",
2002-04-26 09:45:12 +02:00
#define ER_NEW_ABORTING_CONNECTION 1184
2002-01-26 00:19:47 +01:00
"Aborted connection %ld to db: '%-.64s' user: '%-.32s' host: `%-.64s' (%-.64s)",
2002-04-26 09:45:12 +02:00
#define ER_DUMP_NOT_IMPLEMENTED 1185
2002-01-26 00:19:47 +01:00
"The handler for the table does not support binary table dump",
2002-04-26 09:45:12 +02:00
#define ER_FLUSH_MASTER_BINLOG_CLOSED 1186
2002-01-26 00:19:47 +01:00
"Binlog closed, cannot RESET MASTER",
2002-04-26 09:45:12 +02:00
#define ER_INDEX_REBUILD 1187
2002-01-26 00:19:47 +01:00
"Failed rebuilding the index of dumped table '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_MASTER 1188
2002-01-26 00:19:47 +01:00
"Error from master: '%-.64s'",
2002-04-26 09:45:12 +02:00
#define ER_MASTER_NET_READ 1189
2002-01-26 00:19:47 +01:00
"Net error reading from master",
2002-04-26 09:45:12 +02:00
#define ER_MASTER_NET_WRITE 1190
2002-01-26 00:19:47 +01:00
"Net error writing to master",
2002-04-26 09:45:12 +02:00
#define ER_FT_MATCHING_KEY_NOT_FOUND 1191
2002-01-26 00:19:47 +01:00
"Can't find FULLTEXT index matching the column list",
2002-04-26 09:45:12 +02:00
#define ER_LOCK_OR_ACTIVE_TRANSACTION 1192
2002-01-26 00:19:47 +01:00
"Can't execute the given command because you have active locked tables or an active transaction",
2002-04-26 09:45:12 +02:00
#define ER_UNKNOWN_SYSTEM_VARIABLE 1193
"Unknown system variable '%-.64s'",
#define ER_CRASHED_ON_USAGE 1194
2002-01-26 00:19:47 +01:00
"Table '%-.64s' is marked as crashed and should be repaired",
2002-04-26 09:45:12 +02:00
#define ER_CRASHED_ON_REPAIR 1195
2002-01-26 00:19:47 +01:00
"Table '%-.64s' is marked as crashed and last (automatic?) repair failed",
2002-04-26 09:45:12 +02:00
#define ER_WARNING_NOT_COMPLETE_ROLLBACK 1196
2002-01-26 00:19:47 +01:00
"Warning: Some non-transactional changed tables couldn't be rolled back",
2002-04-26 09:45:12 +02:00
#define ER_TRANS_CACHE_FULL 1197
2002-01-26 00:19:47 +01:00
"Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage. Increase this mysqld variable and try again',
2002-04-26 09:45:12 +02:00
#define ER_SLAVE_MUST_STOP 1198
2002-01-26 00:19:47 +01:00
"This operation cannot be performed with a running slave, run SLAVE STOP first",
2002-04-26 09:45:12 +02:00
#define ER_SLAVE_NOT_RUNNING 1199
2002-01-26 00:19:47 +01:00
"This operation requires a running slave, configure slave and do SLAVE START",
2002-04-26 09:45:12 +02:00
#define ER_BAD_SLAVE 1200
2002-01-26 00:19:47 +01:00
"The server is not configured as slave, fix in config file or with CHANGE MASTER TO",
2002-04-26 09:45:12 +02:00
#define ER_MASTER_INFO 1201
2002-01-26 00:19:47 +01:00
"Could not initialize master info structure, check permisions on master.info",
2002-04-26 09:45:12 +02:00
#define ER_SLAVE_THREAD 1202
2002-01-26 00:19:47 +01:00
"Could not create slave thread, check system resources",
2002-04-26 09:45:12 +02:00
#define ER_TOO_MANY_USER_CONNECTIONS 1203
2002-01-26 00:19:47 +01:00
"User %-.64s has already more than 'max_user_connections' active connections",
2002-04-26 09:45:12 +02:00
#define ER_SET_CONSTANTS_ONLY 1204
2002-01-26 00:19:47 +01:00
"You may only use constant expressions with SET",
2002-04-26 09:45:12 +02:00
#define ER_LOCK_WAIT_TIMEOUT 1205
2002-01-26 00:19:47 +01:00
"Lock wait timeout exceeded; Try restarting transaction",
2002-04-26 09:45:12 +02:00
#define ER_LOCK_TABLE_FULL 1206
2002-01-26 00:19:47 +01:00
"The total number of locks exceeds the lock table size",
2002-04-26 09:45:12 +02:00
#define ER_READ_ONLY_TRANSACTION 1207
2002-01-26 00:19:47 +01:00
"Update locks cannot be acquired during a READ UNCOMMITTED transaction",
2002-04-26 09:45:12 +02:00
#define ER_DROP_DB_WITH_READ_LOCK 1208
2002-01-26 00:19:47 +01:00
"DROP DATABASE not allowed while thread is holding global read lock",
2002-04-26 09:45:12 +02:00
#define ER_CREATE_DB_WITH_READ_LOCK 1209
2002-01-26 00:19:47 +01:00
"CREATE DATABASE not allowed while thread is holding global read lock",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_ARGUMENTS 1210
2002-01-26 00:19:47 +01:00
"Wrong arguments to %s",
2002-04-26 09:45:12 +02:00
#define ER_NO_PERMISSION_TO_CREATE_USER 1211
2002-01-26 00:19:47 +01:00
"%-.32s@%-.64s is not allowed to create new users",
2002-04-26 09:45:12 +02:00
#define ER_UNION_TABLES_IN_DIFFERENT_DIR 1212
2002-01-26 00:19:47 +01:00
"Incorrect table definition; All MERGE tables must be in the same database",
2002-04-26 09:45:12 +02:00
#define ER_LOCK_DEADLOCK 1213
2002-01-26 00:19:47 +01:00
"Deadlock found when trying to get lock; Try restarting transaction",
2002-04-26 09:45:12 +02:00
#define ER_TABLE_CANT_HANDLE_FULLTEXT 1214
2002-01-26 00:19:47 +01:00
"The used table type doesn't support FULLTEXT indexes",
2002-04-26 09:45:12 +02:00
#define ER_CANNOT_ADD_FOREIGN 1215
2002-01-26 00:19:47 +01:00
"Cannot add foreign key constraint",
2002-04-26 09:45:12 +02:00
#define ER_NO_REFERENCED_ROW 1216
2002-01-26 00:19:47 +01:00
"Cannot add a child row: a foreign key constraint fails",
2002-04-26 09:45:12 +02:00
#define ER_ROW_IS_REFERENCED 1217
2002-01-26 00:19:47 +01:00
"Cannot delete a parent row: a foreign key constraint fails",
2002-04-26 09:45:12 +02:00
#define ER_CONNECT_TO_MASTER 1218
2002-01-26 00:19:47 +01:00
"Error connecting to master: %-.128s",
2002-04-26 09:45:12 +02:00
#define ER_QUERY_ON_MASTER 1219
2002-01-26 00:19:47 +01:00
"Error running query on master: %-.128s",
2002-04-26 09:45:12 +02:00
#define ER_ERROR_WHEN_EXECUTING_COMMAND 1220
2002-01-26 00:19:47 +01:00
"Error when executing command %s: %-.128s",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_USAGE 1221
2002-01-26 00:19:47 +01:00
"Wrong usage of %s and %s",
2002-04-26 09:45:12 +02:00
#define ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT 1222
2002-01-26 00:19:47 +01:00
"The used SELECT statements have a different number of columns",
2002-04-26 09:45:12 +02:00
#define ER_CANT_UPDATE_WITH_READLOCK 1223
2002-01-26 00:19:47 +01:00
"Can't execute the query because you have a conflicting read lock",
2002-04-26 09:45:12 +02:00
#define ER_MIXING_NOT_ALLOWED 1224
2002-01-26 00:19:47 +01:00
"Mixing of transactional and non-transactional tables is disabled",
2002-04-26 09:45:12 +02:00
#define ER_DUP_ARGUMENT 1225
2002-01-26 00:19:47 +01:00
"Option '%s' used twice in statement",
2002-04-26 09:45:12 +02:00
#define ER_USER_LIMIT_REACHED 1226
2002-12-20 13:58:27 +01:00
"User '%-.64s' has exceeded the '%s' resource (current value: %ld)",
#define ER_SPECIFIC_ACCESS_DENIED_ERROR 1227
"Access denied. You need the %-.128s privilege for this operation",
#define ER_LOCAL_VARIABLE 1228
"Variable '%-.64s' is a LOCAL variable and can't be used with SET GLOBAL",
#define ER_GLOBAL_VARIABLE 1229
"Variable '%-.64s' is a GLOBAL variable and should be set with SET GLOBAL",
#define ER_NO_DEFAULT 1230
"Variable '%-.64s' doesn't have a default value",
#define ER_WRONG_VALUE_FOR_VAR 1231
"Variable '%-.64s' can't be set to the value of '%-.64s'",
#define ER_WRONG_TYPE_FOR_VAR 1232
"Wrong argument type to variable '%-.64s'",
#define ER_VAR_CANT_BE_READ 1233
"Variable '%-.64s' can only be set, not read",
#define ER_CANT_USE_OPTION_HERE 1234
"Wrong usage/placement of '%s'",
#define 1235
"This version of MySQL doesn't yet support '%s'",
#define ER_MASTER_FATAL_ERROR_READING_BINLOG 1236
"Got fatal error %d: '%-.128s' from master when reading data from binary log",