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
af54f9ee
Commit
af54f9ee
authored
Mar 12, 2008
by
Yoni Fogel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed warnings
git-svn-id:
file:///svn/tokudb@2767
c7de825b-a66e-492c-adef-691d508d4ae1
parent
f6dc8e6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
newbrt/pma-test.c
newbrt/pma-test.c
+16
-16
No files found.
newbrt/pma-test.c
View file @
af54f9ee
...
...
@@ -645,7 +645,7 @@ static void assert_cursor_val(PMA_CURSOR cursor, int v) {
static
void
test_pma_cursor_4
(
void
)
{
int
r
;
PMA
pma
;
PMA_CURSOR
cursora
,
cursorb
,
cursorc
;
PMA_CURSOR
cursora
=
0
,
cursorb
=
0
,
cursorc
=
0
;
int
i
;
u_int32_t
rand4fingerprint
=
random
();
...
...
@@ -735,7 +735,7 @@ static void test_pma_cursor_delete(int n) {
}
/* point the cursor to the first kv */
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -961,7 +961,7 @@ static void test_pma_dup_split_n(int n, int dup_mode) {
/* walk the pma's and verify the sort order with the input kv pairs */
DBT
key
;
memset
(
&
key
,
0
,
sizeof
key
);
key
.
flags
=
DB_DBT_REALLOC
;
DBT
val
;
memset
(
&
val
,
0
,
sizeof
val
);
val
.
flags
=
DB_DBT_REALLOC
;
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
i
=
0
;
r
=
toku_pma_cursor
(
pmaa
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -1428,7 +1428,7 @@ static void test_pma_delete_cursor(int n) {
do_insert
(
pma
,
k
,
strlen
(
k
)
+
1
,
&
v
,
sizeof
v
,
rand4fingerprint
,
&
sum
,
&
expect_fingerprint
);
}
PMA_CURSOR
pmacursor
;
PMA_CURSOR
pmacursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
pmacursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -1481,7 +1481,7 @@ static void test_pma_delete_insert() {
r
=
toku_pma_create
(
&
pma
,
toku_default_compare_fun
,
null_db
,
null_filenum
,
0
);
assert
(
r
==
0
);
PMA_CURSOR
pmacursor
;
PMA_CURSOR
pmacursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
pmacursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -1534,7 +1534,7 @@ static void test_pma_double_delete() {
r
=
toku_pma_create
(
&
pma
,
toku_default_compare_fun
,
null_db
,
null_filenum
,
0
);
assert
(
r
==
0
);
PMA_CURSOR
pmacursor
;
PMA_CURSOR
pmacursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
pmacursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -1591,7 +1591,7 @@ static void test_pma_cursor_first_delete_last() {
}
assert
(
toku_pma_n_entries
(
pma
)
==
2
);
PMA_CURSOR
pmacursor
;
PMA_CURSOR
pmacursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
pmacursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -1639,7 +1639,7 @@ static void test_pma_cursor_last_delete_first() {
}
assert
(
toku_pma_n_entries
(
pma
)
==
2
);
PMA_CURSOR
pmacursor
;
PMA_CURSOR
pmacursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
pmacursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -1793,7 +1793,7 @@ static void test_pma_cursor_first(int n) {
PMA
pma
;
r
=
toku_pma_create
(
&
pma
,
toku_default_compare_fun
,
null_db
,
null_filenum
,
0
);
assert
(
r
==
0
);
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
DBT
key
,
val
;
...
...
@@ -1842,7 +1842,7 @@ static void test_pma_cursor_set_key() {
do_insert
(
pma
,
&
k
,
sizeof
k
,
&
v
,
sizeof
v
,
rand4fingerprint
,
&
sum
,
&
expect_fingerprint
);
}
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -1899,7 +1899,7 @@ static void test_pma_cursor_set_range() {
do_insert
(
pma
,
&
k
,
sizeof
k
,
&
v
,
sizeof
v
,
rand4fingerprint
,
&
sum
,
&
expect_fingerprint
);
}
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -1947,7 +1947,7 @@ static void test_pma_cursor_delete_under() {
r
=
toku_pma_create
(
&
pma
,
toku_default_compare_fun
,
null_db
,
null_filenum
,
n
*
(
8
+
sizeof
(
int
)
+
sizeof
(
int
)));
assert
(
r
==
0
);
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
u_int32_t
kvsize
;
...
...
@@ -2022,7 +2022,7 @@ static void test_pma_cursor_delete_under_mode(int n, int dup_mode) {
r
=
toku_pma_set_dup_mode
(
pma
,
dup_mode
);
assert
(
r
==
0
);
r
=
toku_pma_set_dup_compare
(
pma
,
toku_default_compare_fun
);
assert
(
r
==
0
);
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
u_int32_t
kvsize
;
...
...
@@ -2103,7 +2103,7 @@ static void test_pma_cursor_set_both() {
assert
(
r
==
0
);
r
=
toku_pma_set_dup_compare
(
pma
,
toku_default_compare_fun
);
assert
(
r
==
0
);
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -2256,7 +2256,7 @@ static void test_dup_key_delete(int n, int mode) {
toku_pma_verify_fingerprint
(
pma
,
rand4fingerprint
,
sum
);
/* cursor walk should find keys 1, 3 */
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
@@ -2349,7 +2349,7 @@ static void test_dupsort_key_insert(int n, int dup_data) {
}
/* cursor walk from key k should find values 0, 1, .. n-1 */
PMA_CURSOR
cursor
;
PMA_CURSOR
cursor
=
0
;
r
=
toku_pma_cursor
(
pma
,
&
cursor
,
&
skey
,
&
sval
);
assert
(
r
==
0
);
...
...
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