~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.cc

  • Committer: Barry.Leslie at PrimeBase
  • Date: 2010-10-20 20:41:00 UTC
  • mfrom: (1863 staging)
  • mto: This revision was merged to the branch mainline in revision 1871.
  • Revision ID: barry.leslie@primebase.com-20101020204100-oyj6p5cfssjw3p62
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
208
208
  add(ER_YES, N_("YES"));
209
209
  add(ER_CANT_CREATE_FILE, N_("Can't create file '%-.200s' (errno: %d)"));
210
210
  add(ER_CANT_CREATE_TABLE, N_("Can't create table '%-.200s' (errno: %d)"));
211
 
  add(ER_CANT_CREATE_DB, N_("Can't create database '%-.192s' (errno: %d)"));
212
 
  add(ER_DB_CREATE_EXISTS, N_("Can't create database '%-.192s'; database exists"));
213
 
  add(ER_DB_DROP_EXISTS, N_("Can't drop database '%-.192s'; database doesn't exist"));
 
211
  add(ER_CANT_CREATE_DB, N_("Can't create schema '%-.192s' (errno: %d)"));
 
212
  add(ER_DB_CREATE_EXISTS, N_("Can't create schema '%-.192s'; schema exists"));
 
213
  add(ER_DB_DROP_EXISTS, N_("Can't drop schema '%-.192s'; schema doesn't exist"));
214
214
  add(ER_CANT_DELETE_FILE, N_("Error on delete of '%-.192s' (errno: %d)"));
215
215
  add(ER_CANT_GET_STAT, N_("Can't get status of '%-.200s' (errno: %d)"));
216
216
  add(ER_CANT_LOCK, N_("Can't lock file (errno: %d)"));
240
240
  add(ER_OUT_OF_RESOURCES, N_("Out of memory; check if drizzled or some other process uses all available memory; if not, you may have to use 'ulimit' to allow drizzled to use more memory or you can add more swap space"));
241
241
  add(ER_BAD_HOST_ERROR, N_("Can't get hostname for your address"));
242
242
  add(ER_HANDSHAKE_ERROR, N_("Bad handshake"));
243
 
  add(ER_DBACCESS_DENIED_ERROR, N_("Access denied for user '%-.48s'@'%-.64s' to database '%-.192s'"));
 
243
  add(ER_DBACCESS_DENIED_ERROR, N_("Access denied for user '%-.48s'@'%-.64s' to schema '%-.192s'"));
244
244
  add(ER_ACCESS_DENIED_ERROR, N_("Access denied for user '%-.48s'@'%-.64s' (using password: %s)"));
245
 
  add(ER_NO_DB_ERROR, N_("No database selected"));
 
245
  add(ER_NO_DB_ERROR, N_("No schema selected"));
246
246
  add(ER_UNKNOWN_COM_ERROR, N_("Unknown command"));
247
247
  add(ER_BAD_NULL_ERROR, N_("Column '%-.192s' cannot be null"));
248
 
  add(ER_BAD_DB_ERROR, N_("Unknown database '%-.192s'"));
 
248
  add(ER_BAD_DB_ERROR, N_("Unknown schema '%-.192s'"));
249
249
  add(ER_TABLE_EXISTS_ERROR, N_("Table '%-.192s' already exists"));
250
250
  add(ER_BAD_TABLE_ERROR, N_("Unknown table '%-.100s'"));
251
251
  add(ER_NON_UNIQ_ERROR, N_("Column '%-.192s' in %-.192s is ambiguous"));
280
280
  add(ER_NO_SUCH_INDEX, N_("Table '%-.192s' has no index like the one used in CREATE INDEX; recreate the table"));
281
281
  add(ER_WRONG_FIELD_TERMINATORS, N_("Field separator argument '%-.32s' with length '%d' is not what is expected; check the manual"));
282
282
  add(ER_BLOBS_AND_NO_TERMINATED, N_("You can't use fixed rowlength with BLOBs; please use 'fields terminated by'"));
283
 
  add(ER_TEXTFILE_NOT_READABLE, N_("The file '%-.128s' must be in the database directory or be readable by all"));
 
283
  add(ER_TEXTFILE_NOT_READABLE, N_("The file '%-.128s' must be in the schema directory or be readable by all"));
284
284
  add(ER_FILE_EXISTS_ERROR, N_("File '%-.200s' already exists"));
285
285
  add(ER_LOAD_INFO, N_("Records: %ld  Deleted: %ld  Skipped: %ld  Warnings: %ld"));
286
286
  add(ER_WRONG_SUB_KEY, N_("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"));
292
292
  add(ER_KILL_DENIED_ERROR, N_("You are not owner of thread %lu"));
293
293
  add(ER_NO_TABLES_USED, N_("No tables used"));
294
294
  add(ER_BLOB_CANT_HAVE_DEFAULT, N_("BLOB/TEXT column '%-.192s' can't have a default value"));
295
 
  add(ER_WRONG_DB_NAME, N_("Incorrect database name '%-.100s'"));
 
295
  add(ER_WRONG_DB_NAME, N_("Incorrect schema name '%-.100s'"));
296
296
  add(ER_WRONG_TABLE_NAME, N_("Incorrect table name '%-.100s'"));
297
297
  add(ER_TOO_BIG_SELECT, N_("The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=# if the SELECT is okay"));
298
298
  add(ER_UNKNOWN_ERROR, N_("Unknown error"));