Commit 23128a45 authored by marko's avatar marko

branches/zip: Split lines before operators, not after them.

parent 78357aa7
......@@ -2139,8 +2139,8 @@ btr_cur_pessimistic_update(
/* Add the externally stored records. */
for (i = 0; i < big_rec_vec->n_fields; i++) {
ext_vect[n_ext_vect++] =
big_rec_vec->fields[i].field_no;
ext_vect[n_ext_vect++]
= big_rec_vec->fields[i].field_no;
}
}
......@@ -4290,8 +4290,8 @@ btr_copy_externally_stored_field(
ut_a(!d_stream.avail_out);
inflateEnd(&d_stream);
ut_ad(buf + local_len + d_stream.total_out ==
d_stream.next_out);
ut_ad(buf + local_len + d_stream.total_out
== d_stream.next_out);
*len = d_stream.next_out - buf;
return(buf);
}
......
......@@ -1343,8 +1343,8 @@ page_copy_rec_list_end_to_created_page(
count++;
n_recs++;
if (UNIV_UNLIKELY(count ==
(PAGE_DIR_SLOT_MAX_N_OWNED + 1) / 2)) {
if (UNIV_UNLIKELY
(count == (PAGE_DIR_SLOT_MAX_N_OWNED + 1) / 2)) {
slot_index++;
......
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