~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.cc

  • Committer: Monty Taylor
  • Date: 2009-01-06 18:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 762.
  • Revision ID: mordred@inaugust.com-20090106184625-kqu7nsnwjwm5jv4s
Enabled dirty_close.

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
/* ER_OPEN_AS_READONLY   */
106
106
N_("Table '%-.192s' is read only"),
107
107
/* ER_OUTOFMEMORY HY001 S1001 */
108
 
N_("Out of memory; restart server and try again (needed %d bytes)"),
 
108
N_("Out of memory; restart server and try again (needed %lu bytes)"),
109
109
/* ER_OUT_OF_SORTMEMORY HY001 S1001 */
110
110
N_("Out of sort memory; increase server sort buffer size"),
111
111
/* ER_UNEXPECTED_EOF   */
113
113
/* ER_CON_COUNT_ERROR 08004  */
114
114
N_("Too many connections"),
115
115
/* ER_OUT_OF_RESOURCES   */
116
 
N_("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"),
 
116
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"),
117
117
/* ER_BAD_HOST_ERROR 08S01  */
118
118
N_("Can't get hostname for your address"),
119
119
/* ER_HANDSHAKE_ERROR 08S01  */
197
197
/* ER_NO_SUCH_INDEX 42S12 S1009 */
198
198
N_("Table '%-.192s' has no index like the one used in CREATE INDEX; recreate the table"),
199
199
/* ER_WRONG_FIELD_TERMINATORS 42000 S1009 */
200
 
N_("Field separator argument is not what is expected; check the manual"),
 
200
N_("Field separator argument '%-.32s' with length '%d' is not what is expected; check the manual"),
201
201
/* ER_BLOBS_AND_NO_TERMINATED 42000 S1009 */
202
202
N_("You can't use fixed rowlength with BLOBs; please use 'fields terminated by'"),
203
203
/* ER_TEXTFILE_NOT_READABLE   */
239
239
/* ER_WRONG_TABLE_NAME 42000  */
240
240
N_("Incorrect table name '%-.100s'"),
241
241
/* ER_TOO_BIG_SELECT 42000  */
242
 
N_("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"),
 
242
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"),
243
243
/* ER_UNKNOWN_ERROR   */
244
244
N_("Unknown error"),
245
245
/* ER_UNKNOWN_PROCEDURE 42000  */
255
255
/* ER_INVALID_GROUP_FUNC_USE   */
256
256
N_("Invalid use of group function"),
257
257
/* ER_UNSUPPORTED_EXTENSION 42000  */
258
 
N_("Table '%-.192s' uses an extension that doesn't exist in this MySQL version"),
 
258
N_("Table '%-.192s' uses an extension that doesn't exist in this Drizzle version"),
259
259
/* ER_TABLE_MUST_HAVE_COLUMNS 42000  */
260
260
N_("A table must have at least 1 column"),
261
261
/* ER_RECORD_FILE_FULL   */
263
263
/* ER_UNKNOWN_CHARACTER_SET 42000  */
264
264
N_("Unknown character set: '%-.64s'"),
265
265
/* ER_TOO_MANY_TABLES   */
266
 
N_("Too many tables; MySQL can only use %d tables in a join"),
 
266
N_("Too many tables; Drizzle can only use %d tables in a join"),
267
267
/* ER_TOO_MANY_FIELDS   */
268
268
N_("Too many columns"),
269
269
/* ER_TOO_BIG_ROWSIZE 42000  */
270
270
N_("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"),
271
271
/* ER_STACK_OVERRUN   */
272
 
N_("Thread stack overrun:  Used: %ld of a %ld stack.  Use 'mysqld -O thread_stack=#' to specify a bigger stack if needed"),
 
272
N_("Thread stack overrun:  Used: %ld of a %ld stack.  Use 'drizzled -O thread_stack=#' to specify a bigger stack if needed"),
273
273
/* ER_WRONG_OUTER_JOIN 42000  */
274
274
N_("Cross dependency found in OUTER JOIN; examine your ON conditions"),
275
275
/* ER_NULL_COLUMN_IN_INDEX 42000  */
289
289
/* ER_FUNCTION_NOT_DEFINED   */
290
290
N_("Function '%-.192s' is not defined"),
291
291
/* ER_HOST_IS_BLOCKED   */
292
 
