mingfang opened a new issue, #1691:
URL: https://github.com/apache/age/issues/1691
```sql
SELECT * FROM cypher('playground', $$
unwind ["foo", "foo"] as each
merge (v:TEST {name: each})
return v
$$) AS (v agtype)
```
returns
```json
[
{
"v": {
"id": 3659174697238531,
"label": "TEST",
"properties": {
"name": "foo"
}
}
},
{
"v": {
"id": 3659174697238532,
"label": "TEST",
"properties": {
"name": "foo"
}
}
}
]
```
creates two vertices when it should only create one. (confirmed with neo4j)
--
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]