Commit 7f8cd326 authored by Marko Mäkelä's avatar Marko Mäkelä

Merge 10.3 into 10.4

parents b0c194ca c5cb59ce
...@@ -7284,6 +7284,8 @@ build_template_field( ...@@ -7284,6 +7284,8 @@ build_template_field(
templ = prebuilt->mysql_template + prebuilt->n_template++; templ = prebuilt->mysql_template + prebuilt->n_template++;
MEM_UNDEFINED(templ, sizeof *templ); MEM_UNDEFINED(templ, sizeof *templ);
templ->rec_field_is_prefix = FALSE;
templ->rec_prefix_field_no = ULINT_UNDEFINED;
templ->is_virtual = !field->stored_in_db(); templ->is_virtual = !field->stored_in_db();
if (!templ->is_virtual) { if (!templ->is_virtual) {
...@@ -7345,8 +7347,6 @@ build_template_field( ...@@ -7345,8 +7347,6 @@ build_template_field(
<< " query " << " query "
<< innobase_get_stmt_unsafe(current_thd, &size); << innobase_get_stmt_unsafe(current_thd, &size);
} }
templ->rec_field_is_prefix = FALSE;
templ->rec_prefix_field_no = ULINT_UNDEFINED;
if (dict_index_is_clust(index)) { if (dict_index_is_clust(index)) {
templ->rec_field_no = templ->clust_rec_field_no; templ->rec_field_no = templ->clust_rec_field_no;
...@@ -7364,7 +7364,6 @@ build_template_field( ...@@ -7364,7 +7364,6 @@ build_template_field(
DBUG_ASSERT(!ha_innobase::omits_virtual_cols(*table->s)); DBUG_ASSERT(!ha_innobase::omits_virtual_cols(*table->s));
col = &dict_table_get_nth_v_col(index->table, v_no)->m_col; col = &dict_table_get_nth_v_col(index->table, v_no)->m_col;
templ->clust_rec_field_no = v_no; templ->clust_rec_field_no = v_no;
templ->rec_prefix_field_no = ULINT_UNDEFINED;
if (dict_index_is_clust(index)) { if (dict_index_is_clust(index)) {
templ->rec_field_no = templ->clust_rec_field_no; templ->rec_field_no = templ->clust_rec_field_no;
......
...@@ -54,6 +54,9 @@ IF(CMAKE_CXX_COMPILER_ID MATCHES "GNU") ...@@ -54,6 +54,9 @@ IF(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
SKIP_ROCKSDB_PLUGIN("${OLD_COMPILER_MSG}") SKIP_ROCKSDB_PLUGIN("${OLD_COMPILER_MSG}")
ENDIF() ENDIF()
SET(CXX11_FLAGS "-std=c++11") SET(CXX11_FLAGS "-std=c++11")
IF (GCC_VERSION VERSION_LESS 5.0)
SET(CXX11_FLAGS "-std=c++11 -Wno-missing-field-initializers")
ENDIF()
ELSEIF (CMAKE_CXX_COMPILER_ID MATCHES "Clang") ELSEIF (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
IF ((CMAKE_CXX_COMPILER_VERSION AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.3) OR IF ((CMAKE_CXX_COMPILER_VERSION AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.3) OR
(CLANG_VERSION_STRING AND CLANG_VERSION_STRING VERSION_LESS 3.3)) (CLANG_VERSION_STRING AND CLANG_VERSION_STRING VERSION_LESS 3.3))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment