yql_pg_provider.h 293 B

12345678910111213141516
  1. #pragma once
  2. #include <yql/essentials/core/yql_data_provider.h>
  3. namespace NYql {
  4. struct TPgState : public TThrRefBase
  5. {
  6. using TPtr = TIntrusivePtr<TPgState>;
  7. TTypeAnnotationContext* Types = nullptr;
  8. };
  9. TDataProviderInitializer GetPgDataProviderInitializer();
  10. } // namespace NYql