You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Remove unnecessary unused files
- Remove duplicate encryption configuration sample from sources and
re-use the identical file in RPM directory instead
- Clean away harmful "default-character-set = utf8mb4" from client config
as it is unnecassary (server enforces utf8mb4 anyway by default) and
could cause issues with mysqlbinlog and other tools (MDEV-22981).
- Update S3 plugin description to be long enough
- Remove trailing whitespace from support-files and Debian packaging.
- Clean away fixed Lintian issues
- Clean away temporary Salsa-CI fixes now that 10.5.4 is out and is fixed
- Apply wrap-and-sort -a -v
Copy file name to clipboardExpand all lines: debian/additions/debian-start.inc.sh
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
## Check MyISAM and Aria unclosed tables.
7
7
# - Requires the server to be up.
8
-
# - Is supposed to run silently in background.
8
+
# - Is supposed to run silently in background.
9
9
functioncheck_for_crashed_tables() {
10
10
set -e
11
11
set -u
@@ -25,7 +25,7 @@ function check_for_crashed_tables() {
25
25
26
26
LC_ALL=C $MYSQL --skip-column-names --batch -e '
27
27
select concat('\''select count(*) into @discard from `'\'',
28
-
TABLE_SCHEMA, '\''`.`'\'', TABLE_NAME, '\''`'\'')
28
+
TABLE_SCHEMA, '\''`.`'\'', TABLE_NAME, '\''`'\'')
29
29
from information_schema.TABLES where TABLE_SCHEMA<>'\''INFORMATION_SCHEMA'\'' and TABLE_SCHEMA<>'\''PERFORMANCE_SCHEMA'\'' and ( ENGINE='\''MyISAM'\'' or ENGINE='\''Aria'\'' )'| \
@@ -49,7 +49,7 @@ function check_for_crashed_tables() {
49
49
50
50
## Check for tables needing an upgrade.
51
51
# - Requires the server to be up.
52
-
# - Is supposed to run silently in background.
52
+
# - Is supposed to run silently in background.
53
53
functionupgrade_system_tables_if_necessary() {
54
54
set -e
55
55
set -u
@@ -69,7 +69,7 @@ function upgrade_system_tables_if_necessary() {
69
69
functioncheck_root_accounts() {
70
70
set -e
71
71
set -u
72
-
72
+
73
73
logger -p daemon.info -i -t$0"Checking for insecure root accounts."
74
74
75
75
ret=$(echo"SELECT count(*) FROM mysql.user WHERE user='root' and password='' and plugin in ('', 'mysql_native_password', 'mysql_old_password');"|$MYSQL --skip-column-names )
0 commit comments