mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
branches/zip: Split lines before operators, not after them.
This commit is contained in:
parent
d92cdad1fa
commit
de5b892a99
2 changed files with 6 additions and 6 deletions
|
@ -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 @@ end_of_blob:
|
|||
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++;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue