fix dependent info memory leak bug

This commit is contained in:
zzg19950727
2023-09-11 09:17:52 +00:00
committed by ob-robot
parent 4cb63f0290
commit 6a99c43af7

View File

@ -91,7 +91,7 @@ struct FunctionTableDependInfo {
K_(depend_table_set),
K_(table_idx)
);
ObSqlBitSet<> depend_table_set_; //function table expr所依赖的表
ObRelIds depend_table_set_; //function table expr所依赖的表
int64_t table_idx_; //function table的bit index
};
typedef struct FunctionTableDependInfo JsonTableDependInfo;