mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-30 07:25:37 +08:00
update
Former-commit-id: 0f8c129028a1625d683abf11d6464b0a8fa4fb8c
This commit is contained in:
parent
5a31d921a3
commit
7bc5873743
@ -570,7 +570,8 @@ namespace meta {
|
||||
|
||||
table_schema.engine_type_ = resRow["engine_type"];
|
||||
|
||||
table_schema.store_raw_data_ = (resRow["store_raw_data"] == 1);
|
||||
int store_raw_data = resRow["store_raw_data"];
|
||||
table_schema.store_raw_data_ = (store_raw_data == 1);
|
||||
}
|
||||
else {
|
||||
return Status::NotFound("Table " + table_schema.table_id_ + " not found");
|
||||
@ -685,7 +686,8 @@ namespace meta {
|
||||
|
||||
table_schema.engine_type_ = resRow["engine_type"];
|
||||
|
||||
table_schema.store_raw_data_ = (resRow["store_raw_data"] == 1);
|
||||
int store_raw_data = resRow["store_raw_data"];
|
||||
table_schema.store_raw_data_ = (store_raw_data == 1);
|
||||
|
||||
table_schema_array.emplace_back(table_schema);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user