Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
e98f7486
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1187
Star
22018
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看板
提交
e98f7486
编写于
2月 19, 2023
作者:
S
slzhou
浏览文件
操作
浏览文件
下载
差异文件
Merge branch '2.6' of github.com:taosdata/TDengine into szhou/fixbugs26
上级
f36957ce
2fe2bdce
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
8 deletion
+13
-8
src/kit/taos-tools
src/kit/taos-tools
+1
-1
src/query/src/qFilter.c
src/query/src/qFilter.c
+11
-6
tests/parallel_test/cases.task
tests/parallel_test/cases.task
+1
-1
未找到文件。
taos-tools
@
634399d3
比较
05b61e03
...
634399d3
Subproject commit
05b61e03a15512fc23beb9dcd11238e1d7630c26
Subproject commit
634399d329d8fa6be61b9cb44144c1d974cd646e
src/query/src/qFilter.c
浏览文件 @
e98f7486
...
...
@@ -3732,7 +3732,7 @@ int32_t filterGetTimeRange(SFilterInfo *info, STimeWindow *win) {
SFilterRange
tra
;
filterGetRangeRes
(
prev
,
&
tra
);
win
->
skey
=
tra
.
s
;
win
->
skey
=
tra
.
s
;
win
->
ekey
=
tra
.
e
;
}
...
...
@@ -3786,7 +3786,7 @@ int32_t filterConverNcharColumns(SFilterInfo* info, int32_t rows, bool *gotNchar
}
fi
->
data
=
nfi
.
data
;
*
gotNchar
=
true
;
}
}
...
...
@@ -3820,22 +3820,27 @@ int32_t filterIsIndexedColumnQuery(SFilterInfo* info, int32_t idxId, bool *res)
CHK_JMP
(
FILTER_GET_COL_FIELD_ID
(
FILTER_GET_COL_FIELD
(
info
,
0
))
!=
idxId
);
int32_t
optr
=
FILTER_UNIT_OPTR
(
info
->
units
);
CHK_JMP
(
optr
==
TSDB_RELATION_LIKE
||
optr
==
TSDB_RELATION_IN
||
optr
==
TSDB_RELATION_MATCH
||
optr
==
TSDB_RELATION_ISNULL
||
optr
==
TSDB_RELATION_NOTNULL
||
optr
==
TSDB_RELATION_CONTAINS
);
*
res
=
true
;
return
TSDB_CODE_SUCCESS
;
_return:
*
res
=
false
;
return
TSDB_CODE_SUCCESS
;
}
int32_t
filterGetIndexedColumnInfo
(
SFilterInfo
*
info
,
char
**
val
,
int32_t
*
order
,
int32_t
*
flag
)
{
if
(
FILTER_GET_FLAG
(
info
->
status
,
FI_STATUS_EMPTY
))
{
*
order
=
0
;
return
TSDB_CODE_SUCCESS
;
}
SFilterComUnit
*
cunit
=
info
->
cunits
;
uint8_t
optr
=
cunit
->
optr
;
...
...
@@ -3853,7 +3858,7 @@ int32_t filterGetIndexedColumnInfo(SFilterInfo* info, char** val, int32_t *order
if
(
cunit
->
valData2
==
cunit
->
valData
&&
optr
!=
TSDB_RELATION_EQUAL
)
{
FILTER_SET_FLAG
(
*
flag
,
FI_ACTION_NO_NEED
);
}
return
TSDB_CODE_SUCCESS
;
}
...
...
tests/parallel_test/cases.task
浏览文件 @
e98f7486
...
...
@@ -198,7 +198,7 @@
37,,script,./test.sh -f unique/arbitrator/offline_replica2_alterTable_online.sim
37,,script,./test.sh -f general/table/delete_reuse1.sim
37,,script,./test.sh -f general/db/delete_reuse2.sim
36,,docs-examples-test,eval sh -c \"if [ `uname -m` != aarch64 ]; then ./test_rust.sh; fi\"
#
36,,docs-examples-test,eval sh -c \"if [ `uname -m` != aarch64 ]; then ./test_rust.sh; fi\"
36,,script,./test.sh -f unique/stable/replica3_vnode3.sim
36,,script,./test.sh -f unique/stable/dnode2_stop.sim
36,,script,./test.sh -f unique/arbitrator/sync_replica2_alterTable_add.sim
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录