fix compile error
This commit is contained in:
parent
f3fb6c8b34
commit
951bcc7c94
|
@ -11,4 +11,9 @@
|
|||
*
|
||||
* 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/>.
|
||||
*/
|
||||
*/
|
||||
|
||||
#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"
|
||||
PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
|
||||
)
|
||||
target_include_directories(
|
||||
target_link_libraries(
|
||||
tsdb
|
||||
PRIVATE os
|
||||
PUBLIC os
|
||||
PRIVATE common
|
||||
)
|
|
@ -11,4 +11,9 @@
|
|||
*
|
||||
* 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/>.
|
||||
*/
|
||||
*/
|
||||
|
||||
#include "tsdb.h"
|
||||
|
||||
int tsdbInsert(STsdb *pTsdb, SSubmitReq *pMsg) { return 0; }
|
||||
int tsdbCommit(STsdb *pTsdb) { return 0; }
|
Loading…
Reference in New Issue