lbug 0.17.0

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 AggregatePercentileDiscFunction {
    static constexpr const char* name = "PERCENTILEDISC";
    static constexpr const char* prettyName = "percentileDisc";

    static function_set getFunctionSet();
};

} // namespace function
} // namespace lbug