1
0
Fork 0

Removed debug output

This commit is contained in:
Michael Hackstein 2015-10-21 15:45:11 +02:00
parent 383912a221
commit 9fd375d684
1 changed files with 0 additions and 4 deletions

View File

@ -35,7 +35,6 @@
#include "VocBase/transaction.h"
#include "VocBase/VocShaper.h"
#include <iostream>
using namespace triagens::arango;
// -----------------------------------------------------------------------------
@ -472,11 +471,9 @@ int HashIndex::sizeHint (size_t size) {
int HashIndex::lookup (TRI_hash_index_search_value_t* searchValue,
std::vector<TRI_doc_mptr_t*>& documents) const {
std::cout << "really" << std::endl;
if (_unique) {
TRI_index_element_t* found = _uniqueArray->_hashArray->findByKey(searchValue);
std::cout << found << std::endl;
if (found != nullptr) {
// unique hash index: maximum number is 1
@ -492,7 +489,6 @@ int HashIndex::lookup (TRI_hash_index_search_value_t* searchValue,
catch (...) {
return TRI_ERROR_OUT_OF_MEMORY;
}
std::cout << results << std::endl;
if (results != nullptr) {
try {
for (size_t i = 0; i < results->size(); i++) {