Commit a44711db authored by unknown's avatar unknown

row0sel.c:

  row_sel_store_mysql_rec(): Remove unused variable "index".


innobase/row/row0sel.c:
  row_sel_store_mysql_rec(): Remove unused variable "index".
parent b89931ec
...@@ -2352,16 +2352,10 @@ row_sel_store_mysql_rec( ...@@ -2352,16 +2352,10 @@ row_sel_store_mysql_rec(
byte* blob_buf; byte* blob_buf;
int pad_char; int pad_char;
ulint i; ulint i;
dict_index_t* index;
ut_ad(prebuilt->mysql_template); ut_ad(prebuilt->mysql_template);
ut_ad(rec_offs_validate(rec, NULL, offsets)); ut_ad(rec_offs_validate(rec, NULL, offsets));
index = prebuilt->index;
if (prebuilt->need_to_access_clustered) {
index = dict_table_get_first_index(index->table);
}
if (prebuilt->blob_heap != NULL) { if (prebuilt->blob_heap != NULL) {
mem_heap_free(prebuilt->blob_heap); mem_heap_free(prebuilt->blob_heap);
prebuilt->blob_heap = NULL; prebuilt->blob_heap = NULL;
......
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