maria:bb-10.4-otto

Last commit made on 2018-09-02
Get this branch:
git clone -b bb-10.4-otto https://git.launchpad.net/maria

Branch merges

Branch information

Name:
bb-10.4-otto
Repository:
lp:maria

Recent commits

ebd8136... by =?utf-8?b?T3R0byBLZWvDpGzDpGluZW4=?= <email address hidden>

WIP: test 6

edd95dc... by =?utf-8?b?T3R0byBLZWvDpGzDpGluZW4=?= <email address hidden>

WIP: test5

3f749c5... by =?utf-8?b?T3R0byBLZWvDpGzDpGluZW4=?= <email address hidden>

WIP: test4

ae61aac... by =?utf-8?b?T3R0byBLZWvDpGzDpGluZW4=?= <email address hidden>

WIP: test3

aaed468... by =?utf-8?b?T3R0byBLZWvDpGzDpGluZW4=?= <email address hidden>

WIP: test2

9227921... by =?utf-8?b?T3R0byBLZWvDpGzDpGluZW4=?= <email address hidden>

WIP: Deb: Ensure DEB_BUILD_OPTIONS is passed on in autobake-deb.sh

bb328c1... by =?utf-8?b?T3R0byBLZWvDpGzDpGluZW4=?= <email address hidden>

WIP: bb test 1

f3e2efe... by =?utf-8?b?T3R0byBLZWvDpGzDpGluZW4=?= <email address hidden>

Revert "Added -j option to dpkg-buildpackage to speed up build"

This reverts commit a89a6e4f774d9b01bee0d33c0b2f0d6a1dfae39d.

We cannot blindly assume all CPUs on all hosts are available for
building. For example our own buildbot.mariadb.org builders go
amok if everey host CPU core is used in parallel for every build
on a host.

This option should be configurable, and in fact it already is via
the parallel=N setting in DEB_BUILD_OPTIONS. See debian/rules
for details.

6ccd7d2... by Jacob Mathew

MDEV-16250: Spider system tables are MyISAM and needs repair after a crash

During a server restart that follows a server crash, there may be error
messages that indicate that certain system tables are marked as crashed and
may be corrupted. Upon checking the system tables that are marked as crashed,
it may be found that there is no corruption that needs repair. However, the
error messages that are issued imply that the user needs to nevertheless
manually repair the system tables that were marked as crashed. These issues
have been moved to a separate bug MDEV-17068.

MDEV-16250 addresses the work to make the Spider system tables crash safe.
This work involves the following changes in 10.4:
- Changes to the install_spider.sql script to change the storage engine for
  the Spider system tables to Aria. This is implemented in such a way as to
  allow the script to be run repeatedly without any harm or errors.
- Changes to the init_spider.inc script that is run during initialization of
  every test in the Spider test suites. This script now uses the Aria
  storage engine for the Spider system tables in MariaDB Server 10.4 and
  later releases.
- Added a test to the Spider test suite to display the storage engine of each
  Spider system table, to verify that the correct storage engine is used.

Author:
  Jacob Mathew.

Reviewer:
  Kentoku Shiba.

Merged:
  Commit 73fac2a from branch bb-10.4-MDEV-16250

8cc53ad... by Monty <email address hidden>

MDEV-17068 mysql system table is marked as crashed and should be repaired after the server crashes or is killed

- Changed ERROR to WARNING for MyISAM/Aria message
  that are warnings in the check utilities.
  This affects for example "client is using or
  hasn't closed the table properly".
- Print "Table is fixed" if check succeded in
  fixing the table.