Skip to content

Commit

Permalink
Fixed build 1
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed Dec 10, 2024
1 parent b7cbbfa commit 8358e3f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#pragma once

#include <ydb/library/conclusion/generic/result.h>
#include <ydb/library/conclusion/generic/status.h>
#include <ydb/library/conclusion/status.h>
#include <ydb/library/yql/dq/actors/protos/dq_status_codes.pb.h>

namespace NFq::NRowDispatcher {

using EStatusId = NYql::NDqProto::StatusIds;
using TStatusCode = EStatusId::StatusCode;
using TStatus = NKikimr::TConclusionStatusIssueImpl<TStatusCode, EStatusId::SUCCESS, EStatusId::INTERNAL_ERROR>;
using TStatus = NKikimr::TYQLConclusionSpecialStatus<TStatusCode, EStatusId::SUCCESS, EStatusId::INTERNAL_ERROR>;

template <typename TValue>
using TValueStatus = NKikimr::TConclusionImpl<TStatus, TValue>;
Expand Down

0 comments on commit 8358e3f

Please sign in to comment.