I have two users A and B created in TG. User A creates a graph and a query like below
$gsql -u a
GSQL > create graph graph_a()
GSQL > create query q_a() for graph graph_a returns (int) {return 0;}
User B can’t drop graph_a, but it can drop query q_a created by user A.
$gsql -u b
GSQL > drop graph graph_a
Only superuser or user 'a', the creator of the graph graph_a, is
allowed to drop the graph.
The graph graph_a could not be found or dropped!
GSQL > drop query *
The query q_a is dropped.
All queries are dropped.
Is this a bug?