maria:bb-10.2-MDEV-7914

Last commit made on 2017-06-29
Get this branch:
git clone -b bb-10.2-MDEV-7914 https://git.launchpad.net/maria

Branch merges

Branch information

Name:
bb-10.2-MDEV-7914
Repository:
lp:maria

Recent commits

67d7277... by Jacob Mathew

MDEV-7914 spider/bg.ha, spider/bg.ha_part fail sporadically in buildbot

Fixed the problem by adding a Spider shutdown indicator and a Spider memory
lock. Spider shutdown acquires the lock for write access and
all other requestors acquire the lock for read access.

0cf993c... by Elena Stepanova

MDEV-11002 large_tests.rpl_slave_net_timeout fails due to connection logging

0992be9... by Vicențiu Ciorbaru

MDEV-13068 Crash in Item::split_sum_func2 with INSERT SELECT using window functions

When running setup fields during the final step of insert using select
the final setup_fields does not have any sum functions. Our current
condition for calling split_sum_func however would attempt to use an empty
NULL sum_func_list, if the item contained a window function.

The solution is to not perform another split_sum_func for the item
containing a window function if we do not actually have a sum_func_list.

c73fa2d... by Marko Mäkelä

Merge 10.1 into 10.2

This will also change the minimum and maximum value of
innodb_log_file_size to 1MiB and 512GiB, respectively.

d1e182d... by Marko Mäkelä

MDEV-12975 InnoDB redo log minimum size check uses detected file size instead of requested innodb_log_file_size

log_calc_max_ages(): Use the requested size in the check, instead of
the detected redo log size. The redo log will be resized at startup
if it differs from what has been requested.

9a646c9... by Marko Mäkelä

Mariabackup: Remove the --stats option

The option was basically duplicating InnoDB functionality.
Persistent statistics can be accessed via the tables
mysql.innodb_table_stats and mysql.innodb_index_stats.

cede2b6... by Marko Mäkelä

Mariabackup: Remove support for .xbcrypt files

7e22050... by Marko Mäkelä

Mariabackup: Remove the options --compact --rebuild-indexes --rebuild-threads

fa70d07... by Marko Mäkelä

Mariabackup: Remove the options --to-archived-lsn --innodb-log-arch-dir

These functions cannot possibly work in MariaDB 10.2, and it is
uncertain if they really work in 10.1 either.

cf4a6ab... by Igor Babaev

Fixed the bug mdev-13064.

This is another attempt to fix the bug mdev-12992.
This patch introduces st_select_lex::context_analysis_place for
the place in SELECT where context analysis is currently performed.
It's similar to st_select_lex::parsing_place, but it is used at
the preparation stage.