stmt
This commit is contained in:
parent
fca15e39b2
commit
da4379853d
|
@ -45,7 +45,6 @@ int32_t qCreateQueryPlan(SPlanContext* pCxt, SQueryPlan** pPlan, SArray* pExecNo
|
||||||
// @pSource one execution location of this group of datasource subplans
|
// @pSource one execution location of this group of datasource subplans
|
||||||
int32_t qSetSubplanExecutionNode(SSubplan* pSubplan, int32_t groupId, SDownstreamSourceNode* pSource);
|
int32_t qSetSubplanExecutionNode(SSubplan* pSubplan, int32_t groupId, SDownstreamSourceNode* pSource);
|
||||||
|
|
||||||
typedef TAOS_MULTI_BIND TAOS_BIND_v2; // todo remove
|
|
||||||
int32_t qStmtBindParam(SQueryPlan* pPlan, TAOS_BIND_v2* pParams);
|
int32_t qStmtBindParam(SQueryPlan* pPlan, TAOS_BIND_v2* pParams);
|
||||||
|
|
||||||
// Convert to subplan to string for the scheduler to send to the executor
|
// Convert to subplan to string for the scheduler to send to the executor
|
||||||
|
|
|
@ -1009,7 +1009,6 @@ static int32_t parseValuesClause(SInsertParseContext* pCxt, STableDataBlocks* da
|
||||||
}
|
}
|
||||||
|
|
||||||
void destroyCreateSubTbReq(SVCreateTbReq* pReq) {
|
void destroyCreateSubTbReq(SVCreateTbReq* pReq) {
|
||||||
taosMemoryFreeClear(pReq->dbFName);
|
|
||||||
taosMemoryFreeClear(pReq->name);
|
taosMemoryFreeClear(pReq->name);
|
||||||
taosMemoryFreeClear(pReq->ctbCfg.pTag);
|
taosMemoryFreeClear(pReq->ctbCfg.pTag);
|
||||||
}
|
}
|
||||||
|
|
|
@ -63,7 +63,7 @@ CaseCfg gCase[] = {
|
||||||
// {"insert:MBSE", tListLen(shortColList), shortColList, false, true, insertMBSETest, 10, 100, 10, 0, 0, 10},
|
// {"insert:MBSE", tListLen(shortColList), shortColList, false, true, insertMBSETest, 10, 100, 10, 0, 0, 10},
|
||||||
// {"insert:MBSE", tListLen(longColList), longColList, false, true, insertMBSETest, 10, 10, 2, 0, 0, 1},
|
// {"insert:MBSE", tListLen(longColList), longColList, false, true, insertMBSETest, 10, 10, 2, 0, 0, 1},
|
||||||
// {"insert:MBSE", tListLen(longColList), longColList, false, false, insertMBSETest, 10, 10, 2, 6, 0, 1},
|
// {"insert:MBSE", tListLen(longColList), longColList, false, false, insertMBSETest, 10, 10, 2, 6, 0, 1},
|
||||||
{"insert:MBSE", tListLen(longColList), longColList, false, false, insertMBMETest, 10, 10, 2, 6, 0, 1},
|
{"insert:MBME", tListLen(longColList), longColList, false, false, insertMBMETest, 10, 10, 2, 6, 0, 1},
|
||||||
};
|
};
|
||||||
|
|
||||||
CaseCfg *gCurCase = NULL;
|
CaseCfg *gCurCase = NULL;
|
||||||
|
@ -5097,7 +5097,7 @@ void* runcase(TAOS *taos) {
|
||||||
|
|
||||||
for (int32_t i = 0; i < sizeof(gCase)/sizeof(gCase[0]); ++i) {
|
for (int32_t i = 0; i < sizeof(gCase)/sizeof(gCase[0]); ++i) {
|
||||||
gCurCase = &gCase[i];
|
gCurCase = &gCase[i];
|
||||||
printf("Case %d Begin\n", i);
|
printf("Case %d - %s Begin\n", i, gCurCase->caseDesc);
|
||||||
|
|
||||||
if (gCurCase->fullCol) {
|
if (gCurCase->fullCol) {
|
||||||
gCurCase->bindColNum = gCurCase->colNum;
|
gCurCase->bindColNum = gCurCase->colNum;
|
||||||
|
|
Loading…
Reference in New Issue