Bug 28749: Restore the database name to Koha dumps
authorJason Boyer <JBoyer@equinoxOLI.org>
Wed, 28 Jul 2021 14:01:25 +0000 (14:01 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 30 Jul 2021 13:54:05 +0000 (15:54 +0200)
commitda7177f536b2673d7d68ff75e78fa8bd86d5726b
treeda053f7ed804cc9f93b54a575a178f62e37d8a66
parent7436094e19b39ba7285429d03df3ca52164b0632
Bug 28749: Restore the database name to Koha dumps

The line to use the --databases flag with mysqldump by default was accidentally
removed from koha-dump when the --schema-only option was added. This makes all
backups act as if koha-dump is called with the --without-db-name flag, causing
koha-restore to fail to restore the database because it's neither CREATEd or USEd.

This patch restores that line

To test:
1 - sudo debian/scripts/koha-dump kohadev
2 - zcat /var/spool/koha/kohadev/kohadev-2021-07-28.sql.gz | grep DATABASE
3 - Notice no output
4 - Apply patch
5 - sudo debian/scripts/koha-dump kohadev
6 - zcat /var/spool/koha/kohadev/kohadev-2021-07-28.sql.gz | grep DATABASE
7 - You get the line:
    CREATE DATABASE /*!32312 IF NOT EXISTS*/ `koha_kohadev` /*!40100 DEFAULT CHARACTER SET latin1 */;

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
debian/scripts/koha-dump