Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d11512cc
Commit
d11512cc
authored
Sep 03, 2002
by
monty@mashka.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge mashka.mysql.fi:/home/my/mysql-3.23
into mashka.mysql.fi:/home/my/mysql-4.0
parents
93e033fa
fee5128d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
Docs/manual.texi
Docs/manual.texi
+4
-0
sql/mysql_priv.h
sql/mysql_priv.h
+1
-0
sql/sql_table.cc
sql/sql_table.cc
+3
-0
No files found.
Docs/manual.texi
View file @
d11512cc
...
@@ -51081,6 +51081,10 @@ not yet 100% confident in this code.
...
@@ -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
sql/mysql_priv.h
View file @
d11512cc
...
@@ -524,6 +524,7 @@ bool rm_temporary_table(enum db_type base, char *path);
...
@@ -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
);
...
...
sql/sql_table.cc
View file @
d11512cc
...
@@ -19,6 +19,9 @@
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment