Skip to content

Commit 8358e3f

Browse files
committed
Fixed build 1
1 parent b7cbbfa commit 8358e3f

File tree

1 file changed

+2
-2
lines changed
  • ydb/core/fq/libs/row_dispatcher/format_handler/common

1 file changed

+2
-2
lines changed

ydb/core/fq/libs/row_dispatcher/format_handler/common/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#pragma once
22

33
#include <ydb/library/conclusion/generic/result.h>
4-
#include <ydb/library/conclusion/generic/status.h>
4+
#include <ydb/library/conclusion/status.h>
55
#include <ydb/library/yql/dq/actors/protos/dq_status_codes.pb.h>
66

77
namespace NFq::NRowDispatcher {
88

99
using EStatusId = NYql::NDqProto::StatusIds;
1010
using TStatusCode = EStatusId::StatusCode;
11-
using TStatus = NKikimr::TConclusionStatusIssueImpl<TStatusCode, EStatusId::SUCCESS, EStatusId::INTERNAL_ERROR>;
11+
using TStatus = NKikimr::TYQLConclusionSpecialStatus<TStatusCode, EStatusId::SUCCESS, EStatusId::INTERNAL_ERROR>;
1212

1313
template <typename TValue>
1414
using TValueStatus = NKikimr::TConclusionImpl<TStatus, TValue>;

0 commit comments

Comments
 (0)