Commit 98b1bb0b authored by Rik Prohaska's avatar Rik Prohaska Committed by Sergei Golubchik

fix MDEV-7225. see https://jira.mariadb.org/browse/MDEV-72225 for details.

parent 8a8ba194
...@@ -204,6 +204,11 @@ sub new ...@@ -204,6 +204,11 @@ sub new
$limits{'max_temporary_tables'}= $limits{"max_tables"}; $limits{'max_temporary_tables'}= $limits{"max_tables"};
$self->{'transactions'} = 1; # Transactions enabled $self->{'transactions'} = 1; # Transactions enabled
} }
if (defined($main::opt_create_options) &&
$main::opt_create_options =~ /engine=tokudb/i)
{
$self->{'transactions'} = 1; # Transactions enabled
}
return $self; return $self;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment