fix: clone db cfg issue
This commit is contained in:
parent
7f518ca4ea
commit
5ae95f3660
|
@ -33,6 +33,8 @@ extern "C" {
|
|||
#define tscTrace(...) do { if (cDebugFlag & DEBUG_TRACE) { taosPrintLog("TSC ", DEBUG_TRACE, cDebugFlag, __VA_ARGS__); }} while(0)
|
||||
#define tscDebugL(...) do { if (cDebugFlag & DEBUG_DEBUG) { taosPrintLongString("TSC ", DEBUG_DEBUG, cDebugFlag, __VA_ARGS__); }} while(0)
|
||||
#define tscPerf(...) do { if (cDebugFlag & DEBUG_INFO) { taosPrintLog("TSC ", 0, cDebugFlag, __VA_ARGS__); }} while(0)
|
||||
#define tscLog(...) do { taosPrintLog("TSC ", 0, DEBUG_FILE, __VA_ARGS__); } while(0)
|
||||
#define tscLogL(...) do { taosPrintLongString("TSC ", 0, DEBUG_FILE, __VA_ARGS__); } while(0)
|
||||
// clang-format on
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -107,7 +107,7 @@ static void deregisterRequest(SRequestObj *pRequest) {
|
|||
|
||||
if (duration >= SLOW_QUERY_INTERVAL) {
|
||||
atomic_add_fetch_64((int64_t *)&pActivity->numOfSlowQueries, 1);
|
||||
tscWarnL("slow query: %s, duration:%" PRId64, pRequest->sqlstr, duration);
|
||||
tscLogL("slow query: %s, duration:%" PRId64, pRequest->sqlstr, duration);
|
||||
}
|
||||
|
||||
releaseTscObj(pTscObj->id);
|
||||
|
|
|
@ -2166,27 +2166,19 @@ int32_t ctgOpUpdateUser(SCtgCacheOperation *operation) {
|
|||
CTG_LOCK(CTG_WRITE, &pUser->lock);
|
||||
|
||||
taosHashCleanup(pUser->userAuth.createdDbs);
|
||||
pUser->userAuth.createdDbs = msg->userAuth.createdDbs;
|
||||
msg->userAuth.createdDbs = NULL;
|
||||
|
||||
taosHashCleanup(pUser->userAuth.readDbs);
|
||||
pUser->userAuth.readDbs = msg->userAuth.readDbs;
|
||||
msg->userAuth.readDbs = NULL;
|
||||
|
||||
taosHashCleanup(pUser->userAuth.writeDbs);
|
||||
pUser->userAuth.writeDbs = msg->userAuth.writeDbs;
|
||||
msg->userAuth.writeDbs = NULL;
|
||||
|
||||
taosHashCleanup(pUser->userAuth.readTbs);
|
||||
pUser->userAuth.readTbs = msg->userAuth.readTbs;
|
||||
msg->userAuth.readTbs = NULL;
|
||||
|
||||
taosHashCleanup(pUser->userAuth.writeTbs);
|
||||
pUser->userAuth.writeTbs = msg->userAuth.writeTbs;
|
||||
msg->userAuth.writeTbs = NULL;
|
||||
|
||||
taosHashCleanup(pUser->userAuth.useDbs);
|
||||
pUser->userAuth.useDbs = msg->userAuth.useDbs;
|
||||
|
||||
memcpy(&pUser->userAuth, &msg->userAuth, sizeof(msg->userAuth));
|
||||
|
||||
msg->userAuth.createdDbs = NULL;
|
||||
msg->userAuth.readDbs = NULL;
|
||||
msg->userAuth.writeDbs = NULL;
|
||||
msg->userAuth.readTbs = NULL;
|
||||
msg->userAuth.writeTbs = NULL;
|
||||
msg->userAuth.useDbs = NULL;
|
||||
|
||||
CTG_UNLOCK(CTG_WRITE, &pUser->lock);
|
||||
|
|
|
@ -1239,7 +1239,7 @@ void* ctgCloneDbCfgInfo(void* pSrc) {
|
|||
return NULL;
|
||||
}
|
||||
memcpy(pDst, pSrc, sizeof(SDbCfgInfo));
|
||||
pDst->pRetensions = taosArrayDup((const SArray*)pSrc, NULL);
|
||||
pDst->pRetensions = taosArrayDup(((SDbCfgInfo *)pSrc)->pRetensions, NULL);
|
||||
return pDst;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue