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