N_("Host '%-.64s' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'"),
 
292
N_("Host '%-.64s' is blocked because of many connection errors; unblock with 'drizzleadmin flush-hosts'"),
293
293
/* ER_HOST_NOT_PRIVILEGED   */
294
 
N_("Host '%-.64s' is not allowed to connect to this MySQL server"),
 
294
N_("Host '%-.64s' is not allowed to connect to this Drizzle server"),
295
295
/* ER_PASSWORD_ANONYMOUS_USER 42000  */
296
 
N_("You are using MySQL as an anonymous user and anonymous users are not allowed to change passwords"),
 
296
N_("You are using Drizzle as an anonymous user and anonymous users are not allowed to change passwords"),
297
297
/* ER_PASSWORD_NOT_ALLOWED 42000  */
298
 
N_("You must have privileges to update tables in the mysql database to be able to change passwords for others"),
 
298
N_("You must have privileges to update tables in the drizzle database to be able to change passwords for others"),
299
299
/* ER_PASSWORD_NO_MATCH 42000  */
300
300
N_("Can't find any matching row in the user table"),
301
301
/* ER_UPDATE_INFO   */
327
327
/* ER_NONEXISTING_TABLE_GRANT 42000  */
328
328
N_("There is no such grant defined for user '%-.48s' on host '%-.64s' on table '%-.192s'"),
329
329
/* ER_NOT_ALLOWED_COMMAND 42000  */
330
 
N_("The used command is not allowed with this MySQL version"),
 
330
N_("The used command is not allowed with this Drizzle version"),
331
331
/* ER_SYNTAX_ERROR 42000  */
332
 
N_("You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use"),
 
332
N_("You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use"),
333
333
/* ER_DELAYED_CANT_CHANGE_LOCK   */
334
334
N_("Delayed insert thread couldn't get requested lock for table %-.192s"),
335
335
/* ER_TOO_MANY_DELAYED_THREADS   */
379
379
/* ER_REQUIRES_PRIMARY_KEY 42000  */
380
380
N_("This table type requires a primary key"),
381
381
/* ER_NO_RAID_COMPILED   */
382
 
N_("This version of MySQL is not compiled with RAID support"),
 
382
N_("This version of Drizzle is not compiled with RAID support"),
383
383
/* ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE   */
384
384
N_("You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column"),
385
385
/* ER_KEY_DOES_NOT_EXITS 42000 S1009 */
425
425
/* ER_WARNING_NOT_COMPLETE_ROLLBACK   */
426
426
N_("Some non-transactional changed tables couldn't be rolled back"),
427
427
/* ER_TRANS_CACHE_FULL   */
428
 
N_("Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage; increase this mysqld variable and try again"),
 
428
N_("Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage; increase this drizzled variable and try again"),
429
429
/* ER_SLAVE_MUST_STOP   */
430
430
N_("This operation cannot be performed with a running slave; run STOP SLAVE first"),
431
431
/* ER_SLAVE_NOT_RUNNING   */
433
433
/* ER_BAD_SLAVE   */
434
434
N_("The server is not configured as slave; fix with CHANGE MASTER TO"),
435
435
/* ER_MASTER_INFO   */
436
 
N_("Could not initialize master info structure; more error messages can be found in the MySQL error log"),
 
436
N_("Could not initialize master info structure; more error messages can be found in the Drizzle error log"),
437
437
/* ER_SLAVE_THREAD   */
438
438
N_("Could not create slave thread; check system resources"),
439
439
/* ER_TOO_MANY_USER_CONNECTIONS 42000  */
501
501
/* ER_CANT_USE_OPTION_HERE 42000  */
502
502
N_("Incorrect usage/placement of '%s'"),
503
503
/* ER_NOT_SUPPORTED_YET 42000  */
504
 
N_("This version of MySQL doesn't yet support '%s'"),
 
