This is an automated email from the ASF dual-hosted git repository.

hellostephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 722b60d5488 [fix](be_ut) fix repeat function BE UT failure (#40191)
722b60d5488 is described below

commit 722b60d548824f36ab09cd59285347cdc88f3e9b
Author: TengJianPing <18241664+jackte...@users.noreply.github.com>
AuthorDate: Fri Aug 30 17:29:45 2024 +0800

    [fix](be_ut) fix repeat function BE UT failure (#40191)
    
    ## Proposed changes
    
    Delete stale BE UT case of function `repeat`, since it's deprecated by
    #37907
---
 be/test/vec/function/function_string_test.cpp | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/be/test/vec/function/function_string_test.cpp 
b/be/test/vec/function/function_string_test.cpp
index ba5e7b9c19b..20727c60671 100644
--- a/be/test/vec/function/function_string_test.cpp
+++ b/be/test/vec/function/function_string_test.cpp
@@ -742,14 +742,6 @@ TEST(function_string_test, function_string_repeat_test) {
 
         check_function_all_arg_comb<DataTypeString, true>(func_name, 
input_types, data_set);
     }
-
-    {
-        InputTypeSet input_types = {TypeIndex::String, TypeIndex::Int32};
-        DataSet data_set = {{{std::string("a"), 1073741825},
-                             std::string("aaaaaaaaaa")}}; // ut repeat max num 
10
-        Status st = check_function<DataTypeString, true>(func_name, 
input_types, data_set, true);
-        EXPECT_NE(Status::OK(), st);
-    }
 }
 
 TEST(function_string_test, function_string_reverse_test) {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to