Commit 12a5c351 authored by unknown's avatar unknown

Portability fix for windows


Docs/manual.texi:
  Changelog
parent 25c32ec9
...@@ -46210,7 +46210,6 @@ not yet 100% confident in this code. ...@@ -46210,7 +46210,6 @@ not yet 100% confident in this code.
@menu @menu
* News-3.23.41:: Changes in release 3.23.41 * News-3.23.41:: Changes in release 3.23.41
* News-3.23.41:: Changes in release 3.23.41
* News-3.23.40:: Changes in release 3.23.40 * News-3.23.40:: Changes in release 3.23.40
* News-3.23.39:: Changes in release 3.23.39 * News-3.23.39:: Changes in release 3.23.39
* News-3.23.38:: Changes in release 3.23.38 * News-3.23.38:: Changes in release 3.23.38
...@@ -46258,8 +46257,12 @@ not yet 100% confident in this code. ...@@ -46258,8 +46257,12 @@ not yet 100% confident in this code.
@node News-3.23.41, News-3.23.40, News-3.23.x, News-3.23.x @node News-3.23.41, News-3.23.40, News-3.23.x, News-3.23.x
@appendixsubsec Changes in release 3.23.41 @appendixsubsec Changes in release 3.23.41
@itemize @bullet @itemize @bullet
@item Added option @code{--sql-mode=option[,option[,option]]}. Please see @item
@code{mysqld --help} for legal modes. Added option @code{--sql-mode=option[,option[,option]]}.
@xref{Command-line options}.
@item
Fixed possible problem with @code{shutdown} on Solaris where the
@code{.pid} file wasn't deleted.
@item @item
InnoDB now supports < 4 GB rows. The former limit was 8000 bytes. InnoDB now supports < 4 GB rows. The former limit was 8000 bytes.
@item @item
...@@ -466,4 +466,8 @@ int main(int argc, char** argv) ...@@ -466,4 +466,8 @@ int main(int argc, char** argv)
the server the server
*/ */
#ifdef __WIN__
#include "log_event.cpp"
#else
#include "log_event.cc" #include "log_event.cc"
#endif
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