dict0dict.h, dict0dict.c, row0row.c, pars0opt.c:

  Fix bug #5180: having a column prefix index in the primary key, and the same column fully in a secondary key could cause an assertion failure in row_build_row_ref()
parent 78fa3aef
...@@ -526,8 +526,10 @@ dict_index_contains_col_or_prefix( ...@@ -526,8 +526,10 @@ dict_index_contains_col_or_prefix(
} }
/************************************************************************ /************************************************************************
Looks for a matching field in an index. The column and the prefix len have Looks for a matching field in an index. The column has to be the same. The
to be the same. */ column in index must be complete, or must contain a prefix longer than the
column in index2. That is, we must be able to construct the prefix in index2
from the prefix in index. */
ulint ulint
dict_index_get_nth_field_pos( dict_index_get_nth_field_pos(
...@@ -555,7 +557,9 @@ dict_index_get_nth_field_pos( ...@@ -555,7 +557,9 @@ dict_index_get_nth_field_pos(
field = dict_index_get_nth_field(index, pos); field = dict_index_get_nth_field(index, pos);
if (field->col == field2->col if (field->col == field2->col
&& field->prefix_len == field2->prefix_len) { && (field->prefix_len == 0
|| (field->prefix_len >= field2->prefix_len
&& field2->prefix_len != 0))) {
return(pos); return(pos);
} }
......
...@@ -566,8 +566,10 @@ dict_index_contains_col_or_prefix( ...@@ -566,8 +566,10 @@ dict_index_contains_col_or_prefix(
dict_index_t* index, /* in: index */ dict_index_t* index, /* in: index */
ulint n); /* in: column number */ ulint n); /* in: column number */
/************************************************************************ /************************************************************************
Looks for a matching field in an index. The column and the prefix len has Looks for a matching field in an index. The column has to be the same. The
to be the same. */ column in index must be complete, or must contain a prefix longer than the
column in index2. That is, we must be able to construct the prefix in index2
from the prefix in index. */
ulint ulint
dict_index_get_nth_field_pos( dict_index_get_nth_field_pos(
......
...@@ -1094,6 +1094,19 @@ opt_clust_access( ...@@ -1094,6 +1094,19 @@ opt_clust_access(
for (i = 0; i < n_fields; i++) { for (i = 0; i < n_fields; i++) {
pos = dict_index_get_nth_field_pos(index, clust_index, i); pos = dict_index_get_nth_field_pos(index, clust_index, i);
ut_a(pos != ULINT_UNDEFINED);
/* We optimize here only queries to InnoDB's internal system
tables, and they should not contain column prefix indexes. */
if (dict_index_get_nth_field(index, pos)->prefix_len != 0
|| dict_index_get_nth_field(clust_index, i)
->prefix_len != 0) {
fprintf(stderr,
"InnoDB: Error in pars0opt.c: table %s has prefix_len != 0\n",
index->table_name);
}
*(plan->clust_map + i) = pos; *(plan->clust_map + i) = pos;
ut_ad((pos != ULINT_UNDEFINED) ut_ad((pos != ULINT_UNDEFINED)
......
...@@ -334,6 +334,7 @@ row_build_row_ref( ...@@ -334,6 +334,7 @@ row_build_row_ref(
ulint ref_len; ulint ref_len;
ulint pos; ulint pos;
byte* buf; byte* buf;
ulint clust_col_prefix_len;
ulint i; ulint i;
ut_ad(index && rec && heap); ut_ad(index && rec && heap);
...@@ -366,6 +367,22 @@ row_build_row_ref( ...@@ -366,6 +367,22 @@ row_build_row_ref(
field = rec_get_nth_field(rec, pos, &len); field = rec_get_nth_field(rec, pos, &len);
dfield_set_data(dfield, field, len); dfield_set_data(dfield, field, len);
/* If the primary key contains a column prefix, then the
secondary index may contain a longer prefix of the same
column, or the full column, and we must adjust the length
accordingly. */
clust_col_prefix_len =
dict_index_get_nth_field(clust_index, i)->prefix_len;
if (clust_col_prefix_len > 0) {
if (len != UNIV_SQL_NULL
&& len > clust_col_prefix_len) {
dfield_set_len(dfield, clust_col_prefix_len);
}
}
} }
ut_ad(dtuple_check_typed(ref)); ut_ad(dtuple_check_typed(ref));
...@@ -396,6 +413,7 @@ row_build_row_ref_in_tuple( ...@@ -396,6 +413,7 @@ row_build_row_ref_in_tuple(
ulint len; ulint len;
ulint ref_len; ulint ref_len;
ulint pos; ulint pos;
ulint clust_col_prefix_len;
ulint i; ulint i;
ut_a(ref && index && rec); ut_a(ref && index && rec);
...@@ -433,6 +451,22 @@ row_build_row_ref_in_tuple( ...@@ -433,6 +451,22 @@ row_build_row_ref_in_tuple(
field = rec_get_nth_field(rec, pos, &len); field = rec_get_nth_field(rec, pos, &len);
dfield_set_data(dfield, field, len); dfield_set_data(dfield, field, len);
/* If the primary key contains a column prefix, then the
secondary index may contain a longer prefix of the same
column, or the full column, and we must adjust the length
accordingly. */
clust_col_prefix_len =
dict_index_get_nth_field(clust_index, i)->prefix_len;
if (clust_col_prefix_len > 0) {
if (len != UNIV_SQL_NULL
&& len > clust_col_prefix_len) {
dfield_set_len(dfield, clust_col_prefix_len);
}
}
} }
ut_ad(dtuple_check_typed(ref)); ut_ad(dtuple_check_typed(ref));
......
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