fix: change script env item key and value to const char*

This commit is contained in:
slzhou 2023-02-27 15:03:30 +08:00
parent 1eea4c74a0
commit c93cbc96f4
1 changed files with 2 additions and 2 deletions

View File

@ -261,8 +261,8 @@ typedef int32_t (*TUdfAggFinishFunc)(SUdfInterBuf *buf, SUdfInterBuf *resultData
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
typedef struct SScriptUdfEnvItem{
char *name;
char *value;
const char *name;
const char *value;
} SScriptUdfEnvItem;
typedef enum EUdfFuncType {