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
fb01193c
Commit
fb01193c
authored
Feb 22, 2019
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make windows compiler happy
parent
0372f98c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/handler.cc
sql/handler.cc
+2
-2
No files found.
sql/handler.cc
View file @
fb01193c
...
...
@@ -6523,7 +6523,7 @@ static int check_duplicate_long_entry_key(TABLE *table, handler *h, uchar *new_r
uint
arg_count
=
temp
->
argument_count
();
do
{
long
diff
=
table
->
check_unique_buf
-
new_rec
;
my_ptrdiff_t
diff
=
table
->
check_unique_buf
-
new_rec
;
is_same
=
true
;
for
(
uint
j
=
0
;
is_same
&&
j
<
arg_count
;
j
++
)
{
...
...
@@ -6612,7 +6612,7 @@ static int check_duplicate_long_entries_update(TABLE *table, handler *h, uchar *
Here we are comparing whether new record and old record are same
with respect to fields in hash_str
*/
long
reclength
=
table
->
record
[
1
]
-
table
->
record
[
0
]
;
uint
reclength
=
(
uint
)
(
table
->
record
[
1
]
-
table
->
record
[
0
])
;
if
(
!
table
->
update_handler
)
table
->
clone_handler_for_update
();
for
(
uint
i
=
0
;
i
<
table
->
s
->
keys
;
i
++
)
...
...
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