diff options
author | unknown <lenz@mysql.com> | 2002-10-23 21:29:01 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-10-23 21:29:01 +0200 |
commit | 437eebc0e56a87dba1ed4d80c0c2864ecdf63a88 (patch) | |
tree | 1edde680d80ca80e00473ce85184b862b1ec21f7 /Build-tools/Do-compile | |
parent | 426daffb30179fde410404cdef45a52ac31ab262 (diff) | |
download | mariadb-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-x | Build-tools/Do-compile | 2 |
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); |