lbug 0.16.1

An in-process property graph database management system built for query speed and scalability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "common/case_insensitive_map.h"
#include "common/types/value/value.h"
namespace lbug {
namespace binder {

struct BoundQueryScanSourceInfo {
    common::case_insensitive_map_t<common::Value> options;

    explicit BoundQueryScanSourceInfo(common::case_insensitive_map_t<common::Value> options)
        : options{std::move(options)} {}
};

} // namespace binder
} // namespace lbug