diff options
author | Michael Widenius <monty@askmonty.org> | 2014-02-11 19:40:33 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2014-02-11 19:40:33 +0200 |
commit | 94d23e2413d61f9f14b230c6f73b8bdc99cd158b (patch) | |
tree | 536caabc02a45e5179433ef4bbcd22b42aac1cf1 /storage/maria/ma_static.c | |
parent | 34bd0d02ba32997f7ffe08267422c6be4721a931 (diff) | |
download | mariadb-git-94d23e2413d61f9f14b230c6f73b8bdc99cd158b.tar.gz |
Fixed MDEV-3815: Aria engine return "The table is full" (ERROR 1114) inserting record, while MyISAM and InnoDB doesn't
Increase default pointer length for Aria tables to be able to handle big files without having to specify MAX_ROWS
mysql-test/suite/maria/icp.result:
Updated result
mysql-test/suite/maria/maria-preload.result:
More pages are needed with longer pointer length
mysql-test/suite/maria/maria.result:
Added more tests
mysql-test/suite/maria/maria.test:
Added more tests
storage/maria/ma_create.c:
Increase default pointer length for Aria tables to be able to handle big files without having to specify MAX_ROWS
storage/maria/ma_range.c:
Optimize records_in_range() to be more exact
storage/maria/ma_static.c:
Increase default pointer size
storage/maria/ma_test2.c:
Allow a bit larger errors in records_in_range
Diffstat (limited to 'storage/maria/ma_static.c')
-rw-r--r-- | storage/maria/ma_static.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/maria/ma_static.c b/storage/maria/ma_static.c index 8c6bf85b39e..35ad7d5a96a 100644 --- a/storage/maria/ma_static.c +++ b/storage/maria/ma_static.c @@ -51,7 +51,7 @@ ulong maria_concurrent_insert= 2; my_off_t maria_max_temp_length= MAX_FILE_SIZE; ulong maria_bulk_insert_tree_size=8192*1024; -ulong maria_data_pointer_size= 4; +ulong maria_data_pointer_size= 6; PAGECACHE maria_pagecache_var; PAGECACHE *maria_pagecache= &maria_pagecache_var; |