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

Method getSequenceEntries

src/catalog/catalog.cpp:249–256  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

247}
248
249std::vector<SequenceCatalogEntry*> Catalog::getSequenceEntries(
250 const Transaction* transaction) const {
251 std::vector<SequenceCatalogEntry*> result;
252 for (auto& [_, entry] : sequences->getEntries(transaction)) {
253 result.push_back(entry->ptrCast<SequenceCatalogEntry>());
254 }
255 return result;
256}
257
258sequence_id_t Catalog::createSequence(Transaction* transaction,
259 const BoundCreateSequenceInfo& info) {

Callers 3

printSchemaMethod · 0.80
bindFuncFunction · 0.80
getSchemaCypherFunction · 0.80

Calls 2

getEntriesMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected