break;
}
pge = (Form_pg_propgraph_element) GETSTRUCT(tup);
- appendStringInfo(&buffer, "%s of ", quote_identifier(NameStr(pge->pgealias)));
+ appendStringInfo(&buffer, "%s of property graph ", quote_identifier(NameStr(pge->pgealias)));
getRelationIdentity(&buffer, pge->pgepgid, objname, false);
if (objname)
}
pgl = (Form_pg_propgraph_label) GETSTRUCT(tup);
- appendStringInfo(&buffer, "%s of ", quote_identifier(NameStr(pgl->pgllabel)));
+ appendStringInfo(&buffer, "%s of property graph ", quote_identifier(NameStr(pgl->pgllabel)));
getRelationIdentity(&buffer, pgl->pglpgid, objname, false);
if (objname)
*objname = lappend(*objname, pstrdup(NameStr(pgl->pgllabel)));
}
pgp = (Form_pg_propgraph_property) GETSTRUCT(tup);
- appendStringInfo(&buffer, "%s of ", quote_identifier(NameStr(pgp->pgpname)));
+ appendStringInfo(&buffer, "%s of property graph ", quote_identifier(NameStr(pgp->pgpname)));
getRelationIdentity(&buffer, pgp->pgppgid, objname, false);
if (objname)
*objname = lappend(*objname, pstrdup(NameStr(pgp->pgpname)));
pgelform = (Form_pg_propgraph_element_label) GETSTRUCT(tup);
labelname = get_propgraph_label_name(pgelform->pgellabelid);
- appendStringInfo(&buffer, "%s of ", quote_identifier(labelname));
+ appendStringInfo(&buffer, "%s of element ", quote_identifier(labelname));
ObjectAddressSet(oa, PropgraphElementRelationId, pgelform->pgelelid);
appendStringInfoString(&buffer, getObjectIdentityParts(&oa, objname,
objargs, false));
plpform = (Form_pg_propgraph_label_property) GETSTRUCT(tup);
propname = get_propgraph_property_name(plpform->plppropid);
- appendStringInfo(&buffer, "%s of ", quote_identifier(propname));
+ appendStringInfo(&buffer, "%s of label ", quote_identifier(propname));
ObjectAddressSet(oa, PropgraphElementLabelRelationId, plpform->plpellabelid);
appendStringInfoString(&buffer, getObjectIdentityParts(&oa, objname,
objargs, false));
SELECT (pg_identify_object(classid, objid, objsubid)).*
FROM (SELECT DISTINCT classid, objid, objsubid FROM deps_tree)
ORDER BY 1, 2, 3, 4;
- type | schema | name | identity
--------------------------------+--------+------+-------------------------------------------------
- property graph element | | | e of create_property_graph_tests.gt
- property graph element | | | v1 of create_property_graph_tests.gt
- property graph element | | | v2 of create_property_graph_tests.gt
- property graph element label | | | e of e of create_property_graph_tests.gt
- property graph element label | | | v1 of v1 of create_property_graph_tests.gt
- property graph element label | | | v2 of v2 of create_property_graph_tests.gt
- property graph label | | | e of create_property_graph_tests.gt
- property graph label | | | v1 of create_property_graph_tests.gt
- property graph label | | | v2 of create_property_graph_tests.gt
- property graph label property | | | a of v1 of v1 of create_property_graph_tests.gt
- property graph label property | | | b of v1 of v1 of create_property_graph_tests.gt
- property graph label property | | | c of e of e of create_property_graph_tests.gt
- property graph label property | | | k1 of e of e of create_property_graph_tests.gt
- property graph label property | | | k2 of e of e of create_property_graph_tests.gt
- property graph label property | | | m of v2 of v2 of create_property_graph_tests.gt
- property graph label property | | | n of v2 of v2 of create_property_graph_tests.gt
- property graph property | | | a of create_property_graph_tests.gt
- property graph property | | | b of create_property_graph_tests.gt
- property graph property | | | c of create_property_graph_tests.gt
- property graph property | | | k1 of create_property_graph_tests.gt
- property graph property | | | k2 of create_property_graph_tests.gt
- property graph property | | | m of create_property_graph_tests.gt
- property graph property | | | n of create_property_graph_tests.gt
+ type | schema | name | identity
+-------------------------------+--------+------+------------------------------------------------------------------------------
+ property graph element | | | e of property graph create_property_graph_tests.gt
+ property graph element | | | v1 of property graph create_property_graph_tests.gt
+ property graph element | | | v2 of property graph create_property_graph_tests.gt
+ property graph element label | | | e of element e of property graph create_property_graph_tests.gt
+ property graph element label | | | v1 of element v1 of property graph create_property_graph_tests.gt
+ property graph element label | | | v2 of element v2 of property graph create_property_graph_tests.gt
+ property graph label | | | e of property graph create_property_graph_tests.gt
+ property graph label | | | v1 of property graph create_property_graph_tests.gt
+ property graph label | | | v2 of property graph create_property_graph_tests.gt
+ property graph label property | | | a of label v1 of element v1 of property graph create_property_graph_tests.gt
+ property graph label property | | | b of label v1 of element v1 of property graph create_property_graph_tests.gt
+ property graph label property | | | c of label e of element e of property graph create_property_graph_tests.gt
+ property graph label property | | | k1 of label e of element e of property graph create_property_graph_tests.gt
+ property graph label property | | | k2 of label e of element e of property graph create_property_graph_tests.gt
+ property graph label property | | | m of label v2 of element v2 of property graph create_property_graph_tests.gt
+ property graph label property | | | n of label v2 of element v2 of property graph create_property_graph_tests.gt
+ property graph property | | | a of property graph create_property_graph_tests.gt
+ property graph property | | | b of property graph create_property_graph_tests.gt
+ property graph property | | | c of property graph create_property_graph_tests.gt
+ property graph property | | | k1 of property graph create_property_graph_tests.gt
+ property graph property | | | k2 of property graph create_property_graph_tests.gt
+ property graph property | | | m of property graph create_property_graph_tests.gt
+ property graph property | | | n of property graph create_property_graph_tests.gt
(23 rows)
\a\t