summaryrefslogtreecommitdiff
path: root/Build-tools
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2002-10-23 21:29:01 +0200
committerunknown <lenz@mysql.com>2002-10-23 21:29:01 +0200
commit19879ad149160efc26cf59d1f6720eca02f077ee (patch)
tree1edde680d80ca80e00473ce85184b862b1ec21f7 /Build-tools
parent6f3b5e12865ff2c574cb0efda460d147b7b21dee (diff)
downloadmariadb-git-19879ad149160efc26cf59d1f6720eca02f077ee.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") Build-tools/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);