Merge pull request #17569 from liviuconcioiu/export_limit

Fix export limit size calculation

Fixes #17424
This commit is contained in:
Maurício Meneghini Fauth 2022-06-10 03:11:10 -03:00 committed by GitHub
commit 8f55743def
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -797,7 +797,7 @@ class Export
$size = (int) $this->dbi->fetchValue($query);
//Converting the size to MB
$size /= 1024 / 1024;
$size /= 1024 * 1024;
if ($size > $tableSize) {
continue;
}