aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/parser/pg_wrapper/pg_utils_wrappers.cpp
blob: 86556b221a35391418b62144fe36fa14911710e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <yql/essentials/parser/pg_wrapper/pg_compat.h>
#include <yql/essentials/parser/pg_wrapper/interface/utils.h>
extern "C" {
#include <utils/builtins.h>
}


namespace NYql {
    ui64 HexEncode(const char *src, size_t len, char *dst) {
        return ::hex_encode(src, len, dst);
    }
}