forked from pool/mariadb
8511b3b886
- update to 10.2.16 GA * notable changes: * MDEV-13122: mariabackup now supports MyRocks * MDEV-13779 - InnoDB fails to shut down purge workers, causing hang * MDEV-16267 - Wrong INFORMATION_SCHEMA.INNODB_BUFFER_PAGE.\ TABLE_NAME * MDEV-13834 - Upgrade failure from 10.1 innodb_encrypt_log * MDEV-16283 - ALTER TABLE...DISCARD TABLESPACE still takes long on a large buffer pool * MDEV-16376 - ASAN: heap-use-after-free in gcol.innodb_virtual_debug * MDEV-15824 - innodb_defragment=ON trumps innodb_optimize_fulltext_only=ON in OPTIMIZE TABLE * MDEV-16124 - fil_rename_tablespace() times out and crashes server during table-rebuilding ALTER TABLE * MDEV-16416 - Crash on IMPORT TABLESPACE of a ROW_FORMAT=COMPRESSED table * MDEV-16456 - InnoDB error "returned OS error 71" complains about wrong path * MDEV-13103 - Deal with page_compressed page corruption * MDEV-16496 - Mariabackup: Implement --verbose option to instrument InnoDB log apply * MDEV-16087 - Inconsistent SELECT results when query cache is enabled * MDEV-15114 - ASAN heap-use-after-free in mem_heap_dup or dfield_data_is_binary_equal (fix for indexed virtual columns) * fixes for the following security vulnerabilities: none * release notes and changelog: OBS-URL: https://build.opensuse.org/request/show/624013 OBS-URL: https://build.opensuse.org/package/show/server:database/mariadb?expand=0&rev=214
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
PATCH-P0-FEATURE-SUSE: Use better comments in install_db
|
|
|
|
We ship init script so we don't need to warn user to install one and we also
|
|
have a testsuite in separate packege.
|
|
|
|
Maintainer: Michal Hrusecky <Michal.Hrusecky@opensuse.org>
|
|
|
|
Index: scripts/mysql_install_db.sh
|
|
===================================================================
|
|
--- scripts/mysql_install_db.sh.orig
|
|
+++ scripts/mysql_install_db.sh
|
|
@@ -521,9 +521,10 @@ fi
|
|
# the screen.
|
|
if test "$cross_bootstrap" -eq 0 && test -z "$srcdir"
|
|
then
|
|
- s_echo
|
|
- s_echo "To start mysqld at boot time you have to copy"
|
|
- s_echo "support-files/mysql.server to the right place for your system"
|
|
+# Output disabled, since the SUSE RPM comes with an init script installed
|
|
+# s_echo
|
|
+# s_echo "To start mysqld at boot time you have to copy"
|
|
+# s_echo "support-files/mysql.server to the right place for your system"
|
|
|
|
if test "$auth_root_authentication_method" = normal
|
|
then
|
|
@@ -551,10 +552,9 @@ then
|
|
then
|
|
echo
|
|
echo "You can start the MariaDB daemon with:"
|
|
- echo "cd '$basedir' ; $bindir/mysqld_safe --datadir='$ldata'"
|
|
+ echo "rcmysql start"
|
|
echo
|
|
- echo "You can test the MariaDB daemon with mysql-test-run.pl"
|
|
- echo "cd '$basedir/mysql-test' ; perl mysql-test-run.pl"
|
|
+ echo "You can test the MariaDB daemon with mariadb-test package"
|
|
fi
|
|
|
|
echo
|