[TD-13603]<feature>: python connector (#11103)
* add a few stmt_ interface declartion * add taos_load_table_info
This commit is contained in:
parent
ca0912e1e0
commit
b4581c6383
|
@ -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" {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue