提交 5c738986 编写于 作者: S slguan

dnode Write.h

上级 e3ab7346
...@@ -25,31 +25,58 @@ extern "C" { ...@@ -25,31 +25,58 @@ extern "C" {
#include "taosdef.h" #include "taosdef.h"
#include "taosmsg.h" #include "taosmsg.h"
/*
* Write data based on dnode
* If >= 0, it is affect rows
* If < 0, get error code from terrno
*/
int32_t dnodeWriteData(SShellSubmitMsg *msg);
/* /*
* Check if table already exists * Check if table already exists
*/ */
int32_t dnodeCheckTableExist(int vid, int sid, int64_t uid); int32_t dnodeCheckTableExist(char *tableId);
/* /*
* Create table with specified configuration and open it * Create noraml table with specified configuration and open it
*/ */
int32_t dnodeCreateTable(int vid, int sid, SCreateMsg *table); int32_t dnodeCreateNormalTable(SCreateNormalTableMsg *table);
/* /*
* Modify table configuration information * Create stream table with specified configuration and open it
*/ */
int32_t dnodeAlterTable(int vid, SMeterObj *table); int32_t dnodeCreateStreamTable(SCreateStreamTableMsg *table);
/* /*
* Remove table from local repository * Create child table with specified configuration and open it
*/ */
int32_t dnodeDropTable(int vid, int sid, int64_t uid); int32_t dnodeCreateChildTable(SCreateChildTableMsg *table);
/* /*
* Write data based on dnode * Modify normal table configuration information
*
*/ */
int32_t dnodeWriteData(SShellSubmitMsg *msg); int32_t dnodeAlterNormalTable(SCreateNormalTableMsg *table);
/*
* Modify stream table configuration information
*/
int32_t dnodeAlterStreamTable(SCreateStreamTableMsg *table);
/*
* Modify child table configuration information
*/
int32_t dnodeAlterChildTable(SCreateChildTableMsg *table);
/*
* Remove all child tables of supertable from local repository
*/
int32_t dnodeDropSuperTable(int vid, int sid, int64_t uid);
/*
* Remove table from local repository
*/
int32_t dnodeDropTable(int vid, int sid, int64_t uid);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
...@@ -16,6 +16,45 @@ ...@@ -16,6 +16,45 @@
#define _DEFAULT_SOURCE #define _DEFAULT_SOURCE
#include "dnodeWrite.h" #include "dnodeWrite.h"
int32_t dnodeCreateTable(int vid, int sid, SCreateTableMsg *table) { #include "taoserror.h"
int32_t dnodeCheckTableExist(char *tableId) {
return 0;
} }
int32_t dnodeWriteData(SShellSubmitMsg *msg) {
return 0;
}
int32_t dnodeCreateNormalTable(SCreateNormalTableMsg *table); {
return 0;
}
int32_t dnodeCreateStreamTable(SCreateStreamTableMsg *table) {
return 0;
}
int32_t dnodeCreateChildTable(SCreateChildTableMsg *table) {
return 0;
}
int32_t dnodeAlterNormalTable(SCreateNormalTableMsg *table) {
return 0;
}
int32_t dnodeAlterStreamTable(SCreateStreamTableMsg *table) {
return 0;
}
int32_t dnodeAlterChildTable(SCreateChildTableMsg *table) {
return 0;
}
int32_t dnodeDropSuperTable(int vid, int sid, int64_t uid) {
return 0;
}
int32_t dnodeDropTable(int vid, int sid, int64_t uid) {
return 0;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册