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

Function getColumnID

src/processor/map/map_set.cpp:22–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20namespace processor {
21
22static column_id_t getColumnID(const TableCatalogEntry& entry,
23 const PropertyExpression& propertyExpr) {
24 auto columnID = INVALID_COLUMN_ID;
25 if (propertyExpr.hasProperty(entry.getTableID())) {
26 columnID = entry.getColumnID(propertyExpr.getPropertyName());
27 }
28 return columnID;
29}
30
31static NodeTableSetInfo getNodeTableSetInfo(const TableCatalogEntry& entry, const Expression& expr,
32 StorageManager* storageManager) {

Callers 3

getNodeTableSetInfoFunction · 0.85
getRelTableSetInfoFunction · 0.85
getColumnIDMethod · 0.85

Calls 3

hasPropertyMethod · 0.80
getColumnIDMethod · 0.45
getPropertyNameMethod · 0.45

Tested by

no test coverage detected