From cb4d6979d56f4cc08ff421b1fdf8e2b794db7135 Mon Sep 17 00:00:00 2001 From: dey4ss <27929897+dey4ss@users.noreply.github.com> Date: Tue, 30 May 2023 23:21:37 +0200 Subject: [PATCH] update data type in test case --- src/test/operators/table_scan_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/operators/table_scan_test.cpp b/src/test/operators/table_scan_test.cpp index e6b902e..59ccd7c 100644 --- a/src/test/operators/table_scan_test.cpp +++ b/src/test/operators/table_scan_test.cpp @@ -97,7 +97,7 @@ TEST_F(OperatorsTableScanTest, DoubleScan) { auto scan_1 = std::make_shared(_table_wrapper, ColumnID{0}, ScanType::OpGreaterThanEquals, 1234); scan_1->execute(); - auto scan_2 = std::make_shared(scan_1, ColumnID{1}, ScanType::OpLessThan, 457.9); + auto scan_2 = std::make_shared(scan_1, ColumnID{1}, ScanType::OpLessThan, 457.9f); scan_2->execute(); EXPECT_TABLE_EQ(scan_2->get_output(), expected_result);