504
N_("This version of Drizzle doesn't yet support '%s'"),
505
505
/* ER_MASTER_FATAL_ERROR_READING_BINLOG   */
506
506
N_("Got fatal error %d: '%-.128s' from master when reading data from binary log"),
507
507
/* ER_SLAVE_IGNORED_TABLE   */
533
533
/* ER_TABLENAME_NOT_ALLOWED_HERE 42000  */
534
534
N_("Table '%-.192s' from one of the SELECTs cannot be used in %-.32s"),
535
535
/* ER_NOT_SUPPORTED_AUTH_MODE 08004  */
536
 
N_("Client does not support authentication protocol requested by server; consider upgrading MySQL client"),
 
536
N_("Client does not support authentication protocol requested by server; consider upgrading Drizzle client"),
537
537
/* ER_SPATIAL_CANT_HAVE_NULL 42000  */
538
538
N_("All parts of a SPATIAL index must be NOT NULL"),
539
539
/* ER_COLLATION_CHARSET_MISMATCH 42000  */
579
579
/* ER_UNKNOWN_COLLATION   */
580
580
N_("Unknown collation: '%-.64s'"),
581
581
/* ER_SLAVE_IGNORED_SSL_PARAMS   */
582
 
N_("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"),
 
582
N_("SSL parameters in CHANGE MASTER are ignored because this Drizzle slave was compiled without SSL support; they can be used later if Drizzle slave with SSL is started"),
583
583
/* ER_SERVER_IS_IN_SECURE_AUTH_MODE   */
584
584
N_("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"),
585
585
/* ER_WARN_FIELD_RESOLVED   */
587
587
/* ER_BAD_SLAVE_UNTIL_COND   */
588
588
N_("Incorrect parameter or combination of parameters for START SLAVE UNTIL"),
589
589
/* ER_MISSING_SKIP_SLAVE   */
590
 
N_("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"),
 
590
N_("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 drizzled restart"),
591
591
/* ER_UNTIL_COND_IGNORED   */
592
592
N_("SQL thread is not to be started so UNTIL options are ignored"),
593
593
/* ER_WRONG_NAME_FOR_INDEX 42000  */
601
601
/* ER_UNKNOWN_KEY_CACHE   */
602
602
N_("Unknown key cache '%-.100s'"),
603
603
/* ER_WARN_HOSTNAME_WONT_WORK   */
604
 
N_("MySQL is started in --skip-name-resolve mode; you must restart it without this switch for this grant to work"),
 
604
N_("Drizzle is started in --skip-name-resolve mode; you must restart it without this switch for this grant to work"),
605
605
/* ER_UNKNOWN_STORAGE_ENGINE 42000  */
606
606
N_("Unknown table engine '%s'"),
607
607
/* ER_WARN_DEPRECATED_SYNTAX   */
609
609
/* ER_NON_UPDATABLE_TABLE   */
610
610
N_("The target table %-.100s of the %s is not updatable"),
611
611
/* ER_FEATURE_DISABLED   */
612
 
N_("The '%s' feature is disabled; you need MySQL built with '%s' to have it working"),
 
612
N_("The '%s' feature is disabled; you need Drizzle built with '%s' to have it working"),
613
613
/* ER_OPTION_PREVENTS_STATEMENT   */
614
 
N_("The MySQL server is running with the %s option so it cannot execute this statement"),
 
614
N_("The Drizzle server is running with the %s option so it cannot execute this statement"),
615
615
/* ER_DUPLICATED_VALUE_IN_TYPE   */
616
616
N_("Column '%-.100s' has duplicated value '%-.64s' in %s"),
617
617
/* ER_TRUNCATED_WRONG_VALUE 22007  */
795
795
/* ER_NO_BINARY_LOGGING   */
796
796
N_("You are not using binary logging"),
797
797
/* ER_RESERVED_SYNTAX   */
798
 
N_("The '%-.64s' syntax is reserved for purposes internal to the MySQL server"),
 
