Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 8c0dd12

Browse files
author
Ziqi Wang
committed
Adding printing
1 parent 9a966e8 commit 8c0dd12

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/index/testing_index_util.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ void TestingIndexUtil::UniqueKeyInsertTest(const IndexType index_type) {
118118
key0->SetValue(1, type::ValueFactory::GetVarcharValue("a"), pool);
119119

120120
index->ScanKey(key0.get(), location_ptrs);
121+
LOG_DEBUG("Checking key0's value: %lu", location_ptrs.size());
121122
EXPECT_EQ(1, location_ptrs.size());
122123
location_ptrs.clear();
123124

@@ -127,6 +128,7 @@ void TestingIndexUtil::UniqueKeyInsertTest(const IndexType index_type) {
127128
key1->SetValue(1, type::ValueFactory::GetVarcharValue("b"), pool);
128129

129130
index->ScanKey(key1.get(), location_ptrs);
131+
LOG_DEBUG("Checking key1's value: %lu", location_ptrs.size());
130132
EXPECT_EQ(1, location_ptrs.size());
131133
location_ptrs.clear();
132134

0 commit comments

Comments
 (0)