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

Function getTableIDs

src/optimizer/acc_hash_join_optimizer.cpp:28–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26}
27
28static table_id_vector_t getTableIDs(const std::vector<catalog::TableCatalogEntry*>& entries) {
29 table_id_vector_t result;
30 for (auto& entry : entries) {
31 result.push_back(entry->getTableID());
32 }
33 return result;
34}
35
36static std::vector<table_id_t> getTableIDs(const LogicalOperator* op,
37 SemiMaskTargetType targetType) {

Callers 2

haveSameTableIDsFunction · 0.85
appendSemiMaskerFunction · 0.85

Calls 4

push_backMethod · 0.45
getTableIDsMethod · 0.45
getBindDataMethod · 0.45
getEntriesMethod · 0.45

Tested by

no test coverage detected