summaryrefslogtreecommitdiff
path: root/Build-tools/Do-compile
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
commit437eebc0e56a87dba1ed4d80c0c2864ecdf63a88 (patch)
tree1edde680d80ca80e00473ce85184b862b1ec21f7 /Build-tools/Do-compile
parent426daffb30179fde410404cdef45a52ac31ab262 (diff)
downloadmariadb-git-437eebc0e56a87dba1ed4d80c0c2864ecdf63a88.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/Do-compile')
-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);