Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
397cb6ea
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
397cb6ea
编写于
7月 28, 2022
作者:
D
dapan1121
提交者:
GitHub
7月 28, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #15518 from taosdata/fix/TD-17819
fix: fix datablock windows error
上级
2efd12e8
62f3adf7
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
68 addition
and
67 deletion
+68
-67
source/common/src/systable.c
source/common/src/systable.c
+2
-3
source/libs/executor/src/timewindowoperator.c
source/libs/executor/src/timewindowoperator.c
+2
-0
source/libs/scheduler/src/schTask.c
source/libs/scheduler/src/schTask.c
+6
-6
tests/script/tsim/bnode/basic1.sim
tests/script/tsim/bnode/basic1.sim
+55
-55
tests/script/tsim/show/basic.sim
tests/script/tsim/show/basic.sim
+2
-2
tests/script/tsim/valgrind/checkError1.sim
tests/script/tsim/valgrind/checkError1.sim
+1
-1
未找到文件。
source/common/src/systable.c
浏览文件 @
397cb6ea
...
...
@@ -257,14 +257,13 @@ static const SSysTableMeta infosMeta[] = {
{
TSDB_INS_TABLE_MNODES
,
mnodesSchema
,
tListLen
(
mnodesSchema
)},
{
TSDB_INS_TABLE_MODULES
,
modulesSchema
,
tListLen
(
modulesSchema
)},
{
TSDB_INS_TABLE_QNODES
,
qnodesSchema
,
tListLen
(
qnodesSchema
)},
{
TSDB_INS_TABLE_SNODES
,
snodesSchema
,
tListLen
(
snodesSchema
)},
{
TSDB_INS_TABLE_BNODES
,
bnodesSchema
,
tListLen
(
bnodesSchema
)},
//
{TSDB_INS_TABLE_SNODES, snodesSchema, tListLen(snodesSchema)},
//
{TSDB_INS_TABLE_BNODES, bnodesSchema, tListLen(bnodesSchema)},
{
TSDB_INS_TABLE_CLUSTER
,
clusterSchema
,
tListLen
(
clusterSchema
)},
{
TSDB_INS_TABLE_USER_DATABASES
,
userDBSchema
,
tListLen
(
userDBSchema
)},
{
TSDB_INS_TABLE_USER_FUNCTIONS
,
userFuncSchema
,
tListLen
(
userFuncSchema
)},
{
TSDB_INS_TABLE_USER_INDEXES
,
userIdxSchema
,
tListLen
(
userIdxSchema
)},
{
TSDB_INS_TABLE_USER_STABLES
,
userStbsSchema
,
tListLen
(
userStbsSchema
)},
{
TSDB_PERFS_TABLE_STREAMS
,
streamSchema
,
tListLen
(
streamSchema
)},
{
TSDB_INS_TABLE_USER_TABLES
,
userTblsSchema
,
tListLen
(
userTblsSchema
)},
{
TSDB_INS_TABLE_USER_TAGS
,
userTagsSchema
,
tListLen
(
userTagsSchema
)},
// {TSDB_INS_TABLE_USER_TABLE_DISTRIBUTED, userTblDistSchema, tListLen(userTblDistSchema)},
...
...
source/libs/executor/src/timewindowoperator.c
浏览文件 @
397cb6ea
...
...
@@ -1091,6 +1091,8 @@ static int32_t doOpenIntervalAgg(SOperatorInfo* pOperator) {
// the pDataBlock are always the same one, no need to call this again
setInputDataBlock
(
pOperator
,
pSup
->
pCtx
,
pBlock
,
pInfo
->
order
,
scanFlag
,
true
);
blockDataUpdateTsWindow
(
pBlock
,
pInfo
->
primaryTsIndex
);
hashIntervalAgg
(
pOperator
,
&
pInfo
->
binfo
.
resultRowInfo
,
pBlock
,
scanFlag
,
NULL
);
}
...
...
source/libs/scheduler/src/schTask.c
浏览文件 @
397cb6ea
...
...
@@ -168,20 +168,20 @@ int32_t schUpdateTaskHandle(SSchJob *pJob, SSchTask *pTask, bool dropExecNode, v
return
TSDB_CODE_SUCCESS
;
}
// Note: no more task error processing, handled in function internal
int32_t
schProcessOnTaskFailure
(
SSchJob
*
pJob
,
SSchTask
*
pTask
,
int32_t
errCode
)
{
if
(
TSDB_CODE_SCH_IGNORE_ERROR
==
errCode
)
{
return
TSDB_CODE_SCH_IGNORE_ERROR
;
}
int8_t
s
tatus
=
0
;
if
(
schJobNeedToStop
(
pJob
,
&
s
tatus
))
{
SCH_TASK_DLOG
(
"no more task failure processing cause of job status %s"
,
jobTaskStatusStr
(
s
tatus
));
int8_t
jobS
tatus
=
0
;
if
(
schJobNeedToStop
(
pJob
,
&
jobS
tatus
))
{
SCH_TASK_DLOG
(
"no more task failure processing cause of job status %s"
,
jobTaskStatusStr
(
jobS
tatus
));
SCH_ERR_RET
(
TSDB_CODE_SCH_IGNORE_ERROR
);
}
if
(
SCH_GET_TASK_STATUS
(
pTask
)
!=
JOB_TASK_STATUS_EXEC
)
{
SCH_TASK_ELOG
(
"task already not in EXEC status, status:%s"
,
SCH_GET_TASK_STATUS_STR
(
pTask
));
int8_t
taskStatus
=
SCH_GET_TASK_STATUS
(
pTask
);
if
(
taskStatus
==
JOB_TASK_STATUS_FAIL
||
taskStatus
==
JOB_TASK_STATUS_SUCC
)
{
SCH_TASK_ELOG
(
"task already done, status:%s"
,
jobTaskStatusStr
(
taskStatus
));
SCH_ERR_RET
(
TSDB_CODE_SCH_STATUS_ERROR
);
}
...
...
tests/script/tsim/bnode/basic1.sim
浏览文件 @
397cb6ea
...
...
@@ -75,61 +75,61 @@ if $data02 != leader then
return -1
endi
print =============== create drop bnode 1
sql create bnode on dnode 1
sql show bnodes
if $rows != 1 then
return -1
endi
if $data00 != 1 then
return -1
endi
sql_error create bnode on dnode 1
sql drop bnode on dnode 1
sql show bnodes
if $rows != 0 then
return -1
endi
sql_error drop bnode on dnode 1
print =============== create drop bnode 2
sql create bnode on dnode 2
sql show bnodes
if $rows != 1 then
return -1
endi
if $data00 != 2 then
return -1
endi
sql_error create bnode on dnode 2
sql drop bnode on dnode 2
sql show bnodes
if $rows != 0 then
return -1
endi
sql_error drop bnode on dnode 2
print =============== create drop bnodes
sql create bnode on dnode 1
sql create bnode on dnode 2
sql show bnodes
if $rows != 2 then
return -1
endi
print =============== restart
system sh/exec.sh -n dnode1 -s stop -x SIGINT
system sh/exec.sh -n dnode2 -s stop -x SIGINT
system sh/exec.sh -n dnode1 -s start
system sh/exec.sh -n dnode2 -s start
sleep 2000
sql show bnodes
if $rows != 2 then
return -1
endi
#
print =============== create drop bnode 1
#
sql create bnode on dnode 1
#
sql show bnodes
#
if $rows != 1 then
#
return -1
#
endi
#
if $data00 != 1 then
#
return -1
#
endi
#
sql_error create bnode on dnode 1
#
#
sql drop bnode on dnode 1
#
sql show bnodes
#
if $rows != 0 then
#
return -1
#
endi
#
sql_error drop bnode on dnode 1
#
#
print =============== create drop bnode 2
#
sql create bnode on dnode 2
#
sql show bnodes
#
if $rows != 1 then
#
return -1
#
endi
#
if $data00 != 2 then
#
return -1
#
endi
#
sql_error create bnode on dnode 2
#
#
sql drop bnode on dnode 2
#
sql show bnodes
#
if $rows != 0 then
#
return -1
#
endi
#
sql_error drop bnode on dnode 2
#
#
print =============== create drop bnodes
#
sql create bnode on dnode 1
#
sql create bnode on dnode 2
#
sql show bnodes
#
if $rows != 2 then
#
return -1
#
endi
#
print =============== restart
#
system sh/exec.sh -n dnode1 -s stop -x SIGINT
#
system sh/exec.sh -n dnode2 -s stop -x SIGINT
#
system sh/exec.sh -n dnode1 -s start
#
system sh/exec.sh -n dnode2 -s start
#
#
sleep 2000
#
sql show bnodes
#
if $rows != 2 then
#
return -1
#
endi
system sh/exec.sh -n dnode1 -s stop -x SIGINT
system sh/exec.sh -n dnode2 -s stop -x SIGINT
tests/script/tsim/show/basic.sim
浏览文件 @
397cb6ea
...
...
@@ -99,7 +99,7 @@ if $rows != 1 then
endi
#sql select * from information_schema.`streams`
sql select * from information_schema.user_tables
if $rows
!= 31
then
if $rows
<= 0
then
return -1
endi
#sql select * from information_schema.user_table_distributed
...
...
@@ -197,7 +197,7 @@ if $rows != 1 then
endi
#sql select * from performance_schema.`streams`
sql select * from information_schema.user_tables
if $rows
!= 31
then
if $rows
<= 0
then
return -1
endi
#sql select * from information_schema.user_table_distributed
...
...
tests/script/tsim/valgrind/checkError1.sim
浏览文件 @
397cb6ea
...
...
@@ -105,7 +105,7 @@ if $rows != 1 then
endi
sql select * from information_schema.user_tables
if $rows
!= 31
then
if $rows
<= 0
then
return -1
endi
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录