Commit f2744d50 authored by marko's avatar marko

branches/zip: row_upd_sec_index_entry(): Pass foreign=TRUE to

row_ins_index_entry().  The added parameter (whether to check
foreign key constraints) was incorrectly passed as FALSE in r1591.
parent e9351c6f
......@@ -1334,7 +1334,7 @@ row_upd_sec_index_entry(
row_upd_index_replace_new_col_vals(entry, index, node->update, NULL);
/* Insert new index entry */
err = row_ins_index_entry(index, entry, 0, FALSE, thr);
err = row_ins_index_entry(index, entry, 0, TRUE, thr);
func_exit:
mem_heap_free(heap);
......
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