1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#pragma once
#include <yql/essentials/public/udf/udf_value.h>
#include <util/generic/buffer.h>
#include <util/generic/strbuf.h>
#include <util/generic/vector.h>
namespace NKikimr {
namespace NMiniKQL {
class TPgType;
class TPagedBuffer;
namespace NDetails {
class TChunkedInputBuffer;
}
void PGPackImpl(bool stable, const TPgType* type, const NUdf::TUnboxedValuePod& value, TBuffer& buf);
void PGPackImpl(bool stable, const TPgType* type, const NUdf::TUnboxedValuePod& value, TPagedBuffer& buf);
NUdf::TUnboxedValue PGUnpackImpl(const TPgType* type, TStringBuf& buf);
NUdf::TUnboxedValue PGUnpackImpl(const TPgType* type, NDetails::TChunkedInputBuffer& buf);
void EncodePresortPGValue(TPgType* type, const NUdf::TUnboxedValue& value, TVector<ui8>& output);
NUdf::TUnboxedValue DecodePresortPGValue(TPgType* type, TStringBuf& input, TVector<ui8>& buffer);
ui64 PgValueSize(const NUdf::TUnboxedValuePod& value, i32 typeLen);
ui64 PgValueSize(ui32 pgTypeId, const NUdf::TUnboxedValuePod& value);
ui64 PgValueSize(const TPgType* type, const NUdf::TUnboxedValuePod& value);
} // namespace NMiniKQL
} // namespace NKikimr
|