fix: CI problem

This commit is contained in:
Hongze Cheng 2024-12-06 18:29:01 +08:00
parent a539d1a3ca
commit 9bfdbca110
2 changed files with 2 additions and 2 deletions

View File

@ -297,7 +297,7 @@ static int32_t (*metaTableOpFn[META_TABLE_MAX][META_TABLE_OP_MAX])(SMeta *pMeta,
[META_SCHEMA_TABLE] = [META_SCHEMA_TABLE] =
{ {
[META_TABLE_OP_INSERT] = metaSchemaTableInsert, [META_TABLE_OP_INSERT] = metaSchemaTableInsert,
[META_TABLE_OP_UPDATA] = NULL, [META_TABLE_OP_UPDATA] = metaSchemaTableUpdate,
[META_TABLE_OP_DELETE] = NULL, [META_TABLE_OP_DELETE] = NULL,
}, },
[META_UID_IDX] = [META_UID_IDX] =

View File

@ -412,7 +412,7 @@ int32_t metaCreateTable2(SMeta *pMeta, int64_t version, SVCreateTbReq *pReq, STa
// TODO // TODO
code = metaCreateTable(pMeta, version, pReq, ppRsp); code = metaCreateTable(pMeta, version, pReq, ppRsp);
} else if (TSDB_NORMAL_TABLE == pReq->type) { } else if (TSDB_NORMAL_TABLE == pReq->type) {
code = metaCreateNormalTable(pMeta, version, pReq, ppRsp); code = metaCreateTable(pMeta, version, pReq, ppRsp);
} else { } else {
code = TSDB_CODE_INVALID_MSG; code = TSDB_CODE_INVALID_MSG;
} }