diff options
author | unknown <lenz@mysql.com> | 2002-10-23 21:39:59 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-10-23 21:39:59 +0200 |
commit | 7e9e371565b1adb7ac1027a7f07d8d28c7efa172 (patch) | |
tree | af3fd66050117984660cb91a24355e9acb3422d6 /Build-tools | |
parent | ebe07fa468a26f87b5db17ab3d6b68d259409335 (diff) | |
download | mariadb-git-7e9e371565b1adb7ac1027a7f07d8d28c7efa172.tar.gz |
Do-compile fixes:
- fixed essential piece missing from last merge with 3.23 tree
(InnoDB option)
- Added "autoextend" parameter to InnoDB startup options to be able
to pass the full sql-bench run without hitting an "table space full"
error
Build-tools/Do-compile:
- fixed essential piece missing from last merge with 3.23 tree
(InnoDB option)
- Added "autoextend" parameter to InnoDB startup options to be able
to pass the full sql-bench run without hitting an "table space full"
error
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index 9f62b617056..a29bd99191d 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -215,7 +215,14 @@ if ($opt_stage <= 1) # Only enable InnoDB when requested (required to be able to # build the "Classic" packages that do not include InnoDB) - $opt_config_options.= " --without-innodb" if (!$opt_innodb); + if ($opt_innodb) + { + $opt_config_options.= " --with-innodb"; + } + else + { + $opt_config_options.= " --without-innodb"; + } if ($opt_with_other_libc) { @@ -314,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); |