Merge with 4.1.3-beta

This commit is contained in:
monty@mysql.com 2004-07-07 11:29:39 +03:00
commit 1e31199995
1727 changed files with 63989 additions and 40255 deletions

View file

@ -183,6 +183,14 @@ sub new
{
$self->{'transactions'} = 1; # Transactions enabled
}
if (defined($main::opt_create_options) &&
$main::opt_create_options =~ /type=ndb/i)
{
$self->{'transactions'} = 1; # Transactions enabled
$limits{'max_columns'} = 90; # Max number of columns in table
$limits{'max_tables'} = 32; # No comments
$limits{'working_blobs'} = 0; # NDB tables can't handle BLOB's
}
if (defined($main::opt_create_options) &&
$main::opt_create_options =~ /type=bdb/i)
{