Skip to content

Commit

Permalink
Move ydb/core/io_formats/arrow/csv_arrow ->ydb/library/formats/arrow/…
Browse files Browse the repository at this point in the history
…csv/converter (#12492)
  • Loading branch information
iddqdex authored Dec 11, 2024
1 parent 6ed9d1b commit 95a821a
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 12 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion ydb/core/io_formats/arrow/scheme/scheme.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <ydb/core/io_formats/arrow/csv_arrow/csv_arrow.h>
#include <ydb/library/formats/arrow/csv/converter/csv_arrow.h>
#include <ydb/core/scheme_types/scheme_type_info.h>

namespace NKikimr::NFormats {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
UNITTEST_FOR(ydb/core/io_formats/arrow)
UNITTEST_FOR(ydb/core/io_formats/arrow/scheme)

SIZE(SMALL)

PEERDIR(
ydb/core/io_formats/arrow/scheme

# for NYql::NUdf alloc stuff used in binary_json
yql/essentials/public/udf/service/exception_policy
yql/essentials/sql/pg_dummy
Expand Down
4 changes: 3 additions & 1 deletion ydb/core/io_formats/arrow/scheme/ya.make
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ SRCS(

PEERDIR(
ydb/core/formats/arrow
ydb/core/io_formats/arrow/csv_arrow
ydb/library/formats/arrow/csv/converter
ydb/core/scheme_types
)

YQL_LAST_ABI_VERSION()

END()

RECURSE_FOR_TESTS(ut)
3 changes: 0 additions & 3 deletions ydb/core/io_formats/arrow/ya.make
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
RECURSE(
csv_arrow
scheme
)

RECURSE_FOR_TESTS(ut)
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <ydb/core/io_formats/arrow/csv_arrow/csv_arrow.h>
#include <ydb/library/formats/arrow/csv/converter/csv_arrow.h>
#include <ydb/public/sdk/cpp/client/ydb_table/table.h>

namespace NKikimr::NFormats {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SRCS(
)

PEERDIR(
ydb/core/io_formats/arrow/csv_arrow
ydb/library/formats/arrow/csv/converter
ydb/public/sdk/cpp/client/ydb_table
)

Expand Down
4 changes: 4 additions & 0 deletions ydb/library/formats/arrow/csv/ya.make
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
RECURSE(
converter
table
)
2 changes: 1 addition & 1 deletion ydb/public/lib/ydb_cli/commands/ya.make
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ PEERDIR(
library/cpp/regex/pcre
library/cpp/threading/local_executor
ydb/library/backup
ydb/library/formats/arrow/csv/table
ydb/library/workload
ydb/library/yaml_config/public
ydb/public/lib/operation_id
Expand Down Expand Up @@ -66,7 +67,6 @@ PEERDIR(
ydb/public/sdk/cpp/client/ydb_table
ydb/public/sdk/cpp/client/ydb_topic
ydb/public/sdk/cpp/client/ydb_types/credentials/login
ydb/core/io_formats/arrow/table
)

GENERATE_ENUM_SERIALIZATION(ydb_ping.h)
Expand Down
2 changes: 1 addition & 1 deletion ydb/public/lib/ydb_cli/commands/ydb_workload_import.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "ydb_workload_import.h"
#include <ydb/core/io_formats/arrow/table/table.h>
#include <ydb/library/formats/arrow/csv/table/table.h>
#include <ydb/public/api/protos/ydb_formats.pb.h>
#include <ydb/public/lib/ydb_cli/commands/ydb_common.h>
#include <ydb/public/lib/ydb_cli/common/recursive_list.h>
Expand Down

0 comments on commit 95a821a

Please sign in to comment.