JackyYangPassion commented on issue #2515:
URL: 
https://github.com/apache/incubator-hugegraph/issues/2515#issuecomment-2048883381

   You can turn on the Debug log or single-step debugging to see if there are 
any bugs in the query path.
   
   
   g.E().Count() Query path in source code:
   HugeGraphStep:edgesCount()
   -----> StandardHugeGraph:queryNumber()
   ---->InMemoryDBStore:queryNumber()
   
   ```
       public Number queryNumber(Query query) {
           InMemoryDBTable table = this.table(InMemoryDBTable.tableType(query));
           Number result = table.queryNumber(null, query);
           LOG.debug("[store {}] get result({}) for number query: {}",
                     this.store, result, query);
           return result;
       }
   ```
   


-- 
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