Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8c7fd12c
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看板
未验证
提交
8c7fd12c
编写于
12月 08, 2021
作者:
dengyihao
提交者:
GitHub
12月 08, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #8993 from taosdata/origin/3.0/fst
add test case
上级
b59a3756
73d938b0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
9 deletion
+12
-9
source/libs/index/src/index_fst.c
source/libs/index/src/index_fst.c
+8
-6
source/libs/index/test/indexTests.cpp
source/libs/index/test/indexTests.cpp
+4
-3
未找到文件。
source/libs/index/src/index_fst.c
浏览文件 @
8c7fd12c
...
...
@@ -167,7 +167,10 @@ uint64_t fstUnFinishedNodesFindCommPrefixAndSetOutput(FstUnFinishedNodes *node,
break
;
}
if
(
addPrefix
!=
0
)
{
fstBuilderNodeUnfinishedAddOutputPrefix
(
un
,
addPrefix
);
if
(
i
+
1
<
ssz
)
{
FstBuilderNodeUnfinished
*
unf
=
taosArrayGet
(
node
->
stack
,
i
+
1
);
fstBuilderNodeUnfinishedAddOutputPrefix
(
unf
,
addPrefix
);
}
}
}
return
i
;
...
...
@@ -581,14 +584,13 @@ uint64_t fstStateFindInput(FstState *s, FstNode *node, uint8_t b, bool *null) {
-
1
// pack size
-
node
->
nTrans
;
uint64_t
end
=
start
+
node
->
nTrans
;
uint64_t
len
=
end
-
start
;
int32_t
d
len
=
0
;
uint8_t
*
data
=
fstSliceData
(
slice
,
&
d
len
);
FstSlice
t
=
fstSliceCopy
(
slice
,
start
,
end
-
1
);
int32_t
len
=
0
;
uint8_t
*
data
=
fstSliceData
(
&
t
,
&
len
);
for
(
int
i
=
0
;
i
<
len
;
i
++
)
{
//uint8_t v = slice->data[slice->start + i];
////slice->data[slice->start + i];
uint8_t
v
=
data
[
i
];
if
(
v
==
b
)
{
return
node
->
nTrans
-
i
-
1
;
// bug
}
...
...
@@ -1060,7 +1062,7 @@ bool fstGet(Fst *fst, FstSlice *b, Output *out) {
}
*
out
=
tOut
;
return
fals
e
;
return
tru
e
;
}
FstNode
*
fstGetRoot
(
Fst
*
fst
)
{
...
...
source/libs/index/test/indexTests.cpp
浏览文件 @
8c7fd12c
...
...
@@ -83,7 +83,7 @@ int main(int argc, char** argv) {
std
::
string
str
(
"aaa"
);
str
[
2
]
=
'a'
+
i
;
FstSlice
key
=
fstSliceCreate
((
uint8_t
*
)
str
.
c_str
(),
str
.
size
());
Output
val
=
2
;
Output
val
=
0
;
fstBuilderInsert
(
b
,
key
,
val
);
}
...
...
@@ -108,13 +108,14 @@ int main(int argc, char** argv) {
Fst
*
fst
=
fstCreate
(
&
s
);
{
std
::
string
str
(
"aa
a
"
);
std
::
string
str
(
"aa
x
"
);
uint64_t
out
;
FstSlice
key
=
fstSliceCreate
((
uint8_t
*
)
str
.
c_str
(),
str
.
size
());
bool
ok
=
fstGet
(
fst
,
&
key
,
&
out
);
if
(
ok
==
true
)
{
printf
(
"val = %d
\n
"
,
out
);
//indexInfo("Get key-value success, %s, %d", str.c_str(), out);
}
else
{
//indexError("Get key-value failed, %s", str.c_str());
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录