elenst Do you want to review this? It includes changes to error files and [test].result files because of the changed error text. The latest commit is 46ab6b1. I pushed it also to bb-10.5-release to get it tested a little broader.
Rasmus Johansson (Inactive)
added a comment - - edited elenst Do you want to review this? It includes changes to error files and [test] .result files because of the changed error text. The latest commit is 46ab6b1. I pushed it also to bb-10.5-release to get it tested a little broader.
There is at least one more error message file, the one in the connector: libmariadb/libmariadb/ma_errmsg.c
It accounts for many remaining MySQL references:
mysql-test/main/crash_commit_before.result:ERROR HY000: Lost connection to MySQL server during query
mysql-test/main/delayed.result:ERROR HY000: Lost connection to MySQL server during query
mysql-test/main/myisam_crash_before_flush_keys.result:ERROR HY000: Lost connection to MySQL server during query
mysql-test/main/ssl_timeout.result:ERROR HY000: Lost connection to MySQL server during query
...
Maybe you changed it and the new submodule version is supposed to get pulled with the server, but it didn't for me when I cloned your branch.
Suppressions
There are still suppressions in MTR files which reference MySQL. Possibly many of those suppressions aren't needed at all, but removing them should a separate task. Meanwhile they need to be synchronized with the error messages, as some of them can be there to prevent irrelevant sporadic failures (and thus might not show up in test results right away).
./suite/galera_sr/r/galera_sr_mysqldump_sst.result:CALL mtr.add_suppression("Slave SQL: Error 'The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement' on query");
include/mtr_warnings.sql: (": The MySQL server is running with the --secure-backup-file-priv option so it cannot execute this statement"),
Disabled tests
Some disabled tests still have the old messages. It's not critical, as whoever re-enables them is supposed to check the result file, but probably it makes sense to update them when possible and easy. Of course it's doesn't concern tests which are disabled because they are MySQL-specific, but remain in MariaDB code on whatever reason.
./suite/rpl/r/rpl_spec_variables.result:ERROR 42000: The used command is not allowed with this MySQL version
Error messages inside the code
There are error messages which are composed in the code directly, particularly (but probably not only) in replication. At the very least they can appear in error logs or stderr, but possibly they can also be added to SQL errors with generic patterns, like errors passed through from an engine.
Examples:
client/mysql_upgrade.c: print_error("Version check failed. Got the following error when calling "
client/mysql_upgrade.c- "the 'mysql' command line client", &ds_version);
sql/slave.cc: errmsg= "The slave I/O thread stops because master and slave have equal \
sql/slave.cc-MySQL server ids; these ids must be different for replication to work (or \
sql/slave.cc-Could not parse relay log event entry. The possible reasons are: the master's \
sql/slave.cc-binary log is corrupted (you can check this by running 'mysqlbinlog' on the \
sql/slave.cc-binary log), the slave's relay log is corrupted (you can check this by running \
sql/slave.cc:'mysqlbinlog' on the relay log), a network problem, or a bug in the master's \
sql/slave.cc-or slave's MySQL code. If you want to check the master's binary log or slave's \
sql/slave.cc-relay log, you will be able to know their names by issuing 'SHOW SLAVE STATUS' \
and then the corresponding test results will have to be updated, e.g.
./suite/rpl/r/rpl_server_id1.result:Last_IO_Error = 'Fatal error: The slave I/O thread stops because master and slave have equal MySQL server ids; these ids must be different for replication to work (or the -
Generic vs specific
As I understand, this change
- "MySQL server has gone away",
+ "Server has gone away",
comes from the discussion that the client cannot know which server it connects to. It is true, but then it should be the same for all hardcoded client errors referencing the server – "Unknown MariaDB server host", "Lost connection to MariaDB server during query", etc. wlad, what do you think? (since you raised this inaccuracy first, if I remember correctly)
TokuDB (side note)
There are probably many tests under TokuDB which will start failing; since we don't build TokuDB anymore, it isn't important. However, it raises the question whether it's okay to have in the code tests which will inevitably fail.
Elena Stepanova
added a comment - - edited Hi ratzpo ,
Here are my notes.
More error message files
There is at least one more error message file, the one in the connector: libmariadb/libmariadb/ma_errmsg.c
It accounts for many remaining MySQL references:
mysql-test/main/crash_commit_before.result:ERROR HY000: Lost connection to MySQL server during query
mysql-test/main/delayed.result:ERROR HY000: Lost connection to MySQL server during query
mysql-test/main/myisam_crash_before_flush_keys.result:ERROR HY000: Lost connection to MySQL server during query
mysql-test/main/ssl_timeout.result:ERROR HY000: Lost connection to MySQL server during query
...
Maybe you changed it and the new submodule version is supposed to get pulled with the server, but it didn't for me when I cloned your branch.
Suppressions
There are still suppressions in MTR files which reference MySQL. Possibly many of those suppressions aren't needed at all, but removing them should a separate task. Meanwhile they need to be synchronized with the error messages, as some of them can be there to prevent irrelevant sporadic failures (and thus might not show up in test results right away).
./suite/galera_sr/r/galera_sr_mysqldump_sst.result:CALL mtr.add_suppression("Slave SQL: Error 'The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement' on query");
include/mtr_warnings.sql: (": The MySQL server is running with the --secure-backup-file-priv option so it cannot execute this statement"),
Disabled tests
Some disabled tests still have the old messages. It's not critical, as whoever re-enables them is supposed to check the result file, but probably it makes sense to update them when possible and easy. Of course it's doesn't concern tests which are disabled because they are MySQL-specific, but remain in MariaDB code on whatever reason.
./suite/rpl/r/rpl_spec_variables.result:ERROR 42000: The used command is not allowed with this MySQL version
Error messages inside the code
There are error messages which are composed in the code directly, particularly (but probably not only) in replication. At the very least they can appear in error logs or stderr, but possibly they can also be added to SQL errors with generic patterns, like errors passed through from an engine.
Examples:
client/mysql_upgrade.c: print_error("Version check failed. Got the following error when calling "
client/mysql_upgrade.c- "the 'mysql' command line client", &ds_version);
sql/slave.cc: errmsg= "The slave I/O thread stops because master and slave have equal \
sql/slave.cc-MySQL server ids; these ids must be different for replication to work (or \
sql/slave.cc- rli->report(ERROR_LEVEL, ER_SLAVE_RELAY_LOG_READ_FAILURE, NULL,
sql/slave.cc- ER_THD(thd, ER_SLAVE_RELAY_LOG_READ_FAILURE), "\
sql/slave.cc-Could not parse relay log event entry. The possible reasons are: the master's \
sql/slave.cc-binary log is corrupted (you can check this by running 'mysqlbinlog' on the \
sql/slave.cc-binary log), the slave's relay log is corrupted (you can check this by running \
sql/slave.cc:'mysqlbinlog' on the relay log), a network problem, or a bug in the master's \
sql/slave.cc-or slave's MySQL code. If you want to check the master's binary log or slave's \
sql/slave.cc-relay log, you will be able to know their names by issuing 'SHOW SLAVE STATUS' \
and then the corresponding test results will have to be updated, e.g.
./suite/rpl/r/rpl_server_id1.result:Last_IO_Error = 'Fatal error: The slave I/O thread stops because master and slave have equal MySQL server ids; these ids must be different for replication to work (or the -
Generic vs specific
As I understand, this change
- "MySQL server has gone away",
+ "Server has gone away",
comes from the discussion that the client cannot know which server it connects to. It is true, but then it should be the same for all hardcoded client errors referencing the server – "Unknown MariaDB server host", "Lost connection to MariaDB server during query", etc. wlad , what do you think? (since you raised this inaccuracy first, if I remember correctly)
TokuDB (side note)
There are probably many tests under TokuDB which will start failing; since we don't build TokuDB anymore, it isn't important. However, it raises the question whether it's okay to have in the code tests which will inevitably fail.
Yes, I think it is better not to use "MySQL" or "MariaDB" server in the error message, unless it is absolutely known it is MySQL or MariaDB or Percona, or something emulating one of those in AWS or Azure.
Also, it might be good time to reconsider using "mysqld --thread-stack" etc in messages. Rather than changing this mechanically to "mariadbd --thread-stack", I think it is better to advise, for example, to increase the thread-stack variable. Whether it is done in my.ini or my.cnf or via command line parameter, or at runtime, via SET GLOBAL does not matter. I'd guess changing this via command line parameter is not used as often as my.ini/.cnf.
Also stuff like "execute mysqladmin flush-hosts" does not have to remain in this form. FLUSH HOSTS is a normal command, which can be send via normal client´, or not?
Vladislav Vaintroub
added a comment - - edited Yes, I think it is better not to use "MySQL" or "MariaDB" server in the error message, unless it is absolutely known it is MySQL or MariaDB or Percona, or something emulating one of those in AWS or Azure.
Also, it might be good time to reconsider using "mysqld --thread-stack" etc in messages. Rather than changing this mechanically to "mariadbd --thread-stack", I think it is better to advise, for example, to increase the thread-stack variable. Whether it is done in my.ini or my.cnf or via command line parameter, or at runtime, via SET GLOBAL does not matter. I'd guess changing this via command line parameter is not used as often as my.ini/.cnf.
Also stuff like "execute mysqladmin flush-hosts" does not have to remain in this form. FLUSH HOSTS is a normal command, which can be send via normal client´, or not?
There has been pushes relating to this issue:
0eab87c MDEV-22010: Allow mariadbd in mtr suppressions
d848fca MDEV-22010: mtr, "mariadbd" exists in mysys error messages
dcc2eae MDEV-22010: mtr search for mariadbd first
Rasmus Johansson (Inactive)
added a comment - There has been pushes relating to this issue:
0eab87c MDEV-22010 : Allow mariadbd in mtr suppressions
d848fca MDEV-22010 : mtr, "mariadbd" exists in mysys error messages
dcc2eae MDEV-22010 : mtr search for mariadbd first
Rasmus Johansson (Inactive)
added a comment - From elenst comment the following parts have been turned into their own issues:
More error message files, CONC-466
Suppressions, MDEV-22188
Error messages inside the code, MDEV-22189
People
Rasmus Johansson (Inactive)
Rasmus Johansson (Inactive)
Votes:
0Vote for this issue
Watchers:
8Start watching this issue
Dates
Created:
Updated:
Resolved:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":2072.2999999523163,"ttfb":408,"pageVisibility":"visible","entityId":71020,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"1ab9921b-6f2b-43f2-841e-5957e855685c","navigationType":0,"readyForUser":2237.2000000476837,"redirectCount":0,"resourceLoadedEnd":1677.3999998569489,"resourceLoadedStart":415.39999985694885,"resourceTiming":[{"duration":242,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":415.39999985694885,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":415.39999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":657.3999998569489,"responseStart":0,"secureConnectionStart":0},{"duration":241.89999985694885,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":415.7000000476837,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":415.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":657.5999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":822.6000001430511,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":415.89999985694885,"connectEnd":415.89999985694885,"connectStart":415.89999985694885,"domainLookupEnd":415.89999985694885,"domainLookupStart":415.89999985694885,"fetchStart":415.89999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":679.2999999523163,"responseEnd":1238.5,"responseStart":739.5999999046326,"secureConnectionStart":415.89999985694885},{"duration":1122.2999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":416,"connectEnd":416,"connectStart":416,"domainLookupEnd":416,"domainLookupStart":416,"fetchStart":416,"redirectEnd":0,"redirectStart":0,"requestStart":679.3999998569489,"responseEnd":1538.2999999523163,"responseStart":758.0999999046326,"secureConnectionStart":416},{"duration":344.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":416.2999999523163,"connectEnd":416.2999999523163,"connectStart":416.2999999523163,"domainLookupEnd":416.2999999523163,"domainLookupStart":416.2999999523163,"fetchStart":416.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":679.5999999046326,"responseEnd":761.2000000476837,"responseStart":758.7000000476837,"secureConnectionStart":416.2999999523163},{"duration":341.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":416.39999985694885,"connectEnd":416.39999985694885,"connectStart":416.39999985694885,"domainLookupEnd":416.39999985694885,"domainLookupStart":416.39999985694885,"fetchStart":416.39999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":679.5,"responseEnd":757.8999998569489,"responseStart":741.5999999046326,"secureConnectionStart":416.39999985694885},{"duration":344.59999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":416.7000000476837,"connectEnd":416.7000000476837,"connectStart":416.7000000476837,"domainLookupEnd":416.7000000476837,"domainLookupStart":416.7000000476837,"fetchStart":416.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":679.7000000476837,"responseEnd":761.2999999523163,"responseStart":759.2999999523163,"secureConnectionStart":416.7000000476837},{"duration":241.80000019073486,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":416.89999985694885,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":416.89999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":658.7000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":344.5,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":417,"connectEnd":417,"connectStart":417,"domainLookupEnd":417,"domainLookupStart":417,"fetchStart":417,"redirectEnd":0,"redirectStart":0,"requestStart":679.8999998569489,"responseEnd":761.5,"responseStart":759.7999999523163,"secureConnectionStart":417},{"duration":241.89999985694885,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":417.2000000476837,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":417.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":659.0999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":349.30000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":417.39999985694885,"connectEnd":417.39999985694885,"connectStart":417.39999985694885,"domainLookupEnd":417.39999985694885,"domainLookupStart":417.39999985694885,"fetchStart":417.39999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":680,"responseEnd":766.7000000476837,"responseStart":760.2000000476837,"secureConnectionStart":417.39999985694885},{"duration":1067.7999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":419.7000000476837,"connectEnd":419.7000000476837,"connectStart":419.7000000476837,"domainLookupEnd":419.7000000476837,"domainLookupStart":419.7000000476837,"fetchStart":419.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":1407.2999999523163,"responseEnd":1487.5,"responseStart":1479.5,"secureConnectionStart":419.7000000476837},{"duration":1257.6999998092651,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":419.7000000476837,"connectEnd":419.7000000476837,"connectStart":419.7000000476837,"domainLookupEnd":419.7000000476837,"domainLookupStart":419.7000000476837,"fetchStart":419.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":1665.8999998569489,"responseEnd":1677.3999998569489,"responseStart":1677,"secureConnectionStart":419.7000000476837},{"duration":277.60000014305115,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1435.0999999046326,"connectEnd":1435.0999999046326,"connectStart":1435.0999999046326,"domainLookupEnd":1435.0999999046326,"domainLookupStart":1435.0999999046326,"fetchStart":1435.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":1674.5,"responseEnd":1712.7000000476837,"responseStart":1711.3999998569489,"secureConnectionStart":1435.0999999046326}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":220,"responseStart":408,"responseEnd":413,"domLoading":412,"domInteractive":2406,"domContentLoadedEventStart":2406,"domContentLoadedEventEnd":2498,"domComplete":3384,"loadEventStart":3384,"loadEventEnd":3387,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":2320.0999999046326},{"name":"bigPipe.sidebar-id.end","time":2341.399999856949},{"name":"bigPipe.activity-panel-pipe-id.start","time":2341.5999999046326},{"name":"bigPipe.activity-panel-pipe-id.end","time":2344.7000000476837},{"name":"activityTabFullyLoaded","time":2546.7999999523163}],"measures":[],"correlationId":"22172bb911ba58","effectiveType":"4g","downlink":9.8,"rtt":0,"serverDuration":120,"dbReadsTimeInMs":15,"dbConnsTimeInMs":25,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
ratzpo can you work on this for 10.5 now?