Skip to content

Commit

Permalink
modify case
Browse files Browse the repository at this point in the history
  • Loading branch information
bobhan1 committed Aug 28, 2024
1 parent ac2172a commit 1dff0f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion be/test/olap/delete_handler_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ TEST_F(TestDeleteConditionHandler, StoreCondInvalidParameters) {
DeletePredicatePB del_pred;
Status failed_res = DeleteHandler::generate_delete_predicate(*tablet->tablet_schema(),
conditions, &del_pred);
EXPECT_EQ(Status::Error<DELETE_INVALID_PARAMETERS>(""), failed_res);
EXPECT_EQ(Status::Error<INVALID_ARGUMENT>(""), failed_res);
}

// 检测过滤条件中指定的列不存在,或者列不符合要求
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ suite("test_delete_from_timeout","nonConcurrent") {
GetDebugPoint().disableDebugPointForAllBEs("PushHandler::_do_streaming_ingestion.try_lock_fail")
}

sql """delete from ${tableName} where col1 = "false" and col2 = "-9999782574499444.2" and col3 = "-25"; """
sql """delete from ${tableName} where col1 = "false" and col3 = "-25"; """
t1.join()
qt_sql "select * from ${tableName} order by col1, col2, col3;"

Expand Down

0 comments on commit 1dff0f9

Please sign in to comment.