Update include to full path

add auto To variable declaration
This commit is contained in:
jeremy 2022-11-17 14:11:25 +01:00
parent 5f88e75571
commit fe03f5b206

View File

@ -13,8 +13,8 @@
#include <vector> #include <vector>
#include "pretty_print_ast_to_original_expression.hpp"
#include "storage/v3/bindings/db_accessor.hpp" #include "storage/v3/bindings/db_accessor.hpp"
#include "storage/v3/bindings/pretty_print_ast_to_original_expression.hpp"
#include "storage/v3/expr.hpp" #include "storage/v3/expr.hpp"
#include "storage/v3/value_conversions.hpp" #include "storage/v3/value_conversions.hpp"
@ -387,8 +387,7 @@ std::optional<msgs::ExpandOneResultRow> GetExpandOneResult(
return std::nullopt; return std::nullopt;
} }
std::optional<std::map<PropertyId, Value>> src_vertex_properties; auto src_vertex_properties = FillUpSourceVertexProperties(v_acc, req, storage::v3::View::NEW, schema);
src_vertex_properties = FillUpSourceVertexProperties(v_acc, req, storage::v3::View::NEW, schema);
if (!src_vertex_properties) { if (!src_vertex_properties) {
return std::nullopt; return std::nullopt;