Merge 10.0 into 10.1
This commit is contained in:
commit
0d3972c6be
@ -2052,7 +2052,7 @@ buf_relocate(
|
||||
}
|
||||
#endif /* UNIV_DEBUG */
|
||||
|
||||
memcpy(dpage, bpage, sizeof *dpage);
|
||||
new (dpage) buf_page_t(*bpage);
|
||||
|
||||
/* Important that we adjust the hazard pointer before
|
||||
removing bpage from LRU list. */
|
||||
|
@ -1653,7 +1653,7 @@ func_exit:
|
||||
} else if (buf_page_get_state(bpage) == BUF_BLOCK_FILE_PAGE) {
|
||||
b = buf_page_alloc_descriptor();
|
||||
ut_a(b);
|
||||
memcpy(b, bpage, sizeof *b);
|
||||
new (b) buf_page_t(*bpage);
|
||||
}
|
||||
|
||||
ut_ad(buf_pool_mutex_own(buf_pool));
|
||||
|
@ -4019,7 +4019,7 @@ fts_query(
|
||||
if (trx_is_interrupted(trx)) {
|
||||
error = DB_INTERRUPTED;
|
||||
ut_free(lc_query_str);
|
||||
if (result != NULL) {
|
||||
if (*result) {
|
||||
fts_query_free_result(*result);
|
||||
}
|
||||
goto func_exit;
|
||||
|
@ -593,6 +593,9 @@ struct dict_field_t{
|
||||
unsigned fixed_len:10; /*!< 0 or the fixed length of the
|
||||
column if smaller than
|
||||
DICT_ANTELOPE_MAX_INDEX_COL_LEN */
|
||||
|
||||
/** Zero-initialize all fields */
|
||||
dict_field_t() : col(NULL), name(NULL), prefix_len(0), fixed_len(0) {}
|
||||
};
|
||||
|
||||
/**********************************************************************//**
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*****************************************************************************
|
||||
|
||||
Copyright (c) 2010, 2016, Oracle and/or its affiliates. All Rights Reserved.
|
||||
Copyright (c) 2015, 2017, MariaDB Corporation.
|
||||
Copyright (c) 2015, 2018, MariaDB Corporation.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free Software
|
||||
@ -111,6 +111,14 @@ struct fts_tokenize_ctx {
|
||||
ib_rbt_t* cached_stopword;/*!< in: stopword list */
|
||||
dfield_t sort_field[FTS_NUM_FIELDS_SORT];
|
||||
/*!< in: sort field */
|
||||
|
||||
fts_tokenize_ctx() :
|
||||
processed_len(0), init_pos(0), buf_used(0),
|
||||
rows_added(), cached_stopword(NULL), sort_field()
|
||||
{
|
||||
memset(rows_added, 0, sizeof rows_added);
|
||||
memset(sort_field, 0, sizeof sort_field);
|
||||
}
|
||||
};
|
||||
|
||||
typedef struct fts_tokenize_ctx fts_tokenize_ctx_t;
|
||||
|
@ -673,7 +673,6 @@ fts_parallel_tokenization(
|
||||
merge_file = psort_info->merge_file;
|
||||
blob_heap = mem_heap_create(512);
|
||||
memset(&doc, 0, sizeof(doc));
|
||||
memset(&t_ctx, 0, sizeof(t_ctx));
|
||||
memset(mycount, 0, FTS_NUM_AUX_INDEX * sizeof(int));
|
||||
|
||||
doc.charset = fts_index_get_charset(
|
||||
|
@ -2514,8 +2514,6 @@ row_import_cfg_read_index_fields(
|
||||
|
||||
dict_field_t* field = index->m_fields;
|
||||
|
||||
memset(field, 0x0, sizeof(*field) * n_fields);
|
||||
|
||||
for (ulint i = 0; i < n_fields; ++i, ++field) {
|
||||
byte* ptr = row;
|
||||
|
||||
@ -2533,6 +2531,8 @@ row_import_cfg_read_index_fields(
|
||||
return(DB_IO_ERROR);
|
||||
}
|
||||
|
||||
new (field) dict_field_t();
|
||||
|
||||
field->prefix_len = mach_read_from_4(ptr);
|
||||
ptr += sizeof(ib_uint32_t);
|
||||
|
||||
|
@ -142,7 +142,7 @@ trx_create(void)
|
||||
|
||||
trx->global_read_view_heap = mem_heap_create(256);
|
||||
|
||||
trx->xid.formatID = -1;
|
||||
trx->xid.null();
|
||||
|
||||
trx->op_info = "";
|
||||
|
||||
|
@ -1991,7 +1991,7 @@ buf_relocate(
|
||||
}
|
||||
#endif /* UNIV_DEBUG */
|
||||
|
||||
memcpy(dpage, bpage, sizeof *dpage);
|
||||
new (dpage) buf_page_t(*bpage);
|
||||
|
||||
ut_d(bpage->in_LRU_list = FALSE);
|
||||
ut_d(bpage->in_page_hash = FALSE);
|
||||
|
@ -1838,7 +1838,7 @@ not_freed:
|
||||
}
|
||||
|
||||
if (b) {
|
||||
memcpy(b, bpage, sizeof *b);
|
||||
new (b) buf_page_t(*bpage);
|
||||
}
|
||||
|
||||
if (!buf_LRU_block_remove_hashed(bpage, zip)) {
|
||||
|
@ -4038,7 +4038,7 @@ fts_query(
|
||||
if (trx_is_interrupted(trx)) {
|
||||
error = DB_INTERRUPTED;
|
||||
ut_free(lc_query_str);
|
||||
if (result != NULL) {
|
||||
if (*result) {
|
||||
fts_query_free_result(*result);
|
||||
}
|
||||
goto func_exit;
|
||||
|
@ -605,6 +605,9 @@ struct dict_field_t{
|
||||
unsigned fixed_len:10; /*!< 0 or the fixed length of the
|
||||
column if smaller than
|
||||
DICT_ANTELOPE_MAX_INDEX_COL_LEN */
|
||||
|
||||
/** Zero-initialize all fields */
|
||||
dict_field_t() : col(NULL), name(NULL), prefix_len(0), fixed_len(0) {}
|
||||
};
|
||||
|
||||
/**********************************************************************//**
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*****************************************************************************
|
||||
|
||||
Copyright (c) 2010, 2016, Oracle and/or its affiliates. All Rights Reserved.
|
||||
Copyright (c) 2016, 2017, MariaDB Corporation.
|
||||
Copyright (c) 2015, 2018, MariaDB Corporation.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free Software
|
||||
@ -111,6 +111,14 @@ struct fts_tokenize_ctx {
|
||||
ib_rbt_t* cached_stopword;/*!< in: stopword list */
|
||||
dfield_t sort_field[FTS_NUM_FIELDS_SORT];
|
||||
/*!< in: sort field */
|
||||
|
||||
fts_tokenize_ctx() :
|
||||
processed_len(0), init_pos(0), buf_used(0),
|
||||
rows_added(), cached_stopword(NULL), sort_field()
|
||||
{
|
||||
memset(rows_added, 0, sizeof rows_added);
|
||||
memset(sort_field, 0, sizeof sort_field);
|
||||
}
|
||||
};
|
||||
|
||||
typedef struct fts_tokenize_ctx fts_tokenize_ctx_t;
|
||||
|
@ -676,7 +676,6 @@ fts_parallel_tokenization(
|
||||
merge_file = psort_info->merge_file;
|
||||
blob_heap = mem_heap_create(512);
|
||||
memset(&doc, 0, sizeof(doc));
|
||||
memset(&t_ctx, 0, sizeof(t_ctx));
|
||||
memset(mycount, 0, FTS_NUM_AUX_INDEX * sizeof(int));
|
||||
|
||||
doc.charset = fts_index_get_charset(
|
||||
|
@ -2514,8 +2514,6 @@ row_import_cfg_read_index_fields(
|
||||
|
||||
dict_field_t* field = index->m_fields;
|
||||
|
||||
memset(field, 0x0, sizeof(*field) * n_fields);
|
||||
|
||||
for (ulint i = 0; i < n_fields; ++i, ++field) {
|
||||
byte* ptr = row;
|
||||
|
||||
@ -2533,6 +2531,8 @@ row_import_cfg_read_index_fields(
|
||||
return(DB_IO_ERROR);
|
||||
}
|
||||
|
||||
new (field) dict_field_t();
|
||||
|
||||
field->prefix_len = mach_read_from_4(ptr);
|
||||
ptr += sizeof(ib_uint32_t);
|
||||
|
||||
|
@ -278,7 +278,7 @@ trx_create(void)
|
||||
trx->distinct_page_access_hash = NULL;
|
||||
trx->take_stats = FALSE;
|
||||
|
||||
trx->xid.formatID = -1;
|
||||
trx->xid.null();
|
||||
|
||||
trx->op_info = "";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user