Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed Feb 11, 2025
1 parent 19b4233 commit 536d0ae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace NFq::NRowDispatcher::NTests {

namespace {

class TFormatHadlerFixture : public TBaseFixture {
class TFormatHandlerFixture : public TBaseFixture {
public:
using TBase = TBaseFixture;
using TCallback = std::function<void(TQueue<std::pair<TRope, TVector<ui64>>>&& data)>;
Expand Down Expand Up @@ -250,7 +250,7 @@ class TFormatHadlerFixture : public TBaseFixture {


Y_UNIT_TEST_SUITE(TestFormatHandler) {
Y_UNIT_TEST_F(ManyJsonClients, TFormatHadlerFixture) {
Y_UNIT_TEST_F(ManyJsonClients, TFormatHandlerFixture) {
const ui64 firstOffset = 42;
const TSchemaColumn commonColumn = {"com_col", "[DataType; String]"};

Expand Down Expand Up @@ -278,7 +278,7 @@ Y_UNIT_TEST_SUITE(TestFormatHandler) {
});
}

Y_UNIT_TEST_F(ManyRawClients, TFormatHadlerFixture) {
Y_UNIT_TEST_F(ManyRawClients, TFormatHandlerFixture) {
CreateFormatHandler(
{.JsonParserConfig = {}, .FiltersConfig = {.CompileServiceId = CompileService}},
{.ParsingFormat = "raw"}
Expand Down Expand Up @@ -320,7 +320,7 @@ Y_UNIT_TEST_SUITE(TestFormatHandler) {
});
}

Y_UNIT_TEST_F(ClientValidation, TFormatHadlerFixture) {
Y_UNIT_TEST_F(ClientValidation, TFormatHandlerFixture) {
const TVector<TSchemaColumn> schema = {{"data", "[DataType; String]"}};
const TString filter = "WHERE FALSE";
const auto callback = EmptyCheck();
Expand All @@ -345,7 +345,7 @@ Y_UNIT_TEST_SUITE(TestFormatHandler) {
);
}

Y_UNIT_TEST_F(ClientError, TFormatHadlerFixture) {
Y_UNIT_TEST_F(ClientError, TFormatHandlerFixture) {
const ui64 firstOffset = 42;
const TSchemaColumn commonColumn = {"com_col", "[DataType; String]"};

Expand All @@ -365,7 +365,7 @@ Y_UNIT_TEST_SUITE(TestFormatHandler) {
);
}

Y_UNIT_TEST_F(ClientErrorWithEmptyFilter, TFormatHadlerFixture) {
Y_UNIT_TEST_F(ClientErrorWithEmptyFilter, TFormatHandlerFixture) {
const ui64 firstOffset = 42;
const TSchemaColumn commonColumn = {"com_col", "[DataType; String]"};

Expand Down
4 changes: 2 additions & 2 deletions ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ class TDqComputeActorBase : public NActors::TActorBootstrapped<TDerived>
hFunc(NActors::TEvInterconnect::TEvNodeConnected, HandleExecuteBase);
hFunc(IDqComputeActorAsyncInput::TEvNewAsyncInputDataArrived, OnNewAsyncInputDataArrived);
hFunc(IDqComputeActorAsyncInput::TEvAsyncInputError, OnAsyncInputError);
hFunc(TEvPrivate::TEvAsyncOutputError, HadleAsyncOutputError);
hFunc(TEvPrivate::TEvAsyncOutputError, HandleAsyncOutputError);
default: {
CA_LOG_C("TDqComputeActorBase, unexpected event: " << ev->GetTypeRewrite() << " (" << GetEventTypeString(ev) << ")");
InternalError(NYql::NDqProto::StatusIds::INTERNAL_ERROR, TIssuesIds::DEFAULT_ERROR, TStringBuilder() << "Unexpected event: " << ev->GetTypeRewrite() << " (" << GetEventTypeString(ev) << ")");
Expand Down Expand Up @@ -1561,7 +1561,7 @@ class TDqComputeActorBase : public NActors::TActorBootstrapped<TDerived>
this->Send(this->SelfId(), new TEvPrivate::TEvAsyncOutputError(fatalCode, issues));
}

void HadleAsyncOutputError(const TEvPrivate::TEvAsyncOutputError::TPtr& ev) {
void HandleAsyncOutputError(const TEvPrivate::TEvAsyncOutputError::TPtr& ev) {
InternalError(ev->Get()->StatusCode, ev->Get()->Issues);
}

Expand Down

0 comments on commit 536d0ae

Please sign in to comment.