lbug 0.19.1

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

#include "function/aggregate_function.h"

namespace lbug {
namespace function {

struct AggregateHistogramFunction {
    static constexpr const char* name = "HISTOGRAM";
    static constexpr const char* prettyName = "histogram";

    static function_set getFunctionSet();
};

} // namespace function
} // namespace lbug