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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
64ff9e4d
Commit
64ff9e4d
authored
May 30, 2007
by
gshchepa/uchum@gleb.loc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_update.cc:
Fixed bug #28716: additional patch to eliminate compilation error under Windows.
parent
0362400f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
sql/sql_update.cc
sql/sql_update.cc
+3
-2
No files found.
sql/sql_update.cc
View file @
64ff9e4d
...
...
@@ -1529,8 +1529,9 @@ int multi_update::do_updates(bool from_send_error)
uint
field_num
=
0
;
do
{
if
((
local_error
=
tbl
->
file
->
rnd_pos
(
tbl
->
record
[
0
],
tmp_table
->
field
[
field_num
]
->
ptr
)))
if
((
local_error
=
tbl
->
file
->
rnd_pos
(
tbl
->
record
[
0
],
(
byte
*
)
tmp_table
->
field
[
field_num
]
->
ptr
)))
goto
err
;
field_num
++
;
}
while
((
tbl
=
check_opt_it
++
));
...
...
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