blob: 45061285a8b6c0e64a7703f79e5426de25ffb57a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <library/cpp/yson/node/node.h>
#include <util/generic/string.h>
#include <util/generic/vector.h>
namespace NYql {
namespace NCommon {
TVector<TString> ExtractColumnOrderFromYsonStructType(const NYT::TNode& node);
bool EqualsYsonTypesIgnoreStructOrder(const NYT::TNode& left, const NYT::TNode& right);
} // namespace NCommon
} // namespace NYql
|