lbug 0.15.4

An in-process property graph database management system built for query speed and scalability
Documentation
#include "storage/table/columnar_node_table_base.h"

#include "common/data_chunk/sel_vector.h"
#include "common/exception/runtime.h"
#include "main/client_context.h"
#include "transaction/transaction.h"

using namespace lbug::common;
using namespace lbug::transaction;

namespace lbug {
namespace storage {

common::row_idx_t ColumnarNodeTableBase::getNumTotalRows(const Transaction* transaction) {
    return getTotalRowCount(transaction);
}

} // namespace storage
} // namespace lbug