[TD-355] add tversion to super table
This commit is contained in:
parent
44613c3c2d
commit
738733e157
|
@ -236,6 +236,7 @@ typedef struct {
|
|||
int16_t numOfTags;
|
||||
int32_t sid;
|
||||
int32_t sversion;
|
||||
int32_t tversion;
|
||||
int32_t tagDataLen;
|
||||
int32_t sqlDataLen;
|
||||
uint64_t uid;
|
||||
|
@ -632,6 +633,7 @@ typedef struct STableMetaMsg {
|
|||
uint8_t tableType;
|
||||
int16_t numOfColumns;
|
||||
int16_t sversion;
|
||||
int16_t tversion;
|
||||
int32_t sid;
|
||||
uint64_t uid;
|
||||
SCMVgroupInfo vgroup;
|
||||
|
|
|
@ -1236,6 +1236,7 @@ static void mgmtGetSuperTableMeta(SQueuedMsg *pMsg) {
|
|||
STableMetaMsg *pMeta = rpcMallocCont(sizeof(STableMetaMsg) + sizeof(SSchema) * (TSDB_MAX_TAGS + TSDB_MAX_COLUMNS + 16));
|
||||
pMeta->uid = htobe64(pTable->uid);
|
||||
pMeta->sversion = htons(pTable->sversion);
|
||||
pMeta->tversion = htons(pTable->tversion);
|
||||
pMeta->precision = pMsg->pDb->cfg.precision;
|
||||
pMeta->numOfTags = (uint8_t)pTable->numOfTags;
|
||||
pMeta->numOfColumns = htons((int16_t)pTable->numOfColumns);
|
||||
|
@ -1359,12 +1360,14 @@ static void *mgmtBuildCreateChildTableMsg(SCMCreateTableMsg *pMsg, SChildTableOb
|
|||
pCreate->numOfColumns = htons(pTable->superTable->numOfColumns);
|
||||
pCreate->numOfTags = htons(pTable->superTable->numOfTags);
|
||||
pCreate->sversion = htonl(pTable->superTable->sversion);
|
||||
pCreate->tversion = htonl(pTable->superTable->tversion);
|
||||
pCreate->tagDataLen = htonl(tagDataLen);
|
||||
pCreate->superTableUid = htobe64(pTable->superTable->uid);
|
||||
} else {
|
||||
pCreate->numOfColumns = htons(pTable->numOfColumns);
|
||||
pCreate->numOfTags = 0;
|
||||
pCreate->sversion = htonl(pTable->sversion);
|
||||
pCreate->tversion = 0;
|
||||
pCreate->tagDataLen = 0;
|
||||
pCreate->superTableUid = 0;
|
||||
}
|
||||
|
@ -1691,11 +1694,13 @@ static int32_t mgmtDoGetChildTableMeta(SQueuedMsg *pMsg, STableMetaMsg *pMeta) {
|
|||
|
||||
if (pTable->info.type == TSDB_CHILD_TABLE) {
|
||||
pMeta->sversion = htons(pTable->superTable->sversion);
|
||||
pMeta->tversion = htons(pTable->superTable->tversion);
|
||||
pMeta->numOfTags = (int8_t)pTable->superTable->numOfTags;
|
||||
pMeta->numOfColumns = htons((int16_t)pTable->superTable->numOfColumns);
|
||||
pMeta->contLen = sizeof(STableMetaMsg) + mgmtSetSchemaFromSuperTable(pMeta->schema, pTable->superTable);
|
||||
} else {
|
||||
pMeta->sversion = htons(pTable->sversion);
|
||||
pMeta->tversion = 0;
|
||||
pMeta->numOfTags = 0;
|
||||
pMeta->numOfColumns = htons((int16_t)pTable->numOfColumns);
|
||||
pMeta->contLen = sizeof(STableMetaMsg) + mgmtSetSchemaFromNormalTable(pMeta->schema, pTable);
|
||||
|
|
Loading…
Reference in New Issue