List:Internals« Previous MessageNext Message »
From:Jim Winstead Date:April 15 2005 8:53pm
Subject:bk commit into 4.1 tree (jimw:1.2190)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of jimw. When jimw does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2190 05/04/15 11:52:58 jimw@stripped +1 -0
  Merge mysql.com:/home/jimw/my/mysql-4.1-9833
  into mysql.com:/home/jimw/my/mysql-4.1-clean

  sql/mysqld.cc
    1.572 05/04/15 11:52:57 jimw@stripped +0 -0
    Auto merged

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	jimw
# Host:	rama.(none)
# Root:	/home/jimw/my/mysql-4.1-clean/RESYNC

--- 1.571/sql/mysqld.cc	2005-04-13 15:43:26 -07:00
+++ 1.572/sql/mysqld.cc	2005-04-15 11:52:57 -07:00
@@ -6436,6 +6436,18 @@
     sql_print_warning("this binary does not contain BDB storage engine");
 #endif
 
+  /*
+    Check that the default storage engine is actually available.
+  */
+  if (!ha_storage_engine_is_enabled((enum db_type)
+                                    global_system_variables.table_type))
+  {
+    sql_print_error("Default storage engine (%s) is not available",
+                    ha_get_storage_engine((enum db_type)
+                                          global_system_variables.table_type));
+    exit(1);
+  }
+
   if (argc > 0)
   {
     fprintf(stderr, "%s: Too many arguments (first extra is '%s').\nUse --help to get a
list of available options\n", my_progname, *argv);
Thread
bk commit into 4.1 tree (jimw:1.2190)Jim Winstead15 Apr