summaryrefslogtreecommitdiff
path: root/Build-tools
diff options
context:
space:
mode:
authorlenz@mysql.com <>2002-10-23 21:29:01 +0200
committerlenz@mysql.com <>2002-10-23 21:29:01 +0200
commit08d2ea525edb78c777d3d2421edc7cf1345e0ebd (patch)
tree1edde680d80ca80e00473ce85184b862b1ec21f7 /Build-tools
parent5459505bba0bb30ca36ab427b40ad9236075f84d (diff)
downloadmariadb-git-08d2ea525edb78c777d3d2421edc7cf1345e0ebd.tar.gz
- Fix for Do-compile: Enable InnoDB to autoextend the table space if
necessary (required to actually pass the sql-bench without aborting with "table space full")
Diffstat (limited to 'Build-tools')
-rwxr-xr-xBuild-tools/Do-compile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile
index 0a4776b3eb9..bdec06a5f9f 100755
--- a/Build-tools/Do-compile
+++ b/Build-tools/Do-compile
@@ -321,7 +321,7 @@ if (!$opt_no_test)
}
if ($opt_innodb)
{
- $extra.=" --innodb_data_file_path=ibdata1:100M";
+ $extra.=" --innodb_data_file_path=ibdata1:100M:autoextend";
}
safe_system("./bin/mysqld --no-defaults --basedir . --datadir ./data --skip-locking $extra >> $log 2>&1 &");
sleep(2);