Merge branch 'master' into feature/TD-5739
This commit is contained in:
commit
0db5074eab
|
@ -41,6 +41,7 @@ def pre_test(){
|
||||||
sh '''
|
sh '''
|
||||||
killall -9 taosd ||echo "no taosd running"
|
killall -9 taosd ||echo "no taosd running"
|
||||||
killall -9 gdb || echo "no gdb running"
|
killall -9 gdb || echo "no gdb running"
|
||||||
|
killall -9 python3.8 || echo "no python program running"
|
||||||
cd ${WKC}
|
cd ${WKC}
|
||||||
git reset --hard HEAD~10 >/dev/null
|
git reset --hard HEAD~10 >/dev/null
|
||||||
'''
|
'''
|
||||||
|
@ -223,24 +224,27 @@ pipeline {
|
||||||
steps {
|
steps {
|
||||||
pre_test()
|
pre_test()
|
||||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
sh '''
|
timeout(time: 60, unit: 'MINUTES'){
|
||||||
cd ${WKC}/tests/pytest
|
sh '''
|
||||||
./crash_gen.sh -a -p -t 4 -s 2000
|
cd ${WKC}/tests/pytest
|
||||||
'''
|
./crash_gen.sh -a -p -t 4 -s 2000
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
timeout(time: 60, unit: 'MINUTES'){
|
||||||
|
sh '''
|
||||||
|
cd ${WKC}/tests/pytest
|
||||||
|
rm -rf /var/lib/taos/*
|
||||||
|
rm -rf /var/log/taos/*
|
||||||
|
./handle_crash_gen_val_log.sh
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
cd ${WKC}/tests/pytest
|
||||||
|
rm -rf /var/lib/taos/*
|
||||||
|
rm -rf /var/log/taos/*
|
||||||
|
./handle_taosd_val_log.sh
|
||||||
|
'''
|
||||||
}
|
}
|
||||||
|
|
||||||
sh '''
|
|
||||||
cd ${WKC}/tests/pytest
|
|
||||||
rm -rf /var/lib/taos/*
|
|
||||||
rm -rf /var/log/taos/*
|
|
||||||
./handle_crash_gen_val_log.sh
|
|
||||||
'''
|
|
||||||
sh '''
|
|
||||||
cd ${WKC}/tests/pytest
|
|
||||||
rm -rf /var/lib/taos/*
|
|
||||||
rm -rf /var/log/taos/*
|
|
||||||
./handle_taosd_val_log.sh
|
|
||||||
'''
|
|
||||||
timeout(time: 45, unit: 'MINUTES'){
|
timeout(time: 45, unit: 'MINUTES'){
|
||||||
sh '''
|
sh '''
|
||||||
date
|
date
|
||||||
|
|
|
@ -992,7 +992,7 @@ int32_t tsParseValues(char **str, STableDataBlocks *pDataBlock, int maxRows, SIn
|
||||||
index = 0;
|
index = 0;
|
||||||
sToken = tStrGetToken(*str, &index, false);
|
sToken = tStrGetToken(*str, &index, false);
|
||||||
if (sToken.n == 0 || sToken.type != TK_RP) {
|
if (sToken.n == 0 || sToken.type != TK_RP) {
|
||||||
return tscSQLSyntaxErrMsg(pCmd->payload, ") expected", *str);
|
return tscSQLSyntaxErrMsg(pInsertParam->msg, ") expected", *str);
|
||||||
}
|
}
|
||||||
|
|
||||||
*str += index;
|
*str += index;
|
||||||
|
|
|
@ -65,7 +65,14 @@ int32_t mnodeProcessWrite(SMnodeMsg *pMsg) {
|
||||||
return TSDB_CODE_MND_MSG_NOT_PROCESSED;
|
return TSDB_CODE_MND_MSG_NOT_PROCESSED;
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t code = mnodeInitMsg(pMsg);
|
int32_t code = grantCheck(TSDB_GRANT_TIME);
|
||||||
|
if (code != TSDB_CODE_SUCCESS) {
|
||||||
|
mError("msg:%p, app:%p type:%s not processed, reason:%s", pMsg, pMsg->rpcMsg.ahandle, taosMsg[pMsg->rpcMsg.msgType],
|
||||||
|
tstrerror(code));
|
||||||
|
return code;
|
||||||
|
}
|
||||||
|
|
||||||
|
code = mnodeInitMsg(pMsg);
|
||||||
if (code != TSDB_CODE_SUCCESS) {
|
if (code != TSDB_CODE_SUCCESS) {
|
||||||
mError("msg:%p, app:%p type:%s not processed, reason:%s", pMsg, pMsg->rpcMsg.ahandle, taosMsg[pMsg->rpcMsg.msgType],
|
mError("msg:%p, app:%p type:%s not processed, reason:%s", pMsg, pMsg->rpcMsg.ahandle, taosMsg[pMsg->rpcMsg.msgType],
|
||||||
tstrerror(code));
|
tstrerror(code));
|
||||||
|
|
|
@ -166,7 +166,7 @@ python3 test.py -f tools/taosdemoTestQuery.py
|
||||||
# nano support
|
# nano support
|
||||||
python3 test.py -f tools/taosdemoAllTest/taosdemoTestSupportNanoInsert.py
|
python3 test.py -f tools/taosdemoAllTest/taosdemoTestSupportNanoInsert.py
|
||||||
python3 test.py -f tools/taosdemoAllTest/taosdemoTestSupportNanoQuery.py
|
python3 test.py -f tools/taosdemoAllTest/taosdemoTestSupportNanoQuery.py
|
||||||
python3 test.py -f tools/taosdemoAllTest/taosdemoTestSupportNanosubscribe.py
|
#python3 test.py -f tools/taosdemoAllTest/taosdemoTestSupportNanosubscribe.py
|
||||||
python3 test.py -f tools/taosdemoAllTest/taosdemoTestInsertTime_step.py
|
python3 test.py -f tools/taosdemoAllTest/taosdemoTestInsertTime_step.py
|
||||||
python3 test.py -f tools/taosdumpTestNanoSupport.py
|
python3 test.py -f tools/taosdumpTestNanoSupport.py
|
||||||
|
|
||||||
|
|
|
@ -74,7 +74,7 @@ cd ../../../debug; make
|
||||||
./test.sh -f general/parser/where.sim
|
./test.sh -f general/parser/where.sim
|
||||||
./test.sh -f general/parser/slimit.sim
|
./test.sh -f general/parser/slimit.sim
|
||||||
./test.sh -f general/parser/select_with_tags.sim
|
./test.sh -f general/parser/select_with_tags.sim
|
||||||
./test.sh -f general/parser/interp.sim
|
#./test.sh -f general/parser/interp.sim
|
||||||
./test.sh -f general/parser/tags_dynamically_specifiy.sim
|
./test.sh -f general/parser/tags_dynamically_specifiy.sim
|
||||||
./test.sh -f general/parser/groupby.sim
|
./test.sh -f general/parser/groupby.sim
|
||||||
./test.sh -f general/parser/set_tag_vals.sim
|
./test.sh -f general/parser/set_tag_vals.sim
|
||||||
|
|
Loading…
Reference in New Issue