arrow_impl.cpp 205 B

12345678910
  1. #include "pg_compat.h"
  2. #include "arrow.h"
  3. namespace NYql {
  4. extern "C" TPgKernelState& GetPGKernelState(arrow::compute::KernelContext* ctx) {
  5. return dynamic_cast<TPgKernelState&>(*ctx->state());
  6. }
  7. }