Skip to content

Commit

Permalink
update data type in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
dey4ss committed May 30, 2023
1 parent 185423c commit cb4d697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/operators/table_scan_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ TEST_F(OperatorsTableScanTest, DoubleScan) {
auto scan_1 = std::make_shared<TableScan>(_table_wrapper, ColumnID{0}, ScanType::OpGreaterThanEquals, 1234);
scan_1->execute();

auto scan_2 = std::make_shared<TableScan>(scan_1, ColumnID{1}, ScanType::OpLessThan, 457.9);
auto scan_2 = std::make_shared<TableScan>(scan_1, ColumnID{1}, ScanType::OpLessThan, 457.9f);
scan_2->execute();

EXPECT_TABLE_EQ(scan_2->get_output(), expected_result);
Expand Down

0 comments on commit cb4d697

Please sign in to comment.