Merge branch '3.0' of https://github.com/taosdata/TDengine into feat/stream_compression
This commit is contained in:
commit
e461681040
|
@ -2,7 +2,7 @@
|
||||||
# taos-tools
|
# taos-tools
|
||||||
ExternalProject_Add(taos-tools
|
ExternalProject_Add(taos-tools
|
||||||
GIT_REPOSITORY https://github.com/taosdata/taos-tools.git
|
GIT_REPOSITORY https://github.com/taosdata/taos-tools.git
|
||||||
GIT_TAG 509ec72
|
GIT_TAG 285b5e0
|
||||||
SOURCE_DIR "${TD_SOURCE_DIR}/tools/taos-tools"
|
SOURCE_DIR "${TD_SOURCE_DIR}/tools/taos-tools"
|
||||||
BINARY_DIR ""
|
BINARY_DIR ""
|
||||||
#BUILD_IN_SOURCE TRUE
|
#BUILD_IN_SOURCE TRUE
|
||||||
|
|
|
@ -304,7 +304,6 @@ void tqTableSink(SStreamTask* pTask, void* vnode, int64_t ver, void* data) {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (tmsgPutToQueue(&pVnode->msgCb, WRITE_QUEUE, &msg) != 0) {
|
if (tmsgPutToQueue(&pVnode->msgCb, WRITE_QUEUE, &msg) != 0) {
|
||||||
rpcFreeCont(submitReq);
|
|
||||||
tqDebug("failed to put into write-queue since %s", terrstr());
|
tqDebug("failed to put into write-queue since %s", terrstr());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -961,6 +961,7 @@ void releaseUdfFuncHandle(char* udfName) {
|
||||||
strcpy(key.udfName, udfName);
|
strcpy(key.udfName, udfName);
|
||||||
SUdfcFuncStub *foundStub = taosArraySearch(gUdfdProxy.udfStubs, &key, compareUdfcFuncSub, TD_EQ);
|
SUdfcFuncStub *foundStub = taosArraySearch(gUdfdProxy.udfStubs, &key, compareUdfcFuncSub, TD_EQ);
|
||||||
if (!foundStub) {
|
if (!foundStub) {
|
||||||
|
uv_mutex_unlock(&gUdfdProxy.udfStubsMutex);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (foundStub->refCount > 0) {
|
if (foundStub->refCount > 0) {
|
||||||
|
|
|
@ -156,8 +156,8 @@ python3 ./test.py -f 2-query/sin.py
|
||||||
python3 ./test.py -f 2-query/sin.py -R
|
python3 ./test.py -f 2-query/sin.py -R
|
||||||
python3 ./test.py -f 2-query/smaTest.py
|
python3 ./test.py -f 2-query/smaTest.py
|
||||||
python3 ./test.py -f 2-query/smaTest.py -R
|
python3 ./test.py -f 2-query/smaTest.py -R
|
||||||
#python3 ./test.py -f 2-query/sml.py
|
python3 ./test.py -f 2-query/sml.py
|
||||||
#python3 ./test.py -f 2-query/sml.py -R
|
python3 ./test.py -f 2-query/sml.py -R
|
||||||
python3 ./test.py -f 2-query/spread.py
|
python3 ./test.py -f 2-query/spread.py
|
||||||
python3 ./test.py -f 2-query/spread.py -R
|
python3 ./test.py -f 2-query/spread.py -R
|
||||||
python3 ./test.py -f 2-query/sqrt.py
|
python3 ./test.py -f 2-query/sqrt.py
|
||||||
|
@ -512,6 +512,6 @@ python3 ./test.py -f 2-query/count_partition.py -Q 3
|
||||||
python3 ./test.py -f 2-query/max_partition.py -Q 3
|
python3 ./test.py -f 2-query/max_partition.py -Q 3
|
||||||
python3 ./test.py -f 2-query/last_row.py -Q 3
|
python3 ./test.py -f 2-query/last_row.py -Q 3
|
||||||
python3 ./test.py -f 2-query/tsbsQuery.py -Q 3
|
python3 ./test.py -f 2-query/tsbsQuery.py -Q 3
|
||||||
#python3 ./test.py -f 2-query/sml.py -Q 3
|
python3 ./test.py -f 2-query/sml.py -Q 3
|
||||||
python3 ./test.py -f 2-query/interp.py -Q 3
|
python3 ./test.py -f 2-query/interp.py -Q 3
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue