Commit e82202fc authored by marko's avatar marko

branches/zip: Restore the size of row_merge_block_t to 1048576 bytes.

This was inadvertently reduced to 16384 bytes in r1861.  For testing,
this can be set as low as UNIV_PAGE_SIZE.
parent 0920bb66
...@@ -48,7 +48,7 @@ static ibool row_merge_print_write; ...@@ -48,7 +48,7 @@ static ibool row_merge_print_write;
/* Block size for I/O operations in merge sort */ /* Block size for I/O operations in merge sort */
typedef byte row_merge_block_t[16384]; typedef byte row_merge_block_t[1048576];
/* Secondary buffer for I/O operations of merge records */ /* Secondary buffer for I/O operations of merge records */
......
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