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
01d6d4ae
Commit
01d6d4ae
authored
Jan 17, 2002
by
Sinisa@sinisa.nasamreza.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
normal maintenance. Nothing for Arjen ...
parent
ac6e1d95
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Docs/manual.texi
Docs/manual.texi
+2
-0
sql/sql_update.cc
sql/sql_update.cc
+1
-1
No files found.
Docs/manual.texi
View file @
01d6d4ae
...
@@ -48162,6 +48162,8 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
...
@@ -48162,6 +48162,8 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet
@itemize @bullet
@item
@item
Made same changes in multi table updates as in multi table delete
@item
Fixed bug in multi table delete.
Fixed bug in multi table delete.
@item
@item
Fixed bug in @code{SELECT CONCAT(argument-list) ... GROUP BY 1}.
Fixed bug in @code{SELECT CONCAT(argument-list) ... GROUP BY 1}.
sql/sql_update.cc
View file @
01d6d4ae
...
@@ -360,7 +360,7 @@ multi_update::multi_update(THD *thd_arg, TABLE_LIST *ut, List<Item> &fs,
...
@@ -360,7 +360,7 @@ multi_update::multi_update(THD *thd_arg, TABLE_LIST *ut, List<Item> &fs,
for
(
TABLE_LIST
*
dt
=
ut
;
dt
;
dt
=
dt
->
next
,
counter
++
)
for
(
TABLE_LIST
*
dt
=
ut
;
dt
;
dt
=
dt
->
next
,
counter
++
)
{
{
TABLE
*
table
=
ut
->
table
;
TABLE
*
table
=
ut
->
table
;
(
void
)
ut
->
table
->
file
->
extra
(
HA_EXTRA_NO_KEYREAD
);
//
(void) ut->table->file->extra(HA_EXTRA_NO_KEYREAD);
dt
->
table
->
used_keys
=
0
;
dt
->
table
->
used_keys
=
0
;
if
(
table
->
timestamp_field
)
if
(
table
->
timestamp_field
)
{
{
...
...
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