diff --git a/tiledb/sm/array_schema/array_schema.cc b/tiledb/sm/array_schema/array_schema.cc index 9233abb161e..e1a3e67da2e 100644 --- a/tiledb/sm/array_schema/array_schema.cc +++ b/tiledb/sm/array_schema/array_schema.cc @@ -1906,10 +1906,12 @@ void expand_to_tiles_helper( if (dimptr->var_size()) { //std::cout << " HELPER DIMIDX " << dimidx << " SKIP VAR-SIZE\n"; + continue; } if (!dimptr->tile_extent()) { //std::cout << " HELPER DIMIDX " << dimidx << " SKIP NO EXTENT\n"; + continue; } switch (dimptr->type()) { diff --git a/tiledb/sm/query/query.cc b/tiledb/sm/query/query.cc index feb053103ea..78134688362 100644 --- a/tiledb/sm/query/query.cc +++ b/tiledb/sm/query/query.cc @@ -845,7 +845,7 @@ Status Query::process() { if (type_ == QueryType::READ) { auto cd = array_schema_->get_current_domain(); if (!cd->empty()) { - std::cout << "QUERY::PROCESS CHECKING CURDOM\n"; + //std::cout << "QUERY::PROCESS CHECKING CURDOM\n"; // See if any data was written outside of the current domain. bool all_ned_contained_in_current_domain = true; for (auto& meta : fragment_metadata_) { @@ -860,9 +860,9 @@ Status Query::process() { // Make sure all ranges are contained in the current domain. for (auto& range : subarray_.ranges_for_dim(d)) { // XXX TOUCH - std::cout << "QUERY::PROCESS D=" << d << "\n"; - std::cout << "QUERY::PROCESS S=" << range.start_as() << "\n"; - std::cout << "QUERY::PROCESS E=" << range.end_as() << "\n"; + //std::cout << "QUERY::PROCESS D=" << d << "\n"; + //std::cout << "QUERY::PROCESS S=" << range.start_as() << "\n"; + //std::cout << "QUERY::PROCESS E=" << range.end_as() << "\n"; if (!cd->includes(d, range)) { throw QueryException( "A range was set outside of the current domain.");