Skip to content

Commit 9a59ee8

Browse files
Merge 2a66112 into 9c7d88b
2 parents 9c7d88b + 2a66112 commit 9a59ee8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+551
-765
lines changed

ydb/core/formats/arrow/arrow_helpers.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "common/validation.h"
55
#include "merging_sorted_input_stream.h"
66
#include "permutations.h"
7-
#include "serializer/batch_only.h"
7+
#include "serializer/native.h"
88
#include "serializer/abstract.h"
99
#include "serializer/stream.h"
1010
#include "simple_arrays_cache.h"
@@ -106,7 +106,7 @@ std::shared_ptr<arrow::Schema> DeserializeSchema(const TString& str) {
106106
}
107107

108108
TString SerializeBatch(const std::shared_ptr<arrow::RecordBatch>& batch, const arrow::ipc::IpcWriteOptions& options) {
109-
return NSerialization::TBatchPayloadSerializer(options).Serialize(batch);
109+
return NSerialization::TNativeSerializer(options).SerializePayload(batch);
110110
}
111111

112112
TString SerializeBatchNoCompression(const std::shared_ptr<arrow::RecordBatch>& batch) {
@@ -117,7 +117,7 @@ TString SerializeBatchNoCompression(const std::shared_ptr<arrow::RecordBatch>& b
117117

118118
std::shared_ptr<arrow::RecordBatch> DeserializeBatch(const TString& blob, const std::shared_ptr<arrow::Schema>& schema)
119119
{
120-
auto result = NSerialization::TBatchPayloadDeserializer(schema).Deserialize(blob);
120+
auto result = NSerialization::TNativeSerializer().Deserialize(blob, schema);
121121
if (result.ok()) {
122122
return *result;
123123
} else {

ydb/core/formats/arrow/compression/CMakeLists.darwin-arm64.txt

-23
This file was deleted.

ydb/core/formats/arrow/compression/CMakeLists.darwin-x86_64.txt

-23
This file was deleted.

ydb/core/formats/arrow/compression/CMakeLists.linux-aarch64.txt

-24
This file was deleted.

ydb/core/formats/arrow/compression/CMakeLists.linux-x86_64.txt

-24
This file was deleted.

ydb/core/formats/arrow/compression/CMakeLists.txt

-19
This file was deleted.

ydb/core/formats/arrow/compression/CMakeLists.windows-x86_64.txt

-23
This file was deleted.

ydb/core/formats/arrow/compression/diff.cpp

-77
This file was deleted.

ydb/core/formats/arrow/compression/diff.h

-34
This file was deleted.

ydb/core/formats/arrow/compression/object.cpp

-70
This file was deleted.

ydb/core/formats/arrow/compression/object.h

-39
This file was deleted.

0 commit comments

Comments
 (0)