Skip to content

Commit

Permalink
Merge pull request #172 from cwida/62-complex-patterns
Browse files Browse the repository at this point in the history
62 complex patterns
  • Loading branch information
Dtenwolde committed Jan 18, 2024
2 parents 7aafafc + 82b4945 commit 8b4b264
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/include/duckdb/parser/path_reference.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

#pragma once

namespace duckdb {
Expand Down
2 changes: 1 addition & 1 deletion src/parser/property_graph_table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ shared_ptr<PropertyGraphTable> PropertyGraphTable::Copy() const {
for (auto &key : destination_pk) {
result->destination_pk.push_back(key);
}
return std::move(result);
return result;
}

} // namespace duckdb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Transformer::TransformPropertyGraphTable(duckdb_libpgquery::PGPropertyGraphTable
}
}

return std::move(pg_table);
return pg_table;
}

unique_ptr<CreateStatement>
Expand Down Expand Up @@ -170,7 +170,7 @@ Transformer::TransformCreatePropertyGraph(duckdb_libpgquery::PGCreatePropertyGra
auto result = make_uniq<CreateStatement>();
result->info = std::move(info);

return std::move(result);
return result;
}

} // namespace duckdb

0 comments on commit 8b4b264

Please sign in to comment.