Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
0c09eb9e
milvus
项目概览
BaiXuePrincess
/
milvus
与 Fork 源项目一致
从无法访问的项目Fork
通知
7
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
milvus
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0c09eb9e
编写于
3月 08, 2020
作者:
G
groot
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'source/master'
上级
9203bdf8
929a976b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
21 deletion
+4
-21
CHANGELOG.md
CHANGELOG.md
+2
-1
core/src/db/meta/MySQLMetaImpl.cpp
core/src/db/meta/MySQLMetaImpl.cpp
+1
-10
core/src/db/meta/SqliteMetaImpl.cpp
core/src/db/meta/SqliteMetaImpl.cpp
+1
-10
未找到文件。
CHANGELOG.md
浏览文件 @
0c09eb9e
...
...
@@ -13,7 +13,7 @@ Please mark all change in change log and use the issue from GitHub
-
\#
977 Server crash when create tables concurrently
-
\#
990 Check gpu resources setting when assign repeated value
-
\#
995 table count set to 0 if no tables found
-
\#
1010
i
mprove error message when offset or page_size is equal 0
-
\#
1010
I
mprove error message when offset or page_size is equal 0
-
\#
1022 check if partition name is legal
-
\#
1028 check if table exists when show partitions
-
\#
1029 check if table exists when try to delete partition
...
...
@@ -43,6 +43,7 @@ Please mark all change in change log and use the issue from GitHub
-
\#
1530 Set table file with correct engine type in meta
-
\#
1532 Search with ivf_flat failed with open-dataset: sift-256-hamming
-
\#
1535 Degradation searching performance with metric_type: binary_idmap
-
\#
1556 Index file not created after table and index created
## Feature
-
\#
216 Add CLI to get server info
...
...
core/src/db/meta/MySQLMetaImpl.cpp
浏览文件 @
0c09eb9e
...
...
@@ -674,16 +674,7 @@ MySQLMetaImpl::CreateTableFile(TableFileSchema& file_schema) {
file_schema
.
updated_time_
=
file_schema
.
created_on_
;
file_schema
.
index_file_size_
=
table_schema
.
index_file_size_
;
file_schema
.
index_params_
=
table_schema
.
index_params_
;
if
(
file_schema
.
file_type_
==
TableFileSchema
::
FILE_TYPE
::
NEW
||
file_schema
.
file_type_
==
TableFileSchema
::
FILE_TYPE
::
NEW_MERGE
)
{
file_schema
.
engine_type_
=
server
::
ValidationUtil
::
IsBinaryMetricType
(
table_schema
.
metric_type_
)
?
(
int32_t
)
EngineType
::
FAISS_BIN_IDMAP
:
(
int32_t
)
EngineType
::
FAISS_IDMAP
;
}
else
{
file_schema
.
engine_type_
=
table_schema
.
engine_type_
;
}
file_schema
.
engine_type_
=
table_schema
.
engine_type_
;
file_schema
.
metric_type_
=
table_schema
.
metric_type_
;
std
::
string
id
=
"NULL"
;
// auto-increment
...
...
core/src/db/meta/SqliteMetaImpl.cpp
浏览文件 @
0c09eb9e
...
...
@@ -375,16 +375,7 @@ SqliteMetaImpl::CreateTableFile(TableFileSchema& file_schema) {
file_schema
.
updated_time_
=
file_schema
.
created_on_
;
file_schema
.
index_file_size_
=
table_schema
.
index_file_size_
;
file_schema
.
index_params_
=
table_schema
.
index_params_
;
if
(
file_schema
.
file_type_
==
TableFileSchema
::
FILE_TYPE
::
NEW
||
file_schema
.
file_type_
==
TableFileSchema
::
FILE_TYPE
::
NEW_MERGE
)
{
file_schema
.
engine_type_
=
server
::
ValidationUtil
::
IsBinaryMetricType
(
table_schema
.
metric_type_
)
?
(
int32_t
)
EngineType
::
FAISS_BIN_IDMAP
:
(
int32_t
)
EngineType
::
FAISS_IDMAP
;
}
else
{
file_schema
.
engine_type_
=
table_schema
.
engine_type_
;
}
file_schema
.
engine_type_
=
table_schema
.
engine_type_
;
file_schema
.
metric_type_
=
table_schema
.
metric_type_
;
// multi-threads call sqlite update may get exception('bad logic', etc), so we add a lock here
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录