fix: CI problem
This commit is contained in:
parent
a539d1a3ca
commit
9bfdbca110
|
@ -297,7 +297,7 @@ static int32_t (*metaTableOpFn[META_TABLE_MAX][META_TABLE_OP_MAX])(SMeta *pMeta,
|
|||
[META_SCHEMA_TABLE] =
|
||||
{
|
||||
[META_TABLE_OP_INSERT] = metaSchemaTableInsert,
|
||||
[META_TABLE_OP_UPDATA] = NULL,
|
||||
[META_TABLE_OP_UPDATA] = metaSchemaTableUpdate,
|
||||
[META_TABLE_OP_DELETE] = NULL,
|
||||
},
|
||||
[META_UID_IDX] =
|
||||
|
|
|
@ -412,7 +412,7 @@ int32_t metaCreateTable2(SMeta *pMeta, int64_t version, SVCreateTbReq *pReq, STa
|
|||
// TODO
|
||||
code = metaCreateTable(pMeta, version, pReq, ppRsp);
|
||||
} else if (TSDB_NORMAL_TABLE == pReq->type) {
|
||||
code = metaCreateNormalTable(pMeta, version, pReq, ppRsp);
|
||||
code = metaCreateTable(pMeta, version, pReq, ppRsp);
|
||||
} else {
|
||||
code = TSDB_CODE_INVALID_MSG;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue