Commit f6751dd8 authored by unknown's avatar unknown

Portability fix for windows


Docs/manual.texi:
  Changelog
parent 48d48eac
......@@ -46210,7 +46210,6 @@ not yet 100% confident in this code.
@menu
* 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.39:: Changes in release 3.23.39
* News-3.23.38:: Changes in release 3.23.38
......@@ -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
@appendixsubsec Changes in release 3.23.41
@itemize @bullet
@item Added option @code{--sql-mode=option[,option[,option]]}. Please see
@code{mysqld --help} for legal modes.
@item
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
InnoDB now supports < 4 GB rows. The former limit was 8000 bytes.
@item
......@@ -466,4 +466,8 @@ int main(int argc, char** argv)
the server
*/
#ifdef __WIN__
#include "log_event.cpp"
#else
#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