mirror of
https://github.com/MariaDB/server.git
synced 2025-09-11 05:52:26 +03:00
Merge fixes.
mysql-test/mysql-test-run.pl: Fixed missed lines in merge. storage/maria/plug.in: Fixed problem with configuration. This is now included top level. storage/pbxt/plug.in: Fixed problem with configuration. This is included now in top level.
This commit is contained in:
4
mysql-test/mysql-test-run.pl
Normal file → Executable file
4
mysql-test/mysql-test-run.pl
Normal file → Executable file
@@ -3575,7 +3575,7 @@ sub run_testcase ($$) {
|
||||
# valuable debugging information even if there is no test failure recorded.
|
||||
sub _preserve_error_log_names {
|
||||
my ($mysqld)= @_;
|
||||
my $error_log_file= $mysqld->value('log-error');
|
||||
my $error_log_file= $mysqld->value('#log-error');
|
||||
my $error_log_dir= dirname($error_log_file);
|
||||
my $save_name= $error_log_dir ."/../". $mysqld->name() .".error.log";
|
||||
return ($error_log_file, $save_name);
|
||||
@@ -3909,7 +3909,7 @@ sub check_warnings_post_shutdown {
|
||||
my $testname_hash= { };
|
||||
foreach my $mysqld ( mysqlds())
|
||||
{
|
||||
my $testlist= extract_warning_lines($mysqld->value('log-error'));
|
||||
my $testlist= extract_warning_lines($mysqld->value('#log-error'));
|
||||
$testname_hash->{$_}= 1 for @$testlist;
|
||||
}
|
||||
my @warning_tests= keys(%$testname_hash);
|
||||
|
@@ -7,7 +7,7 @@ MYSQL_PLUGIN_STATIC(maria, [libmaria.a])
|
||||
MYSQL_PLUGIN_DEPENDS_ON_MYSQL_INTERNALS(maria, [ha_maria.cc])
|
||||
|
||||
MYSQL_PLUGIN_ACTIONS(maria, [
|
||||
AC_CONFIG_FILES(storage/maria/unittest/Makefile)
|
||||
# AC_CONFIG_FILES(storage/maria/unittest/Makefile)
|
||||
AC_ARG_WITH(maria-tmp-tables,
|
||||
AC_HELP_STRING([--with-maria-tmp-tables],[Use Maria for internal temporary tables]),
|
||||
[with_maria_tmp_tables=$withval],
|
||||
|
@@ -3,5 +3,5 @@ MYSQL_STORAGE_ENGINE(pbxt,no, [PBXT Storage Engine],
|
||||
MYSQL_PLUGIN_DIRECTORY(pbxt, [storage/pbxt])
|
||||
MYSQL_PLUGIN_STATIC(pbxt, [src/libpbxt.a])
|
||||
MYSQL_PLUGIN_ACTIONS(pbxt, [
|
||||
AC_CONFIG_FILES(storage/pbxt/src/Makefile)
|
||||
# AC_CONFIG_FILES(storage/pbxt/src/Makefile)
|
||||
])
|
||||
|
Reference in New Issue
Block a user