Commit 26416bf5 authored by unknown's avatar unknown
Browse files

Merge c-9a08e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/mysql-5.1-bugs

into  c-9a08e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/wl2826


sql/ha_ndbcluster.cc:
  Auto merged
sql/sql_yacc.yy:
  Auto merged
sql/share/errmsg.txt:
  Manual merge
parents 5c9afee6 a95646be
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -71,6 +71,7 @@ pentium_cflags="$check_cpu_cflags"
pentium64_cflags="$check_cpu_cflags -m64"
ppc_cflags="$check_cpu_cflags"
sparc_cflags=""
error_inject="--with-error-inject "

# be as fast as we can be without losing our ability to backtrace
fast_cflags="-O3 -fno-omit-frame-pointer"
+1 −1
Original line number Diff line number Diff line
@@ -6,6 +6,6 @@ path=`dirname $0`
extra_flags="$pentium_cflags $debug_cflags $max_cflags"
c_warnings="$c_warnings $debug_extra_warnings"
cxx_warnings="$cxx_warnings $debug_extra_warnings"
extra_configs="$pentium_configs $debug_configs $max_configs"
extra_configs="$pentium_configs $debug_configs $max_configs $error_inject"

. "$path/FINISH.sh"
+13 −0
Original line number Diff line number Diff line
@@ -663,6 +663,7 @@ else
  AC_MSG_RESULT([no])
fi

  
MYSQL_SYS_LARGEFILE

# Types that must be checked AFTER large file support is checked
@@ -1563,6 +1564,18 @@ then
  DEBUG_OPTIMIZE_CXX=""
fi

# If we should allow error injection tests
AC_ARG_WITH(error-inject,
    [ --with-error-inject    Enable error injection in MySQL Server],
    [ with_error_inject=$withval ],
    [ with_error_inject=no ])

if test "$with_error_inject" = "yes"
then
  CFLAGS="-DERROR_INJECT_SUPPORT $CFLAGS"
  CXXFLAGS="-DERROR_INJECT_SUPPORT $CXXFLAGS"
fi

AC_ARG_WITH(debug,
    [  --without-debug         Build a production version without debugging code],
    [with_debug=$withval],
+1 −1
Original line number Diff line number Diff line
@@ -559,7 +559,7 @@ extern File my_register_filename(File fd, const char *FileName,
				 enum file_type type_of_file,
				 uint error_message_number, myf MyFlags);
extern File my_create(const char *FileName,int CreateFlags,
		      int AccsesFlags, myf MyFlags);
		      int AccessFlags, myf MyFlags);
extern int my_close(File Filedes,myf MyFlags);
extern File my_dup(File file, myf MyFlags);
extern int my_mkdir(const char *dir, int Flags, myf MyFlags);
+3 −1
Original line number Diff line number Diff line
@@ -58,7 +58,9 @@ handlerton heap_hton= {
  NULL,    /* Alter table flags */
  NULL,    /* Alter Tablespace */
  NULL,    /* Fill Files Table */
  HTON_CAN_RECREATE
  HTON_CAN_RECREATE,
  NULL,    /* binlog func */
  NULL     /* binlog query */ 
};

static handler *heap_create_handler(TABLE_SHARE *table)
Loading