audiBookning opened a new issue #67:
URL: https://github.com/apache/incubator-age/issues/67
I encountered a strange situation when doing some experiments with AGE.
I used node-postgres (pg) to create a graph with
```sql
SELECT create_graph('my_graph_name');
```
if i repeat the same query, i will correctly get an error
```sh
ERROR: schema "my_graph_name" already exists
```
But if afterward i use psql to repeat the query, i get
```sh
NOTICE: graph "my_graph_name2" has been created
```
repeating it a 2ยบ time in psql (or in pg) with gives the correct error.
I would expect to get an error, the first time, when trying the query in
psql since i already created the graph in pg.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]