[FEAT MERGE] [PATCH] serverless_opt

This commit is contained in:
obdev
2024-11-23 18:14:56 +00:00
committed by ob-robot
parent 2f11aaf7c8
commit c141972115
387 changed files with 4443 additions and 2193 deletions

View File

@ -81,7 +81,8 @@ void ObExprConcatWsTest::TearDown()
param[3].set_##t2(v2);\
param[4].set_##t3(v3);\
int ret = obj.func(res,param,5,str_buf);\
_OB_LOG(INFO, "res=%s", to_cstring(res)); \
ObCStringHelper helper; \
_OB_LOG(INFO, "res=%s", helper.convert(res)); \
ASSERT_EQ(OB_SUCCESS, ret); \
}while(0)
#define EXCEPT_NULL_RESULT2(obj,str_buf,func,rt,rv)\
@ -91,7 +92,8 @@ void ObExprConcatWsTest::TearDown()
param[0].set_null();\
param[1].set_null();\
int ret = obj.func(res,param,2,str_buf);\
_OB_LOG(INFO, "res=%s", to_cstring(res)); \
ObCStringHelper helper; \
_OB_LOG(INFO, "res=%s", helper.convert(res)); \
ASSERT_EQ(OB_SUCCESS, ret); \
}while(0)
#define EXCEPT_NULL_RESULT3(obj,str_buf,func,rt,rv)\