Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
a18a2c0a
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
a18a2c0a
编写于
6月 11, 2021
作者:
Y
yihaoDeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-4614]fix in operator bug
上级
f2e01999
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
27 addition
and
17 deletion
+27
-17
src/query/src/qExecutor.c
src/query/src/qExecutor.c
+16
-8
src/util/src/thashutil.c
src/util/src/thashutil.c
+11
-9
未找到文件。
src/query/src/qExecutor.c
浏览文件 @
a18a2c0a
...
...
@@ -2287,7 +2287,7 @@ static bool doFilterByBlockStatistics(SQueryRuntimeEnv* pRuntimeEnv, SDataStatis
if
(
pDataStatis
==
NULL
||
pQueryAttr
->
numOfFilterCols
==
0
)
{
return
true
;
}
bool
ret
=
true
;
for
(
int32_t
k
=
0
;
k
<
pQueryAttr
->
numOfFilterCols
;
++
k
)
{
SSingleColumnFilterInfo
*
pFilterInfo
=
&
pQueryAttr
->
pFilterInfo
[
k
];
...
...
@@ -2324,26 +2324,34 @@ static bool doFilterByBlockStatistics(SQueryRuntimeEnv* pRuntimeEnv, SDataStatis
}
SDataStatis
*
pDataBlockst
=
&
pDataStatis
[
index
];
if
(
pFilterInfo
->
info
.
type
==
TSDB_DATA_TYPE_FLOAT
)
{
float
minval
=
(
float
)(
*
(
double
*
)(
&
pDataBlockst
->
min
));
float
maxval
=
(
float
)(
*
(
double
*
)(
&
pDataBlockst
->
max
));
for
(
int32_t
i
=
0
;
i
<
pFilterInfo
->
numOfFilters
;
++
i
)
{
if
(
pFilterInfo
->
pFilters
[
i
].
fp
(
&
pFilterInfo
->
pFilters
[
i
],
(
char
*
)
&
minval
,
(
char
*
)
&
maxval
,
TSDB_DATA_TYPE_FLOAT
))
{
return
true
;
if
(
pFilterInfo
->
pFilters
[
i
].
filterInfo
.
lowerRelOptr
==
TSDB_RELATION_IN
)
{
continue
;
}
ret
&=
pFilterInfo
->
pFilters
[
i
].
fp
(
&
pFilterInfo
->
pFilters
[
i
],
(
char
*
)
&
minval
,
(
char
*
)
&
maxval
,
TSDB_DATA_TYPE_FLOAT
);
if
(
ret
==
false
)
{
return
false
;
}
}
}
else
{
for
(
int32_t
i
=
0
;
i
<
pFilterInfo
->
numOfFilters
;
++
i
)
{
if
(
pFilterInfo
->
pFilters
[
i
].
fp
(
&
pFilterInfo
->
pFilters
[
i
],
(
char
*
)
&
pDataBlockst
->
min
,
(
char
*
)
&
pDataBlockst
->
max
,
pFilterInfo
->
info
.
type
))
{
return
true
;
if
(
pFilterInfo
->
pFilters
[
i
].
filterInfo
.
lowerRelOptr
==
TSDB_RELATION_IN
)
{
continue
;
}
ret
&=
pFilterInfo
->
pFilters
[
i
].
fp
(
&
pFilterInfo
->
pFilters
[
i
],
(
char
*
)
&
pDataBlockst
->
min
,
(
char
*
)
&
pDataBlockst
->
max
,
pFilterInfo
->
info
.
type
);
if
(
ret
==
false
)
{
return
false
;
}
}
}
}
return
false
;
return
ret
;
}
static
bool
overlapWithTimeWindow
(
SQueryAttr
*
pQueryAttr
,
SDataBlockInfo
*
pBlockInfo
)
{
...
...
src/util/src/thashutil.c
浏览文件 @
a18a2c0a
...
...
@@ -90,11 +90,12 @@ uint32_t taosFloatHash(const char *key, uint32_t UNUSED_PARAM(len)) {
if
(
FLT_EQUAL
(
f
,
0
.
0
))
{
return
0
;
}
if
(
f
>=
(
FLT_MAX
/
BASE
-
DLT
)
||
f
<=
(
FLT_MIN
/
BASE
-
DLT
)){
return
0x7fc00000
;
if
(
fabs
(
f
)
<
FLT_MAX
/
BASE
-
DLT
)
{
int
t
=
(
int
)(
round
(
BASE
*
(
f
+
DLT
)));
return
(
uint32_t
)
t
;
}
else
{
return
0x7fc00000
;
}
int
t
=
(
int
)
round
(
BASE
*
(
f
+
DLT
));
return
(
uint32_t
)
t
;
}
uint32_t
taosDoubleHash
(
const
char
*
key
,
uint32_t
UNUSED_PARAM
(
len
))
{
double
f
=
GET_DOUBLE_VAL
(
key
);
...
...
@@ -105,11 +106,12 @@ uint32_t taosDoubleHash(const char *key, uint32_t UNUSED_PARAM(len)) {
if
(
FLT_EQUAL
(
f
,
0
.
0
))
{
return
0
;
}
if
(
f
>=
(
DBL_MAX
/
BASE
-
DLT
)
||
f
<=
(
DBL_MIN
/
BASE
-
DLT
)){
return
0x7fc00000
;
}
int
t
=
(
int
)(
round
(
BASE
*
(
f
+
DLT
)));
return
(
uint32_t
)
t
;
if
(
fabs
(
f
)
<
DBL_MAX
/
BASE
-
DLT
)
{
int
t
=
(
int
)(
round
(
BASE
*
(
f
+
DLT
)));
return
(
uint32_t
)
t
;
}
else
{
return
0x7fc00000
;
}
}
uint32_t
taosIntHash_64
(
const
char
*
key
,
uint32_t
UNUSED_PARAM
(
len
))
{
uint64_t
val
=
*
(
uint64_t
*
)
key
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录