Skip to content

Commit a5915f7

Browse files
zverevgenyGrigoriyPAivanmorozov333
authored andcommitted
fix addressing sparsed data (ydb-platform#9399)
Co-authored-by: Pisarenko Grigoriy <79596613+GrigoriyPA@users.noreply.github.com> Co-authored-by: ivanmorozov333 <ivanmorozov@ydb.tech>
1 parent f1fc414 commit a5915f7

File tree

217 files changed

+2554
-1884
lines changed

Some content is hidden

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

217 files changed

+2554
-1884
lines changed

.github/config/muted_ya.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ ydb/core/kqp/ut/service KqpQueryService.QueryOnClosedSession
2929
ydb/core/kqp/ut/service KqpService.CloseSessionsWithLoad
3030
ydb/core/kqp/ut/service [38/50]*
3131
ydb/core/kqp/ut/service KqpQueryService.TableSink_OltpUpdate
32+
ydb/core/kqp/ut/service KqpQueryService.TableSink_OltpReplace+HasSecondaryIndex
3233
ydb/core/persqueue/ut [37/40] chunk chunk
3334
ydb/core/persqueue/ut [38/40] chunk chunk
3435
ydb/core/persqueue/ut TPQTest.*DirectRead*

ydb/core/formats/arrow/accessor/abstract/constructor.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#pragma once
2-
#include "accessor.h"
3-
4-
#include <ydb/core/formats/arrow/accessor/common/chunk_data.h>
5-
#include <ydb/core/formats/arrow/protos/accessor.pb.h>
62

3+
#include <ydb/library/formats/arrow/protos/accessor.pb.h>
4+
#include <ydb/library/formats/arrow/accessor/abstract/accessor.h>
5+
#include <ydb/library/formats/arrow/accessor/common/chunk_data.h>
76
#include <ydb/services/bg_tasks/abstract/interface.h>
87

98
#include <library/cpp/object_factory/object_factory.h>

ydb/core/formats/arrow/accessor/abstract/request.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#pragma once
22
#include "constructor.h"
33

4-
#include <ydb/core/formats/arrow/protos/accessor.pb.h>
5-
4+
#include <ydb/library/formats/arrow/protos/accessor.pb.h>
65
#include <ydb/services/bg_tasks/abstract/interface.h>
76
#include <ydb/services/metadata/abstract/request_features.h>
87

ydb/core/formats/arrow/accessor/abstract/ya.make

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
LIBRARY()
22

33
PEERDIR(
4-
ydb/core/formats/arrow/protos
5-
ydb/core/formats/arrow/accessor/common
64
contrib/libs/apache/arrow
75
ydb/library/conclusion
86
ydb/services/metadata/abstract
7+
ydb/library/formats/arrow/accessor/abstract
8+
ydb/library/formats/arrow/accessor/common
9+
ydb/library/formats/arrow/protos
910
)
1011

1112
SRCS(
12-
accessor.cpp
1313
constructor.cpp
1414
request.cpp
1515
)

ydb/core/formats/arrow/accessor/composite_serial/accessor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
2-
#include <ydb/core/formats/arrow/accessor/abstract/accessor.h>
32
#include <ydb/core/formats/arrow/save_load/loader.h>
3+
#include <ydb/library/formats/arrow/accessor/abstract/accessor.h>
44

55
namespace NKikimr::NArrow::NAccessor {
66

ydb/core/formats/arrow/accessor/composite_serial/ya.make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ LIBRARY()
22

33
PEERDIR(
44
contrib/libs/apache/arrow
5+
ydb/library/formats/arrow/accessor/abstract
56
ydb/core/formats/arrow/common
67
ydb/core/formats/arrow/save_load
78
)

ydb/core/formats/arrow/accessor/plain/accessor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
2-
#include <ydb/core/formats/arrow/accessor/abstract/accessor.h>
3-
#include <ydb/core/formats/arrow/validation/validation.h>
2+
#include <ydb/library/formats/arrow/accessor/abstract/accessor.h>
3+
#include <ydb/library/formats/arrow/validation/validation.h>
44

55
namespace NKikimr::NArrow::NAccessor {
66

ydb/core/formats/arrow/accessor/plain/constructor.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#include "accessor.h"
22
#include "constructor.h"
33

4-
#include <ydb/core/formats/arrow/accessor/abstract/accessor.h>
5-
#include <ydb/core/formats/arrow/simple_arrays_cache.h>
6-
4+
#include <ydb/library/formats/arrow/accessor/abstract/accessor.h>
5+
#include <ydb/library/formats/arrow/simple_arrays_cache.h>
76
#include <contrib/libs/apache/arrow/cpp/src/arrow/record_batch.h>
87

98
namespace NKikimr::NArrow::NAccessor::NPlain {

ydb/core/formats/arrow/accessor/plain/constructor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22
#include <ydb/core/formats/arrow/accessor/abstract/constructor.h>
3-
#include <ydb/core/formats/arrow/accessor/common/const.h>
3+
#include <ydb/library/formats/arrow/accessor/common/const.h>
44

55
namespace NKikimr::NArrow::NAccessor::NPlain {
66

ydb/core/formats/arrow/accessor/plain/request.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22
#include <ydb/core/formats/arrow/accessor/abstract/request.h>
3-
#include <ydb/core/formats/arrow/accessor/common/const.h>
3+
#include <ydb/library/formats/arrow/accessor/common/const.h>
44

55
namespace NKikimr::NArrow::NAccessor::NPlain {
66

0 commit comments

Comments
 (0)