Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmorozov333 committed Feb 28, 2024
1 parent 8532985 commit 3fd6d42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ydb/core/tx/schemeshard/ut_olap/ut_olap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ static const TString defaultTableSchema = R"(
}
)";

static const TVector<std::pair<TString, TTypeInfo>> defaultYdbSchema = {
{"timestamp", TTypeInfo(NTypeIds::Timestamp) },
{"data", TTypeInfo(NTypeIds::Utf8) }
static const TVector<NArrow::NTest::TTestColumn> defaultYdbSchema = {
NArrow::NTest::TTestColumn("timestamp", TTypeInfo(NTypeIds::Timestamp) ),
NArrow::NTest::TTestColumn("data", TTypeInfo(NTypeIds::Utf8) )
};

}}
Expand Down
1 change: 1 addition & 0 deletions ydb/core/tx/schemeshard/ut_olap/ya.make
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ PEERDIR(
ydb/core/formats
ydb/core/tx
ydb/core/tx/columnshard
ydb/core/tx/columnshard/test_helper
ydb/core/tx/schemeshard/ut_helpers
ydb/library/yql/public/udf/service/exception_policy
)
Expand Down

0 comments on commit 3fd6d42

Please sign in to comment.