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-01-26 01:19:47 +02:00
#define ER_HASHCHK 0
2000-07-31 21:29:14 +02:00
"hashchk",
2002-01-26 01:19:47 +02:00
#define ER_NISAMCHK 1
2000-07-31 21:29:14 +02:00
"isamchk",
2002-01-26 01:19:47 +02:00
#define ER_NO 2
2000-07-31 21:29:14 +02:00
"NO",
2002-01-26 01:19:47 +02:00
#define ER_YES 3
2000-07-31 21:29:14 +02:00
"YES",
2002-01-26 01:19:47 +02:00
#define ER_CANT_CREATE_FILE 4
2000-07-31 21:29:14 +02:00
"Can't create file '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_CREATE_TABLE 5
2000-07-31 21:29:14 +02:00
"Can't create table '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_CREATE_DB 6
2000-07-31 21:29:14 +02:00
"Can't create database '%-.64s'. (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_DB_CREATE_EXISTS 7
2000-07-31 21:29:14 +02:00
"Can't create database '%-.64s'. Database exists",
2002-01-26 01:19:47 +02:00
#define ER_DB_DROP_EXISTS 8
2000-07-31 21:29:14 +02:00
"Can't drop database '%-.64s'. Database doesn't exist",
2002-01-26 01:19:47 +02:00
#define ER_DB_DROP_DELETE 9
2000-07-31 21:29:14 +02:00
"Error dropping database (can't delete '%-.64s', errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_DB_DROP_RMDIR 10
2000-07-31 21:29:14 +02:00
"Error dropping database (can't rmdir '%-.64s', errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_DELETE_FILE 11
2000-07-31 21:29:14 +02:00
"Error on delete of '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_FIND_SYSTEM_REC 12
2000-07-31 21:29:14 +02:00
"Can't read record in system table",
2002-01-26 01:19:47 +02:00
#define ER_CANT_GET_STAT 13
2000-07-31 21:29:14 +02:00
"Can't get status of '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_GET_WD 14
2000-07-31 21:29:14 +02:00
"Can't get working directory (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_LOCK 15
2000-07-31 21:29:14 +02:00
"Can't lock file (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_OPEN_FILE 16
2000-07-31 21:29:14 +02:00
"Can't open file: '%-.64s'. (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_FILE_NOT_FOUND 17
2000-07-31 21:29:14 +02:00
"Can't find file: '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_READ_DIR 18
2000-07-31 21:29:14 +02:00
"Can't read dir of '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_SET_WD 19
2000-07-31 21:29:14 +02:00
"Can't change dir to '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CHECKREAD 20
2000-07-31 21:29:14 +02:00
"Record has changed since last read in table '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_DISK_FULL 21
2000-07-31 21:29:14 +02:00
"Disk full (%s). Waiting for someone to free some space....",
2002-01-26 01:19:47 +02:00
#define ER_DUP_KEY 22
2000-07-31 21:29:14 +02:00
"Can't write, duplicate key in table '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_ERROR_ON_CLOSE 23
2000-07-31 21:29:14 +02:00
"Error on close of '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_ERROR_ON_READ 24
2000-07-31 21:29:14 +02:00
"Error reading file '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_ERROR_ON_RENAME 25
2000-07-31 21:29:14 +02:00
"Error on rename of '%-.64s' to '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_ERROR_ON_WRITE 26
2000-07-31 21:29:14 +02:00
"Error writing file '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_FILE_USED 27
2000-07-31 21:29:14 +02:00
"'%-.64s' is locked against change",
2002-01-26 01:19:47 +02:00
#define ER_FILSORT_ABORT 28
2000-07-31 21:29:14 +02:00
"Sort aborted",
2002-01-26 01:19:47 +02:00
#define ER_FORM_NOT_FOUND 29
2000-07-31 21:29:14 +02:00
"View '%-.64s' doesn't exist for '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_GET_ERRNO 30
2000-07-31 21:29:14 +02:00
"Got error %d from table handler",
2002-01-26 01:19:47 +02:00
#define ER_ILLEGAL_HA 31
2000-07-31 21:29:14 +02:00
"Table handler for '%-.64s' doesn't have this option",
2002-01-26 01:19:47 +02:00
#define ER_KEY_NOT_FOUND 32
2000-07-31 21:29:14 +02:00
"Can't find record in '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_NOT_FORM_FILE 33
2000-07-31 21:29:14 +02:00
"Incorrect information in file: '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_NOT_KEYFILE 34
2000-07-31 21:29:14 +02:00
"Incorrect key file for table: '%-.64s'. Try to repair it",
2002-01-26 01:19:47 +02:00
#define ER_OLD_KEYFILE 35
2000-07-31 21:29:14 +02:00
"Old key file for table '%-.64s'; Repair it!",
2002-01-26 01:19:47 +02:00
#define ER_OPEN_AS_READONLY 36
2000-07-31 21:29:14 +02:00
"Table '%-.64s' is read only",
2002-01-26 01:19:47 +02:00
#define ER_OUTOFMEMORY 37
2000-07-31 21:29:14 +02:00
"Out of memory. Restart daemon and try again (needed %d bytes)",
2002-01-26 01:19:47 +02:00
#define ER_OUT_OF_SORTMEMORY 38
2000-07-31 21:29:14 +02:00
"Out of sort memory. Increase daemon sort buffer size",
2002-01-26 01:19:47 +02:00
#define ER_UNEXPECTED_EOF 39
2000-07-31 21:29:14 +02:00
"Unexpected eof found when reading file '%-.64s' (errno: %d)",
2002-01-26 01:19:47 +02:00
#define ER_CON_COUNT_ERROR 40
2000-07-31 21:29:14 +02:00
"Too many connections",
2002-01-26 01:19:47 +02:00
#define ER_OUT_OF_RESOURCES 41
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-01-26 01:19:47 +02:00
#define ER_BAD_HOST_ERROR 42
2000-07-31 21:29:14 +02:00
"Can't get hostname for your address",
2002-01-26 01:19:47 +02:00
#define ER_HANDSHAKE_ERROR 43
2000-07-31 21:29:14 +02:00
"Bad handshake",
2002-01-26 01:19:47 +02:00
#define ER_DBACCESS_DENIED_ERROR 44
2000-07-31 21:29:14 +02:00
"Access denied for user: '%-.32s@%-.64s' to database '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_ACCESS_DENIED_ERROR 45
2000-07-31 21:29:14 +02:00
"Access denied for user: '%-.32s@%-.64s' (Using password: %s)",
2002-01-26 01:19:47 +02:00
#define ER_NO_DB_ERROR 46
2000-07-31 21:29:14 +02:00
"No Database Selected",
2002-01-26 01:19:47 +02:00
#define ER_UNKNOWN_COM_ERROR 47
2000-07-31 21:29:14 +02:00
"Unknown command",
2002-01-26 01:19:47 +02:00
#define ER_BAD_NULL_ERROR 48
2000-07-31 21:29:14 +02:00
"Column '%-.64s' cannot be null",
2002-01-26 01:19:47 +02:00
#define ER_BAD_DB_ERROR 49
2000-07-31 21:29:14 +02:00
"Unknown database '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_TABLE_EXISTS_ERROR 50
2000-07-31 21:29:14 +02:00
"Table '%-.64s' already exists",
2002-01-26 01:19:47 +02:00
#define ER_BAD_TABLE_ERROR 51
2000-07-31 21:29:14 +02:00
"Unknown table '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_NON_UNIQ_ERROR 52
2000-07-31 21:29:14 +02:00
"Column: '%-.64s' in %-.64s is ambiguous",
2002-01-26 01:19:47 +02:00
#define ER_SERVER_SHUTDOWN 53
2000-07-31 21:29:14 +02:00
"Server shutdown in progress",
2002-01-26 01:19:47 +02:00
#define ER_BAD_FIELD_ERROR 54
2000-07-31 21:29:14 +02:00
"Unknown column '%-.64s' in '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_FIELD_WITH_GROUP 55
2000-07-31 21:29:14 +02:00
"'%-.64s' isn't in GROUP BY",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_GROUP_FIELD 56
2000-07-31 21:29:14 +02:00
"Can't group on '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_SUM_SELECT 57
2000-07-31 21:29:14 +02:00
"Statement has sum functions and columns in same statement",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_VALUE_COUNT 58
2000-07-31 21:29:14 +02:00
"Column count doesn't match value count",
2002-01-26 01:19:47 +02:00
#define ER_TOO_LONG_IDENT 59
2000-07-31 21:29:14 +02:00
"Identifier name '%-.100s' is too long",
2002-01-26 01:19:47 +02:00
#define ER_DUP_FIELDNAME 60
2000-07-31 21:29:14 +02:00
"Duplicate column name '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_DUP_KEYNAME 61
2000-07-31 21:29:14 +02:00
"Duplicate key name '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_DUP_ENTRY 62
2000-07-31 21:29:14 +02:00
"Duplicate entry '%-.64s' for key %d",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_FIELD_SPEC 63
2000-07-31 21:29:14 +02:00
"Incorrect column specifier for column '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_PARSE_ERROR 64
2000-07-31 21:29:14 +02:00
"%s near '%-.80s' at line %d",
2002-01-26 01:19:47 +02:00
#define ER_EMPTY_QUERY 65
2000-07-31 21:29:14 +02:00
"Query was empty",
2002-01-26 01:19:47 +02:00
#define ER_NONUNIQ_TABLE 66
2000-07-31 21:29:14 +02:00
"Not unique table/alias: '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_INVALID_DEFAULT 67
2000-07-31 21:29:14 +02:00
"Invalid default value for '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_MULTIPLE_PRI_KEY 68
2000-07-31 21:29:14 +02:00
"Multiple primary key defined",
2002-01-26 01:19:47 +02:00
#define ER_TOO_MANY_KEYS 69
2000-07-31 21:29:14 +02:00
"Too many keys specified. Max %d keys allowed",
2002-01-26 01:19:47 +02:00
#define ER_TOO_MANY_KEY_PARTS 70
2000-07-31 21:29:14 +02:00
"Too many key parts specified. Max %d parts allowed",
2002-01-26 01:19:47 +02:00
#define ER_TOO_LONG_KEY 71
2000-07-31 21:29:14 +02:00
"Specified key was too long. Max key length is %d",
2002-01-26 01:19:47 +02:00
#define ER_KEY_COLUMN_DOES_NOT_EXITS 72
2000-07-31 21:29:14 +02:00
"Key column '%-.64s' doesn't exist in table",
2002-01-26 01:19:47 +02:00
#define ER_BLOB_USED_AS_KEY 73
2000-07-31 21:29:14 +02:00
"BLOB column '%-.64s' can't be used in key specification with the used table type",
2002-01-26 01:19:47 +02:00
#define ER_TOO_BIG_FIELDLENGTH 74
2000-07-31 21:29:14 +02:00
"Too big column length for column '%-.64s' (max = %d). Use BLOB instead",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_AUTO_KEY 75
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-01-26 01:19:47 +02:00
#define ER_READY 76
2000-07-31 21:29:14 +02:00
"%s: ready for connections\n",
2002-01-26 01:19:47 +02:00
#define ER_NORMAL_SHUTDOWN 77
2000-07-31 21:29:14 +02:00
"%s: Normal shutdown\n",
2002-01-26 01:19:47 +02:00
#define ER_GOT_SIGNAL 78
2000-07-31 21:29:14 +02:00
"%s: Got signal %d. Aborting!\n",
2002-01-26 01:19:47 +02:00
#define ER_SHUTDOWN_COMPLETE 79
2000-07-31 21:29:14 +02:00
"%s: Shutdown Complete\n",
2002-01-26 01:19:47 +02:00
#define ER_FORCING_CLOSE 80
2000-07-31 21:29:14 +02:00
"%s: Forcing close of thread %ld user: '%-.32s'\n",
2002-01-26 01:19:47 +02:00
#define ER_IPSOCK_ERROR 81
2000-07-31 21:29:14 +02:00
"Can't create IP socket",
2002-01-26 01:19:47 +02:00
#define ER_NO_SUCH_INDEX 82
2000-07-31 21:29:14 +02:00
"Table '%-.64s' has no index like the one used in CREATE INDEX. Recreate the table",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_FIELD_TERMINATORS 83
"Field separator argument is not what is expected. Check the manual",
#define ER_BLOBS_AND_NO_TERMINATED 84
2000-07-31 21:29:14 +02:00
"You can't use fixed rowlength with BLOBs. Please use 'fields terminated by'.",
2002-01-26 01:19:47 +02:00
#define ER_TEXTFILE_NOT_READABLE 85
2000-07-31 21:29:14 +02:00
"The file '%-.64s' must be in the database directory or be readable by all",
2002-01-26 01:19:47 +02:00
#define ER_FILE_EXISTS_ERROR 86
2000-07-31 21:29:14 +02:00
"File '%-.80s' already exists",
2002-01-26 01:19:47 +02:00
#define ER_LOAD_INFO 87
2000-07-31 21:29:14 +02:00
"Records: %ld Deleted: %ld Skipped: %ld Warnings: %ld",
2002-01-26 01:19:47 +02:00
#define ER_ALTER_INFO 88
2000-07-31 21:29:14 +02:00
"Records: %ld Duplicates: %ld",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_SUB_KEY 89
"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",
#define ER_CANT_REMOVE_ALL_FIELDS 90
2000-07-31 21:29:14 +02:00
"You can't delete all columns with ALTER TABLE. Use DROP TABLE instead",
2002-01-26 01:19:47 +02:00
#define ER_CANT_DROP_FIELD_OR_KEY 91
2000-07-31 21:29:14 +02:00
"Can't DROP '%-.64s'. Check that column/key exists",
2002-01-26 01:19:47 +02:00
#define ER_INSERT_INFO 92
2000-07-31 21:29:14 +02:00
"Records: %ld Duplicates: %ld Warnings: %ld",
2002-01-26 01:19:47 +02:00
#define ER_INSERT_TABLE_USED 93
2000-07-31 21:29:14 +02:00
"INSERT TABLE '%-.64s' isn't allowed in FROM table list",
2002-01-26 01:19:47 +02:00
#define ER_NO_SUCH_THREAD 94
2000-07-31 21:29:14 +02:00
"Unknown thread id: %lu",
2002-01-26 01:19:47 +02:00
#define ER_KILL_DENIED_ERROR 95
2000-07-31 21:29:14 +02:00
"You are not owner of thread %lu",
2002-01-26 01:19:47 +02:00
#define ER_NO_TABLES_USED 96
2000-07-31 21:29:14 +02:00
"No tables used",
2002-01-26 01:19:47 +02:00
#define ER_TOO_BIG_SET 97
2000-07-31 21:29:14 +02:00
"Too many strings for column %-.64s and SET",
2002-01-26 01:19:47 +02:00
#define ER_NO_UNIQUE_LOGFILE 98
2000-07-31 21:29:14 +02:00
"Can't generate a unique log-filename %-.64s.(1-999)\n",
2002-01-26 01:19:47 +02:00
#define ER_TABLE_NOT_LOCKED_FOR_WRITE 99
2000-07-31 21:29:14 +02:00
"Table '%-.64s' was locked with a READ lock and can't be updated",
2002-01-26 01:19:47 +02:00
#define ER_TABLE_NOT_LOCKED 100
2000-07-31 21:29:14 +02:00
"Table '%-.64s' was not locked with LOCK TABLES",
2002-01-26 01:19:47 +02:00
#define ER_BLOB_CANT_HAVE_DEFAULT 101
2000-07-31 21:29:14 +02:00
"BLOB column '%-.64s' can't have a default value",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_DB_NAME 102
2000-07-31 21:29:14 +02:00
"Incorrect database name '%-.100s'",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_TABLE_NAME 103
2000-07-31 21:29:14 +02:00
"Incorrect table name '%-.100s'",
2002-01-26 01:19:47 +02:00
#define ER_TOO_BIG_SELECT 104
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-01-26 01:19:47 +02:00
#define ER_UNKNOWN_ERROR 105
2000-07-31 21:29:14 +02:00
"Unknown error",
2002-01-26 01:19:47 +02:00
#define ER_UNKNOWN_PROCEDURE 106
2000-07-31 21:29:14 +02:00
"Unknown procedure '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_PARAMCOUNT_TO_PROCEDURE 107
2000-07-31 21:29:14 +02:00
"Incorrect parameter count to procedure '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_PARAMETERS_TO_PROCEDURE 108
2000-07-31 21:29:14 +02:00
"Incorrect parameters to procedure '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_UNKNOWN_TABLE 109
2000-07-31 21:29:14 +02:00
"Unknown table '%-.64s' in %-.32s",
2002-01-26 01:19:47 +02:00
#define ER_FIELD_SPECIFIED_TWICE 110
2000-07-31 21:29:14 +02:00
"Column '%-.64s' specified twice",
2002-01-26 01:19:47 +02:00
#define ER_INVALID_GROUP_FUNC_USE 111
2000-07-31 21:29:14 +02:00
"Invalid use of group function",
2002-01-26 01:19:47 +02:00
#define ER_UNSUPPORTED_EXTENSION 112
2000-07-31 21:29:14 +02:00
"Table '%-.64s' uses an extension that doesn't exist in this MySQL version",
2002-01-26 01:19:47 +02:00
#define ER_TABLE_MUST_HAVE_COLUMNS 113
2000-07-31 21:29:14 +02:00
"A table must have at least 1 column",
2002-01-26 01:19:47 +02:00
#define ER_RECORD_FILE_FULL 114
2000-07-31 21:29:14 +02:00
"The table '%-.64s' is full",
2002-01-26 01:19:47 +02:00
#define ER_UNKNOWN_CHARACTER_SET 115
2000-07-31 21:29:14 +02:00
"Unknown character set: '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_TOO_MANY_TABLES 116
2000-07-31 21:29:14 +02:00
"Too many tables. MySQL can only use %d tables in a join",
2002-01-26 01:19:47 +02:00
#define ER_TOO_MANY_FIELDS 117
2000-07-31 21:29:14 +02:00
"Too many columns",
2002-01-26 01:19:47 +02:00
#define ER_TOO_BIG_ROWSIZE 118
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-01-26 01:19:47 +02:00
#define ER_STACK_OVERRUN 119
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-01-26 01:19:47 +02:00
#define ER_WRONG_OUTER_JOIN 120
2000-07-31 21:29:14 +02:00
"Cross dependency found in OUTER JOIN. Examine your ON conditions",
2002-01-26 01:19:47 +02:00
#define ER_NULL_COLUMN_IN_INDEX 121
2000-07-31 21:29:14 +02:00
"Column '%-.64s' is used with UNIQUE or INDEX but is not defined as NOT NULL",
2002-01-26 01:19:47 +02:00
#define ER_CANT_FIND_UDF 122
2000-07-31 21:29:14 +02:00
"Can't load function '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_CANT_INITIALIZE_UDF 123
2000-07-31 21:29:14 +02:00
"Can't initialize function '%-.64s'; %-.80s",
2002-01-26 01:19:47 +02:00
#define ER_UDF_NO_PATHS 124
2000-07-31 21:29:14 +02:00
"No paths allowed for shared library",
2002-01-26 01:19:47 +02:00
#define ER_UDF_EXISTS 125
2000-07-31 21:29:14 +02:00
"Function '%-.64s' already exist",
2002-01-26 01:19:47 +02:00
#define ER_CANT_OPEN_LIBRARY 126
2000-07-31 21:29:14 +02:00
"Can't open shared library '%-.64s' (errno: %d %-.64s)",
2002-01-26 01:19:47 +02:00
#define ER_CANT_FIND_DL_ENTRY 127
2000-07-31 21:29:14 +02:00
"Can't find function '%-.64s' in library'",
2002-01-26 01:19:47 +02:00
#define ER_FUNCTION_NOT_DEFINED 128
2000-07-31 21:29:14 +02:00
"Function '%-.64s' is not defined",
2002-01-26 01:19:47 +02:00
#define ER_HOST_IS_BLOCKED 129
2000-07-31 21:29:14 +02:00
"Host '%-.64s' is blocked because of many connection errors. Unblock with 'mysqladmin flush-hosts'",
2002-01-26 01:19:47 +02:00
#define ER_HOST_NOT_PRIVILEGED 130
2000-07-31 21:29:14 +02:00
"Host '%-.64s' is not allowed to connect to this MySQL server",
2002-01-26 01:19:47 +02:00
#define ER_PASSWORD_ANONYMOUS_USER 131
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-01-26 01:19:47 +02:00
#define ER_PASSWORD_NOT_ALLOWED 132
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-01-26 01:19:47 +02:00
#define ER_PASSWORD_NO_MATCH 133
2000-07-31 21:29:14 +02:00
"Can't find any matching row in the user table",
2002-01-26 01:19:47 +02:00
#define ER_UPDATE_INFO 134
2000-07-31 21:29:14 +02:00
"Rows matched: %ld Changed: %ld Warnings: %ld",
2002-01-26 01:19:47 +02:00
#define ER_CANT_CREATE_THREAD 135
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-01-26 01:19:47 +02:00
#define ER_WRONG_VALUE_COUNT_ON_ROW 136
2000-07-31 21:29:14 +02:00
"Column count doesn't match value count at row %ld",
2002-01-26 01:19:47 +02:00
#define ER_CANT_REOPEN_TABLE 137
2000-07-31 21:29:14 +02:00
"Can't reopen table: '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_INVALID_USE_OF_NULL 138
2000-07-31 21:29:14 +02:00
"Invalid use of NULL value",
2002-01-26 01:19:47 +02:00
#define ER_REGEXP_ERROR 139
2000-07-31 21:29:14 +02:00
"Got error '%-.64s' from regexp",
2002-01-26 01:19:47 +02:00
#define ER_MIX_OF_GROUP_FUNC_AND_FIELDS 140
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-01-26 01:19:47 +02:00
#define ER_NONEXISTING_GRANT 141
2000-07-31 21:29:14 +02:00
"There is no such grant defined for user '%-.32s' on host '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_TABLEACCESS_DENIED_ERROR 142
2000-07-31 21:29:14 +02:00
"%-.16s command denied to user: '%-.32s@%-.64s' for table '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_COLUMNACCESS_DENIED_ERROR 143
2000-07-31 21:29:14 +02:00
"%-.16s command denied to user: '%-.32s@%-.64s' for column '%-.64s' in table '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_ILLEGAL_GRANT_FOR_TABLE 144
2000-07-31 21:29:14 +02:00
"Illegal GRANT/REVOKE command. Please consult the manual which privileges can be used.",
2002-01-26 01:19:47 +02:00
#define ER_GRANT_WRONG_HOST_OR_USER 145
2000-07-31 21:29:14 +02:00
"The host or user argument to GRANT is too long",
2002-01-26 01:19:47 +02:00
#define ER_NO_SUCH_TABLE 146
2000-07-31 21:29:14 +02:00
"Table '%-.64s.%-.64s' doesn't exist",
2002-01-26 01:19:47 +02:00
#define ER_NONEXISTING_TABLE_GRANT 147
2000-07-31 21:29:14 +02:00
"There is no such grant defined for user '%-.32s' on host '%-.64s' on table '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_NOT_ALLOWED_COMMAND 148
2000-07-31 21:29:14 +02:00
"The used command is not allowed with this MySQL version",
2002-01-26 01:19:47 +02:00
#define ER_SYNTAX_ERROR 149
2000-07-31 21:29:14 +02:00
"You have an error in your SQL syntax",
2002-01-26 01:19:47 +02:00
#define ER_DELAYED_CANT_CHANGE_LOCK 150
2000-07-31 21:29:14 +02:00
"Delayed insert thread couldn't get requested lock for table %-.64s",
2002-01-26 01:19:47 +02:00
#define ER_TOO_MANY_DELAYED_THREADS 151
2000-07-31 21:29:14 +02:00
"Too many delayed threads in use",
2002-01-26 01:19:47 +02:00
#define ER_ABORTING_CONNECTION 152
2000-07-31 21:29:14 +02:00
"Aborted connection %ld to db: '%-.64s' user: '%-.32s' (%-.64s)",
2002-01-26 01:19:47 +02:00
#define ER_NET_PACKET_TOO_LARGE 153
2000-07-31 21:29:14 +02:00
"Got a packet bigger than 'max_allowed_packet'",
2002-01-26 01:19:47 +02:00
#define ER_NET_READ_ERROR_FROM_PIPE 154
2000-07-31 21:29:14 +02:00
"Got a read error from the connection pipe",
2002-01-26 01:19:47 +02:00
#define ER_NET_FCNTL_ERROR 155
2000-07-31 21:29:14 +02:00
"Got an error from fcntl()",
2002-01-26 01:19:47 +02:00
#define ER_NET_PACKETS_OUT_OF_ORDER 156
2000-07-31 21:29:14 +02:00
"Got packets out of order",
2002-01-26 01:19:47 +02:00
#define ER_NET_UNCOMPRESS_ERROR 157
2000-07-31 21:29:14 +02:00
"Couldn't uncompress communication packet",
2002-01-26 01:19:47 +02:00
#define ER_NET_READ_ERROR 158
2000-07-31 21:29:14 +02:00
"Got an error reading communication packets",
2002-01-26 01:19:47 +02:00
#define ER_NET_READ_INTERRUPTED 159
2000-07-31 21:29:14 +02:00
"Got timeout reading communication packets",
2002-01-26 01:19:47 +02:00
#define ER_NET_ERROR_ON_WRITE 160
2000-07-31 21:29:14 +02:00
"Got an error writing communication packets",
2002-01-26 01:19:47 +02:00
#define ER_NET_WRITE_INTERRUPTED 161
2000-07-31 21:29:14 +02:00
"Got timeout writing communication packets",
2002-01-26 01:19:47 +02:00
#define ER_TOO_LONG_STRING 162
2000-07-31 21:29:14 +02:00
"Result string is longer than max_allowed_packet",
2002-01-26 01:19:47 +02:00
#define ER_TABLE_CANT_HANDLE_BLOB 163
2000-07-31 21:29:14 +02:00
"The used table type doesn't support BLOB/TEXT columns",
2002-01-26 01:19:47 +02:00
#define ER_TABLE_CANT_HANDLE_AUTO_INCREMENT 164
2000-07-31 21:29:14 +02:00
"The used table type doesn't support AUTO_INCREMENT columns",
2002-01-26 01:19:47 +02:00
#define ER_DELAYED_INSERT_TABLE_LOCKED 165
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-01-26 01:19:47 +02:00
#define ER_WRONG_COLUMN_NAME 166
2000-07-31 21:29:14 +02:00
"Incorrect column name '%-.100s'",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_KEY_COLUMN 167
2000-07-31 21:29:14 +02:00
"The used table handler can't index column '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_WRONG_MRG_TABLE 168
2000-07-31 21:29:14 +02:00
"All tables in the MERGE table are not identically defined",
2002-01-26 01:19:47 +02:00
#define ER_DUP_UNIQUE 169
2000-07-31 21:29:14 +02:00
"Can't write, because of unique constraint, to table '%-.64s'",
2002-01-26 01:19:47 +02:00
#define ER_BLOB_KEY_WITHOUT_LENGTH 170
2000-07-31 21:29:14 +02:00
"BLOB column '%-.64s' used in key specification without a key length",
2002-01-26 01:19:47 +02:00
#define ER_PRIMARY_CANT_HAVE_NULL 171
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-01-26 01:19:47 +02:00
#define ER_TOO_MANY_ROWS 172
2000-07-31 21:29:14 +02:00
"Result consisted of more than one row",
2002-01-26 01:19:47 +02:00
#define ER_REQUIRES_PRIMARY_KEY 173
2000-07-31 21:29:14 +02:00
"This table type requires a primary key",
2002-01-26 01:19:47 +02:00
#define ER_NO_RAID_COMPILED 174
2000-07-31 21:29:14 +02:00
"This version of MySQL is not compiled with RAID support",
2002-01-26 01:19:47 +02:00
#define ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE 175
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-01-26 01:19:47 +02:00
#define ER_KEY_DOES_NOT_EXITS 176
"Key '%-.64s' doesn't exist in table '%-.64s'",
#define ER_CHECK_NO_SUCH_TABLE 177
"Can't open table",
#define ER_CHECK_NOT_IMPLEMENTED 178
"The handler for the table doesn't support check/repair",
#define ER_CANT_DO_THIS_DURING_AN_TRANSACTION 179
"You are not allowed to execute this command in a transaction",
#define ER_ERROR_DURING_COMMIT 180
"Got error %d during COMMIT",
#define ER_ERROR_DURING_ROLLBACK 181
"Got error %d during ROLLBACK",
#define ER_ERROR_DURING_FLUSH_LOGS 182
"Got error %d during FLUSH_LOGS",
#define ER_ERROR_DURING_CHECKPOINT 183
"Got error %d during CHECKPOINT",
#define ER_NEW_ABORTING_CONNECTION 184
"Aborted connection %ld to db: '%-.64s' user: '%-.32s' host: `%-.64s' (%-.64s)",
#define ER_DUMP_NOT_IMPLEMENTED 185
"The handler for the table does not support binary table dump",
#define ER_FLUSH_MASTER_BINLOG_CLOSED 186
"Binlog closed, cannot RESET MASTER",
#define ER_INDEX_REBUILD 187
"Failed rebuilding the index of dumped table '%-.64s'",
#define ER_MASTER 188
"Error from master: '%-.64s'",
#define ER_MASTER_NET_READ 189
"Net error reading from master",
#define ER_MASTER_NET_WRITE 190
"Net error writing to master",
#define ER_FT_MATCHING_KEY_NOT_FOUND 191
"Can't find FULLTEXT index matching the column list",
#define ER_LOCK_OR_ACTIVE_TRANSACTION 192
"Can't execute the given command because you have active locked tables or an active transaction",
#define ER_UNKNOWN_SYSTEM_VARIABLE 193
"Unknown system variable '%-.64'",
#define ER_CRASHED_ON_USAGE 194
"Table '%-.64s' is marked as crashed and should be repaired",
#define ER_CRASHED_ON_REPAIR 195
"Table '%-.64s' is marked as crashed and last (automatic?) repair failed",
#define ER_WARNING_NOT_COMPLETE_ROLLBACK 196
"Warning: Some non-transactional changed tables couldn't be rolled back",
#define ER_TRANS_CACHE_FULL 197
"Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage. Increase this mysqld variable and try again',
#define ER_SLAVE_MUST_STOP 198
"This operation cannot be performed with a running slave, run SLAVE STOP first",
#define ER_SLAVE_NOT_RUNNING 199
"This operation requires a running slave, configure slave and do SLAVE START",
#define ER_BAD_SLAVE 200
"The server is not configured as slave, fix in config file or with CHANGE MASTER TO",
#define ER_MASTER_INFO 201
"Could not initialize master info structure, check permisions on master.info",
#define ER_SLAVE_THREAD 202
"Could not create slave thread, check system resources",
#define ER_TOO_MANY_USER_CONNECTIONS 203
"User %-.64s has already more than 'max_user_connections' active connections",
#define ER_SET_CONSTANTS_ONLY 204
"You may only use constant expressions with SET",
#define ER_LOCK_WAIT_TIMEOUT 205
"Lock wait timeout exceeded; Try restarting transaction",
#define ER_LOCK_TABLE_FULL 206
"The total number of locks exceeds the lock table size",
#define ER_READ_ONLY_TRANSACTION 207
"Update locks cannot be acquired during a READ UNCOMMITTED transaction",
#define ER_DROP_DB_WITH_READ_LOCK 208
"DROP DATABASE not allowed while thread is holding global read lock",
#define ER_CREATE_DB_WITH_READ_LOCK 209
"CREATE DATABASE not allowed while thread is holding global read lock",
#define ER_WRONG_ARGUMENTS 210
"Wrong arguments to %s",
#define ER_NO_PERMISSION_TO_CREATE_USER 211
"%-.32s@%-.64s is not allowed to create new users",
#define ER_UNION_TABLES_IN_DIFFERENT_DIR 212
"Incorrect table definition; All MERGE tables must be in the same database",
#define ER_LOCK_DEADLOCK 213
"Deadlock found when trying to get lock; Try restarting transaction",
#define ER_TABLE_CANT_HANDLE_FULLTEXT 214
"The used table type doesn't support FULLTEXT indexes",
#define ER_CANNOT_ADD_FOREIGN 215
"Cannot add foreign key constraint",
#define ER_NO_REFERENCED_ROW 216
"Cannot add a child row: a foreign key constraint fails",
#define ER_ROW_IS_REFERENCED 217
"Cannot delete a parent row: a foreign key constraint fails",
#define ER_CONNECT_TO_MASTER 218
"Error connecting to master: %-.128s",
#define ER_QUERY_ON_MASTER 219
"Error running query on master: %-.128s",
#define ER_ERROR_WHEN_EXECUTING_COMMAND 220
"Error when executing command %s: %-.128s",
#define ER_WRONG_USAGE 221
"Wrong usage of %s and %s",
#define ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT 222
"The used SELECT statements have a different number of columns",
#define ER_CANT_UPDATE_WITH_READLOCK 223
"Can't execute the query because you have a conflicting read lock",
#define ER_MIXING_NOT_ALLOWED 224
"Mixing of transactional and non-transactional tables is disabled",
#define ER_DUP_ARGUMENT 225
"Option '%s' used twice in statement",
2002-01-29 18:32:16 +02:00
#define ER_TOO_MANY_USER_CONNECTIONS 203
"User %-.64s has already more than 'max_user_connections' active connections",