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
9fb4cfb2
Commit
9fb4cfb2
authored
Sep 07, 2007
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
name change
git-svn-id:
file:///svn/tokudb@281
c7de825b-a66e-492c-adef-691d508d4ae1
parent
8b4d6cca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
newbrt/brt.c
newbrt/brt.c
+4
-4
No files found.
newbrt/brt.c
View file @
9fb4cfb2
...
...
@@ -822,7 +822,7 @@ static int brtnode_maybe_push_down(BRT t, BRTNODE node, int *did_split, BRTNODE
#define INSERT_ALL_AT_ONCE
static
int
brt_leaf_
insertm
(
BRT
t
,
BRTNODE
node
,
BRT_CMD
*
cmd
,
static
int
brt_leaf_
put_cmd
(
BRT
t
,
BRTNODE
node
,
BRT_CMD
*
cmd
,
int
*
did_split
,
BRTNODE
*
nodea
,
BRTNODE
*
nodeb
,
DBT
*
splitk
,
int
debug
)
{
if
(
cmd
->
type
==
BRT_INSERT
)
{
...
...
@@ -901,7 +901,7 @@ static unsigned int brtnode_which_child (BRTNODE node , DBT *k, BRT t, DB *db) {
}
static
int
brt_nonleaf_
insertm
(
BRT
t
,
BRTNODE
node
,
BRT_CMD
*
cmd
,
static
int
brt_nonleaf_
put_cmd
(
BRT
t
,
BRTNODE
node
,
BRT_CMD
*
cmd
,
int
*
did_split
,
BRTNODE
*
nodea
,
BRTNODE
*
nodeb
,
DBT
*
splitk
,
int
debug
)
{
...
...
@@ -1032,11 +1032,11 @@ static int brtnode_put_cmd (BRT t, BRTNODE node, BRT_CMD *cmd,
int
*
did_split
,
BRTNODE
*
nodea
,
BRTNODE
*
nodeb
,
DBT
*
splitk
,
int
debug
)
{
if
(
node
->
height
==
0
)
{
return
brt_leaf_
insertm
(
t
,
node
,
cmd
,
return
brt_leaf_
put_cmd
(
t
,
node
,
cmd
,
did_split
,
nodea
,
nodeb
,
splitk
,
debug
);
}
else
{
return
brt_nonleaf_
insertm
(
t
,
node
,
cmd
,
return
brt_nonleaf_
put_cmd
(
t
,
node
,
cmd
,
did_split
,
nodea
,
nodeb
,
splitk
,
debug
);
}
...
...
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