798
N_("The '%-.64s' syntax is reserved for purposes internal to the Drizzle server"),
799
799
/* ER_WSAS_FAILED   */
800
800
N_("WSAStartup Failed"),
801
801
/* ER_DIFF_GROUPS_PROC   */
903
903
/* ER_TRG_IN_WRONG_SCHEMA   */
904
904
N_("Trigger in wrong schema"),
905
905
/* ER_STACK_OVERRUN_NEED_MORE */
906
 
N_("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."),
 
906
N_("Thread stack overrun:  %ld bytes used of a %ld byte stack, and %ld bytes needed.  Use 'drizzled -O thread_stack=#' to specify a bigger stack."),
907
907
/* ER_TOO_LONG_BODY 42000 S1009 */
908
908
N_("Routine body for '%-.100s' is too long"),
909
909
/* ER_WARN_CANT_DROP_DEFAULT_KEYCACHE */
945
945
/* ER_SP_RECURSION_LIMIT */
946
946
N_("Recursive limit %d (as set by the max_sp_recursion_depth variable) was exceeded for routine %.192s"),
947
947
/* ER_SP_PROC_TABLE_CORRUPT */
948
 
N_("Failed to load routine %-.192s. The table mysql.proc is missing, corrupt, or contains bad data (internal code %d)"),
 
948
N_("Failed to load routine %-.192s. The table drizzle.proc is missing, corrupt, or contains bad data (internal code %d)"),
949
949
/* ER_SP_WRONG_NAME 42000 */
950
950
N_("Incorrect routine name '%-.192s'"),
951
951
/* ER_TABLE_NEEDS_UPGRADE */
1025
1025
/* ER_PARTITION_ENTRY_ERROR */
1026
1026
N_("Partitioning can not be used stand-alone in query"),
1027
1027
/* ER_MIX_HANDLER_ERROR */
1028
 
N_("The mix of handlers in the partitions is not allowed in this version of MySQL"),
 
1028
N_("The mix of handlers in the partitions is not allowed in this version of Drizzle"),
1029
1029
/* ER_PARTITION_NOT_DEFINED_ERROR */
1030
1030
N_("For the partitioned engine it is necessary to define all %-.64s"),
1031
1031
/* ER_TOO_MANY_PARTITIONS_ERROR */
1051
1051
/* ER_COALESCE_ONLY_ON_HASH_PARTITION */
1052
1052
N_("COALESCE PARTITION can only be used on HASH/KEY partitions"),
1053
1053
/* ER_REORG_HASH_ONLY_ON_SAME_NO */
1054
 
N_("REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers"),
 
1054
N_("REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers"),
1055
1055
/* ER_REORG_NO_PARAM_ERROR */
1056
 
N_("REORGANISE PARTITION without parameters can only be used on auto-partitioned tables using HASH PARTITIONs"),
 
1056
N_("REORGANIZE PARTITION without parameters can only be used on auto-partitioned tables using HASH PARTITIONs"),
1057
1057
/* ER_ONLY_ON_RANGE_LIST_PARTITION */
1058
1058
N_("%-.64s PARTITION can only be used on RANGE/LIST partitions"),
1059
1059
/* ER_ADD_PARTITION_SUBPART_ERROR */
1063
1063
/* ER_COALESCE_PARTITION_NO_PARTITION */
1064
1064
N_("At least one partition must be coalesced"),
1065
1065
/* ER_REORG_PARTITION_NOT_EXIST */
1066
 
N_("More partitions to reorganise than there are partitions"),
 
1066
N_("More partitions to reorganize than there are partitions"),
1067
1067
/* ER_SAME_NAME_PARTITION */
1068
1068
N_("Duplicate partition name %-.192s"),
1069
1069
/* ER_NO_BINLOG_ERROR */
1070
1070
N_("It is not allowed to shut off binlog on this command"),
1071
1071
/* ER_CONSECUTIVE_REORG_PARTITIONS */
1072
 
N_("When reorganising a set of partitions they must be in consecutive order"),
 
