diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-12-22 17:06:50 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-12-22 17:06:50 +0100 |
commit | ffa8c4cfcc41d4f160e3bdfca5cfd4b01a7d6e63 (patch) | |
tree | 728585c36f22a5db3cea796430883d0ebc5c05eb /sql | |
parent | e27c34f9e4ca15c797fcd3191ee5679c2f237a09 (diff) | |
parent | 52c26f7a1f675185d2ef1a28aca7f9bcc67c6414 (diff) | |
download | mariadb-git-ffa8c4cfcc41d4f160e3bdfca5cfd4b01a7d6e63.tar.gz |
Percona-Server-5.6.14-rel62.0 merge
support ha_innodb.so as a dynamic plugin.
* remove obsolete *,innodb_plugin.rdiff files
* s/--plugin-load=/--plugin-load-add=/
* MYSQL_PLUGIN_IMPORT glob_hostname[]
* use my_error instead of push_warning_printf(ER_DEFAULT)
* don't use tdc_size and tc_size in a module
update test cases (XtraDB is 5.6.14, InnoDB is 5.6.10)
* copy new tests over
* disable some tests for (old) InnoDB
* delete XtraDB tests that no longer apply
small compatibility changes:
* s/HTON_EXTENDED_KEYS/HTON_SUPPORTS_EXTENDED_KEYS/
* revert unnecessary InnoDB changes to make it a bit closer to the upstream
fix XtraDB to compile on Windows (both as a static and a dynamic plugin)
disable XtraDB on Windows (deadlocks) and where no atomic ops are available (e.g. CentOS 5)
storage/innobase/handler/ha_innodb.cc:
revert few unnecessary changes to make it a bit closer to the original InnoDB
storage/innobase/include/univ.i:
correct the version to match what it was merged from
Diffstat (limited to 'sql')
-rw-r--r-- | sql/handler.h | 2 | ||||
-rw-r--r-- | sql/innodb_priv.h | 2 | ||||
-rw-r--r-- | sql/mysqld.h | 3 | ||||
-rw-r--r-- | sql/share/errmsg-utf8.txt | 6 | ||||
-rw-r--r-- | sql/table.cc | 2 |
5 files changed, 12 insertions, 3 deletions
diff --git a/sql/handler.h b/sql/handler.h index 360120615f3..69b9c3e071e 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -1369,7 +1369,7 @@ static inline sys_var *find_hton_sysvar(handlerton *hton, st_mysql_sys_var *var) Schema which have no meaning for replication. */ #define HTON_NO_BINLOG_ROW_OPT (1 << 9) -#define HTON_EXTENDED_KEYS (1 <<10) //supports extended keys +#define HTON_SUPPORTS_EXTENDED_KEYS (1 <<10) //supports extended keys class Ha_trx_info; diff --git a/sql/innodb_priv.h b/sql/innodb_priv.h index 82d74236ff9..b9e471b3b13 100644 --- a/sql/innodb_priv.h +++ b/sql/innodb_priv.h @@ -31,4 +31,6 @@ uint strconvert(CHARSET_INFO *from_cs, const char *from, uint from_length, uint *errors); void sql_print_error(const char *format, ...); +#define thd_binlog_pos(X, Y, Z) mysql_bin_log_commit_pos(X, Z, Y) + #endif /* INNODB_PRIV_INCLUDED */ diff --git a/sql/mysqld.h b/sql/mysqld.h index 1b718cb8f05..12b5d857e6e 100644 --- a/sql/mysqld.h +++ b/sql/mysqld.h @@ -140,7 +140,8 @@ extern char *opt_backup_history_logname, *opt_backup_progress_logname, extern const char *log_output_str; extern const char *log_backup_output_str; extern char *mysql_home_ptr, *pidfile_name_ptr; -extern char glob_hostname[FN_REFLEN], mysql_home[FN_REFLEN]; +extern MYSQL_PLUGIN_IMPORT char glob_hostname[FN_REFLEN]; +extern char mysql_home[FN_REFLEN]; extern char pidfile_name[FN_REFLEN], system_time_zone[30], *opt_init_file; extern char default_logfile_name[FN_REFLEN]; extern char log_error_file[FN_REFLEN], *opt_tc_log_file; diff --git a/sql/share/errmsg-utf8.txt b/sql/share/errmsg-utf8.txt index 6a01ffe4ffb..2d061fc314c 100644 --- a/sql/share/errmsg-utf8.txt +++ b/sql/share/errmsg-utf8.txt @@ -6932,6 +6932,12 @@ ER_ROW_IN_WRONG_PARTITION eng "Found a row in wrong partition %s" swe "Hittade en rad i fel partition %s" +ER_MTS_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX + eng "Cannot schedule event %s, relay-log name %s, position %s to Worker thread because its size %lu exceeds %lu of slave_pending_jobs_size_max." + +ER_INNODB_NO_FT_USES_PARSER + eng "Cannot CREATE FULLTEXT INDEX WITH PARSER on InnoDB table" + # # MariaDB error messages section starts here # diff --git a/sql/table.cc b/sql/table.cc index a4065f2c393..ecab578d97d 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -1191,7 +1191,7 @@ int TABLE_SHARE::init_from_binary_frm_image(THD *thd, bool write, next_chunk+= str_db_type_length + 2; } - share->set_use_ext_keys_flag(plugin_hton(se_plugin)->flags & HTON_EXTENDED_KEYS); + share->set_use_ext_keys_flag(plugin_hton(se_plugin)->flags & HTON_SUPPORTS_EXTENDED_KEYS); if (create_key_infos(disk_buff + 6, frm_image_end, keys, keyinfo, new_frm_ver, ext_key_parts, |