fix(query): enable update buf.

This commit is contained in:
Haojun Liao 2022-11-07 15:27:09 +08:00
parent fea40da5dc
commit c86427c771
1 changed files with 1 additions and 0 deletions

View File

@ -950,6 +950,7 @@ SOperatorInfo* createTableScanOperatorInfo(STableScanPhysiNode* pTableScanNode,
pOperator->pTaskInfo = pTaskInfo; pOperator->pTaskInfo = pTaskInfo;
pInfo->metaCache.pTableMetaEntryCache = taosLRUCacheInit(100, -1, .5); pInfo->metaCache.pTableMetaEntryCache = taosLRUCacheInit(100, -1, .5);
taosLRUCacheSetStrictCapacity(pInfo->metaCache.pTableMetaEntryCache, false);
pOperator->fpSet = createOperatorFpSet(operatorDummyOpenFn, doTableScan, NULL, NULL, destroyTableScanOperatorInfo, pOperator->fpSet = createOperatorFpSet(operatorDummyOpenFn, doTableScan, NULL, NULL, destroyTableScanOperatorInfo,
getTableScannerExecInfo); getTableScannerExecInfo);