MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / createTableEntry

Method createTableEntry

src/catalog/catalog.cpp:548–560  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

546}
547
548CatalogEntry* Catalog::createTableEntry(Transaction* transaction,
549 const BoundCreateTableInfo& info) {
550 switch (info.type) {
551 case CatalogEntryType::NODE_TABLE_ENTRY: {
552 return createNodeTableEntry(transaction, info);
553 }
554 case CatalogEntryType::REL_GROUP_ENTRY: {
555 return createRelGroupEntry(transaction, info);
556 }
557 default:
558 UNREACHABLE_CODE;
559 }
560}
561
562CatalogEntry* Catalog::createNodeTableEntry(Transaction* transaction,
563 const BoundCreateTableInfo& info) {

Callers 3

executeInternalMethod · 0.80
createGraphMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected