You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@age.apache.org by GitBox <gi...@apache.org> on 2022/09/04 23:55:02 UTC

[GitHub] [age] Dzordzu opened a new issue, #257: EXPLAIN ANALYZE actually performing operation

Dzordzu opened a new issue, #257:
URL: https://github.com/apache/age/issues/257

   **Before**
   ```
   SELECT * from cypher('strawberry', $$ MATCH (V:Task) RETURN COUNT(V) $$)
   0
   ```
   
   **Request**
   ```
   SELECT * from cypher('strawberry', $$ EXPLAIN ANALYZE CREATE (V:Task {name: 'x', de2sert_id: 'y', status: 'z'}) $$) as (V agtype);
   ```
   
   **Output**
   ```
   QUERY PLAN
   --
   "Custom Scan (Cypher Create) (cost=0.00..0.00 rows=0 width=32) (actual time=0.622..0.649 rows=0 loops=1)"
   " -> Subquery Scan on cypher (cost=0.00..0.52 rows=1 width=32) (actual time=0.187..0.227 rows=1 loops=1)"
   " -> Result (cost=0.00..0.51 rows=1 width=128) (actual time=0.179..0.183 rows=1 loops=1)"
   "Planning Time: 0.110 ms"
   "Execution Time: 2.537 ms"
   ```
   
   **After**
   ```
   SELECT * from cypher('strawberry', $$ MATCH (V:Task) RETURN COUNT(V) $$)
   1
   ```
   
   **Expected**
   ```
   SELECT * from cypher('strawberry', $$ MATCH (V:Task) RETURN COUNT(V) $$)
   0
   ```


-- 
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: dev-unsubscribe@age.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] Dzordzu commented on issue #257: EXPLAIN ANALYZE actually performing operation

Posted by GitBox <gi...@apache.org>.
Dzordzu commented on issue #257:
URL: https://github.com/apache/age/issues/257#issuecomment-1236440370

   Ok. I'm just tired. It's working as expected


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] Dzordzu closed issue #257: EXPLAIN ANALYZE actually performing operation

Posted by GitBox <gi...@apache.org>.
Dzordzu closed issue #257: EXPLAIN ANALYZE actually performing operation
URL: https://github.com/apache/age/issues/257


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org