MCPcopy Create free account
hub / github.com/activeloopai/deeplake / get_qualified_table_name

Function get_qualified_table_name

cpp/deeplake_pg/table_am.cpp:170–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168}
169
170std::string get_qualified_table_name(Relation rel)
171{
172 Oid nspid = RelationGetNamespace(rel);
173 char* nspname = get_namespace_name(nspid);
174 std::string qualified_name = std::string(nspname ? nspname : "public") + "." + RelationGetRelationName(rel);
175 if (nspname) {
176 pfree(nspname);
177 }
178 return qualified_name;
179}
180
181bool deeplake_relation_needs_toast_table(Relation)
182{

Callers 2

multi_insertMethod · 0.70
relation_set_new_nodeMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected