mirror of
https://github.com/MariaDB/server.git
synced 2026-05-13 18:40:48 +02:00
Applying InnoDB plugin snashot
Detailed revision comments:
r6105 | calvin | 2009-10-28 00:05:52 +0200 (Wed, 28 Oct 2009) | 6 lines
branches/zip: backport r3848 from 6.0 branch
----
branches/6.0: innobase_start_or_create_for_mysql(): Make the 10 MB
minimum tablespace limit independent of UNIV_PAGE_SIZE. (Bug #41490)
This commit is contained in:
parent
57b74a02fe
commit
74d505db0b
1 changed files with 1 additions and 1 deletions
|
|
@ -1376,7 +1376,7 @@ innobase_start_or_create_for_mysql(void)
|
|||
sum_of_new_sizes += srv_data_file_sizes[i];
|
||||
}
|
||||
|
||||
if (sum_of_new_sizes < 640) {
|
||||
if (sum_of_new_sizes < 10485760 / UNIV_PAGE_SIZE) {
|
||||
fprintf(stderr,
|
||||
"InnoDB: Error: tablespace size must be"
|
||||
" at least 10 MB\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue