Go to file
2015-04-14 10:29:38 +00:00
_constraints Accepting request 292540 from home:k0da:branches:server:database 2015-03-24 18:24:02 +00:00
.gitattributes Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00
.gitignore Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00
baselibs.conf - making MariaDB default 2013-01-17 08:17:25 +00:00
build.inc fix 2015-04-14 10:29:38 +00:00
configuration-tweaks.tar.bz2 fix 2015-04-14 10:29:38 +00:00
install.inc Accepting request 288527 from home:mgorse:branches:server:database 2015-03-02 18:14:06 +00:00
mariadb-10.0.17.tar.gz - Updated to the version 10.0.17 2015-03-03 08:15:49 +00:00
mariadb.changes - disable optional features for mariadb 2015-04-14 08:23:34 +00:00
mariadb.spec fix 2015-04-14 10:29:38 +00:00
my.ini merge 2013-08-30 09:26:18 +00:00
mysql-patches.tar.bz2 - Updated to the version 10.0.17 2015-03-03 08:15:49 +00:00
mysql.service - Updating to 10.0 branch of MariaDB 2014-05-23 07:29:50 +00:00
mysql.SuSEfirewall2 Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00
rc.mysql.systemd - Updated to the version 10.0.17 2015-03-03 08:15:49 +00:00
rc.mysql.sysvinit - Updated to the version 10.0.17 2015-03-03 08:15:49 +00:00
README.debug - run spec cleaner on spec 2014-12-06 13:56:41 +00:00
README.install - run spec cleaner on spec 2014-12-06 13:56:41 +00:00
README.SUSE Accepting request 247406 from home:kstreitova:branches:server:database 2014-09-03 13:09:43 +00:00
series - Updated to the version 10.0.17 2015-03-03 08:15:49 +00:00
suse-test-run Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00

Notes about MySQL 5.1 package:
==============================

With MySQL 5.1 package we introduced some changes you may like to know. Most of
them will affect you only if you are upgrading from previous version and you
did some changes to your configuration.

1) Plugins:
===========

One of the new features in MySQL 5.1 is support for plugins. So some of the
storage engines are now shipped like that. You can use following plugins:

 - archive
 - blackhole
 - federated
 - example

InnoDB is still compiled as internal part of MySQL. If you are upgrading from
version 5.0 or if this is your first installation of MySQL 5.1, all plugins
will be enabled by default and you can disable them manually later (see
http://dev.mysql.com/doc/refman/5.1/en/uninstall-plugin.html).

With this change you need to remove skip-federated option from your my.cnf file
if you have changed it manually. This option was there by default in previous
versions of MySQL.

2) File locations:
==================

There were some changes in files locations. Most of them were made in the
default configuration file so if you are experiencing problems and you have
made some manual adjustments to your /etc/my.cnf, try to merge this file with
/etc/my.cnf.rpmnew.

File locations changes:
 - MySQL socket file and pid file were moved from /var/lib/mysql to more
   reasonable location ( /var/run/mysql ) by default.
 - MySQL log files are in /var/log/mysql.

3) BerkeleyDB:
==============

MySQL no longer contains BerkeleyDB as storage engine. There is no fix for that
and if you used it before, you have to migrate your data to different storage
engine BEFORE updating. This can be done for example using following command:

	ALTER TABLE foo ENGINE = INNODB;

4) MySQL Upgrade Log
====================

If you missed messages displayed during automatic MySQL database upgrade, you
can find them from now on in

	/var/log/mysql/mysqld-upgrade.log