提交 776b7987 编写于 作者: Z zhiru 提交者: jinhai

update


Former-commit-id: 4f0b1ba8e987a4458cf2f83b61294bf36f03baaf
上级 e93d06f1
......@@ -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);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册