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
8ad79ab0
Commit
8ad79ab0
authored
May 31, 2001
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed typo from last checkin
parent
be188b11
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
Docs/manual.texi
Docs/manual.texi
+9
-4
sql/handler.cc
sql/handler.cc
+1
-1
No files found.
Docs/manual.texi
View file @
8ad79ab0
...
@@ -18861,10 +18861,10 @@ When you insert a value of @code{NULL} (recommended) or @code{0} into an
...
@@ -18861,10 +18861,10 @@ When you insert a value of @code{NULL} (recommended) or @code{0} into an
If you delete the row containing the maximum value for an
If you delete the row containing the maximum value for an
@code{AUTO_INCREMENT} column, the value will be reused with an
@code{AUTO_INCREMENT} column, the value will be reused with an
@code{ISAM}, @code{GEMINI}
, @code{BDB} or @code{INNO
DB} table but not with a
@code{ISAM}, @code{GEMINI}
or @code{B
DB} table but not with a
@code{MyISAM}
table. If you delete all rows in the table with
@code{MyISAM}
or @code{InnoDB} table. If you delete all rows in the table
@code{DELETE FROM table_name} (without a @code{WHERE}) in
with
@code{DELETE FROM table_name} (without a @code{WHERE}) in
@code{AUTOCOMMIT} mode, the sequence starts over for
both
table types.
@code{AUTOCOMMIT} mode, the sequence starts over for
all
table types.
@strong{NOTE:} There can be only one @code{AUTO_INCREMENT} column per
@strong{NOTE:} There can be only one @code{AUTO_INCREMENT} column per
table, and it must be indexed. @strong{MySQL} Version 3.23 will also only
table, and it must be indexed. @strong{MySQL} Version 3.23 will also only
...
@@ -45510,6 +45510,8 @@ Added @code{ORDER BY} syntax to @code{UPDATE} and @code{DELETE}.
...
@@ -45510,6 +45510,8 @@ Added @code{ORDER BY} syntax to @code{UPDATE} and @code{DELETE}.
@item
@item
Optimized queries of type:
Optimized queries of type:
@code{SELECT DISTINCT * from table_name ORDER by key_part1 LIMIT #}
@code{SELECT DISTINCT * from table_name ORDER by key_part1 LIMIT #}
@item
Added support for sym-linking of MyISAM tables.
@end itemize
@end itemize
@node News-3.23.x, News-3.22.x, News-4.0.x, News
@node News-3.23.x, News-3.22.x, News-4.0.x, News
...
@@ -45603,6 +45605,9 @@ not yet 100% confident in this code.
...
@@ -45603,6 +45605,9 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.39
@appendixsubsec Changes in release 3.23.39
@itemize @bullet
@itemize @bullet
@item
@item
We are now using the @code{-lcma} thread library on HPUX 10.20 to
get @strong{MySQL} more stabile on HPUX.
@item
Fixed problem with @code{IF()} and number of decimals in the result.
Fixed problem with @code{IF()} and number of decimals in the result.
@item
@item
Fixed that date-part extract functions works with dates where day
Fixed that date-part extract functions works with dates where day
sql/handler.cc
View file @
8ad79ab0
...
@@ -779,8 +779,8 @@ int ha_recovery_logging(THD *thd, bool on)
...
@@ -779,8 +779,8 @@ int ha_recovery_logging(THD *thd, bool on)
{
{
#ifdef HAVE_GEMINI_DB
#ifdef HAVE_GEMINI_DB
error
=
gemini_recovery_logging
(
thd
,
on
);
error
=
gemini_recovery_logging
(
thd
,
on
);
}
#endif
#endif
}
#endif
#endif
DBUG_RETURN
(
error
);
DBUG_RETURN
(
error
);
}
}
...
...
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