fix: change script env item key and value to const char*
This commit is contained in:
parent
1eea4c74a0
commit
c93cbc96f4
|
@ -261,8 +261,8 @@ typedef int32_t (*TUdfAggFinishFunc)(SUdfInterBuf *buf, SUdfInterBuf *resultData
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
typedef struct SScriptUdfEnvItem{
|
typedef struct SScriptUdfEnvItem{
|
||||||
char *name;
|
const char *name;
|
||||||
char *value;
|
const char *value;
|
||||||
} SScriptUdfEnvItem;
|
} SScriptUdfEnvItem;
|
||||||
|
|
||||||
typedef enum EUdfFuncType {
|
typedef enum EUdfFuncType {
|
||||||
|
|
Loading…
Reference in New Issue