aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/parser/pg_wrapper/arrow_impl.cpp
blob: 987880af55e0ca763b13301b6bfa8bae9f609cdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "pg_compat.h"
#include "arrow.h"

namespace NYql {

extern "C" TPgKernelState& GetPGKernelState(arrow::compute::KernelContext* ctx) {
    return dynamic_cast<TPgKernelState&>(*ctx->state());
}

}