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
360af9e3
Commit
360af9e3
authored
Aug 13, 2007
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oops, delete some debug printf's
git-svn-id:
file:///svn/tokudb@110
c7de825b-a66e-492c-adef-691d508d4ae1
parent
fb2ac874
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
newbrt/benchmark-test.c
newbrt/benchmark-test.c
+0
-2
No files found.
newbrt/benchmark-test.c
View file @
360af9e3
...
...
@@ -47,7 +47,6 @@ void insert (long long v) {
void
serial_insert_from
(
long
long
from
)
{
long
long
i
;
printf
(
"insert from %lld
\n
"
,
from
*
SERIAL_SPACING
);
for
(
i
=
0
;
i
<
ITEMS_TO_INSERT_PER_ITERATION
;
i
++
)
{
insert
((
from
+
i
)
*
SERIAL_SPACING
);
}
...
...
@@ -59,7 +58,6 @@ long long llrandom (void) {
void
random_insert_below
(
long
long
below
)
{
long
long
i
;
printf
(
"ramdom insert below %lld
\n
"
,
below
);
for
(
i
=
0
;
i
<
ITEMS_TO_INSERT_PER_ITERATION
;
i
++
)
{
insert
(
llrandom
()
%
below
);
}
...
...
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