Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
huanchenz committed May 31, 2016
1 parent ad309ac commit c293a7d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/ee/indexes/BinaryTreeUniqueIndex.h
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ class BinaryTreeUniqueIndex : public TableIndex
m_begin(true),
m_eq(m_keySchema)
{
std::cout << "Binary Unique\n";
m_match = TableTuple(m_tupleSchema);
m_allocator = new AllocatorType(&m_memoryEstimate);
m_entries = new MapType(KeyComparator(m_keySchema), (*m_allocator));
Expand Down
1 change: 0 additions & 1 deletion src/ee/indexes/HybridUniqueIndex.h
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,6 @@ class BinaryTreeUniqueIndex : public TableIndex
m_begin(true),
m_eq(m_keySchema)
{
std::cout << "Hybrid Unique\n";
m_match = TableTuple(m_tupleSchema);
m_allocator = new AllocatorType(&m_memoryEstimate);
m_entries = new MapType(KeyComparator(m_keySchema), (*m_allocator));
Expand Down

0 comments on commit c293a7d

Please sign in to comment.