1072
N_("When reorganizing a set of partitions they must be in consecutive order"),
1073
1073
/* ER_REORG_OUTSIDE_RANGE */
1074
1074
N_("Reorganize of range partitions cannot change total ranges except for last partition where it can extend the range"),
1075
1075
/* ER_PARTITION_FUNCTION_FAILURE */
1121
1121
/* ER_EVENT_EXEC_TIME_IN_THE_PAST */
1122
1122
N_("Event execution time is in the past. Event has been disabled"),
1123
1123
/* ER_EVENT_OPEN_TABLE_FAILED */
1124
 
N_("Failed to open mysql.event"),
 
1124
N_("Failed to open drizzle.event"),
1125
1125
/* ER_EVENT_NEITHER_M_EXPR_NOR_M_AT */
1126
1126
N_("No datetime expression provided"),
1127
1127
/* ER_COL_COUNT_DOESNT_MATCH_CORRUPTED */
1128
 
N_("Column count of mysql.%s is wrong. Expected %d, found %d. The table is probably corrupted"),
 
1128
N_("Column count of drizzle.%s is wrong. Expected %d, found %d. The table is probably corrupted"),
1129
1129
/* ER_CANNOT_LOAD_FROM_TABLE */
1130
 
N_("Cannot load from mysql.%s. The table is probably corrupted"),
 
1130
N_("Cannot load from drizzle.%s. The table is probably corrupted"),
1131
1131
/* ER_EVENT_CANNOT_DELETE */
1132
 
N_("Failed to delete the event from mysql.event"),
 
1132
N_("Failed to delete the event from drizzle.event"),
1133
1133
/* ER_EVENT_COMPILE_ERROR */
1134
1134
N_("Error during compilation of event's body"),
1135
1135
/* ER_EVENT_SAME_NAME */
1139
1139
/* ER_DROP_INDEX_FK */
1140
1140
N_("Cannot drop index '%-.192s': needed in a foreign key constraint"),
1141
1141
/* ER_WARN_DEPRECATED_SYNTAX_WITH_VER   */
1142
 
N_("The syntax '%s' is deprecated and will be removed in MySQL %s. Please use %s instead"),
 
1142
N_("The syntax '%s' is deprecated and will be removed in Drizzle %s. Please use %s instead"),
1143
1143
/* ER_CANT_WRITE_LOCK_LOG_TABLE */
1144
1144
N_("You can't write-lock a log table. Only read access is possible"),
1145
1145
/* ER_CANT_LOCK_LOG_TABLE */
1147
1147
/* ER_FOREIGN_DUPLICATE_KEY 23000 S1009 */
1148
1148
N_("Upholding foreign key constraints for table '%.192s', entry '%-.192s', key %d would lead to a duplicate entry"),
1149
1149
/* ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE */
1150
 
N_("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."),
 
1150
N_("Column count of drizzle.%s is wrong. Expected %d, found %d. Created with Drizzle %d, now running %d. Please use drizzle_upgrade to fix this error."),
1151
1151
/* ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR */
1152
1152
N_("Cannot switch out of the row-based binary log format when the session has open temporary tables"),
1153
1153
/* ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT */
1211
1211
/* ER_EVENT_CANNOT_ALTER_IN_THE_PAST */
1212
1212
N_("Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was dropped immediately after creation."),
1213
1213
/* ER_SLAVE_INCIDENT */
1214
 
N_("The incident %s occured on the master. Message: %-.64s"),
 
1214
N_("The incident %s occurred on the master. Message: %-.64s"),
1215
1215
/* ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT */
1216
1216
N_("Table has no partition for some existing values"),
1217
1217
/* ER_BINLOG_UNSAFE_STATEMENT */
1361
1361
/* ER_BACKUP_THREAD_INIT */
1362
1362
N_("Backup driver's table locking thread can not be initialized."),
1363
1363
/* ER_BACKUP_PROGRESS_TABLES */
1364
 
N_("Can't open the online backup progress tables. Check 'mysql.online_backup' and 'mysql.online_backup_progress'."),
 
1364
N_("Can't open the online backup progress tables. Check 'drizzle.online_backup' and 'drizzle.online_backup_progress'."),
1365
1365
/* ER_TABLESPACE_EXIST */
1366
1366
N_("Tablespace '%-.192s' already exists"),
1367
1367
/* ER_NO_SUCH_TABLESPACE */