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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]