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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2021-10-10 13:36:32 +00:00
|
|
|
#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 vnodeInit() { return 0; }
|
|
|
|
|
void vnodeCleanup() {}
|
2021-10-26 02:19:36 +00:00
|
|
|
|
2021-11-01 11:49:44 +00:00
|
|
|
SVnode *vnodeOpen(int32_t vgId, const char *path) { return NULL; }
|
|
|
|
|
void vnodeClose(SVnode *pVnode) {}
|
|
|
|
|
int32_t vnodeAlter(SVnode *pVnode, const SVnodeCfg *pCfg) { return 0; }
|
|
|
|
|
SVnode *vnodeCreate(int32_t vgId, const char *path, const SVnodeCfg *pCfg) { return NULL; }
|
|
|
|
|
int32_t vnodeDrop(SVnode *pVnode) { return 0; }
|
|
|
|
|
int32_t vnodeCompact(SVnode *pVnode) { return 0; }
|
|
|
|
|
int32_t vnodeSync(SVnode *pVnode) { return 0; }
|
2021-10-26 02:19:36 +00:00
|
|
|
|
2021-11-02 09:46:47 +00:00
|
|
|
void vnodeProcessMsg(SVnode *pVnode, SVnodeMsg *pMsg) {}
|
2021-11-04 01:28:55 +00:00
|
|
|
void vnodeGetLoad(SVnode *pVnode, SVnodeLoad *pLoad) {}
|