read preversion data of primary key
This commit is contained in:
parent
2935482128
commit
93edc9d1ff
|
@ -1892,8 +1892,12 @@ void appendOneRowToSpecialBlockImpl(SSDataBlock* pBlock, TSKEY* pStartTs, TSKEY*
|
|||
|
||||
void appendPkToSpecialBlock(SSDataBlock* pBlock, TSKEY* pTsArray, SColumnInfoData* pPkCol, int32_t rowId,
|
||||
uint64_t* pUid, uint64_t* pGp, void* pTbName) {
|
||||
void* pVal = NULL;
|
||||
if (pPkCol) {
|
||||
pVal = colDataGetData(pPkCol, rowId);
|
||||
}
|
||||
appendOneRowToSpecialBlockImpl(pBlock, pTsArray + rowId, pTsArray + rowId, pTsArray + rowId, pTsArray + rowId, pUid,
|
||||
pGp, pTbName, colDataGetData(pPkCol, rowId));
|
||||
pGp, pTbName, pVal);
|
||||
}
|
||||
|
||||
void appendDataToSpecialBlock(SSDataBlock* pBlock, TSKEY* pStartTs, TSKEY* pEndTs, uint64_t* pUid, uint64_t* pGp,
|
||||
|
|
|
@ -1254,8 +1254,12 @@
|
|||
,,y,script,./test.sh -f tsim/stream/sliding.sim
|
||||
,,y,script,./test.sh -f tsim/stream/state0.sim
|
||||
,,y,script,./test.sh -f tsim/stream/state1.sim
|
||||
,,y,script,./test.sh -f tsim/stream/streamPrimaryKey0.sim
|
||||
,,y,script,./test.sh -f tsim/stream/streamPrimaryKey1.sim
|
||||
,,y,script,./test.sh -f tsim/stream/streamPrimaryKey2.sim
|
||||
,,y,script,./test.sh -f tsim/stream/triggerInterval0.sim
|
||||
,,y,script,./test.sh -f tsim/stream/triggerSession0.sim
|
||||
,,y,script,./test.sh -f tsim/stream/udTableAndCol0.sim
|
||||
,,y,script,./test.sh -f tsim/stream/udTableAndTag0.sim
|
||||
,,y,script,./test.sh -f tsim/stream/udTableAndTag1.sim
|
||||
,,y,script,./test.sh -f tsim/stream/udTableAndTag2.sim
|
||||
|
|
Loading…
Reference in New Issue