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