fix compile error
This commit is contained in:
parent
f3fb6c8b34
commit
951bcc7c94
|
@ -12,3 +12,8 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* 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/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "tq.h"
|
||||||
|
|
||||||
|
int tqPushMsg(void * p) {return 0;}
|
||||||
|
int tqCommit(STQ *pTQ) {return 0;}
|
||||||
|
|
|
@ -5,8 +5,8 @@ target_include_directories(
|
||||||
PUBLIC "${CMAKE_SOURCE_DIR}/include/server/vnode/tsdb"
|
PUBLIC "${CMAKE_SOURCE_DIR}/include/server/vnode/tsdb"
|
||||||
PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
|
PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
|
||||||
)
|
)
|
||||||
target_include_directories(
|
target_link_libraries(
|
||||||
tsdb
|
tsdb
|
||||||
PRIVATE os
|
PUBLIC os
|
||||||
PRIVATE common
|
PRIVATE common
|
||||||
)
|
)
|
|
@ -12,3 +12,8 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* 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/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "tsdb.h"
|
||||||
|
|
||||||
|
int tsdbInsert(STsdb *pTsdb, SSubmitReq *pMsg) { return 0; }
|
||||||
|
int tsdbCommit(STsdb *pTsdb) { return 0; }
|
Loading…
Reference in New Issue