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
d000732a
Commit
d000732a
authored
Jan 21, 2014
by
John Esmet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes #151 Do not send commit messages for fractal tree update commands
parent
2e190e06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
ft/roll.cc
ft/roll.cc
+10
-2
No files found.
ft/roll.cc
View file @
d000732a
...
...
@@ -115,6 +115,10 @@ PATENT RIGHTS GRANT:
// for each FT_DELETE_ANY message sent earlier by the transaction?
#define TOKU_DO_COMMIT_CMD_DELETE 1
// When a transaction is committed, should we send a FT_COMMIT message
// for each FT_UPDATE message sent earlier by the transaction?
#define TOKU_DO_COMMIT_CMD_UPDATE 0
int
toku_commit_fdelete
(
FILENUM
filenum
,
TOKUTXN
txn
,
...
...
@@ -296,11 +300,15 @@ toku_rollback_cmdinsert (FILENUM filenum,
int
toku_commit_cmdupdate
(
FILENUM
filenum
,
BYTESTRING
key
,
BYTESTRING
UU
(
key
)
,
TOKUTXN
txn
,
LSN
oplsn
)
LSN
UU
(
oplsn
)
)
{
#if TOKU_DO_COMMIT_CMD_UPDATE
return
do_insertion
(
FT_COMMIT_ANY
,
filenum
,
key
,
0
,
txn
,
oplsn
,
false
);
#else
return
do_nothing_with_filenum
(
txn
,
filenum
);
#endif
}
int
...
...
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