yangxk1 commented on issue #733:
URL: 
https://github.com/apache/incubator-graphar/issues/733#issuecomment-3219171500

   For additional context, this issue may not be related to `multi-iter`. Even 
when running just the following code snippet, the problem still occurs.
   
   ```
     SECTION("EdgeIterator") {
       std::string src_type = "person", edge_type = "knows", dst_type = 
"person";
       auto expect =
           EdgesCollection::Make(graph_info, src_type, edge_type, dst_type,
                                 AdjListType::ordered_by_source);
       REQUIRE(!expect.has_error());
       auto edges = expect.value();
       auto begin3 = edges->begin();
       auto end = edges->end();
       size_t j = 0;
       for (auto it = begin3; it != end; ++it, j++) {
         if (j < 4000) {
           continue;
         }
         if (j >= 6000) {
           break;
         }
         REQUIRE(it.source() >= 0);
         REQUIRE(it.destination() >= 0);
         REQUIRE(it.property<std::string>("creationDate").has_value());
       }
   ```
   The PR  #736 has successfully fixed the issue.
   cc. @gary-cloud 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to