mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge mashka.mysql.fi:/home/my/mysql-3.23
into mashka.mysql.fi:/home/my/mysql-4.0 Docs/manual.texi: Auto merged mysql-test/r/distinct.result: Auto merged sql/item_cmpfunc.cc: Auto merged sql/mysql_priv.h: Auto merged sql/sql_base.cc: Auto merged sql/sql_table.cc: Auto merged
This commit is contained in:
@@ -51081,6 +51081,10 @@ not yet 100% confident in this code.
|
|||||||
@appendixsubsec Changes in release 3.23.53
|
@appendixsubsec Changes in release 3.23.53
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
@item
|
@item
|
||||||
|
Changed @code{AND/OR} to report that they can return NULL. This fixes a
|
||||||
|
small problem in @code{GROUP BY} on @code{AND/OR} expression that return
|
||||||
|
@code{NULL}.
|
||||||
|
@item
|
||||||
Fixed a bug that @code{OPTIMIZE} of locked and modified MyISAM table,
|
Fixed a bug that @code{OPTIMIZE} of locked and modified MyISAM table,
|
||||||
reported table corruption.
|
reported table corruption.
|
||||||
@item
|
@item
|
||||||
|
@@ -524,6 +524,7 @@ bool rm_temporary_table(enum db_type base, char *path);
|
|||||||
bool send_fields(THD *thd,List<Item> &item,uint send_field_count);
|
bool send_fields(THD *thd,List<Item> &item,uint send_field_count);
|
||||||
void free_io_cache(TABLE *entry);
|
void free_io_cache(TABLE *entry);
|
||||||
void intern_close_table(TABLE *entry);
|
void intern_close_table(TABLE *entry);
|
||||||
|
bool close_thread_table(THD *thd, TABLE **table_ptr);
|
||||||
void close_thread_tables(THD *thd,bool locked=0);
|
void close_thread_tables(THD *thd,bool locked=0);
|
||||||
bool close_thread_table(THD *thd, TABLE **table_ptr);
|
bool close_thread_table(THD *thd, TABLE **table_ptr);
|
||||||
void close_temporary_tables(THD *thd);
|
void close_temporary_tables(THD *thd);
|
||||||
|
@@ -19,6 +19,9 @@
|
|||||||
|
|
||||||
#include "mysql_priv.h"
|
#include "mysql_priv.h"
|
||||||
#include <hash.h>
|
#include <hash.h>
|
||||||
|
#ifdef HAVE_BERKELEY_DB
|
||||||
|
#include <ha_berkeley.h>
|
||||||
|
#endif
|
||||||
#include <myisam.h>
|
#include <myisam.h>
|
||||||
#ifdef HAVE_BERKELEY_DB
|
#ifdef HAVE_BERKELEY_DB
|
||||||
#include <ha_berkeley.h>
|
#include <ha_berkeley.h>
|
||||||
|
Reference in New Issue
Block a user