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
1ebec103
Commit
1ebec103
authored
Sep 11, 2018
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InnoDB: fix compilation with -DDBUG_OFF
parent
21d157ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
12 deletions
+2
-12
storage/innobase/row/row0ins.cc
storage/innobase/row/row0ins.cc
+2
-12
No files found.
storage/innobase/row/row0ins.cc
View file @
1ebec103
...
...
@@ -2448,10 +2448,8 @@ row_ins_index_entry_big_rec(
const
big_rec_t
*
big_rec
,
ulint
*
offsets
,
mem_heap_t
**
heap
,
#ifndef DBUG_OFF
const
void
*
thd
,
#endif
/* DBUG_OFF */
dict_index_t
*
index
)
dict_index_t
*
index
,
const
void
*
thd
__attribute__
((
unused
)))
{
mtr_t
mtr
;
btr_pcur_t
pcur
;
...
...
@@ -2492,14 +2490,6 @@ row_ins_index_entry_big_rec(
return
(
error
);
}
#ifdef DBUG_OFF
# define row_ins_index_entry_big_rec(e,big,ofs,heap,index,thd) \
row_ins_index_entry_big_rec(e,big,ofs,heap,index)
#else
/* DBUG_OFF */
# define row_ins_index_entry_big_rec(e,big,ofs,heap,index,thd) \
row_ins_index_entry_big_rec(e,big,ofs,heap,thd,index)
#endif
/* DBUG_OFF */
/***************************************************************//**
Tries to insert an entry into a clustered index, ignoring foreign key
constraints. If a record with the same unique key is found, the other
...
...
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