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);