Skip to content

Commit

Permalink
Build and package v1.21 RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbuda committed Nov 2, 2024
1 parent db2f78a commit b4e0684
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
fail-fast: false
matrix:
mg_version: ["2.21.0"]
mg_rc_version: ["rc1"]
mg_rc_version: ["rc2"]
arch: ["amd64", "arm64"]
build_target: ["prod", "dev"]
build_scope: ["with ML", "without ML"]
Expand Down
2 changes: 1 addition & 1 deletion cpp/memgraph
Submodule memgraph updated 53 files
+1 −0 src/query/CMakeLists.txt
+63 −0 src/query/db_accessor.hpp
+1 −1 src/query/frontend/ast/ast.hpp
+0 −3 src/query/frontend/ast/cypher_main_visitor.cpp
+8 −5 src/query/frontend/ast/cypher_main_visitor.hpp
+6 −3 src/query/frontend/opencypher/parser.hpp
+7 −6 src/query/interpreter.cpp
+3 −0 src/query/plan/hint_provider.hpp
+65 −4 src/query/plan/operator.cpp
+44 −4 src/query/plan/operator.hpp
+3 −0 src/query/plan/operator_type_info.cpp
+23 −0 src/query/plan/point_distance_condition.hpp
+92 −14 src/query/plan/preprocess.cpp
+59 −6 src/query/plan/preprocess.hpp
+7 −0 src/query/plan/pretty_print.cpp
+1 −0 src/query/plan/pretty_print.hpp
+10 −0 src/query/plan/rewrite/edge_index_lookup.hpp
+143 −0 src/query/plan/rewrite/index_lookup.hpp
+10 −0 src/query/plan/rewrite/join.hpp
+16 −0 src/query/plan/vertex_count_cache.hpp
+3 −0 src/storage/v2/CMakeLists.txt
+15 −1 src/storage/v2/disk/storage.cpp
+9 −2 src/storage/v2/disk/storage.hpp
+376 −63 src/storage/v2/indices/point_index.cpp
+38 −1 src/storage/v2/indices/point_index.hpp
+15 −0 src/storage/v2/indices/point_index_change_collector.cpp
+2 −0 src/storage/v2/indices/point_index_change_collector.hpp
+80 −0 src/storage/v2/indices/point_index_expensive_header.hpp
+13 −0 src/storage/v2/indices/point_iterator.cpp
+220 −0 src/storage/v2/indices/point_iterator.hpp
+20 −6 src/storage/v2/inmemory/storage.cpp
+11 −3 src/storage/v2/inmemory/storage.hpp
+1 −1 src/storage/v2/point.hpp
+30 −41 src/storage/v2/point_functions.cpp
+1 −0 src/storage/v2/storage.cpp
+9 −1 src/storage/v2/storage.hpp
+5 −0 src/storage/v2/transaction.hpp
+1 −0 src/utils/event_counter.cpp
+2 −0 src/utils/typeinfo.hpp
+1 −0 tests/e2e/query_planning/CMakeLists.txt
+43 −0 tests/e2e/query_planning/query_planning_point_index.py
+5 −0 tests/e2e/query_planning/workloads.yaml
+2 −2 tests/e2e/replication/replicate_spatial_feature.py
+1 −0 tests/e2e/show_metrics/show_metrics.py
+16 −2 tests/gql_behave/steps/query.py
+0 −750 tests/gql_behave/tests/memgraph_V1/features/memgraph.feature
+12 −2 tests/gql_behave/tests/memgraph_V1/features/memgraph_bfs.feature
+1,027 −0 tests/gql_behave/tests/memgraph_V1/features/spatial.feature
+0 −2 tests/gql_behave/tests/memgraph_V1/graphs/graph_index.cypher
+9 −0 tests/manual/interactive_planning.cpp
+3 −3 tests/unit/cypher_main_visitor.cpp
+8 −0 tests/unit/query_plan_checker.hpp
+3 −3 tests/unit/storage_v2_durability_inmemory.cpp

0 comments on commit b4e0684

Please sign in to comment.