forked from percona/percona-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages_to_error_log.txt
12484 lines (8352 loc) · 393 KB
/
messages_to_error_log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) 2017, 2024, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0,
# as published by the Free Software Foundation.
#
# This program is designed to work with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms,
# as designated in a particular file or component or in included license
# documentation. The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have either included with
# the program or referenced in the documentation.
#
# Without limiting anything contained in the foregoing, this file,
# which is part of C Driver for MySQL (Connector/C), is also subject to the
# Universal FOSS Exception, version 1.0, a copy of which can be found at
# http://oss.oracle.com/licenses/universal-foss-exception.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License, version 2.0, for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
################################################################################
# DO NOT add server-to-client messages here;
# they go in messages_to_clients.txt
# in the same directory as this file.
#
# This file is for messages intended for the error log only.
#
# See the FAQ in errmsg_readme.txt in the
# same directory as this file for more
# information.
################################################################################
# "languages" and "default-language" directives should not be set in this
# file; their values are carried over from messages_to_clients.txt.
################################################################################
#
# Start of 8.0 error messages (error log).
#
# The build process automatically starts with this offset
# for messages intended for the error-log. Setting it again
# here would be harmless; changing it would not as this
# offset is mentioned in the documentation and #defined in
# the source:
# start-error-number 10000
ER_PARSER_TRACE XX999
eng "Parser saw: %s"
ER_BOOTSTRAP_CANT_THREAD
eng "Can't create thread to handle bootstrap (errno: %d)"
ER_TRIGGER_INVALID_VALUE
eng "Trigger for table '%s'.'%s': invalid %s value (%s)."
ER_OPT_WRONG_TREE
eng "Wrong tree: %s"
ER_DD_FAILSAFE
eng "Error: Invalid %s"
ER_DD_NO_WRITES_NO_REPOPULATION
eng "Skip re-populating collations and character sets tables in %s%sread-only mode."
ER_DD_VERSION_FOUND
eng "Using data dictionary with version '%d'."
ER_DD_VERSION_INSTALLED
eng "Installed data dictionary with version %d"
ER_DD_VERSION_UNSUPPORTED
eng "Data Dictionary version '%d' not supported."
OBSOLETE_ER_LOG_SYSLOG_FACILITY_FAIL
eng "Failed to set syslog facility to \"%s\", setting to \"%s\" (%d) instead."
ER_LOG_SYSLOG_CANNOT_OPEN
eng "Cannot open %s; check privileges, or remove syseventlog from --log-error-services!"
ER_LOG_SLOW_CANNOT_OPEN
eng " either restart the query logging by using \"SET GLOBAL SLOW_QUERY_LOG=ON\" or"
ER_LOG_GENERAL_CANNOT_OPEN
eng " either restart the query logging by using \"SET GLOBAL GENERAL_LOG=ON\" or"
ER_LOG_CANNOT_WRITE
eng "Failed to write to %s: %s"
ER_RPL_ZOMBIE_ENCOUNTERED
eng "While initializing dump thread for replica with %s <%s>, found a zombie dump thread with the same %s. Source is killing the zombie dump thread(%u)."
ER_RPL_GTID_TABLE_CANNOT_OPEN
eng "Gtid table is not ready to be used. Table '%s.%s' cannot be opened."
ER_SYSTEM_SCHEMA_NOT_FOUND
eng "System schema directory does not exist."
ER_DD_INIT_UPGRADE_FAILED
eng "Error in initializing dictionary, upgrade will do a cleanup and exit"
ER_VIEW_UNKNOWN_CHARSET_OR_COLLATION
eng "View '%s'.'%s': unknown charset name and/or collation name (client: '%s'; connection: '%s')."
ER_DD_VIEW_CANT_ALLOC_CHARSET
eng "Error in allocating memory for character set name for view %s.%s."
ER_DD_INIT_FAILED
eng "Data Dictionary initialization failed."
ER_DD_UPDATING_PLUGIN_MD_FAILED
eng "Failed to update plugin metadata in dictionary tables."
ER_DD_POPULATING_TABLES_FAILED
eng "Failed to Populate DD tables."
ER_DD_VIEW_CANT_CREATE
eng "Error in Creating View %s.%s"
ER_DD_METADATA_NOT_FOUND
eng "Unable to start server. Cannot find the meta data for data dictionary table '%s'."
ER_DD_CACHE_NOT_EMPTY_AT_SHUTDOWN
eng "Dictionary cache not empty at shutdown."
ER_DD_OBJECT_REMAINS
eng "Dictionary objects used but not released."
ER_DD_OBJECT_REMAINS_IN_RELEASER
eng "Dictionary objects left in default releaser."
ER_DD_OBJECT_RELEASER_REMAINS
eng "Dictionary object auto releaser not deleted"
ER_DD_CANT_GET_OBJECT_KEY
eng "Error: Unable to create primary object key"
ER_DD_CANT_CREATE_OBJECT_KEY
eng "Error: Unable to create object key"
ER_CANT_CREATE_HANDLE_MGR_THREAD
eng "Can't create handle_manager thread (errno= %d)"
ER_RPL_REPO_HAS_GAPS
eng "It is not possible to change the type of the relay log's repository because there are workers' repositories with gaps. Please, fix the gaps first before doing such change."
ER_INVALID_VALUE_FOR_ENFORCE_GTID_CONSISTENCY
eng "option 'enforce-gtid-consistency': value '%s' was not recognized. Setting enforce-gtid-consistency to OFF."
ER_CHANGED_ENFORCE_GTID_CONSISTENCY
eng "Changed ENFORCE_GTID_CONSISTENCY from %s to %s."
ER_CHANGED_GTID_MODE
eng "Changed GTID_MODE from %s to %s."
ER_DISABLED_STORAGE_ENGINE_AS_DEFAULT
eng "%s is set to a disabled storage engine %s."
ER_DEBUG_SYNC_HIT
eng "Debug sync points hit: %22s"
ER_DEBUG_SYNC_EXECUTED
eng "Debug sync points executed: %22s"
ER_DEBUG_SYNC_THREAD_MAX
eng "Debug sync points max active per thread: %22s"
ER_DEBUG_SYNC_OOM
eng "Debug Sync Facility disabled due to lack of memory."
ER_CANT_INIT_TC_LOG
eng "Can't init tc log"
ER_EVENT_CANT_INIT_QUEUE
eng "Event Scheduler: Can't initialize the execution queue"
ER_EVENT_PURGING_QUEUE
eng "Event Scheduler: Purging the queue. %u events"
ER_EVENT_LAST_EXECUTION
eng "Event Scheduler: Last execution of %s.%s. %s"
ER_EVENT_MESSAGE_STACK
eng "%*s"
ER_EVENT_EXECUTION_FAILED
eng "Event Scheduler: [%s].[%s.%s] event execution failed."
ER_CANT_INIT_SCHEDULER_THREAD
eng "Event Scheduler: Cannot initialize the scheduler thread"
ER_SCHEDULER_STOPPED
eng "Event Scheduler: Stopped"
ER_CANT_CREATE_SCHEDULER_THREAD
eng "Event scheduler: Failed to start scheduler, Can not create thread for event scheduler (errno=%d)"
ER_SCHEDULER_WAITING
eng "Event Scheduler: Waiting for the scheduler thread to reply"
ER_SCHEDULER_STARTED
eng "Event Scheduler: scheduler thread started with id %u"
ER_SCHEDULER_STOPPING_FAILED_TO_GET_EVENT
eng "Event Scheduler: Serious error during getting next event to execute. Stopping"
ER_SCHEDULER_STOPPING_FAILED_TO_CREATE_WORKER
eng "Event_scheduler::execute_top: Can not create event worker thread (errno=%d). Stopping event scheduler"
ER_SCHEDULER_KILLING
eng "Event Scheduler: Killing the scheduler thread, thread id %u"
ER_UNABLE_TO_RESOLVE_IP
eng "IP address '%s' could not be resolved: %s"
ER_UNABLE_TO_RESOLVE_HOSTNAME
eng "Host name '%s' could not be resolved: %s"
ER_HOSTNAME_RESEMBLES_IPV4
eng "IP address '%s' has been resolved to the host name '%s', which resembles IPv4-address itself."
ER_HOSTNAME_DOESNT_RESOLVE_TO
eng "Hostname '%s' does not resolve to '%s'."
ER_ADDRESSES_FOR_HOSTNAME_HEADER
eng "Hostname '%s' has the following IP addresses:"
ER_ADDRESSES_FOR_HOSTNAME_LIST_ITEM
eng " - %s"
ER_TRG_WITHOUT_DEFINER
eng "Definer clause is missing in Trigger of Table %s. Rebuild Trigger to fix definer."
ER_TRG_NO_CLIENT_CHARSET
eng "Client character set is missing for trigger of table %s. Using default character set."
ER_PARSING_VIEW
eng "Error in parsing view %s.%s"
ER_COMPONENTS_INFRASTRUCTURE_BOOTSTRAP
eng "Failed to bootstrap components infrastructure."
ER_COMPONENTS_INFRASTRUCTURE_SHUTDOWN
eng "Failed to shutdown components infrastructure."
ER_COMPONENTS_PERSIST_LOADER_BOOTSTRAP
eng "Failed to bootstrap persistent components loader."
ER_DEPART_WITH_GRACE
eng "Giving %d client threads a chance to die gracefully"
ER_CA_SELF_SIGNED
eng "CA certificate %s is self signed."
ER_SSL_LIBRARY_ERROR
eng "Failed to set up SSL because of the following SSL library error: %s"
ER_NO_THD_NO_UUID
eng "Failed to generate a server UUID because it is failed to allocate the THD."
ER_UUID_SALT
eng "Salting uuid generator variables, current_pid: %lu, server_start_time: %lu, bytes_sent: %llu, "
ER_UUID_IS
eng "Generated uuid: '%s', server_start_time: %lu, bytes_sent: %llu"
ER_UUID_INVALID
eng "The server_uuid stored in auto.cnf file is not a valid UUID."
ER_UUID_SCRUB
eng "Garbage characters found at the end of the server_uuid value in auto.cnf file. It should be of length '%d' (UUID_LENGTH). Clear it and restart the server. "
ER_CREATING_NEW_UUID
eng "No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: %s."
ER_CANT_CREATE_UUID
eng "Initialization of the server's UUID failed because it could not be read from the auto.cnf file. If this is a new server, the initialization failed because it was not possible to generate a new UUID."
ER_UNKNOWN_UNSUPPORTED_STORAGE_ENGINE
eng "Unknown/unsupported storage engine: %s"
ER_SECURE_AUTH_VALUE_UNSUPPORTED
eng "Unsupported value 0 for secure-auth"
ER_INVALID_INSTRUMENT
eng "Invalid instrument name or value for performance_schema_instrument '%s'",
ER_INNODB_MANDATORY
eng "The use of InnoDB is mandatory since MySQL 5.7. The former options like '--innodb=0/1/OFF/ON' or '--skip-innodb' are ignored."
OBSOLETE_ER_INNODB_CANNOT_BE_IGNORED
eng "ignore-builtin-innodb is ignored and will be removed in future releases."
OBSOLETE_ER_OLD_PASSWORDS_NO_MIDDLE_GROUND
eng "Invalid old_passwords mode: 1. Valid values are 2 and 0"
ER_VERBOSE_REQUIRES_HELP
eng "--verbose is for use with --help; did you mean --log-error-verbosity?"
ER_POINTLESS_WITHOUT_SLOWLOG
eng "options --log-slow-admin-statements, --log-queries-not-using-indexes, --log-slow-replica-statements and --log-query-errors have no effect if --slow-query-log is not set"
ER_WASTEFUL_NET_BUFFER_SIZE
eng "net_buffer_length (%lu) is set to be larger than max_allowed_packet (%lu). Please rectify."
ER_DEPRECATED_TIMESTAMP_IMPLICIT_DEFAULTS
eng "TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details)."
ER_FT_BOOL_SYNTAX_INVALID
eng "Invalid ft-boolean-syntax string: %s"
ER_CREDENTIALLESS_AUTO_USER_BAD
eng "'NO_AUTO_CREATE_USER' sql mode was not set."
ER_CONNECTION_HANDLING_OOM
eng "Could not allocate memory for connection handling"
ER_THREAD_HANDLING_OOM
eng "Could not allocate memory for thread handling"
ER_CANT_CREATE_TEST_FILE
eng "Can't create test file %s"
ER_CANT_CREATE_PID_FILE
eng "Can't start server: can't create PID file: %s"
ER_CANT_REMOVE_PID_FILE
eng "Unable to delete pid file: %s"
ER_CANT_CREATE_SHUTDOWN_THREAD
eng "Can't create thread to handle shutdown requests (errno= %d)"
ER_SEC_FILE_PRIV_CANT_ACCESS_DIR
eng "Failed to access directory for --%s. Please make sure that directory exists and is accessible by MySQL Server. Supplied value : %s"
ER_SEC_FILE_PRIV_IGNORED
eng "Ignoring --%s value as server is running with --initialize(-insecure)."
ER_SEC_FILE_PRIV_EMPTY
eng "Insecure configuration for --%s: Current value does not restrict location of generated files. Consider setting it to a valid, non-empty path."
ER_SEC_FILE_PRIV_NULL
eng "--%s is set to NULL. Operations related to importing and exporting data are disabled"
ER_SEC_FILE_PRIV_DIRECTORY_INSECURE
eng "Insecure configuration for --%s: %s is accessible through --%s. Consider choosing a different directory."
ER_SEC_FILE_PRIV_CANT_STAT
eng "Failed to get stat for directory pointed out by --%s"
ER_SEC_FILE_PRIV_DIRECTORY_PERMISSIONS
eng "Insecure configuration for --%s: Location is accessible to all OS users. Consider choosing a different directory."
ER_SEC_FILE_PRIV_ARGUMENT_TOO_LONG
eng "Value for --%s is longer than maximum limit of %d"
ER_CANT_CREATE_NAMED_PIPES_THREAD
eng "Can't create thread to handle named pipes (errno= %d)"
ER_CANT_CREATE_TCPIP_THREAD
eng "Can't create thread to handle TCP/IP (errno= %d)"
ER_CANT_CREATE_SHM_THREAD
eng "Can't create thread to handle shared memory (errno= %d)"
ER_CANT_CREATE_INTERRUPT_THREAD
eng "Can't create interrupt-thread (error %d, errno: %d)"
ER_WRITABLE_CONFIG_REMOVED
eng "World-writable config file '%s' has been removed."
ER_CORE_VALUES
eng "setrlimit could not change the size of core files to 'infinity'; We may not be able to generate a core file on signals"
ER_WRONG_DATETIME_SPEC
eng "Wrong date/time format specifier: %s"
ER_RPL_BINLOG_FILTERS_OOM
eng "Could not allocate replication and binlog filters: %s"
ER_KEYCACHE_OOM
eng "Cannot allocate the keycache"
ER_CONFIRMING_THE_FUTURE
eng "Current time has got past year 2038. Validating current time with %d iterations before initiating the normal server shutdown process."
ER_BACK_IN_TIME
eng "Iteration %d: Obtained valid current time from system"
ER_FUTURE_DATE
eng "Iteration %d: Current time obtained from system is greater than 2038"
ER_UNSUPPORTED_DATE
eng "This MySQL server doesn't support dates later then 2038"
ER_STARTING_AS
eng "%s (mysqld %s) starting as process %lu"
ER_SHUTTING_DOWN_REPLICA_THREADS
eng "Shutting down replica threads"
ER_DISCONNECTING_REMAINING_CLIENTS
eng "Forcefully disconnecting %d remaining clients"
ER_ABORTING
eng "Aborting"
ER_BINLOG_END
eng "Binlog end"
ER_CALL_ME_LOCALHOST
eng "gethostname failed, using '%s' as hostname"
ER_USER_REQUIRES_ROOT
eng "One can only use the --user switch if running as root"
ER_REALLY_RUN_AS_ROOT
eng "Fatal error: Please read \"Security\" section of the manual to find out how to run mysqld as root!"
ER_USER_WHAT_USER
eng "Fatal error: Can't change to run as user '%s' ; Please check that the user exists!"
ER_TRANSPORTS_WHAT_TRANSPORTS
eng "Server is started with --require-secure-transport=ON but no secure transports (SSL or Shared Memory) are configured."
ER_FAIL_SETGID
eng "setgid: %s"
ER_FAIL_SETUID
eng "setuid: %s"
ER_FAIL_SETREGID
eng "setregid: %s"
ER_FAIL_SETREUID
eng "setreuid: %s"
ER_FAIL_CHROOT
eng "chroot: %s"
ER_WIN_LISTEN_BUT_HOW
eng "TCP/IP, --shared-memory, or --named-pipe should be configured on NT OS"
ER_NOT_RIGHT_NOW
eng "CTRL-C ignored during startup"
ER_FIXING_CLIENT_CHARSET
eng "'%s' can not be used as client character set. '%s' will be used as default client character set."
ER_OOM
eng "Out of memory"
ER_FAILED_TO_LOCK_MEM
eng "Failed to lock memory. Errno: %d"
ER_MYINIT_FAILED
eng "my_init() failed."
ER_BEG_INITFILE
eng "Execution of init_file \'%s\' started."
ER_END_INITFILE
eng "Execution of init_file \'%s\' ended."
ER_CHANGED_MAX_OPEN_FILES
eng "Changed limits: max_open_files: %lu (requested %lu)"
ER_CANT_INCREASE_MAX_OPEN_FILES
eng "Could not increase number of max_open_files to more than %lu (request: %lu)"
ER_CHANGED_MAX_CONNECTIONS
eng "Changed limits: max_connections: %lu (requested %lu)"
ER_CHANGED_TABLE_OPEN_CACHE
eng "Changed limits: table_open_cache: %lu (requested %lu)"
ER_THE_USER_ABIDES
eng "Ignoring user change to '%s' because the user was set to '%s' earlier on the command line"
ER_RPL_CANT_ADD_DO_TABLE
eng "Could not add do table rule '%s'!"
ER_RPL_CANT_ADD_IGNORE_TABLE
eng "Could not add ignore table rule '%s'!"
ER_TRACK_VARIABLES_BOGUS
eng "The variable session_track_system_variables either has duplicate values or invalid values."
ER_EXCESS_ARGUMENTS
eng "Too many arguments (first extra is '%s')."
ER_VERBOSE_HINT
eng "Use --verbose --help to get a list of available options!"
ER_CANT_READ_ERRMSGS
eng "Unable to read errmsg.sys file"
ER_CANT_INIT_DBS
eng "Can't init databases"
ER_LOG_OUTPUT_CONTRADICTORY
eng "There were other values specified to log-output besides NONE. Disabling slow and general logs anyway."
ER_NO_CSV_NO_LOG_TABLES
eng "CSV engine is not present, falling back to the log files"
ER_RPL_REWRITEDB_MISSING_ARROW
eng "Bad syntax in replicate-rewrite-db - missing '->'!"
ER_RPL_REWRITEDB_EMPTY_FROM
eng "Bad syntax in replicate-rewrite-db - empty FROM db!"
ER_RPL_REWRITEDB_EMPTY_TO
eng "Bad syntax in replicate-rewrite-db - empty TO db!"
ER_LOG_FILES_GIVEN_LOG_OUTPUT_IS_TABLE
eng "Although a path was specified for the %s, log tables are used. To enable logging to files use the --log-output=file option."
ER_LOG_FILE_INVALID
eng "Invalid value for %s: %s"
ER_LOWER_CASE_TABLE_NAMES_CS_DD_ON_CI_FS_UNSUPPORTED
eng "The server option 'lower_case_table_names' is configured to use case sensitive table names but the data directory is on a case-insensitive file system which is an unsupported combination. Please consider either using a case sensitive file system for your data directory or switching to a case-insensitive table name mode."
ER_LOWER_CASE_TABLE_NAMES_USING_2
eng "Setting lower_case_table_names=2 because file system for %s is case insensitive"
ER_LOWER_CASE_TABLE_NAMES_USING_0
eng "lower_case_table_names was set to 2, even though your the file system '%s' is case sensitive. Now setting lower_case_table_names to 0 to avoid future problems."
ER_NEED_LOG_BIN
eng "You need to use --log-bin to make %s work."
ER_NEED_FILE_INSTEAD_OF_DIR
eng "Path '%s' is a directory name, please specify a file name for %s option"
# Unused since MySQL 8.0.3
ER_LOG_BIN_BETTER_WITH_NAME
eng "No argument was provided to --log-bin, and --log-bin-index was not used; so replication may break when this MySQL server acts as a source and has his hostname changed!! Please use '--log-bin=%s' to avoid this problem."
ER_BINLOG_NEEDS_SERVERID
eng "You have enabled the binary log, but you haven't provided the mandatory server-id. Please refer to the proper server start-up parameters documentation"
ER_RPL_CANT_MAKE_PATHS
eng "Unable to create replication path names: out of memory or path names too long (path name exceeds %d or file name exceeds %d)."
ER_CANT_INITIALIZE_GTID
eng "Failed to initialize GTID structures."
ER_CANT_INITIALIZE_EARLY_PLUGINS
eng "Failed to initialize early plugins."
ER_CANT_INITIALIZE_BUILTIN_PLUGINS
eng "Failed to initialize builtin plugins."
ER_CANT_INITIALIZE_DYNAMIC_PLUGINS
eng "Failed to initialize dynamic plugins."
ER_PERFSCHEMA_INIT_FAILED
eng "Performance schema disabled (reason: init failed)."
ER_STACKSIZE_UNEXPECTED
eng "Asked for %lu thread stack, but got %ld"
OBSOLETE_ER_CANT_SET_DATADIR
eng "failed to set datadir to %s"
ER_CANT_STAT_DATADIR
eng "Can't read data directory's stats (%d): %s. Assuming that it's not owned by the same user/group"
ER_CANT_CHOWN_DATADIR
eng "Can't change data directory owner to %s"
ER_CANT_SET_UP_PERSISTED_VALUES
eng "Setting persistent options failed."
ER_CANT_SAVE_GTIDS
eng "Failed to save the set of Global Transaction Identifiers of the last binary log into the mysql.gtid_executed table while the server was shutting down. The next server restart will make another attempt to save Global Transaction Identifiers into the table."
ER_AUTH_CANT_SET_DEFAULT_PLUGIN
eng "Can't start server: Invalid value for --default-authentication-plugin"
ER_CANT_JOIN_SHUTDOWN_THREAD
eng "Could not join %sthread. error:%d"
ER_CANT_HASH_DO_AND_IGNORE_RULES
eng "An error occurred while building do_table and ignore_table rules to hashes for global replication filter."
ER_CANT_OPEN_CA
eng "Error opening CA certificate file"
ER_CANT_ACCESS_CAPATH
eng "Error accessing directory pointed by --ssl-capath"
ER_SSL_TRYING_DATADIR_DEFAULTS
eng "Found %s, %s and %s in data directory. Trying to enable SSL support using them."
ER_AUTO_OPTIONS_FAILED
eng "Failed to create %s(file: '%s', errno %d)"
ER_CANT_INIT_TIMER
eng "Failed to initialize timer component (errno %d)."
ER_SERVERID_TOO_LARGE
eng "server-id configured is too large to represent with server-id-bits configured."
ER_DEFAULT_SE_UNAVAILABLE
eng "Default%s storage engine (%s) is not available"
ER_CANT_OPEN_ERROR_LOG
eng "Could not open file '%s' for error logging%s%s"
ER_INVALID_ERROR_LOG_NAME
eng "Invalid log file name after expanding symlinks: '%s'"
ER_RPL_INFINITY_DENIED
eng "using --replicate-same-server-id in conjunction with --log-replica-updates is impossible, it would lead to infinite loops in this server."
ER_RPL_INFINITY_IGNORED
eng "using --replicate-same-server-id in conjunction with --log-replica-updates would lead to infinite loops in this server. However this will be ignored as the --log-bin option is not defined or your server is running with global transaction identiers enabled."
OBSOLETE_ER_NDB_TABLES_NOT_READY
eng "NDB : Tables not available after %lu seconds. Consider increasing --ndb-wait-setup value"
# could use verbatim, but we want an error-code
ER_TABLE_CHECK_INTACT
eng "%s"
ER_DD_TABLESPACE_NOT_FOUND
eng "Unable to start server. The data dictionary tablespace '%s' does not exist."
ER_DD_TRG_CONNECTION_COLLATION_MISSING
eng "Connection collation is missing for trigger of table %s. Using default connection collation."
ER_DD_TRG_DB_COLLATION_MISSING
eng "Database collation is missing for trigger of table %s. Using Default character set."
ER_DD_TRG_DEFINER_OOM
eng "Error in Memory allocation for Definer %s for Trigger."
# ER_TRG_CORRUPTED_FILE
ER_DD_TRG_FILE_UNREADABLE
eng "Error in reading %s.TRG file."
ER_TRG_CANT_PARSE
eng "Error in parsing Triggers from %s.TRG file."
ER_DD_TRG_CANT_ADD
eng "Error in creating DD entry for Trigger %s.%s"
ER_DD_CANT_RESOLVE_VIEW
eng "Resolving dependency for the view '%s.%s' failed. View is no more valid to use"
ER_DD_VIEW_WITHOUT_DEFINER
eng "%s.%s has no definer (as per an old view format). Current user is used as definer. Please recreate the view."
ER_PLUGIN_INIT_FAILED
eng "Plugin '%s' init function returned error."
ER_RPL_TRX_DELEGATES_INIT_FAILED
eng "Initialization of transaction delegates failed. Please report a bug."
ER_RPL_BINLOG_STORAGE_DELEGATES_INIT_FAILED
eng "Initialization binlog storage delegates failed. Please report a bug."
ER_RPL_BINLOG_TRANSMIT_DELEGATES_INIT_FAILED
eng "Initialization of binlog transmit delegates failed. Please report a bug."
ER_RPL_BINLOG_RELAY_DELEGATES_INIT_FAILED
eng "Initialization binlog relay IO delegates failed. Please report a bug."
ER_RPL_PLUGIN_FUNCTION_FAILED
eng "Run function '...' in plugin '%s' failed"
ER_SQL_HA_READ_FAILED
eng "mysql_ha_read: Got error %d when reading table '%s'"
ER_SR_BOGUS_VALUE
eng "Stored routine '%s'.'%s': invalid value in column %s."
ER_SR_INVALID_CONTEXT
eng "Invalid creation context '%s.%s'."
ER_READING_TABLE_FAILED
eng "Got error %d when reading table '%s'"
ER_DES_FILE_WRONG_KEY
eng "load_des_file: Found wrong key_number: %c"
OBSOLETE_ER_CANT_SET_PERSISTED
eng "Failed to set persisted options."
ER_JSON_PARSE_ERROR
eng "Persisted config file is corrupt. Please ensure mysqld-auto.cnf file is valid JSON."
ER_CONFIG_OPTION_WITHOUT_GROUP
eng "Found option without preceding group in config file"
ER_VALGRIND_DO_QUICK_LEAK_CHECK
eng "VALGRIND_DO_QUICK_LEAK_CHECK"
ER_VALGRIND_COUNT_LEAKS
eng "VALGRIND_COUNT_LEAKS reports %lu leaked bytes for query '%.*s'"
ER_LOAD_DATA_INFILE_FAILED_IN_UNEXPECTED_WAY
eng "LOAD DATA INFILE in the replica SQL Thread can only read from --replica-load-tmpdir. Please, report a bug."
ER_UNKNOWN_ERROR_NUMBER
eng "Got unknown error: %d"
ER_UDF_CANT_ALLOC_FOR_STRUCTURES
eng "Can't allocate memory for udf structures"
ER_UDF_CANT_ALLOC_FOR_FUNCTION
eng "Can't alloc memory for udf function: '%.64s'"
ER_UDF_INVALID_ROW_IN_FUNCTION_TABLE
eng "Invalid row in mysql.func table for function '%.64s'"
ER_UDF_CANT_OPEN_FUNCTION_TABLE
eng "Could not open the mysql.func table. Please perform the MySQL upgrade procedure."
ER_XA_RECOVER_FOUND_TRX_IN_SE
eng "Found %d prepared transaction(s) in %s"
ER_XA_RECOVER_FOUND_XA_TRX
eng "Found %d prepared XA transactions"
OBSOLETE_ER_XA_IGNORING_XID
eng "ignore xid %s"
OBSOLETE_ER_XA_COMMITTING_XID
eng "commit xid %s"
OBSOLETE_ER_XA_ROLLING_BACK_XID
eng "rollback xid %s"
ER_XA_STARTING_RECOVERY
eng "Starting XA crash recovery..."
ER_XA_NO_MULTI_2PC_HEURISTIC_RECOVER
eng "--tc-heuristic-recover rollback strategy is not safe on systems with more than one 2-phase-commit-capable storage engine. Aborting crash recovery."
ER_XA_RECOVER_EXPLANATION
eng "Found %d prepared transactions! It means that mysqld was not shut down properly last time and critical recovery information (last binlog or %s file) was manually deleted after a crash. You have to start mysqld with --tc-heuristic-recover switch to commit or rollback pending transactions."
ER_XA_RECOVERY_DONE
eng "XA crash recovery finished."
ER_TRX_GTID_COLLECT_REJECT
eng "Failed to collect GTID to send in the response packet!"
ER_SQL_AUTHOR_DEFAULT_ROLES_FAIL
eng "MYSQL.DEFAULT_ROLES couldn't be updated for authorization identifier %s"
ER_SQL_USER_TABLE_CREATE_WARNING
eng "Following users were specified in CREATE USER IF NOT EXISTS but they already exist. Corresponding entry in binary log used default authentication plugin '%s' to rewrite authentication information (if any) for them: %s"
ER_SQL_USER_TABLE_ALTER_WARNING
eng "Following users were specified in ALTER USER IF EXISTS but they do not exist. Corresponding entry in binary log used default authentication plugin '%s' to rewrite authentication information (if any) for them: %s"
ER_ROW_IN_WRONG_PARTITION_PLEASE_REPAIR
eng "Table '%-192s' corrupted: row in wrong partition: %s -- Please REPAIR the table!"
ER_MYISAM_CRASHED_ERROR_IN_THREAD
eng "Got an error from thread_id=%u, %s:%d"
ER_MYISAM_CRASHED_ERROR_IN
eng "Got an error from unknown thread, %s:%d"
ER_TOO_MANY_STORAGE_ENGINES
eng "Too many storage engines!"
ER_SE_TYPECODE_CONFLICT
eng "Storage engine '%s' has conflicting typecode. Assigning value %d."
ER_TRX_WRITE_SET_OOM
eng "Out of memory on transaction write set extraction"
ER_HANDLERTON_OOM
eng "Unable to allocate memory for plugin '%s' handlerton."
ER_CONN_SHM_LISTENER
eng "Shared memory setting up listener"
ER_CONN_SHM_CANT_CREATE_SERVICE
eng "Can't create shared memory service: %s. : %s"
ER_CONN_SHM_CANT_CREATE_CONNECTION
eng "Can't create shared memory connection: %s. : %s"
ER_CONN_PIP_CANT_CREATE_EVENT
eng "Can't create event, last error=%u"
ER_CONN_PIP_CANT_CREATE_PIPE
eng "Can't create new named pipe!: %s"
ER_CONN_PER_THREAD_NO_THREAD
eng "Can't create thread to handle new connection(errno= %d)"
ER_CONN_TCP_NO_SOCKET
eng "Failed to create a socket for %s '%s': errno: %d."
ER_CONN_TCP_CREATED
eng "Server socket created on IP: '%s'."
ER_CONN_TCP_ADDRESS
eng "Server hostname (bind-address): '%s'; port: %d"
ER_CONN_TCP_IPV6_AVAILABLE
eng "IPv6 is available."
ER_CONN_TCP_IPV6_UNAVAILABLE
eng "IPv6 is not available."
ER_CONN_TCP_ERROR_WITH_STRERROR
eng "Can't create IP socket: %s"
ER_CONN_TCP_CANT_RESOLVE_HOSTNAME
eng "Can't start server: cannot resolve hostname!"
ER_CONN_TCP_IS_THERE_ANOTHER_USING_PORT
eng "Do you already have another mysqld server running on port: %d ?"
ER_CONN_UNIX_IS_THERE_ANOTHER_USING_SOCKET
eng "Do you already have another mysqld server running on socket: %s ?"
ER_CONN_UNIX_PID_CLAIMED_SOCKET_FILE
eng "Another process with pid %d is using unix socket file."
ER_CONN_TCP_CANT_RESET_V6ONLY
eng "Failed to reset IPV6_V6ONLY flag (error: %d). The server will listen to IPv6 addresses only."
ER_CONN_TCP_BIND_RETRY
eng "Retrying bind on TCP/IP port %u"
ER_CONN_TCP_BIND_FAIL
eng "Can't start server: Bind on TCP/IP port: %s"
ER_CONN_TCP_IP_NOT_LOGGED
eng "Fails to print out IP-address."
ER_CONN_TCP_RESOLVE_INFO
eng " - '%s' resolves to '%s';"
ER_CONN_TCP_START_FAIL
eng "Can't start server: listen() on TCP/IP port: %s"
ER_CONN_TCP_LISTEN_FAIL
eng "listen() on TCP/IP failed with error %d"
ER_CONN_UNIX_PATH_TOO_LONG
eng "The socket file path is too long (> %u): %s"
ER_CONN_UNIX_LOCK_FILE_FAIL
eng "Unable to setup unix socket lock file."
ER_CONN_UNIX_NO_FD
eng "Can't start server: UNIX Socket : %s"
ER_CONN_UNIX_NO_BIND_NO_START
eng "Can't start server : Bind on unix socket: %s"
ER_CONN_UNIX_LISTEN_FAILED
eng "listen() on Unix socket failed with error %d"
ER_CONN_UNIX_LOCK_FILE_GIVING_UP
eng "Unable to create unix socket lock file %s after retries."
ER_CONN_UNIX_LOCK_FILE_CANT_CREATE
eng "Could not create unix socket lock file %s."
ER_CONN_UNIX_LOCK_FILE_CANT_OPEN
eng "Could not open unix socket lock file %s."
ER_CONN_UNIX_LOCK_FILE_CANT_READ
eng "Could not read unix socket lock file %s."
ER_CONN_UNIX_LOCK_FILE_EMPTY
eng "Unix socket lock file is empty %s."
ER_CONN_UNIX_LOCK_FILE_PIDLESS
eng "Invalid pid in unix socket lock file %s."
ER_CONN_UNIX_LOCK_FILE_CANT_WRITE
eng "Could not write unix socket lock file %s errno %d."
ER_CONN_UNIX_LOCK_FILE_CANT_DELETE
eng "Could not remove unix socket lock file %s errno %d."
ER_CONN_UNIX_LOCK_FILE_CANT_SYNC
eng "Could not sync unix socket lock file %s errno %d."
ER_CONN_UNIX_LOCK_FILE_CANT_CLOSE
eng "Could not close unix socket lock file %s errno %d."
ER_CONN_SOCKET_SELECT_FAILED
eng "mysqld: Got error %d from select"
ER_CONN_SOCKET_ACCEPT_FAILED
eng "Error in accept: %s"
ER_AUTH_RSA_CANT_FIND
eng "RSA %s key file not found: %s. Some authentication plugins will not work."
ER_AUTH_RSA_CANT_PARSE
eng "Failure to parse RSA %s key (file exists): %s: %s"
ER_AUTH_RSA_CANT_READ
eng "Failure to read key file: %s"
ER_AUTH_RSA_FILES_NOT_FOUND
eng "RSA key files not found. Some authentication plugins will not work."
ER_CONN_ATTR_TRUNCATED
eng "Connection attributes of length %lu were truncated (%d bytes lost) for connection %llu, user %s@%s (as %s), auth: %s"
ER_X509_CIPHERS_MISMATCH
eng "X.509 ciphers mismatch: should be '%s' but is '%s'"
ER_X509_ISSUER_MISMATCH
eng "X.509 issuer mismatch: should be '%s' but is '%s'"
ER_X509_SUBJECT_MISMATCH
eng "X.509 subject mismatch: should be '%s' but is '%s'"
ER_AUTH_CANT_ACTIVATE_ROLE
eng "Failed to activate default role %s for %s"
ER_X509_NEEDS_RSA_PRIVKEY
eng "Could not generate RSA private key required for X.509 certificate."
ER_X509_CANT_WRITE_KEY
eng "Could not write key file: %s"
ER_X509_CANT_CHMOD_KEY
eng "Could not set file permission for %s"
ER_X509_CANT_READ_CA_KEY
eng "Could not read CA key file: %s"
ER_X509_CANT_READ_CA_CERT
eng "Could not read CA certificate file: %s"
ER_X509_CANT_CREATE_CERT
eng "Could not generate X.509 certificate."
ER_X509_CANT_WRITE_CERT
eng "Could not write certificate file: %s"
ER_AUTH_CANT_CREATE_RSA_PAIR
eng "Could not generate RSA Private/Public key pair"
ER_AUTH_CANT_WRITE_PRIVKEY
eng "Could not write private key file: %s"
ER_AUTH_CANT_WRITE_PUBKEY
eng "Could not write public key file: %s"
ER_AUTH_SSL_CONF_PREVENTS_CERT_GENERATION
eng "Skipping generation of SSL certificates as options related to SSL are specified."
ER_AUTH_USING_EXISTING_CERTS
eng "Skipping generation of SSL certificates as certificate files are present in data directory."
ER_AUTH_CERTS_SAVED_TO_DATADIR
eng "Auto generated SSL certificates are placed in data directory."
ER_AUTH_CERT_GENERATION_DISABLED
eng "Skipping generation of SSL certificates as --auto_generate_certs is set to OFF."
ER_AUTH_RSA_CONF_PREVENTS_KEY_GENERATION
eng "Skipping generation of RSA key pair through %s as options related to RSA keys are specified."
ER_AUTH_KEY_GENERATION_SKIPPED_PAIR_PRESENT
eng "Skipping generation of RSA key pair through %s as key files are present in data directory."
ER_AUTH_KEYS_SAVED_TO_DATADIR
eng "Auto generated RSA key files through %s are placed in data directory."
ER_AUTH_KEY_GENERATION_DISABLED
eng "Skipping generation of RSA key pair as %s is set to OFF."
ER_AUTHCACHE_PROXIES_PRIV_SKIPPED_NEEDS_RESOLVE
eng "'proxies_priv' entry '%s@%s %s@%s' ignored in --skip-name-resolve mode."
ER_AUTHCACHE_PLUGIN_MISSING
eng "The plugin '%.*s' used to authenticate user '%s'@'%.*s' is not loaded. Nobody can currently login using this account."
ER_AUTHCACHE_PLUGIN_CONFIG
eng "The plugin '%s' is used to authenticate user '%s'@'%.*s', %s configured. Nobody can currently login using this account."