helpers.h 398 B

123456789101112131415161718
  1. #pragma once
  2. #include <library/cpp/yson/node/node.h>
  3. #include <util/generic/string.h>
  4. #include <util/generic/vector.h>
  5. #include <util/stream/str.h>
  6. namespace NYql {
  7. namespace NPureCalc {
  8. namespace NPrivate {
  9. NYT::TNode GetSchema(
  10. const TVector<TString>& fields,
  11. const TVector<TString>& optionalFields = {}
  12. );
  13. }
  14. }
  15. }