TDengine/source/dnode/vnode/impl/src/vnodeInt.c

31 lines
1 KiB
C
Raw Normal View History

2021-09-22 08:15:20 +00:00
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define _DEFAULT_SOURCE
2021-11-01 11:49:44 +00:00
#include "vnodeInt.h"
2021-10-04 09:44:39 +00:00
2021-11-01 11:49:44 +00:00
int32_t vnodeAlter(SVnode *pVnode, const SVnodeCfg *pCfg) { return 0; }
2021-12-21 08:59:26 +00:00
2021-11-01 11:49:44 +00:00
int32_t vnodeCompact(SVnode *pVnode) { return 0; }
2021-12-21 08:59:26 +00:00
2021-11-01 11:49:44 +00:00
int32_t vnodeSync(SVnode *pVnode) { return 0; }
2021-10-26 02:19:36 +00:00
2021-11-04 10:38:07 +00:00
int32_t vnodeGetLoad(SVnode *pVnode, SVnodeLoad *pLoad) { return 0; }
2021-11-04 06:06:29 +00:00
2021-12-21 08:59:26 +00:00
int vnodeProcessSyncReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
vInfo("sync message is processed");
return 0;
2021-11-04 06:06:29 +00:00
}