Commit 4351bedb authored by marko's avatar marko

Merge changes from MySQL AB.

dict_col_copy_type_noninline(): Remove the return statement.
Some compilers do not allow return expressions of void type.

innobase_start_or_create_for_mysql(): Do not cap srv_max_threads to 1000
on Windows.

Makefile.am (EXTRA_DIST): Add plug.in
parent a3a43211
...@@ -91,7 +91,7 @@ EXTRA_DIST = include/btr0btr.h include/btr0btr.ic include/btr0cur.h include/btr ...@@ -91,7 +91,7 @@ EXTRA_DIST = include/btr0btr.h include/btr0btr.ic include/btr0cur.h include/btr
include/ut0sort.h include/ut0ut.h include/ut0ut.ic include/ut0vec.h include/ut0vec.ic include/ha_prototypes.h \ include/ut0sort.h include/ut0ut.h include/ut0ut.ic include/ut0vec.h include/ut0vec.ic include/ha_prototypes.h \
include/ut0list.h include/ut0list.ic \ include/ut0list.h include/ut0list.ic \
include/ut0wqueue.h \ include/ut0wqueue.h \
CMakeLists.txt CMakeLists.txt plug.in
noinst_LIBRARIES = libinnobase.a noinst_LIBRARIES = libinnobase.a
libinnobase_a_LIBADD = usr/libusr.a srv/libsrv.a dict/libdict.a \ libinnobase_a_LIBADD = usr/libusr.a srv/libsrv.a dict/libdict.a \
......
...@@ -334,7 +334,7 @@ dict_col_copy_type_noninline( ...@@ -334,7 +334,7 @@ dict_col_copy_type_noninline(
const dict_col_t* col, /* in: column */ const dict_col_t* col, /* in: column */
dtype_t* type) /* out: data type */ dtype_t* type) /* out: data type */
{ {
return(dict_col_copy_type(col, type)); dict_col_copy_type(col, type);
} }
/************************************************************************ /************************************************************************
......
...@@ -1163,7 +1163,7 @@ innobase_start_or_create_for_mysql(void) ...@@ -1163,7 +1163,7 @@ innobase_start_or_create_for_mysql(void)
maximum number of threads that can wait in the 'srv_conc array' for maximum number of threads that can wait in the 'srv_conc array' for
their time to enter InnoDB. */ their time to enter InnoDB. */
#if defined(__WIN__) || defined(__NETWARE__) #if defined(__NETWARE__)
/* Create less event semaphores because Win 98/ME had /* Create less event semaphores because Win 98/ME had
difficulty creating 40000 event semaphores. Comment from difficulty creating 40000 event semaphores. Comment from
......
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