~drizzle-trunk/drizzle/development

202.3.11 by Monty Taylor
Ding dong. errmsg.sys is dead.
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 MySQL
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; either version 2 of the License, or
9
 *  (at your option) any later version.
10
 *
11
 *  This program is distributed in the hope that it will be useful,
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 *  GNU General Public License for more details.
15
 *
16
 *  You should have received a copy of the GNU General Public License
17
 *  along with this program; if not, write to the Free Software
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 */
20
21
#ifndef _drizzled_drizzled_error_messages
22
#define _drizzled_drizzled_error_messages
23
24
25
/*
26
 *   Errors a drizzled can give you
27
 *   */
28
29
static const char *drizzled_error_messages[]=
30
{
31
/* ER_HASHCHK   */
32
gettext_noop("hashchk"),
33
/* ER_NISAMCHK   */
34
gettext_noop("isamchk"),
35
/* ER_NO   */
36
gettext_noop("NO"),
37
/* ER_YES   */
38
gettext_noop("YES"),
39
/* ER_CANT_CREATE_FILE   */
40
gettext_noop("Can't create file '%-.200s' (errno: %d)"),
41
/* ER_CANT_CREATE_TABLE   */
42
gettext_noop("Can't create table '%-.200s' (errno: %d)"),
43
/* ER_CANT_CREATE_DB   */
44
gettext_noop("Can't create database '%-.192s' (errno: %d)"),
45
/* ER_DB_CREATE_EXISTS   */
46
gettext_noop("Can't create database '%-.192s'; database exists"),
47
/* ER_DB_DROP_EXISTS   */
48
gettext_noop("Can't drop database '%-.192s'; database doesn't exist"),
49
/* ER_DB_DROP_DELETE   */
50
gettext_noop("Error dropping database (can't delete '%-.192s', errno: %d)"),
51
/* ER_DB_DROP_RMDIR   */
52
gettext_noop("Error dropping database (can't rmdir '%-.192s', errno: %d)"),
53
/* ER_CANT_DELETE_FILE   */
54
gettext_noop("Error on delete of '%-.192s' (errno: %d)"),
55
/* ER_CANT_FIND_SYSTEM_REC   */
56
gettext_noop("Can't read record in system table"),
57
/* ER_CANT_GET_STAT   */
58
gettext_noop("Can't get status of '%-.200s' (errno: %d)"),
59
/* ER_CANT_GET_WD   */
60
gettext_noop("Can't get working directory (errno: %d)"),
61
/* ER_CANT_LOCK   */
62
gettext_noop("Can't lock file (errno: %d)"),
63
/* ER_CANT_OPEN_FILE   */
64
gettext_noop("Can't open file: '%-.200s' (errno: %d)"),
65
/* ER_FILE_NOT_FOUND   */
66
gettext_noop("Can't find file: '%-.200s' (errno: %d)"),
67
/* ER_CANT_READ_DIR   */
68
gettext_noop("Can't read dir of '%-.192s' (errno: %d)"),
69
/* ER_CANT_SET_WD   */
70
gettext_noop("Can't change dir to '%-.192s' (errno: %d)"),
71
/* ER_CHECKREAD   */
72
gettext_noop("Record has changed since last read in table '%-.192s'"),
73
/* ER_DISK_FULL   */
74
gettext_noop("Disk full (%s); waiting for someone to free some space..."),
75
/* ER_DUP_KEY 23000  */
76
gettext_noop("Can't write; duplicate key in table '%-.192s'"),
77
/* ER_ERROR_ON_CLOSE   */
78
gettext_noop("Error on close of '%-.192s' (errno: %d)"),
79
/* ER_ERROR_ON_READ   */
80
gettext_noop("Error reading file '%-.200s' (errno: %d)"),
81
/* ER_ERROR_ON_RENAME   */
82
gettext_noop("Error on rename of '%-.150s' to '%-.150s' (errno: %d)"),
83
/* ER_ERROR_ON_WRITE   */
84
gettext_noop("Error writing file '%-.200s' (errno: %d)"),
85
/* ER_FILE_USED   */
86
gettext_noop("'%-.192s' is locked against change"),
87
/* ER_FILSORT_ABORT   */
88
gettext_noop("Sort aborted"),
89
/* ER_FORM_NOT_FOUND   */
90
gettext_noop("View '%-.192s' doesn't exist for '%-.192s'"),
91
/* ER_GET_ERRNO   */
92
gettext_noop("Got error %d from storage engine"),
93
/* ER_ILLEGAL_HA   */
94
gettext_noop("Table storage engine for '%-.192s' doesn't have this option"),
95
/* ER_KEY_NOT_FOUND   */
96
gettext_noop("Can't find record in '%-.192s'"),
97
/* ER_NOT_FORM_FILE   */
98
gettext_noop("Incorrect information in file: '%-.200s'"),
99
/* ER_NOT_KEYFILE   */
100
gettext_noop("Incorrect key file for table '%-.200s'; try to repair it"),
101
/* ER_OLD_KEYFILE   */
102
gettext_noop("Old key file for table '%-.192s'; repair it!"),
103
/* ER_OPEN_AS_READONLY   */
104
gettext_noop("Table '%-.192s' is read only"),
105
/* ER_OUTOFMEMORY HY001 S1001 */
106
gettext_noop("Out of memory; restart server and try again (needed %d bytes)"),
107
/* ER_OUT_OF_SORTMEMORY HY001 S1001 */
108
gettext_noop("Out of sort memory; increase server sort buffer size"),
109
/* ER_UNEXPECTED_EOF   */
110
gettext_noop("Unexpected EOF found when reading file '%-.192s' (errno: %d)"),
111
/* ER_CON_COUNT_ERROR 08004  */
112
gettext_noop("Too many connections"),
113
/* ER_OUT_OF_RESOURCES   */
114
gettext_noop("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"),
115
/* ER_BAD_HOST_ERROR 08S01  */
116
gettext_noop("Can't get hostname for your address"),
117
/* ER_HANDSHAKE_ERROR 08S01  */
118
gettext_noop("Bad handshake"),
119
/* ER_DBACCESS_DENIED_ERROR 42000  */
120
gettext_noop("Access denied for user '%-.48s'@'%-.64s' to database '%-.192s'"),
121
/* ER_ACCESS_DENIED_ERROR 28000  */
122
gettext_noop("Access denied for user '%-.48s'@'%-.64s' (using password: %s)"),
123
/* ER_NO_DB_ERROR 3D000  */
124
gettext_noop("No database selected"),
125
/* ER_UNKNOWN_COM_ERROR 08S01  */
126
gettext_noop("Unknown command"),
127
/* ER_BAD_NULL_ERROR 23000  */
128
gettext_noop("Column '%-.192s' cannot be null"),
129
/* ER_BAD_DB_ERROR 42000  */
130
gettext_noop("Unknown database '%-.192s'"),
131
/* ER_TABLE_EXISTS_ERROR 42S01  */
132
gettext_noop("Table '%-.192s' already exists"),
133
/* ER_BAD_TABLE_ERROR 42S02  */
134
gettext_noop("Unknown table '%-.100s'"),
135
/* ER_NON_UNIQ_ERROR 23000  */
136
gettext_noop("Column '%-.192s' in %-.192s is ambiguous"),
137
/* ER_SERVER_SHUTDOWN 08S01  */
138
gettext_noop("Server shutdown in progress"),
139
/* ER_BAD_FIELD_ERROR 42S22 S0022 */
140
gettext_noop("Unknown column '%-.192s' in '%-.192s'"),
141
/* ER_WRONG_FIELD_WITH_GROUP 42000 S1009 */
142
gettext_noop("'%-.192s' isn't in GROUP BY"),
143
/* ER_WRONG_GROUP_FIELD 42000 S1009 */
144
gettext_noop("Can't group on '%-.192s'"),
145
/* ER_WRONG_SUM_SELECT 42000 S1009 */
146
gettext_noop("Statement has sum functions and columns in same statement"),
147
/* ER_WRONG_VALUE_COUNT 21S01  */
148
gettext_noop("Column count doesn't match value count"),
149
/* ER_TOO_LONG_IDENT 42000 S1009 */
150
gettext_noop("Identifier name '%-.100s' is too long"),
151
/* ER_DUP_FIELDNAME 42S21 S1009 */
152
gettext_noop("Duplicate column name '%-.192s'"),
153
/* ER_DUP_KEYNAME 42000 S1009 */
154
gettext_noop("Duplicate key name '%-.192s'"),
155
/* ER_DUP_ENTRY 23000 S1009 */
156
gettext_noop("Duplicate entry '%-.192s' for key %d"),
157
/* ER_WRONG_FIELD_SPEC 42000 S1009 */
158
gettext_noop("Incorrect column specifier for column '%-.192s'"),
159
/* ER_PARSE_ERROR 42000 s1009 */
160
gettext_noop("%s near '%-.80s' at line %d"),
161
/* ER_EMPTY_QUERY 42000   */
162
gettext_noop("Query was empty"),
163
/* ER_NONUNIQ_TABLE 42000 S1009 */
164
gettext_noop("Not unique table/alias: '%-.192s'"),
165
/* ER_INVALID_DEFAULT 42000 S1009 */
166
gettext_noop("Invalid default value for '%-.192s'"),
167
/* ER_MULTIPLE_PRI_KEY 42000 S1009 */
168
gettext_noop("Multiple primary key defined"),
169
/* ER_TOO_MANY_KEYS 42000 S1009 */
170
gettext_noop("Too many keys specified; max %d keys allowed"),
171
/* ER_TOO_MANY_KEY_PARTS 42000 S1009 */
172
gettext_noop("Too many key parts specified; max %d parts allowed"),
173
/* ER_TOO_LONG_KEY 42000 S1009 */
174
gettext_noop("Specified key was too long; max key length is %d bytes"),
175
/* ER_KEY_COLUMN_DOES_NOT_EXITS 42000 S1009 */
176
gettext_noop("Key column '%-.192s' doesn't exist in table"),
177
/* ER_BLOB_USED_AS_KEY 42000 S1009 */
178
gettext_noop("BLOB column '%-.192s' can't be used in key specification with the used table type"),
179
/* ER_TOO_BIG_FIELDLENGTH 42000 S1009 */
180
gettext_noop("Column length too big for column '%-.192s' (max = %d); use BLOB or TEXT instead"),
181
/* ER_WRONG_AUTO_KEY 42000 S1009 */
182
gettext_noop("Incorrect table definition; there can be only one auto column and it must be defined as a key"),
183
/* ER_READY   */
184
gettext_noop("%s: ready for connections.\nVersion: '%s'  socket: '%s'  port: %d"),
185
/* ER_NORMAL_SHUTDOWN   */
186
gettext_noop("%s: Normal shutdown\n"),
187
/* ER_GOT_SIGNAL   */
188
gettext_noop("%s: Got signal %d. Aborting!\n"),
189
/* ER_SHUTDOWN_COMPLETE   */
190
gettext_noop("%s: Shutdown complete\n"),
191
/* ER_FORCING_CLOSE 08S01  */
192
gettext_noop("%s: Forcing close of thread %ld  user: '%-.48s'\n"),
193
/* ER_IPSOCK_ERROR 08S01  */
194
gettext_noop("Can't create IP socket"),
195
/* ER_NO_SUCH_INDEX 42S12 S1009 */
196
gettext_noop("Table '%-.192s' has no index like the one used in CREATE INDEX; recreate the table"),
197
/* ER_WRONG_FIELD_TERMINATORS 42000 S1009 */
198
gettext_noop("Field separator argument is not what is expected; check the manual"),
199
/* ER_BLOBS_AND_NO_TERMINATED 42000 S1009 */
200
gettext_noop("You can't use fixed rowlength with BLOBs; please use 'fields terminated by'"),
201
/* ER_TEXTFILE_NOT_READABLE   */
202
gettext_noop("The file '%-.128s' must be in the database directory or be readable by all"),
203
/* ER_FILE_EXISTS_ERROR   */
204
gettext_noop("File '%-.200s' already exists"),
205
/* ER_LOAD_INFO   */
206
gettext_noop("Records: %ld  Deleted: %ld  Skipped: %ld  Warnings: %ld"),
207
/* ER_ALTER_INFO   */
208
gettext_noop("Records: %ld  Duplicates: %ld"),
209
/* ER_WRONG_SUB_KEY   */
210
gettext_noop("Incorrect prefix key; the used key part isn't a string, the used length is longer than the key part, or the storage engine doesn't support unique prefix keys"),
211
/* ER_CANT_REMOVE_ALL_FIELDS 42000  */
212
gettext_noop("You can't delete all columns with ALTER TABLE; use DROP TABLE instead"),
213
/* ER_CANT_DROP_FIELD_OR_KEY 42000  */
214
gettext_noop("Can't DROP '%-.192s'; check that column/key exists"),
215
/* ER_INSERT_INFO   */
216
gettext_noop("Records: %ld  Duplicates: %ld  Warnings: %ld"),
217
/* ER_UPDATE_TABLE_USED   */
218
gettext_noop("You can't specify target table '%-.192s' for update in FROM clause"),
219
/* ER_NO_SUCH_THREAD   */
220
gettext_noop("Unknown thread id: %lu"),
221
/* ER_KILL_DENIED_ERROR   */
222
gettext_noop("You are not owner of thread %lu"),
223
/* ER_NO_TABLES_USED   */
224
gettext_noop("No tables used"),
225
/* ER_TOO_BIG_SET   */
226
gettext_noop("Too many strings for column %-.192s and SET"),
227
/* ER_NO_UNIQUE_LOGFILE   */
228
gettext_noop("Can't generate a unique log-filename %-.200s.(1-999)\n"),
229
/* ER_TABLE_NOT_LOCKED_FOR_WRITE   */
230
gettext_noop("Table '%-.192s' was locked with a READ lock and can't be updated"),
231
/* ER_TABLE_NOT_LOCKED   */
232
gettext_noop("Table '%-.192s' was not locked with LOCK TABLES"),
233
/* ER_BLOB_CANT_HAVE_DEFAULT 42000  */
234
gettext_noop("BLOB/TEXT column '%-.192s' can't have a default value"),
235
/* ER_WRONG_DB_NAME 42000  */
236
gettext_noop("Incorrect database name '%-.100s'"),
237
/* ER_WRONG_TABLE_NAME 42000  */
238
gettext_noop("Incorrect table name '%-.100s'"),
239
/* ER_TOO_BIG_SELECT 42000  */
240
gettext_noop("The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is okay"),
241
/* ER_UNKNOWN_ERROR   */
242
gettext_noop("Unknown error"),
243
/* ER_UNKNOWN_PROCEDURE 42000  */
244
gettext_noop("Unknown procedure '%-.192s'"),
245
/* ER_WRONG_PARAMCOUNT_TO_PROCEDURE 42000  */
246
gettext_noop("Incorrect parameter count to procedure '%-.192s'"),
247
/* ER_WRONG_PARAMETERS_TO_PROCEDURE   */
248
gettext_noop("Incorrect parameters to procedure '%-.192s'"),
249
/* ER_UNKNOWN_TABLE 42S02  */
250
gettext_noop("Unknown table '%-.192s' in %-.32s"),
251
/* ER_FIELD_SPECIFIED_TWICE 42000  */
252
gettext_noop("Column '%-.192s' specified twice"),
253
/* ER_INVALID_GROUP_FUNC_USE   */
254
gettext_noop("Invalid use of group function"),
255
/* ER_UNSUPPORTED_EXTENSION 42000  */
256
gettext_noop("Table '%-.192s' uses an extension that doesn't exist in this MySQL version"),
257
/* ER_TABLE_MUST_HAVE_COLUMNS 42000  */
258
gettext_noop("A table must have at least 1 column"),
259
/* ER_RECORD_FILE_FULL   */
260
gettext_noop("The table '%-.192s' is full"),
261
/* ER_UNKNOWN_CHARACTER_SET 42000  */
262
gettext_noop("Unknown character set: '%-.64s'"),
263
/* ER_TOO_MANY_TABLES   */
264
gettext_noop("Too many tables; MySQL can only use %d tables in a join"),
265
/* ER_TOO_MANY_FIELDS   */
266
gettext_noop("Too many columns"),
267
/* ER_TOO_BIG_ROWSIZE 42000  */
268
gettext_noop("Row size too large. The maximum row size for the used table type, not counting BLOBs, is %ld. You have to change some columns to TEXT or BLOBs"),
269
/* ER_STACK_OVERRUN   */
270
gettext_noop("Thread stack overrun:  Used: %ld of a %ld stack.  Use 'mysqld -O thread_stack=#' to specify a bigger stack if needed"),
271
/* ER_WRONG_OUTER_JOIN 42000  */
272
gettext_noop("Cross dependency found in OUTER JOIN; examine your ON conditions"),
273
/* ER_NULL_COLUMN_IN_INDEX 42000  */
274
gettext_noop("Table handler doesn't support NULL in given index. Please change column '%-.192s' to be NOT NULL or use another handler"),
275
/* ER_CANT_FIND_UDF   */
276
gettext_noop("Can't load function '%-.192s'"),
277
/* ER_CANT_INITIALIZE_UDF   */
278
gettext_noop("Can't initialize function '%-.192s'; %-.80s"),
279
/* ER_UDF_NO_PATHS   */
280
gettext_noop("No paths allowed for shared library"),
281
/* ER_UDF_EXISTS   */
282
gettext_noop("Function '%-.192s' already exists"),
283
/* ER_CANT_OPEN_LIBRARY   */
284
gettext_noop("Can't open shared library '%-.192s' (errno: %d %-.128s)"),
285
/* ER_CANT_FIND_DL_ENTRY */
286
gettext_noop("Can't find symbol '%-.128s' in library"),
287
/* ER_FUNCTION_NOT_DEFINED   */
288
gettext_noop("Function '%-.192s' is not defined"),
289
/* ER_HOST_IS_BLOCKED   */
290
gettext_noop("Host '%-.64s' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'"),
291
/* ER_HOST_NOT_PRIVILEGED   */
292
gettext_noop("Host '%-.64s' is not allowed to connect to this MySQL server"),
293
/* ER_PASSWORD_ANONYMOUS_USER 42000  */
294
gettext_noop("You are using MySQL as an anonymous user and anonymous users are not allowed to change passwords"),
295
/* ER_PASSWORD_NOT_ALLOWED 42000  */
296
gettext_noop("You must have privileges to update tables in the mysql database to be able to change passwords for others"),
297
/* ER_PASSWORD_NO_MATCH 42000  */
298
gettext_noop("Can't find any matching row in the user table"),
299
/* ER_UPDATE_INFO   */
300
gettext_noop("Rows matched: %ld  Changed: %ld  Warnings: %ld"),
301
/* ER_CANT_CREATE_THREAD   */
302
gettext_noop("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"),
303
/* ER_WRONG_VALUE_COUNT_ON_ROW 21S01  */
304
gettext_noop("Column count doesn't match value count at row %ld"),
305
/* ER_CANT_REOPEN_TABLE   */
306
gettext_noop("Can't reopen table: '%-.192s'"),
307
/* ER_INVALID_USE_OF_NULL 22004  */
308
gettext_noop("Invalid use of NULL value"),
309
/* ER_REGEXP_ERROR 42000  */
310
gettext_noop("Got error '%-.64s' from regexp"),
311
/* ER_MIX_OF_GROUP_FUNC_AND_FIELDS 42000  */
312
gettext_noop("Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause"),
313
/* ER_NONEXISTING_GRANT 42000  */
314
gettext_noop("There is no such grant defined for user '%-.48s' on host '%-.64s'"),
315
/* ER_TABLEACCESS_DENIED_ERROR 42000  */
316
gettext_noop("%-.16s command denied to user '%-.48s'@'%-.64s' for table '%-.192s'"),
317
/* ER_COLUMNACCESS_DENIED_ERROR 42000  */
318
gettext_noop("%-.16s command denied to user '%-.48s'@'%-.64s' for column '%-.192s' in table '%-.192s'"),
319
/* ER_ILLEGAL_GRANT_FOR_TABLE 42000  */
320
gettext_noop("Illegal GRANT/REVOKE command; please consult the manual to see which privileges can be used"),
321
/* ER_GRANT_WRONG_HOST_OR_USER 42000  */
322
gettext_noop("The host or user argument to GRANT is too long"),
323
/* ER_NO_SUCH_TABLE 42S02  */
324
gettext_noop("Table '%-.192s.%-.192s' doesn't exist"),
325
/* ER_NONEXISTING_TABLE_GRANT 42000  */
326
gettext_noop("There is no such grant defined for user '%-.48s' on host '%-.64s' on table '%-.192s'"),
327
/* ER_NOT_ALLOWED_COMMAND 42000  */
328
gettext_noop("The used command is not allowed with this MySQL version"),
329
/* ER_SYNTAX_ERROR 42000  */
330
gettext_noop("You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use"),
331
/* ER_DELAYED_CANT_CHANGE_LOCK   */
332
gettext_noop("Delayed insert thread couldn't get requested lock for table %-.192s"),
333
/* ER_TOO_MANY_DELAYED_THREADS   */
334
gettext_noop("Too many delayed threads in use"),
335
/* ER_ABORTING_CONNECTION 08S01  */
336
gettext_noop("Aborted connection %ld to db: '%-.192s' user: '%-.48s' (%-.64s)"),
337
/* ER_NET_PACKET_TOO_LARGE 08S01  */
338
gettext_noop("Got a packet bigger than 'max_allowed_packet' bytes"),
339
/* ER_NET_READ_ERROR_FROM_PIPE 08S01  */
340
gettext_noop("Got a read error from the connection pipe"),
341
/* ER_NET_FCNTL_ERROR 08S01  */
342
gettext_noop("Got an error from fcntl()"),
343
/* ER_NET_PACKETS_OUT_OF_ORDER 08S01  */
344
gettext_noop("Got packets out of order"),
345
/* ER_NET_UNCOMPRESS_ERROR 08S01  */
346
gettext_noop("Couldn't uncompress communication packet"),
347
/* ER_NET_READ_ERROR 08S01  */
348
gettext_noop("Got an error reading communication packets"),
349
/* ER_NET_READ_INTERRUPTED 08S01  */
350
gettext_noop("Got timeout reading communication packets"),
351
/* ER_NET_ERROR_ON_WRITE 08S01  */
352
gettext_noop("Got an error writing communication packets"),
353
/* ER_NET_WRITE_INTERRUPTED 08S01  */
354
gettext_noop("Got timeout writing communication packets"),
355
/* ER_TOO_LONG_STRING 42000  */
356
gettext_noop("Result string is longer than 'max_allowed_packet' bytes"),
357
/* ER_TABLE_CANT_HANDLE_BLOB 42000  */
358
gettext_noop("The used table type doesn't support BLOB/TEXT columns"),
359
/* ER_TABLE_CANT_HANDLE_AUTO_INCREMENT 42000  */
360
gettext_noop("The used table type doesn't support AUTO_INCREMENT columns"),
361
/* ER_DELAYED_INSERT_TABLE_LOCKED   */
362
gettext_noop("INSERT DELAYED can't be used with table '%-.192s' because it is locked with LOCK TABLES"),
363
/* ER_WRONG_COLUMN_NAME 42000  */
364
gettext_noop("Incorrect column name '%-.100s'"),
365
/* ER_WRONG_KEY_COLUMN 42000  */
366
gettext_noop("The used storage engine can't index column '%-.192s'"),
367
/* ER_WRONG_MRG_TABLE   */
368
gettext_noop("Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist"),
369
/* ER_DUP_UNIQUE 23000  */
370
gettext_noop("Can't write, because of unique constraint, to table '%-.192s'"),
371
/* ER_BLOB_KEY_WITHOUT_LENGTH 42000  */
372
gettext_noop("BLOB/TEXT column '%-.192s' used in key specification without a key length"),
373
/* ER_PRIMARY_CANT_HAVE_NULL 42000  */
374
gettext_noop("All parts of a PRIMARY KEY must be NOT NULL; if you need NULL in a key, use UNIQUE instead"),
375
/* ER_TOO_MANY_ROWS 42000  */
376
gettext_noop("Result consisted of more than one row"),
377
/* ER_REQUIRES_PRIMARY_KEY 42000  */
378
gettext_noop("This table type requires a primary key"),
379
/* ER_NO_RAID_COMPILED   */
380
gettext_noop("This version of MySQL is not compiled with RAID support"),
381
/* ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE   */
382
gettext_noop("You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column"),
383
/* ER_KEY_DOES_NOT_EXITS 42000 S1009 */
384
gettext_noop("Key '%-.192s' doesn't exist in table '%-.192s'"),
385
/* ER_CHECK_NO_SUCH_TABLE 42000  */
386
gettext_noop("Can't open table"),
387
/* ER_CHECK_NOT_IMPLEMENTED 42000  */
388
gettext_noop("The storage engine for the table doesn't support %s"),
389
/* ER_CANT_DO_THIS_DURING_AN_TRANSACTION 25000  */
390
gettext_noop("You are not allowed to execute this command in a transaction"),
391
/* ER_ERROR_DURING_COMMIT   */
392
gettext_noop("Got error %d during COMMIT"),
393
/* ER_ERROR_DURING_ROLLBACK   */
394
gettext_noop("Got error %d during ROLLBACK"),
395
/* ER_ERROR_DURING_FLUSH_LOGS   */
396
gettext_noop("Got error %d during FLUSH_LOGS"),
397
/* ER_ERROR_DURING_CHECKPOINT   */
398
gettext_noop("Got error %d during CHECKPOINT"),
399
/* ER_NEW_ABORTING_CONNECTION 08S01  */
400
gettext_noop("Aborted connection %ld to db: '%-.192s' user: '%-.48s' host: '%-.64s' (%-.64s)"),
401
/* ER_DUMP_NOT_IMPLEMENTED   */
402
gettext_noop("The storage engine for the table does not support binary table dump"),
403
/* ER_FLUSH_MASTER_BINLOG_CLOSED   */
404
gettext_noop("Binlog closed, cannot RESET MASTER"),
405
/* ER_INDEX_REBUILD   */
406
gettext_noop("Failed rebuilding the index of  dumped table '%-.192s'"),
407
/* ER_MASTER   */
408
gettext_noop("Error from master: '%-.64s'"),
409
/* ER_MASTER_NET_READ 08S01  */
410
gettext_noop("Net error reading from master"),
411
/* ER_MASTER_NET_WRITE 08S01  */
412
gettext_noop("Net error writing to master"),
413
/* ER_FT_MATCHING_KEY_NOT_FOUND   */
414
gettext_noop("Can't find FULLTEXT index matching the column list"),
415
/* ER_LOCK_OR_ACTIVE_TRANSACTION   */
416
gettext_noop("Can't execute the given command because you have active locked tables or an active transaction"),
417
/* ER_UNKNOWN_SYSTEM_VARIABLE   */
418
gettext_noop("Unknown system variable '%-.64s'"),
419
/* ER_CRASHED_ON_USAGE   */
420
gettext_noop("Table '%-.192s' is marked as crashed and should be repaired"),
421
/* ER_CRASHED_ON_REPAIR   */
422
gettext_noop("Table '%-.192s' is marked as crashed and last (automatic?) repair failed"),
423
/* ER_WARNING_NOT_COMPLETE_ROLLBACK   */
424
gettext_noop("Some non-transactional changed tables couldn't be rolled back"),
425
/* ER_TRANS_CACHE_FULL   */
426
gettext_noop("Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage; increase this mysqld variable and try again"),
427
/* ER_SLAVE_MUST_STOP   */
428
gettext_noop("This operation cannot be performed with a running slave; run STOP SLAVE first"),
429
/* ER_SLAVE_NOT_RUNNING   */
430
gettext_noop("This operation requires a running slave; configure slave and do START SLAVE"),
431
/* ER_BAD_SLAVE   */
432
gettext_noop("The server is not configured as slave; fix with CHANGE MASTER TO"),
433
/* ER_MASTER_INFO   */
434
gettext_noop("Could not initialize master info structure; more error messages can be found in the MySQL error log"),
435
/* ER_SLAVE_THREAD   */
436
gettext_noop("Could not create slave thread; check system resources"),
437
/* ER_TOO_MANY_USER_CONNECTIONS 42000  */
438
gettext_noop("User %-.64s already has more than 'max_user_connections' active connections"),
439
/* ER_SET_CONSTANTS_ONLY   */
440
gettext_noop("You may only use constant expressions with SET"),
441
/* ER_LOCK_WAIT_TIMEOUT   */
442
gettext_noop("Lock wait timeout exceeded; try restarting transaction"),
443
/* ER_LOCK_TABLE_FULL   */
444
gettext_noop("The total number of locks exceeds the lock table size"),
445
/* ER_READ_ONLY_TRANSACTION 25000  */
446
gettext_noop("Update locks cannot be acquired during a READ UNCOMMITTED transaction"),
447
/* ER_DROP_DB_WITH_READ_LOCK   */
448
gettext_noop("DROP DATABASE not allowed while thread is holding global read lock"),
449
/* ER_CREATE_DB_WITH_READ_LOCK   */
450
gettext_noop("CREATE DATABASE not allowed while thread is holding global read lock"),
451
/* ER_WRONG_ARGUMENTS   */
452
gettext_noop("Incorrect arguments to %s"),
453
/* ER_NO_PERMISSION_TO_CREATE_USER 42000  */
454
gettext_noop("'%-.48s'@'%-.64s' is not allowed to create new users"),
455
/* ER_UNION_TABLES_IN_DIFFERENT_DIR   */
456
gettext_noop("Incorrect table definition; all MERGE tables must be in the same database"),
457
/* ER_LOCK_DEADLOCK 40001  */
458
gettext_noop("Deadlock found when trying to get lock; try restarting transaction"),
459
/* ER_TABLE_CANT_HANDLE_FT   */
460
gettext_noop("The used table type doesn't support FULLTEXT indexes"),
461
/* ER_CANNOT_ADD_FOREIGN   */
462
gettext_noop("Cannot add foreign key constraint"),
463
/* ER_NO_REFERENCED_ROW 23000  */
464
gettext_noop("Cannot add or update a child row: a foreign key constraint fails"),
465
/* ER_ROW_IS_REFERENCED 23000  */
466
gettext_noop("Cannot delete or update a parent row: a foreign key constraint fails"),
467
/* ER_CONNECT_TO_MASTER 08S01  */
468
gettext_noop("Error connecting to master: %-.128s"),
469
/* ER_QUERY_ON_MASTER   */
470
gettext_noop("Error running query on master: %-.128s"),
471
/* ER_ERROR_WHEN_EXECUTING_COMMAND   */
472
gettext_noop("Error when executing command %s: %-.128s"),
473
/* ER_WRONG_USAGE   */
474
gettext_noop("Incorrect usage of %s and %s"),
475
/* ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT 21000  */
476
gettext_noop("The used SELECT statements have a different number of columns"),
477
/* ER_CANT_UPDATE_WITH_READLOCK   */
478
gettext_noop("Can't execute the query because you have a conflicting read lock"),
479
/* ER_MIXING_NOT_ALLOWED   */
480
gettext_noop("Mixing of transactional and non-transactional tables is disabled"),
481
/* ER_DUP_ARGUMENT   */
482
gettext_noop("Option '%s' used twice in statement"),
483
/* ER_USER_LIMIT_REACHED 42000  */
484
gettext_noop("User '%-.64s' has exceeded the '%s' resource (current value: %ld)"),
485
/* ER_SPECIFIC_ACCESS_DENIED_ERROR 42000  */
486
gettext_noop("Access denied; you need the %-.128s privilege for this operation"),
487
/* ER_LOCAL_VARIABLE   */
488
gettext_noop("Variable '%-.64s' is a SESSION variable and can't be used with SET GLOBAL"),
489
/* ER_GLOBAL_VARIABLE   */
490
gettext_noop("Variable '%-.64s' is a GLOBAL variable and should be set with SET GLOBAL"),
491
/* ER_NO_DEFAULT 42000  */
492
gettext_noop("Variable '%-.64s' doesn't have a default value"),
493
/* ER_WRONG_VALUE_FOR_VAR 42000  */
494
gettext_noop("Variable '%-.64s' can't be set to the value of '%-.200s'"),
495
/* ER_WRONG_TYPE_FOR_VAR 42000  */
496
gettext_noop("Incorrect argument type to variable '%-.64s'"),
497
/* ER_VAR_CANT_BE_READ   */
498
gettext_noop("Variable '%-.64s' can only be set, not read"),
499
/* ER_CANT_USE_OPTION_HERE 42000  */
500
gettext_noop("Incorrect usage/placement of '%s'"),
501
/* ER_NOT_SUPPORTED_YET 42000  */
502
gettext_noop("This version of MySQL doesn't yet support '%s'"),
503
/* ER_MASTER_FATAL_ERROR_READING_BINLOG   */
504
gettext_noop("Got fatal error %d: '%-.128s' from master when reading data from binary log"),
505
/* ER_SLAVE_IGNORED_TABLE   */
506
gettext_noop("Slave SQL thread ignored the query because of replicate-*-table rules"),
507
/* ER_INCORRECT_GLOBAL_LOCAL_VAR   */
508
gettext_noop("Variable '%-.192s' is a %s variable"),
509
/* ER_WRONG_FK_DEF 42000  */
510
gettext_noop("Incorrect foreign key definition for '%-.192s': %s"),
511
/* ER_KEY_REF_DO_NOT_MATCH_TABLE_REF   */
512
gettext_noop("Key reference and table reference don't match"),
513
/* ER_OPERAND_COLUMNS 21000  */
514
gettext_noop("Operand should contain %d column(s)"),
515
/* ER_SUBQUERY_NO_1_ROW 21000  */
516
gettext_noop("Subquery returns more than 1 row"),
517
/* ER_UNKNOWN_STMT_HANDLER   */
518
gettext_noop("Unknown prepared statement handler (%.*s) given to %s"),
519
/* ER_CORRUPT_HELP_DB   */
520
gettext_noop("Help database is corrupt or does not exist"),
521
/* ER_CYCLIC_REFERENCE   */
522
gettext_noop("Cyclic reference on subqueries"),
523
/* ER_AUTO_CONVERT   */
524
gettext_noop("Converting column '%s' from %s to %s"),
525
/* ER_ILLEGAL_REFERENCE 42S22  */
526
gettext_noop("Reference '%-.64s' not supported (%s)"),
527
/* ER_DERIVED_MUST_HAVE_ALIAS 42000  */
528
gettext_noop("Every derived table must have its own alias"),
529
/* ER_SELECT_REDUCED 01000  */
530
gettext_noop("Select %u was reduced during optimization"),
531
/* ER_TABLENAME_NOT_ALLOWED_HERE 42000  */
532
gettext_noop("Table '%-.192s' from one of the SELECTs cannot be used in %-.32s"),
533
/* ER_NOT_SUPPORTED_AUTH_MODE 08004  */
534
gettext_noop("Client does not support authentication protocol requested by server; consider upgrading MySQL client"),
535
/* ER_SPATIAL_CANT_HAVE_NULL 42000  */
536
gettext_noop("All parts of a SPATIAL index must be NOT NULL"),
537
/* ER_COLLATION_CHARSET_MISMATCH 42000  */
538
gettext_noop("COLLATION '%s' is not valid for CHARACTER SET '%s'"),
539
/* ER_SLAVE_WAS_RUNNING   */
540
gettext_noop("Slave is already running"),
541
/* ER_SLAVE_WAS_NOT_RUNNING   */
542
gettext_noop("Slave already has been stopped"),
543
/* ER_TOO_BIG_FOR_UNCOMPRESS   */
544
gettext_noop("Uncompressed data size too large; the maximum size is %d (probably, length of uncompressed data was corrupted)"),
545
/* ER_ZLIB_Z_MEM_ERROR   */
546
gettext_noop("ZLIB: Not enough memory"),
547
/* ER_ZLIB_Z_BUF_ERROR   */
548
gettext_noop("ZLIB: Not enough room in the output buffer (probably, length of uncompressed data was corrupted)"),
549
/* ER_ZLIB_Z_DATA_ERROR   */
550
gettext_noop("ZLIB: Input data corrupted"),
551
/* ER_CUT_VALUE_GROUP_CONCAT   */
552
gettext_noop("%d line(s) were cut by GROUP_CONCAT()"),
553
/* ER_WARN_TOO_FEW_RECORDS 01000  */
554
gettext_noop("Row %ld doesn't contain data for all columns"),
555
/* ER_WARN_TOO_MANY_RECORDS 01000  */
556
gettext_noop("Row %ld was truncated; it contained more data than there were input columns"),
557
/* ER_WARN_NULL_TO_NOTNULL 22004  */
558
gettext_noop("Column set to default value; NULL supplied to NOT NULL column '%s' at row %ld"),
559
/* ER_WARN_DATA_OUT_OF_RANGE 22003  */
560
gettext_noop("Out of range value for column '%s' at row %ld"),
561
/* WARN_DATA_TRUNCATED 01000  */
562
gettext_noop("Data truncated for column '%s' at row %ld"),
563
/* ER_WARN_USING_OTHER_HANDLER   */
564
gettext_noop("Using storage engine %s for table '%s'"),
565
/* ER_CANT_AGGREGATE_2COLLATIONS   */
566
gettext_noop("Illegal mix of collations (%s,%s) and (%s,%s) for operation '%s'"),
567
/* ER_DROP_USER   */
568
gettext_noop("Cannot drop one or more of the requested users"),
569
/* ER_REVOKE_GRANTS   */
570
gettext_noop("Can't revoke all privileges for one or more of the requested users"),
571
/* ER_CANT_AGGREGATE_3COLLATIONS   */
572
gettext_noop("Illegal mix of collations (%s,%s), (%s,%s), (%s,%s) for operation '%s'"),
573
/* ER_CANT_AGGREGATE_NCOLLATIONS   */
574
gettext_noop("Illegal mix of collations for operation '%s'"),
575
/* ER_VARIABLE_IS_NOT_STRUCT   */
576
gettext_noop("Variable '%-.64s' is not a variable component (can't be used as XXXX.variable_name)"),
577
/* ER_UNKNOWN_COLLATION   */
578
gettext_noop("Unknown collation: '%-.64s'"),
579
/* ER_SLAVE_IGNORED_SSL_PARAMS   */
580
gettext_noop("SSL parameters in CHANGE MASTER are ignored because this MySQL slave was compiled without SSL support; they can be used later if MySQL slave with SSL is started"),
581
/* ER_SERVER_IS_IN_SECURE_AUTH_MODE   */
582
gettext_noop("Server is running in --secure-auth mode, but '%s'@'%s' has a password in the old format; please change the password to the new format"),
583
/* ER_WARN_FIELD_RESOLVED   */
584
gettext_noop("Field or reference '%-.192s%s%-.192s%s%-.192s' of SELECT #%d was resolved in SELECT #%d"),
585
/* ER_BAD_SLAVE_UNTIL_COND   */
586
gettext_noop("Incorrect parameter or combination of parameters for START SLAVE UNTIL"),
587
/* ER_MISSING_SKIP_SLAVE   */
588
gettext_noop("It is recommended to use --skip-slave-start when doing step-by-step replication with START SLAVE UNTIL; otherwise, you will get problems if you get an unexpected slave's mysqld restart"),
589
/* ER_UNTIL_COND_IGNORED   */
590
gettext_noop("SQL thread is not to be started so UNTIL options are ignored"),
591
/* ER_WRONG_NAME_FOR_INDEX 42000  */
592
gettext_noop("Incorrect index name '%-.100s'"),
593
/* ER_WRONG_NAME_FOR_CATALOG 42000  */
594
gettext_noop("Incorrect catalog name '%-.100s'"),
595
/* ER_WARN_QC_RESIZE   */
596
gettext_noop("Query cache failed to set size %lu; new query cache size is %lu"),
597
/* ER_BAD_FT_COLUMN   */
598
gettext_noop("Column '%-.192s' cannot be part of FULLTEXT index"),
599
/* ER_UNKNOWN_KEY_CACHE   */
600
gettext_noop("Unknown key cache '%-.100s'"),
601
/* ER_WARN_HOSTNAME_WONT_WORK   */
602
gettext_noop("MySQL is started in --skip-name-resolve mode; you must restart it without this switch for this grant to work"),
603
/* ER_UNKNOWN_STORAGE_ENGINE 42000  */
604
gettext_noop("Unknown table engine '%s'"),
605
/* ER_WARN_DEPRECATED_SYNTAX   */
606
gettext_noop("'%s' is deprecated; use '%s' instead"),
607
/* ER_NON_UPDATABLE_TABLE   */
608
gettext_noop("The target table %-.100s of the %s is not updatable"),
609
/* ER_FEATURE_DISABLED   */
610
gettext_noop("The '%s' feature is disabled; you need MySQL built with '%s' to have it working"),
611
/* ER_OPTION_PREVENTS_STATEMENT   */
612
gettext_noop("The MySQL server is running with the %s option so it cannot execute this statement"),
613
/* ER_DUPLICATED_VALUE_IN_TYPE   */
614
gettext_noop("Column '%-.100s' has duplicated value '%-.64s' in %s"),
615
/* ER_TRUNCATED_WRONG_VALUE 22007  */
616
gettext_noop("Truncated incorrect %-.32s value: '%-.128s'"),
617
/* ER_TOO_MUCH_AUTO_TIMESTAMP_COLS   */
618
gettext_noop("Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause"),
619
/* ER_INVALID_ON_UPDATE   */
620
gettext_noop("Invalid ON UPDATE clause for '%-.192s' column"),
621
/* ER_UNSUPPORTED_PS   */
622
gettext_noop("This command is not supported in the prepared statement protocol yet"),
623
/* ER_GET_ERRMSG   */
624
gettext_noop("Got error %d '%-.100s' from %s"),
625
/* ER_GET_TEMPORARY_ERRMSG   */
626
gettext_noop("Got temporary error %d '%-.100s' from %s"),
627
/* ER_UNKNOWN_TIME_ZONE   */
628
gettext_noop("Unknown or incorrect time zone: '%-.64s'"),
629
/* ER_WARN_INVALID_TIMESTAMP   */
630
gettext_noop("Invalid TIMESTAMP value in column '%s' at row %ld"),
631
/* ER_INVALID_CHARACTER_STRING   */
632
gettext_noop("Invalid %s character string: '%.64s'"),
633
/* ER_WARN_ALLOWED_PACKET_OVERFLOWED   */
634
gettext_noop("Result of %s() was larger than max_allowed_packet (%ld) - truncated"),
635
/* ER_CONFLICTING_DECLARATIONS   */
636
gettext_noop("Conflicting declarations: '%s%s' and '%s%s'"),
637
/* ER_SP_NO_RECURSIVE_CREATE 2F003  */
638
gettext_noop("Can't create a %s from within another stored routine"),
639
/* ER_SP_ALREADY_EXISTS 42000  */
640
gettext_noop("%s %s already exists"),
641
/* ER_SP_DOES_NOT_EXIST 42000  */
642
gettext_noop("%s %s does not exist"),
643
/* ER_SP_DROP_FAILED   */
644
gettext_noop("Failed to DROP %s %s"),
645
/* ER_SP_STORE_FAILED   */
646
gettext_noop("Failed to CREATE %s %s"),
647
/* ER_SP_LILABEL_MISMATCH 42000  */
648
gettext_noop("%s with no matching label: %s"),
649
/* ER_SP_LABEL_REDEFINE 42000  */
650
gettext_noop("Redefining label %s"),
651
/* ER_SP_LABEL_MISMATCH 42000  */
652
gettext_noop("End-label %s without match"),
653
/* ER_SP_UNINIT_VAR 01000  */
654
gettext_noop("Referring to uninitialized variable %s"),
655
/* ER_SP_BADSELECT 0A000  */
656
gettext_noop("PROCEDURE %s can't return a result set in the given context"),
657
/* ER_SP_BADRETURN 42000  */
658
gettext_noop("RETURN is only allowed in a FUNCTION"),
659
/* ER_SP_BADSTATEMENT 0A000  */
660
gettext_noop("%s is not allowed in stored procedures"),
661
/* ER_UPDATE_LOG_DEPRECATED_IGNORED 42000  */
662
gettext_noop("The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been ignored"),
663
/* ER_UPDATE_LOG_DEPRECATED_TRANSLATED 42000  */
664
gettext_noop("The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been translated to SET SQL_LOG_BIN"),
665
/* ER_QUERY_INTERRUPTED 70100  */
666
gettext_noop("Query execution was interrupted"),
667
/* ER_SP_WRONG_NO_OF_ARGS 42000  */
668
gettext_noop("Incorrect number of arguments for %s %s; expected %u, got %u"),
669
/* ER_SP_COND_MISMATCH 42000  */
670
gettext_noop("Undefined CONDITION: %s"),
671
/* ER_SP_NORETURN 42000  */
672
gettext_noop("No RETURN found in FUNCTION %s"),
673
/* ER_SP_NORETURNEND 2F005  */
674
gettext_noop("FUNCTION %s ended without RETURN"),
675
/* ER_SP_BAD_CURSOR_QUERY 42000  */
676
gettext_noop("Cursor statement must be a SELECT"),
677
/* ER_SP_BAD_CURSOR_SELECT 42000  */
678
gettext_noop("Cursor SELECT must not have INTO"),
679
/* ER_SP_CURSOR_MISMATCH 42000  */
680
gettext_noop("Undefined CURSOR: %s"),
681
/* ER_SP_CURSOR_ALREADY_OPEN 24000  */
682
gettext_noop("Cursor is already open"),
683
/* ER_SP_CURSOR_NOT_OPEN 24000  */
684
gettext_noop("Cursor is not open"),
685
/* ER_SP_UNDECLARED_VAR 42000  */
686
gettext_noop("Undeclared variable: %s"),
687
/* ER_SP_WRONG_NO_OF_FETCH_ARGS   */
688
gettext_noop("Incorrect number of FETCH variables"),
689
/* ER_SP_FETCH_NO_DATA 02000  */
690
gettext_noop("No data - zero rows fetched, selected, or processed"),
691
/* ER_SP_DUP_PARAM 42000  */
692
gettext_noop("Duplicate parameter: %s"),
693
/* ER_SP_DUP_VAR 42000  */
694
gettext_noop("Duplicate variable: %s"),
695
/* ER_SP_DUP_COND 42000  */
696
gettext_noop("Duplicate condition: %s"),
697
/* ER_SP_DUP_CURS 42000  */
698
gettext_noop("Duplicate cursor: %s"),
699
/* ER_SP_CANT_ALTER   */
700
gettext_noop("Failed to ALTER %s %s"),
701
/* ER_SP_SUBSELECT_NYI 0A000  */
702
gettext_noop("Subquery value not supported"),
703
/* ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG 0A000 */
704
gettext_noop("%s is not allowed in stored function or trigger"),
705
/* ER_SP_VARCOND_AFTER_CURSHNDLR 42000  */
706
gettext_noop("Variable or condition declaration after cursor or handler declaration"),
707
/* ER_SP_CURSOR_AFTER_HANDLER 42000  */
708
gettext_noop("Cursor declaration after handler declaration"),
709
/* ER_SP_CASE_NOT_FOUND 20000  */
710
gettext_noop("Case not found for CASE statement"),
711
/* ER_FPARSER_TOO_BIG_FILE   */
712
gettext_noop("Configuration file '%-.192s' is too big"),
713
/* ER_FPARSER_BAD_HEADER   */
714
gettext_noop("Malformed file type header in file '%-.192s'"),
715
/* ER_FPARSER_EOF_IN_COMMENT   */
716
gettext_noop("Unexpected end of file while parsing comment '%-.200s'"),
717
/* ER_FPARSER_ERROR_IN_PARAMETER   */
718
gettext_noop("Error while parsing parameter '%-.192s' (line: '%-.192s')"),
719
/* ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER   */
720
gettext_noop("Unexpected end of file while skipping unknown parameter '%-.192s'"),
721
/* ER_VIEW_NO_EXPLAIN   */
722
gettext_noop("EXPLAIN/SHOW can not be issued; lacking privileges for underlying table"),
723
/* ER_FRM_UNKNOWN_TYPE   */
724
gettext_noop("File '%-.192s' has unknown type '%-.64s' in its header"),
725
/* ER_WRONG_OBJECT   */
726
gettext_noop("'%-.192s.%-.192s' is not %s"),
727
/* ER_NONUPDATEABLE_COLUMN   */
728
gettext_noop("Column '%-.192s' is not updatable"),
729
/* ER_VIEW_SELECT_DERIVED   */
730
gettext_noop("View's SELECT contains a subquery in the FROM clause"),
731
/* ER_VIEW_SELECT_CLAUSE   */
732
gettext_noop("View's SELECT contains a '%s' clause"),
733
/* ER_VIEW_SELECT_VARIABLE   */
734
gettext_noop("View's SELECT contains a variable or parameter"),
735
/* ER_VIEW_SELECT_TMPTABLE   */
736
gettext_noop("View's SELECT refers to a temporary table '%-.192s'"),
737
/* ER_VIEW_WRONG_LIST   */
738
gettext_noop("View's SELECT and view's field list have different column counts"),
739
/* ER_WARN_VIEW_MERGE   */
740
gettext_noop("View merge algorithm can't be used here for now (assumed undefined algorithm)"),
741
/* ER_WARN_VIEW_WITHOUT_KEY   */
742
gettext_noop("View being updated does not have complete key of underlying table in it"),
743
/* ER_VIEW_INVALID   */
744
gettext_noop("View '%-.192s.%-.192s' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them"),
745
/* ER_SP_NO_DROP_SP   */
746
gettext_noop("Can't drop or alter a %s from within another stored routine"),
747
/* ER_SP_GOTO_IN_HNDLR   */
748
gettext_noop("GOTO is not allowed in a stored procedure handler"),
749
/* ER_TRG_ALREADY_EXISTS   */
750
gettext_noop("Trigger already exists"),
751
/* ER_TRG_DOES_NOT_EXIST   */
752
gettext_noop("Trigger does not exist"),
753
/* ER_TRG_ON_VIEW_OR_TEMP_TABLE   */
754
gettext_noop("Trigger's '%-.192s' is view or temporary table"),
755
/* ER_TRG_CANT_CHANGE_ROW   */
756
gettext_noop("Updating of %s row is not allowed in %strigger"),
757
/* ER_TRG_NO_SUCH_ROW_IN_TRG   */
758
gettext_noop("There is no %s row in %s trigger"),
759
/* ER_NO_DEFAULT_FOR_FIELD   */
760
gettext_noop("Field '%-.192s' doesn't have a default value"),
761
/* ER_DIVISION_BY_ZERO 22012  */
762
gettext_noop("Division by 0"),
763
/* ER_TRUNCATED_WRONG_VALUE_FOR_FIELD   */
764
gettext_noop("Incorrect %-.32s value: '%-.128s' for column '%.192s' at row %ld"),
765
/* ER_ILLEGAL_VALUE_FOR_TYPE 22007  */
766
gettext_noop("Illegal %s '%-.192s' value found during parsing"),
767
/* ER_VIEW_NONUPD_CHECK   */
768
gettext_noop("CHECK OPTION on non-updatable view '%-.192s.%-.192s'"),
769
/* ER_VIEW_CHECK_FAILED   */
770
gettext_noop("CHECK OPTION failed '%-.192s.%-.192s'"),
771
/* ER_PROCACCESS_DENIED_ERROR 42000  */
772
gettext_noop("%-.16s command denied to user '%-.48s'@'%-.64s' for routine '%-.192s'"),
773
/* ER_RELAY_LOG_FAIL   */
774
gettext_noop("Failed purging old relay logs: %s"),
775
/* ER_PASSWD_LENGTH   */
776
gettext_noop("Password hash should be a %d-digit hexadecimal number"),
777
/* ER_UNKNOWN_TARGET_BINLOG   */
778
gettext_noop("Target log not found in binlog index"),
779
/* ER_IO_ERR_LOG_INDEX_READ   */
780
gettext_noop("I/O error reading log index file"),
781
/* ER_BINLOG_PURGE_PROHIBITED   */
782
gettext_noop("Server configuration does not permit binlog purge"),
783
/* ER_FSEEK_FAIL   */
784
gettext_noop("Failed on fseek()"),
785
/* ER_BINLOG_PURGE_FATAL_ERR   */
786
gettext_noop("Fatal error during log purge"),
787
/* ER_LOG_IN_USE   */
788
gettext_noop("A purgeable log is in use, will not purge"),
789
/* ER_LOG_PURGE_UNKNOWN_ERR   */
790
gettext_noop("Unknown error during log purge"),
791
/* ER_RELAY_LOG_INIT   */
792
gettext_noop("Failed initializing relay log position: %s"),
793
/* ER_NO_BINARY_LOGGING   */
794
gettext_noop("You are not using binary logging"),
795
/* ER_RESERVED_SYNTAX   */
796
gettext_noop("The '%-.64s' syntax is reserved for purposes internal to the MySQL server"),
797
/* ER_WSAS_FAILED   */
798
gettext_noop("WSAStartup Failed"),
799
/* ER_DIFF_GROUPS_PROC   */
800
gettext_noop("Can't handle procedures with different groups yet"),
801
/* ER_NO_GROUP_FOR_PROC   */
802
gettext_noop("Select must have a group with this procedure"),
803
/* ER_ORDER_WITH_PROC   */
804
gettext_noop("Can't use ORDER clause with this procedure"),
805
/* ER_LOGGING_PROHIBIT_CHANGING_OF   */
806
gettext_noop("Binary logging and replication forbid changing the global server %s"),
807
/* ER_NO_FILE_MAPPING   */
808
gettext_noop("Can't map file: %-.200s, errno: %d"),
809
/* ER_WRONG_MAGIC   */
810
gettext_noop("Wrong magic in %-.64s"),
811
/* ER_PS_MANY_PARAM   */
812
gettext_noop("Prepared statement contains too many placeholders"),
813
/* ER_KEY_PART_0   */
814
gettext_noop("Key part '%-.192s' length cannot be 0"),
815
/* ER_VIEW_CHECKSUM   */
816
gettext_noop("View text checksum failed"),
817
/* ER_VIEW_MULTIUPDATE   */
818
gettext_noop("Can not modify more than one base table through a join view '%-.192s.%-.192s'"),
819
/* ER_VIEW_NO_INSERT_FIELD_LIST   */
820
gettext_noop("Can not insert into join view '%-.192s.%-.192s' without fields list"),
821
/* ER_VIEW_DELETE_MERGE_VIEW   */
822
gettext_noop("Can not delete from join view '%-.192s.%-.192s'"),
823
/* ER_CANNOT_USER   */
824
gettext_noop("Operation %s failed for %.256s"),
825
/* ER_XAER_NOTA XAE04 */
826
gettext_noop("XAER_NOTA: Unknown XID"),
827
/* ER_XAER_INVAL XAE05 */
828
gettext_noop("XAER_INVAL: Invalid arguments (or unsupported command)"),
829
/* ER_XAER_RMFAIL XAE07 */
830
gettext_noop("XAER_RMFAIL: The command cannot be executed when global transaction is in the  %.64s state"),
831
/* ER_XAER_OUTSIDE XAE09 */
832
gettext_noop("XAER_OUTSIDE: Some work is done outside global transaction"),
833
/* ER_XAER_RMERR XAE03 */
834
gettext_noop("XAER_RMERR: Fatal error occurred in the transaction branch - check your data for consistency"),
835
/* ER_XA_RBROLLBACK XA100 */
836
gettext_noop("XA_RBROLLBACK: Transaction branch was rolled back"),
837
/* ER_NONEXISTING_PROC_GRANT 42000  */
838
gettext_noop("There is no such grant defined for user '%-.48s' on host '%-.64s' on routine '%-.192s'"),
839
/* ER_PROC_AUTO_GRANT_FAIL */
840
gettext_noop("Failed to grant EXECUTE and ALTER ROUTINE privileges"),
841
/* ER_PROC_AUTO_REVOKE_FAIL */
842
gettext_noop("Failed to revoke all privileges to dropped routine"),
843
/* ER_DATA_TOO_LONG 22001 */
844
gettext_noop("Data too long for column '%s' at row %ld"),
845
/* ER_SP_BAD_SQLSTATE 42000 */
846
gettext_noop("Bad SQLSTATE: '%s'"),
847
/* ER_STARTUP */
848
gettext_noop("%s: ready for connections.\nVersion: '%s'  socket: '%s'  port: %d  %s"),
849
/* ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR */
850
gettext_noop("Can't load value from file with fixed size rows to variable"),
851
/* ER_CANT_CREATE_USER_WITH_GRANT 42000 */
852
gettext_noop("You are not allowed to create a user with GRANT"),
853
/* ER_WRONG_VALUE_FOR_TYPE   */
854
gettext_noop("Incorrect %-.32s value: '%-.128s' for function %-.32s"),
855
/* ER_TABLE_DEF_CHANGED */
856
gettext_noop("Table definition has changed, please retry transaction"),
857
/* ER_SP_DUP_HANDLER 42000 */
858
gettext_noop("Duplicate handler declared in the same block"),
859
/* ER_SP_NOT_VAR_ARG 42000 */
860
gettext_noop("OUT or INOUT argument %d for routine %s is not a variable or NEW pseudo-variable in BEFORE trigger"),
861
/* ER_SP_NO_RETSET 0A000 */
862
gettext_noop("Not allowed to return a result set from a %s"),
863
/* ER_CANT_CREATE_GEOMETRY_OBJECT 22003  */
864
gettext_noop("Cannot get geometry object from data you send to the GEOMETRY field"),
865
/* ER_FAILED_ROUTINE_BREAK_BINLOG */
866
gettext_noop("A routine failed and has neither NO SQL nor READS SQL DATA in its declaration and binary logging is enabled; if non-transactional tables were updated, the binary log will miss their changes"),
867
/* ER_BINLOG_UNSAFE_ROUTINE */
868
gettext_noop("This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)"),
869
/* ER_BINLOG_CREATE_ROUTINE_NEED_SUPER */
870
gettext_noop("You do not have the SUPER privilege and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)"),
871
/* ER_EXEC_STMT_WITH_OPEN_CURSOR */
872
gettext_noop("You can't execute a prepared statement which has an open cursor associated with it. Reset the statement to re-execute it."),
873
/* ER_STMT_HAS_NO_OPEN_CURSOR */
874
gettext_noop("The statement (%lu) has no open cursor."),
875
/* ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG */
876
gettext_noop("Explicit or implicit commit is not allowed in stored function or trigger."),
877
/* ER_NO_DEFAULT_FOR_VIEW_FIELD */
878
gettext_noop("Field of view '%-.192s.%-.192s' underlying table doesn't have a default value"),
879
/* ER_SP_NO_RECURSION */
880
gettext_noop("Recursive stored functions and triggers are not allowed."),
881
/* ER_TOO_BIG_SCALE 42000 S1009 */
882
gettext_noop("Too big scale %d specified for column '%-.192s'. Maximum is %d."),
883
/* ER_TOO_BIG_PRECISION 42000 S1009 */
884
gettext_noop("Too big precision %d specified for column '%-.192s'. Maximum is %d."),
885
/* ER_M_BIGGER_THAN_D 42000 S1009 */
886
gettext_noop("For float(M,D), double(M,D) or decimal(M,D), M must be >= D (column '%-.192s')."),
887
/* ER_WRONG_LOCK_OF_SYSTEM_TABLE */
888
gettext_noop("You can't combine write-locking of system tables with other tables or lock types"),
889
/* ER_CONNECT_TO_FOREIGN_DATA_SOURCE */
890
gettext_noop("Unable to connect to foreign data source: %.64s"),
891
/* ER_QUERY_ON_FOREIGN_DATA_SOURCE */
892
gettext_noop("There was a problem processing the query on the foreign data source. Data source error: %-.64s"),
893
/* ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST */
894
gettext_noop("The foreign data source you are trying to reference does not exist. Data source error:  %-.64s"),
895
/* ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE */
896
gettext_noop("Can't create federated table. The data source connection string '%-.64s' is not in the correct format"),
897
/* ER_FOREIGN_DATA_STRING_INVALID */
898
gettext_noop("The data source connection string '%-.64s' is not in the correct format"),
899
/* ER_CANT_CREATE_FEDERATED_TABLE   */
900
gettext_noop("Can't create federated table. Foreign data src error:  %-.64s"),
901
/* ER_TRG_IN_WRONG_SCHEMA   */
902
gettext_noop("Trigger in wrong schema"),
903
/* ER_STACK_OVERRUN_NEED_MORE */
904
gettext_noop("Thread stack overrun:  %ld bytes used of a %ld byte stack, and %ld bytes needed.  Use 'mysqld -O thread_stack=#' to specify a bigger stack."),
905
/* ER_TOO_LONG_BODY 42000 S1009 */
906
gettext_noop("Routine body for '%-.100s' is too long"),
907
/* ER_WARN_CANT_DROP_DEFAULT_KEYCACHE */
908
gettext_noop("Cannot drop default keycache"),
909
/* ER_TOO_BIG_DISPLAYWIDTH 42000 S1009 */
910
gettext_noop("Display width out of range for column '%-.192s' (max = %d)"),
911
/* ER_XAER_DUPID XAE08 */
912
gettext_noop("XAER_DUPID: The XID already exists"),
913
/* ER_DATETIME_FUNCTION_OVERFLOW 22008 */
914
gettext_noop("Datetime function: %-.32s field overflow"),
915
/* ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG */
916
gettext_noop("Can't update table '%-.192s' in stored function/trigger because it is already used by statement which invoked this stored function/trigger."),
917
/* ER_VIEW_PREVENT_UPDATE */
918
gettext_noop("The definition of table '%-.192s' prevents operation %.192s on table '%-.192s'."),
919
/* ER_PS_NO_RECURSION */
920
gettext_noop("The prepared statement contains a stored routine call that refers to that same statement. It's not allowed to execute a prepared statement in such a recursive manner"),
921
/* ER_SP_CANT_SET_AUTOCOMMIT */
922
gettext_noop("Not allowed to set autocommit from a stored function or trigger"),
923
/* ER_MALFORMED_DEFINER */
924
gettext_noop("Definer is not fully qualified"),
925
/* ER_VIEW_FRM_NO_USER */
926
gettext_noop("View '%-.192s'.'%-.192s' has no definer information (old table format). Current user is used as definer. Please recreate the view!"),
927
/* ER_VIEW_OTHER_USER */
928
gettext_noop("You need the SUPER privilege for creation view with '%-.192s'@'%-.192s' definer"),
929
/* ER_NO_SUCH_USER */
930
gettext_noop("The user specified as a definer ('%-.64s'@'%-.64s') does not exist"),
931
/* ER_FORBID_SCHEMA_CHANGE */
932
gettext_noop("Changing schema from '%-.192s' to '%-.192s' is not allowed."),
933
/* ER_ROW_IS_REFERENCED_2 23000 */
934
gettext_noop("Cannot delete or update a parent row: a foreign key constraint fails (%.192s)"),
935
/* ER_NO_REFERENCED_ROW_2 23000 */
936
gettext_noop("Cannot add or update a child row: a foreign key constraint fails (%.192s)"),
937
/* ER_SP_BAD_VAR_SHADOW 42000 */
938
gettext_noop("Variable '%-.64s' must be quoted with `...`, or renamed"),
939
/* ER_TRG_NO_DEFINER */
940
gettext_noop("No definer attribute for trigger '%-.192s'.'%-.192s'. The trigger will be activated under the authorization of the invoker, which may have insufficient privileges. Please recreate the trigger."),
941
/* ER_OLD_FILE_FORMAT */
942
gettext_noop("'%-.192s' has an old format, you should re-create the '%s' object(s)"),
943
/* ER_SP_RECURSION_LIMIT */
944
gettext_noop("Recursive limit %d (as set by the max_sp_recursion_depth variable) was exceeded for routine %.192s"),
945
/* ER_SP_PROC_TABLE_CORRUPT */
946
gettext_noop("Failed to load routine %-.192s. The table mysql.proc is missing, corrupt, or contains bad data (internal code %d)"),
947
/* ER_SP_WRONG_NAME 42000 */
948
gettext_noop("Incorrect routine name '%-.192s'"),
949
/* ER_TABLE_NEEDS_UPGRADE */
950
gettext_noop("Table upgrade required. Please do \"REPAIR TABLE `%-.32s`\" to fix it!"),
951
/* ER_SP_NO_AGGREGATE 42000 */
952
gettext_noop("AGGREGATE is not supported for stored functions"),
953
/* ER_MAX_PREPARED_STMT_COUNT_REACHED 42000 */
954
gettext_noop("Can't create more than max_prepared_stmt_count statements (current value: %lu)"),
955
/* ER_VIEW_RECURSIVE */
956
gettext_noop("`%-.192s`.`%-.192s` contains view recursion"),
957
/* ER_NON_GROUPING_FIELD_USED 42000 */
958
gettext_noop("non-grouping field '%-.192s' is used in %-.64s clause"),
959
/* ER_TABLE_CANT_HANDLE_SPKEYS */
960
gettext_noop("The used table type doesn't support SPATIAL indexes"),
961
/* ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA */
962
gettext_noop("Triggers can not be created on system tables"),
963
/* ER_REMOVED_SPACES */
964
gettext_noop("Leading spaces are removed from name '%s'"),
965
/* ER_AUTOINC_READ_FAILED */
966
gettext_noop("Failed to read auto-increment value from storage engine"),
967
/* ER_USERNAME */
968
gettext_noop("user name"),
969
/* ER_HOSTNAME */
970
gettext_noop("host name"),
971
/* ER_WRONG_STRING_LENGTH */
972
gettext_noop("String '%-.70s' is too long for %s (should be no longer than %d)"),
973
/* ER_NON_INSERTABLE_TABLE   */
974
gettext_noop("The target table %-.100s of the %s is not insertable-into"),
975
/* ER_ADMIN_WRONG_MRG_TABLE */
976
gettext_noop("Table '%-.64s' is differently defined or of non-MyISAM type or doesn't exist"),
977
/* ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT */
978
gettext_noop("Too high level of nesting for select"),
979
/* ER_NAME_BECOMES_EMPTY */
980
gettext_noop("Name '%-.64s' has become ''"),
981
/* ER_AMBIGUOUS_FIELD_TERM */
982
gettext_noop("First character of the FIELDS TERMINATED string is ambiguous; please use non-optional and non-empty FIELDS ENCLOSED BY"),
983
/* ER_FOREIGN_SERVER_EXISTS */
984
gettext_noop("The foreign server, %s, you are trying to create already exists."),
985
/* ER_FOREIGN_SERVER_DOESNT_EXIST */
986
gettext_noop("The foreign server name you are trying to reference does not exist. Data source error:  %-.64s"),
987
/* ER_ILLEGAL_HA_CREATE_OPTION */
988
gettext_noop("Table storage engine '%-.64s' does not support the create option '%.64s'"),
989
/* ER_PARTITION_REQUIRES_VALUES_ERROR */
990
gettext_noop("Syntax error: %-.64s PARTITIONING requires definition of VALUES %-.64s for each partition"),
991
/* ER_PARTITION_WRONG_VALUES_ERROR */
992
gettext_noop("Only %-.64s PARTITIONING can use VALUES %-.64s in partition definition"),
993
/* ER_PARTITION_MAXVALUE_ERROR */
994
gettext_noop("MAXVALUE can only be used in last partition definition"),
995
/* ER_PARTITION_SUBPARTITION_ERROR */
996
gettext_noop("Subpartitions can only be hash partitions and by key"),
997
/* ER_PARTITION_SUBPART_MIX_ERROR */
998
gettext_noop("Must define subpartitions on all partitions if on one partition"),
999
/* ER_PARTITION_WRONG_NO_PART_ERROR */
1000
gettext_noop("Wrong number of partitions defined, mismatch with previous setting"),
1001
/* ER_PARTITION_WRONG_NO_SUBPART_ERROR */
1002
gettext_noop("Wrong number of subpartitions defined, mismatch with previous setting"),
1003
/* ER_CONST_EXPR_IN_PARTITION_FUNC_ERROR */
1004
gettext_noop("Constant/Random expression in (sub)partitioning function is not allowed"),
1005
/* ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR */
1006
gettext_noop("Expression in RANGE/LIST VALUES must be constant"),
1007
/* ER_FIELD_NOT_FOUND_PART_ERROR */
1008
gettext_noop("Field in list of fields for partition function not found in table"),
1009
/* ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR */
1010
gettext_noop("List of fields is only allowed in KEY partitions"),
1011
/* ER_INCONSISTENT_PARTITION_INFO_ERROR */
1012
gettext_noop("The partition info in the frm file is not consistent with what can be written into the frm file"),
1013
/* ER_PARTITION_FUNC_NOT_ALLOWED_ERROR */
1014
gettext_noop("The %-.192s function returns the wrong type"),
1015
/* ER_PARTITIONS_MUST_BE_DEFINED_ERROR */
1016
gettext_noop("For %-.64s partitions each partition must be defined"),
1017
/* ER_RANGE_NOT_INCREASING_ERROR */
1018
gettext_noop("VALUES LESS THAN value must be strictly increasing for each partition"),
1019
/* ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR */
1020
gettext_noop("VALUES value must be of same type as partition function"),
1021
/* ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR */
1022
gettext_noop("Multiple definition of same constant in list partitioning"),
1023
/* ER_PARTITION_ENTRY_ERROR */
1024
gettext_noop("Partitioning can not be used stand-alone in query"),
1025
/* ER_MIX_HANDLER_ERROR */
1026
gettext_noop("The mix of handlers in the partitions is not allowed in this version of MySQL"),
1027
/* ER_PARTITION_NOT_DEFINED_ERROR */
1028
gettext_noop("For the partitioned engine it is necessary to define all %-.64s"),
1029
/* ER_TOO_MANY_PARTITIONS_ERROR */
1030
gettext_noop("Too many partitions (including subpartitions) were defined"),
1031
/* ER_SUBPARTITION_ERROR */
1032
gettext_noop("It is only possible to mix RANGE/LIST partitioning with HASH/KEY partitioning for subpartitioning"),
1033
/* ER_CANT_CREATE_HANDLER_FILE */
1034
gettext_noop("Failed to create specific handler file"),
1035
/* ER_BLOB_FIELD_IN_PART_FUNC_ERROR */
1036
gettext_noop("A BLOB field is not allowed in partition function"),
1037
/* ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF */
1038
gettext_noop("A %-.192s must include all columns in the table's partitioning function"),
1039
/* ER_NO_PARTS_ERROR */
1040
gettext_noop("Number of %-.64s = 0 is not an allowed value"),
1041
/* ER_PARTITION_MGMT_ON_NONPARTITIONED */
1042
gettext_noop("Partition management on a not partitioned table is not possible"),
1043
/* ER_FOREIGN_KEY_ON_PARTITIONED */
1044
gettext_noop("Foreign key condition is not yet supported in conjunction with partitioning"),
1045
/* ER_DROP_PARTITION_NON_EXISTENT */
1046
gettext_noop("Error in list of partitions to %-.64s"),
1047
/* ER_DROP_LAST_PARTITION */
1048
gettext_noop("Cannot remove all partitions, use DROP TABLE instead"),
1049
/* ER_COALESCE_ONLY_ON_HASH_PARTITION */
1050
gettext_noop("COALESCE PARTITION can only be used on HASH/KEY partitions"),
1051
/* ER_REORG_HASH_ONLY_ON_SAME_NO */
1052
gettext_noop("REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers"),
1053
/* ER_REORG_NO_PARAM_ERROR */
1054
gettext_noop("REORGANISE PARTITION without parameters can only be used on auto-partitioned tables using HASH PARTITIONs"),
1055
/* ER_ONLY_ON_RANGE_LIST_PARTITION */
1056
gettext_noop("%-.64s PARTITION can only be used on RANGE/LIST partitions"),
1057
/* ER_ADD_PARTITION_SUBPART_ERROR */
1058
gettext_noop("Trying to Add partition(s) with wrong number of subpartitions"),
1059
/* ER_ADD_PARTITION_NO_NEW_PARTITION */
1060
gettext_noop("At least one partition must be added"),
1061
/* ER_COALESCE_PARTITION_NO_PARTITION */
1062
gettext_noop("At least one partition must be coalesced"),
1063
/* ER_REORG_PARTITION_NOT_EXIST */
1064
gettext_noop("More partitions to reorganise than there are partitions"),
1065
/* ER_SAME_NAME_PARTITION */
1066
gettext_noop("Duplicate partition name %-.192s"),
1067
/* ER_NO_BINLOG_ERROR */
1068
gettext_noop("It is not allowed to shut off binlog on this command"),
1069
/* ER_CONSECUTIVE_REORG_PARTITIONS */
1070
gettext_noop("When reorganising a set of partitions they must be in consecutive order"),
1071
/* ER_REORG_OUTSIDE_RANGE */
1072
gettext_noop("Reorganize of range partitions cannot change total ranges except for last partition where it can extend the range"),
1073
/* ER_PARTITION_FUNCTION_FAILURE */
1074
gettext_noop("Partition function not supported in this version for this handler"),
1075
/* ER_PART_STATE_ERROR */
1076
gettext_noop("Partition state cannot be defined from CREATE/ALTER TABLE"),
1077
/* ER_LIMITED_PART_RANGE */
1078
gettext_noop("The %-.64s handler only supports 32 bit integers in VALUES"),
1079
/* ER_PLUGIN_IS_NOT_LOADED */
1080
gettext_noop("Plugin '%-.192s' is not loaded"),
1081
/* ER_WRONG_VALUE */
1082
gettext_noop("Incorrect %-.32s value: '%-.128s'"),
1083
/* ER_NO_PARTITION_FOR_GIVEN_VALUE */
1084
gettext_noop("Table has no partition for value %-.64s"),
1085
/* ER_FILEGROUP_OPTION_ONLY_ONCE */
1086
gettext_noop("It is not allowed to specify %s more than once"),
1087
/* ER_CREATE_FILEGROUP_FAILED */
1088
gettext_noop("Failed to create %s"),
1089
/* ER_DROP_FILEGROUP_FAILED */
1090
gettext_noop("Failed to drop %s"),
1091
/* ER_TABLESPACE_AUTO_EXTEND_ERROR */
1092
gettext_noop("The handler doesn't support autoextend of tablespaces"),
1093
/* ER_WRONG_SIZE_NUMBER */
1094
gettext_noop("A size parameter was incorrectly specified, either number or on the form 10M"),
1095
/* ER_SIZE_OVERFLOW_ERROR */
1096
gettext_noop("The size number was correct but we don't allow the digit part to be more than 2 billion"),
1097
/* ER_ALTER_FILEGROUP_FAILED */
1098
gettext_noop("Failed to alter: %s"),
1099
/* ER_BINLOG_ROW_LOGGING_FAILED */
1100
gettext_noop("Writing one row to the row-based binary log failed"),
1101
/* ER_BINLOG_ROW_WRONG_TABLE_DEF */
1102
gettext_noop("Table definition on master and slave does not match: %s"),
1103
/* ER_BINLOG_ROW_RBR_TO_SBR */
1104
gettext_noop("Slave running with --log-slave-updates must use row-based binary logging to be able to replicate row-based binary log events"),
1105
/* ER_EVENT_ALREADY_EXISTS */
1106
gettext_noop("Event '%-.192s' already exists"),
1107
/* ER_EVENT_STORE_FAILED */
1108
gettext_noop("Failed to store event %s. Error code %d from storage engine."),
1109
/* ER_EVENT_DOES_NOT_EXIST */
1110
gettext_noop("Unknown event '%-.192s'"),
1111
/* ER_EVENT_CANT_ALTER */
1112
gettext_noop("Failed to alter event '%-.192s'"),
1113
/* ER_EVENT_DROP_FAILED */
1114
gettext_noop("Failed to drop %s"),
1115
/* ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG */
1116
gettext_noop("INTERVAL is either not positive or too big"),
1117
/* ER_EVENT_ENDS_BEFORE_STARTS */
1118
gettext_noop("ENDS is either invalid or before STARTS"),
1119
/* ER_EVENT_EXEC_TIME_IN_THE_PAST */
1120
gettext_noop("Event execution time is in the past. Event has been disabled"),
1121
/* ER_EVENT_OPEN_TABLE_FAILED */
1122
gettext_noop("Failed to open mysql.event"),
1123
/* ER_EVENT_NEITHER_M_EXPR_NOR_M_AT */
1124
gettext_noop("No datetime expression provided"),
1125
/* ER_COL_COUNT_DOESNT_MATCH_CORRUPTED */
1126
gettext_noop("Column count of mysql.%s is wrong. Expected %d, found %d. The table is probably corrupted"),
1127
/* ER_CANNOT_LOAD_FROM_TABLE */
1128
gettext_noop("Cannot load from mysql.%s. The table is probably corrupted"),
1129
/* ER_EVENT_CANNOT_DELETE */
1130
gettext_noop("Failed to delete the event from mysql.event"),
1131
/* ER_EVENT_COMPILE_ERROR */
1132
gettext_noop("Error during compilation of event's body"),
1133
/* ER_EVENT_SAME_NAME */
1134
gettext_noop("Same old and new event name"),
1135
/* ER_EVENT_DATA_TOO_LONG */
1136
gettext_noop("Data for column '%s' too long"),
1137
/* ER_DROP_INDEX_FK */
1138
gettext_noop("Cannot drop index '%-.192s': needed in a foreign key constraint"),
1139
/* ER_WARN_DEPRECATED_SYNTAX_WITH_VER   */
1140
gettext_noop("The syntax '%s' is deprecated and will be removed in MySQL %s. Please use %s instead"),
1141
/* ER_CANT_WRITE_LOCK_LOG_TABLE */
1142
gettext_noop("You can't write-lock a log table. Only read access is possible"),
1143
/* ER_CANT_LOCK_LOG_TABLE */
1144
gettext_noop("You can't use locks with log tables."),
1145
/* ER_FOREIGN_DUPLICATE_KEY 23000 S1009 */
1146
gettext_noop("Upholding foreign key constraints for table '%.192s', entry '%-.192s', key %d would lead to a duplicate entry"),
1147
/* ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE */
1148
gettext_noop("Column count of mysql.%s is wrong. Expected %d, found %d. Created with MySQL %d, now running %d. Please use mysql_upgrade to fix this error."),
1149
/* ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR */
1150
gettext_noop("Cannot switch out of the row-based binary log format when the session has open temporary tables"),
1151
/* ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT */
1152
gettext_noop("Cannot change the binary logging format inside a stored function or trigger"),
1153
/* ER_NDB_CANT_SWITCH_BINLOG_FORMAT */
1154
gettext_noop("The NDB cluster engine does not support changing the binlog format on the fly yet"),
1155
/* ER_PARTITION_NO_TEMPORARY */
1156
gettext_noop("Cannot create temporary table with partitions"),
1157
/* ER_PARTITION_CONST_DOMAIN_ERROR */
1158
gettext_noop("Partition constant is out of partition function domain"),
1159
/* ER_PARTITION_FUNCTION_IS_NOT_ALLOWED */
1160
gettext_noop("This partition function is not allowed"),
1161
/* ER_DDL_LOG_ERROR */
1162
gettext_noop("Error in DDL log"),
1163
/* ER_NULL_IN_VALUES_LESS_THAN */
1164
gettext_noop("Not allowed to use NULL value in VALUES LESS THAN"),
1165
/* ER_WRONG_PARTITION_NAME */
1166
gettext_noop("Incorrect partition name"),
1167
/* ER_CANT_CHANGE_TX_ISOLATION 25001 */
1168
gettext_noop("Transaction isolation level can't be changed while a transaction is in progress"),
1169
/* ER_DUP_ENTRY_AUTOINCREMENT_CASE */
1170
gettext_noop("ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry '%-.192s' for key '%-.192s'"),
1171
/* ER_EVENT_MODIFY_QUEUE_ERROR */
1172
gettext_noop("Internal scheduler error %d"),
1173
/* ER_EVENT_SET_VAR_ERROR */
1174
gettext_noop("Error during starting/stopping of the scheduler. Error code %u"),
1175
/* ER_PARTITION_MERGE_ERROR */
1176
gettext_noop("Engine cannot be used in partitioned tables"),
1177
/* ER_CANT_ACTIVATE_LOG */
1178
gettext_noop("Cannot activate '%-.64s' log"),
1179
/* ER_RBR_NOT_AVAILABLE */
1180
gettext_noop("The server was not built with row-based replication"),
1181
/* ER_BASE64_DECODE_ERROR */
1182
gettext_noop("Decoding of base64 string failed"),
1183
/* ER_EVENT_RECURSION_FORBIDDEN */
1184
gettext_noop("Recursion of EVENT DDL statements is forbidden when body is present"),
1185
/* ER_EVENTS_DB_ERROR */
1186
gettext_noop("Cannot proceed because system tables used by Event Scheduler were found damaged at server start"),
1187
/* ER_ONLY_INTEGERS_ALLOWED */
1188
gettext_noop("Only integers allowed as number here"),
1189
/* ER_UNSUPORTED_LOG_ENGINE */
1190
gettext_noop("This storage engine cannot be used for log tables"),
1191
/* ER_BAD_LOG_STATEMENT */
1192
gettext_noop("You cannot '%s' a log table if logging is enabled"),
1193
/* ER_CANT_RENAME_LOG_TABLE */
1194
gettext_noop("Cannot rename '%s'. When logging enabled, rename to/from log table must rename two tables: the log table to an archive table and another table back to '%s'"),
1195
/* ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT 42000 */
1196
gettext_noop("Incorrect parameter count in the call to native function '%-.192s'"),
1197
/* ER_WRONG_PARAMETERS_TO_NATIVE_FCT 42000 */
1198
gettext_noop("Incorrect parameters in the call to native function '%-.192s'"),
1199
/* ER_WRONG_PARAMETERS_TO_STORED_FCT 42000   */
1200
gettext_noop("Incorrect parameters in the call to stored function '%-.192s'"),
1201
/* ER_NATIVE_FCT_NAME_COLLISION */
1202
gettext_noop("This function '%-.192s' has the same name as a native function"),
1203
/* ER_DUP_ENTRY_WITH_KEY_NAME 23000 S1009 */
1204
gettext_noop("Duplicate entry '%-.64s' for key '%-.192s'"),
1205
/* ER_BINLOG_PURGE_EMFILE */
1206
gettext_noop("Too many files opened, please execute the command again"),
1207
/* ER_EVENT_CANNOT_CREATE_IN_THE_PAST */
1208
gettext_noop("Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was dropped immediately after creation."),
1209
/* ER_EVENT_CANNOT_ALTER_IN_THE_PAST */
1210
gettext_noop("Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was dropped immediately after creation."),
1211
/* ER_SLAVE_INCIDENT */
1212
gettext_noop("The incident %s occured on the master. Message: %-.64s"),
1213
/* ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT */
1214
gettext_noop("Table has no partition for some existing values"),
1215
/* ER_BINLOG_UNSAFE_STATEMENT */
1216
gettext_noop("Statement is not safe to log in statement format."),
1217
/* ER_SLAVE_FATAL_ERROR */
1218
gettext_noop("Fatal error: %s"),
1219
/* ER_SLAVE_RELAY_LOG_READ_FAILURE */
1220
gettext_noop("Relay log read failure: %s"),
1221
/* ER_SLAVE_RELAY_LOG_WRITE_FAILURE */
1222
gettext_noop("Relay log write failure: %s"),
1223
/* ER_SLAVE_CREATE_EVENT_FAILURE */
1224
gettext_noop("Failed to create %s"),
1225
/* ER_SLAVE_MASTER_COM_FAILURE */
1226
gettext_noop("Master command %s failed: %s"),
1227
/* ER_BINLOG_LOGGING_IMPOSSIBLE */
1228
gettext_noop("Binary logging not possible. Message: %s"),
1229
/* ER_VIEW_NO_CREATION_CTX */
1230
gettext_noop("View `%-.64s`.`%-.64s` has no creation context"),
1231
/* ER_VIEW_INVALID_CREATION_CTX */
1232
gettext_noop("Creation context of view `%-.64s`.`%-.64s' is invalid"),
1233
/* ER_SR_INVALID_CREATION_CTX */
1234
gettext_noop("Creation context of stored routine `%-.64s`.`%-.64s` is invalid"),
1235
/* ER_TRG_CORRUPTED_FILE */
1236
gettext_noop("Corrupted TRG file for table `%-.64s`.`%-.64s`"),
1237
/* ER_TRG_NO_CREATION_CTX */
1238
gettext_noop("Triggers for table `%-.64s`.`%-.64s` have no creation context"),
1239
/* ER_TRG_INVALID_CREATION_CTX */
1240
gettext_noop("Trigger creation context of table `%-.64s`.`%-.64s` is invalid"),
1241
/* ER_EVENT_INVALID_CREATION_CTX */
1242
gettext_noop("Creation context of event `%-.64s`.`%-.64s` is invalid"),
1243
/* ER_TRG_CANT_OPEN_TABLE */
1244
gettext_noop("Cannot open table for trigger `%-.64s`.`%-.64s`"),
1245
/* ER_CANT_CREATE_SROUTINE */
1246
gettext_noop("Cannot create stored routine `%-.64s`. Check warnings"),
1247
/* ER_SLAVE_AMBIGOUS_EXEC_MODE */
1248
gettext_noop("Ambiguous slave modes combination. %s"),
1249
/* ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT */
1250
gettext_noop("The BINLOG statement of type `%s` was not preceded by a format description BINLOG statement."),
1251
/* ER_SLAVE_CORRUPT_EVENT */
1252
gettext_noop("Corrupted replication event was detected"),
1253
/* ER_LOAD_DATA_INVALID_COLUMN */
1254
gettext_noop("Invalid column reference (%-.64s) in LOAD DATA"),
1255
/* ER_LOG_PURGE_NO_FILE   */
1256
gettext_noop("Being purged log %s was not found"),
1257
/* ER_WARN_AUTO_CONVERT_LOCK */
1258
gettext_noop("Converted to non-transactional lock on '%-.64s'"),
1259
/* ER_NO_AUTO_CONVERT_LOCK_STRICT */
1260
gettext_noop("Cannot convert to non-transactional lock in strict mode on '%-.64s'"),
1261
/* ER_NO_AUTO_CONVERT_LOCK_TRANSACTION */
1262
gettext_noop("Cannot convert to non-transactional lock in an active transaction on '%-.64s'"),
1263
/* ER_NO_STORAGE_ENGINE */
1264
gettext_noop("Can't access storage engine of table %-.64s"),
1265
/* ER_BACKUP_BACKUP_START */
1266
gettext_noop("Starting backup process"),
1267
/* ER_BACKUP_BACKUP_DONE */
1268
gettext_noop("Backup completed"),
1269
/* ER_BACKUP_RESTORE_START */
1270
gettext_noop("Starting restore process"),
1271
/* ER_BACKUP_RESTORE_DONE */
1272
gettext_noop("Restore completed"),
1273
/* ER_BACKUP_NOTHING_TO_BACKUP */
1274
gettext_noop("Nothing to backup"),
1275
/* ER_BACKUP_CANNOT_INCLUDE_DB */
1276
gettext_noop("Database '%-.64s' cannot be included in a backup"),
1277
/* ER_BACKUP_BACKUP */
1278
gettext_noop("Error during backup operation - server's error log contains more information about the error"),
1279
/* ER_BACKUP_RESTORE */
1280
gettext_noop("Error during restore operation - server's error log contains more information about the error"),
1281
/* ER_BACKUP_RUNNING */
1282
gettext_noop("Can't execute this command because another BACKUP/RESTORE operation is in progress"),
1283
/* ER_BACKUP_BACKUP_PREPARE */
1284
gettext_noop("Error when preparing for backup operation"),
1285
/* ER_BACKUP_RESTORE_PREPARE */
1286
gettext_noop("Error when preparing for restore operation"),
1287
/* ER_BACKUP_INVALID_LOC */
1288
gettext_noop("Invalid backup location '%-.64s'"),
1289
/* ER_BACKUP_READ_LOC */
1290
gettext_noop("Can't read backup location '%-.64s'"),
1291
/* ER_BACKUP_WRITE_LOC */
1292
gettext_noop("Can't write to backup location '%-.64s' (file already exists?)"),
1293
/* ER_BACKUP_LIST_DBS */
1294
gettext_noop("Can't enumerate server databases"),
1295
/* ER_BACKUP_LIST_TABLES */
1296
gettext_noop("Can't enumerate server tables"),
1297
/* ER_BACKUP_LIST_DB_TABLES */
1298
gettext_noop("Can't enumerate tables in database %-.64s"),
1299
/* ER_BACKUP_SKIP_VIEW */
1300
gettext_noop("Skipping view %-.64s in database %-.64s"),
1301
/* ER_BACKUP_NO_ENGINE */
1302
gettext_noop("Skipping table %-.64s since it has no valid storage engine"),
1303
/* ER_BACKUP_TABLE_OPEN */
1304
gettext_noop("Can't open table %-.64s"),
1305
/* ER_BACKUP_READ_HEADER */
1306
gettext_noop("Can't read backup archive preamble"),
1307
/* ER_BACKUP_WRITE_HEADER */
1308
gettext_noop("Can't write backup archive preamble"),
1309
/* ER_BACKUP_NO_BACKUP_DRIVER */
1310
gettext_noop("Can't find backup driver for table %-.64s"),
1311
/* ER_BACKUP_NOT_ACCEPTED */
1312
gettext_noop("%-.64s backup driver was selected for table %-.64s but it rejects to handle this table"),
1313
/* ER_BACKUP_CREATE_BACKUP_DRIVER */
1314
gettext_noop("Can't create %-.64s backup driver"),
1315
/* ER_BACKUP_CREATE_RESTORE_DRIVER */
1316
gettext_noop("Can't create %-.64s restore driver"),
1317
/* ER_BACKUP_TOO_MANY_IMAGES */
1318
gettext_noop("Found %d images in backup archive but maximum %d are supported"),
1319
/* ER_BACKUP_WRITE_META */
1320
gettext_noop("Error when saving meta-data of %-.64s"),
1321
/* ER_BACKUP_READ_META */
1322
gettext_noop("Error when reading meta-data list"),
1323
/* ER_BACKUP_CREATE_META */
1324
gettext_noop("Can't create %-.64s"),
1325
/* ER_BACKUP_GET_BUF */
1326
gettext_noop("Can't allocate buffer for image data transfer"),
1327
/* ER_BACKUP_WRITE_DATA */
1328
gettext_noop("Error when writing %-.64s backup image data (for table #%d)"),
1329
/* ER_BACKUP_READ_DATA */
1330
gettext_noop("Error when reading data from backup stream"),
1331
/* ER_BACKUP_NEXT_CHUNK */
1332
gettext_noop("Can't go to the next chunk in backup stream"),
1333
/* ER_BACKUP_INIT_BACKUP_DRIVER */
1334
gettext_noop("Can't initialize %-.64s backup driver"),
1335
/* ER_BACKUP_INIT_RESTORE_DRIVER */
1336
gettext_noop("Can't initialize %-.64s restore driver"),
1337
/* ER_BACKUP_STOP_BACKUP_DRIVER */
1338
gettext_noop("Can't shut down %-.64s backup driver"),
1339
/* ER_BACKUP_STOP_RESTORE_DRIVERS */
1340
gettext_noop("Can't shut down %-.64s backup driver(s)"),
1341
/* ER_BACKUP_PREPARE_DRIVER */
1342
gettext_noop("%-.64s backup driver can't prepare for synchronization"),
1343
/* ER_BACKUP_CREATE_VP */
1344
gettext_noop("%-.64s backup driver can't create its image validity point"),
1345
/* ER_BACKUP_UNLOCK_DRIVER */
1346
gettext_noop("Can't unlock %-.64s backup driver after creating the validity point"),
1347
/* ER_BACKUP_CANCEL_BACKUP */
1348
gettext_noop("%-.64s backup driver can't cancel its backup operation"),
1349
/* ER_BACKUP_CANCEL_RESTORE */
1350
gettext_noop("%-.64s restore driver can't cancel its restore operation"),
1351
/* ER_BACKUP_GET_DATA */
1352
gettext_noop("Error when polling %-.64s backup driver for its image data"),
1353
/* ER_BACKUP_SEND_DATA */
1354
gettext_noop("Error when sending image data (for table #%d) to %-.64s restore driver"),
1355
/* ER_BACKUP_SEND_DATA_RETRY */
1356
gettext_noop("After %d attempts %-.64s restore driver still can't accept next block of data"),
1357
/* ER_BACKUP_OPEN_TABLES */
1358
gettext_noop("Open and lock tables failed in %-.64s"),
1359
/* ER_BACKUP_THREAD_INIT */
1360
gettext_noop("Backup driver's table locking thread can not be initialized."),
1361
/* ER_BACKUP_PROGRESS_TABLES */
1362
gettext_noop("Can't open the online backup progress tables. Check 'mysql.online_backup' and 'mysql.online_backup_progress'."),
1363
/* ER_TABLESPACE_EXIST */
1364
gettext_noop("Tablespace '%-.192s' already exists"),
1365
/* ER_NO_SUCH_TABLESPACE */
1366
gettext_noop("Tablespace '%-.192s' doesn't exist"),
1367
/* ER_SLAVE_HEARTBEAT_FAILURE */
1368
gettext_noop("Unexpected master's heartbeat data: %s"),
1369
/* ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE */
1370
gettext_noop("The requested value for the heartbeat period %s %s"),
1371
/* ER_BACKUP_LOG_WRITE_ERROR */
1372
gettext_noop("Can't write to the online backup progress log %-.64s."),
1373
/* ER_TABLESPACE_NOT_EMPTY */
1374
gettext_noop("Tablespace '%-.192s' not empty"),
1375
/* ER_BACKUP_TS_CHANGE */
1376
gettext_noop("Tablespace `%-.64s` needed by tables being restored has changed on the server. The original definition of the required tablespace is '%-.256s' while the same tablespace is defined on the server as '%-.256s'")
1377
};
1378
1379
#endif