[TD-13603]<feature>: python connector (#11103)

* add a few stmt_ interface declartion

* add taos_load_table_info
This commit is contained in:
Shuduo Sang 2022-03-29 20:23:40 +08:00 committed by GitHub
parent ca0912e1e0
commit b4581c6383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -16,7 +16,7 @@
#ifndef _TD_UTIL_TAOS_ERROR_H_
#define _TD_UTIL_TAOS_ERROR_H_
#include "os.h"
#include <stdint.h>
#ifdef __cplusplus
extern "C" {

View File

@ -407,6 +407,11 @@ void taos_unsubscribe(TAOS_SUB *tsub, int keepProgress) {
// TODO
}
int taos_load_table_info(TAOS *taos, const char *tableNameList) {
// TODO
return -1;
}
TAOS_STMT *taos_stmt_init(TAOS *taos) {
// TODO
return NULL;