@@ -74,9 +74,9 @@ class BaseExecGraphTest : public ::testing::Test {
7474 func_registry_->RegisterOrDie <MultiplyUDF>(" multiply" );
7575
7676 auto table_store = std::make_shared<table_store::TableStore>();
77- exec_state_ = std::make_unique<ExecState>(func_registry_. get (), table_store,
78- MockResultSinkStubGenerator, MockMetricsStubGenerator,
79- MockTraceStubGenerator, sole::uuid4 (), nullptr );
77+ exec_state_ = std::make_unique<ExecState>(
78+ func_registry_. get (), table_store, MockResultSinkStubGenerator, MockMetricsStubGenerator,
79+ MockTraceStubGenerator, MockLogStubGenerator , sole::uuid4 (), nullptr );
8080 }
8181
8282 std::unique_ptr<udf::Registry> func_registry_;
@@ -174,7 +174,7 @@ TEST_P(ExecGraphExecuteTest, execute) {
174174 table_store->AddTable (" numbers" , table);
175175 auto exec_state_ = std::make_unique<ExecState>(
176176 func_registry_.get (), table_store, MockResultSinkStubGenerator, MockMetricsStubGenerator,
177- MockTraceStubGenerator, sole::uuid4 (), nullptr );
177+ MockTraceStubGenerator, MockLogStubGenerator, sole::uuid4 (), nullptr );
178178
179179 EXPECT_OK (exec_state_->AddScalarUDF (
180180 0 , " add" , std::vector<types::DataType>({types::DataType::INT64, types::DataType::FLOAT64})));
@@ -255,7 +255,7 @@ TEST_F(ExecGraphTest, execute_time) {
255255
256256 auto exec_state_ = std::make_unique<ExecState>(
257257 func_registry.get (), table_store, MockResultSinkStubGenerator, MockMetricsStubGenerator,
258- MockTraceStubGenerator, sole::uuid4 (), nullptr );
258+ MockTraceStubGenerator, MockLogStubGenerator, sole::uuid4 (), nullptr );
259259
260260 EXPECT_OK (exec_state_->AddScalarUDF (
261261 0 , " add" , std::vector<types::DataType>({types::DataType::INT64, types::DataType::FLOAT64})));
@@ -322,7 +322,7 @@ TEST_F(ExecGraphTest, two_limits_dont_interfere) {
322322 table_store->AddTable (" numbers" , table);
323323 auto exec_state_ = std::make_unique<ExecState>(
324324 func_registry_.get (), table_store, MockResultSinkStubGenerator, MockMetricsStubGenerator,
325- MockTraceStubGenerator, sole::uuid4 (), nullptr );
325+ MockTraceStubGenerator, MockLogStubGenerator, sole::uuid4 (), nullptr );
326326
327327 ExecutionGraph e;
328328 auto s = e.Init (schema.get (), plan_state.get (), exec_state_.get (), plan_fragment_.get (),
@@ -390,7 +390,7 @@ TEST_F(ExecGraphTest, limit_w_multiple_srcs) {
390390 table_store->AddTable (" numbers" , table);
391391 auto exec_state_ = std::make_unique<ExecState>(
392392 func_registry_.get (), table_store, MockResultSinkStubGenerator, MockMetricsStubGenerator,
393- MockTraceStubGenerator, sole::uuid4 (), nullptr );
393+ MockTraceStubGenerator, MockLogStubGenerator, sole::uuid4 (), nullptr );
394394
395395 ExecutionGraph e;
396396 auto s = e.Init (schema.get (), plan_state.get (), exec_state_.get (), plan_fragment_.get (),
@@ -452,7 +452,7 @@ TEST_F(ExecGraphTest, two_sequential_limits) {
452452 table_store->AddTable (" numbers" , table);
453453 auto exec_state_ = std::make_unique<ExecState>(
454454 func_registry_.get (), table_store, MockResultSinkStubGenerator, MockMetricsStubGenerator,
455- MockTraceStubGenerator, sole::uuid4 (), nullptr );
455+ MockTraceStubGenerator, MockLogStubGenerator, sole::uuid4 (), nullptr );
456456
457457 ExecutionGraph e;
458458 auto s = e.Init (schema.get (), plan_state.get (), exec_state_.get (), plan_fragment_.get (),
@@ -515,7 +515,7 @@ TEST_F(ExecGraphTest, execute_with_two_limits) {
515515 table_store->AddTable (" numbers" , table);
516516 auto exec_state_ = std::make_unique<ExecState>(
517517 func_registry_.get (), table_store, MockResultSinkStubGenerator, MockMetricsStubGenerator,
518- MockTraceStubGenerator, sole::uuid4 (), nullptr );
518+ MockTraceStubGenerator, MockLogStubGenerator, sole::uuid4 (), nullptr );
519519
520520 ExecutionGraph e;
521521 auto s = e.Init (schema.get (), plan_state.get (), exec_state_.get (), plan_fragment_.get (),
@@ -702,7 +702,7 @@ class GRPCExecGraphTest : public ::testing::Test {
702702 auto table_store = std::make_shared<table_store::TableStore>();
703703 exec_state_ = std::make_unique<ExecState>(
704704 func_registry_.get (), table_store, MockResultSinkStubGenerator, MockMetricsStubGenerator,
705- MockTraceStubGenerator, sole::uuid4 (), nullptr , grpc_router_.get ());
705+ MockTraceStubGenerator, MockLogStubGenerator, sole::uuid4 (), nullptr , grpc_router_.get ());
706706 }
707707
708708 void SetUpPlanFragment () {
0 commit comments