Merge branch 'master' into 1529-configure-sonarcloud-for-automatic-analysis
This commit is contained in:
commit
6680f99e4d
@ -127,6 +127,8 @@ storage::Result<Value> ToBoltValue(const query::TypedValue &value, const storage
|
||||
return Value(value.ValueLocalDateTime());
|
||||
case query::TypedValue::Type::Duration:
|
||||
return Value(value.ValueDuration());
|
||||
case query::TypedValue::Type::Function:
|
||||
throw communication::bolt::ValueException("Unsupported conversion from TypedValue::Function to Value");
|
||||
case query::TypedValue::Type::Graph:
|
||||
auto maybe_graph = ToBoltGraph(value.ValueGraph(), db, view);
|
||||
if (maybe_graph.HasError()) return maybe_graph.GetError();
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2022 Memgraph Ltd.
|
||||
// Copyright 2023 Memgraph Ltd.
|
||||
//
|
||||
// Use of this software is governed by the Business Source License
|
||||
// included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
|
||||
@ -62,6 +62,7 @@ bool TypedValueCompare(const TypedValue &a, const TypedValue &b) {
|
||||
case TypedValue::Type::Edge:
|
||||
case TypedValue::Type::Path:
|
||||
case TypedValue::Type::Graph:
|
||||
case TypedValue::Type::Function:
|
||||
throw QueryRuntimeException("Comparison is not defined for values of type {}.", a.type());
|
||||
case TypedValue::Type::Null:
|
||||
LOG_FATAL("Invalid type");
|
||||
|
@ -593,6 +593,7 @@ TypedValue ValueType(const TypedValue *args, int64_t nargs, const FunctionContex
|
||||
case TypedValue::Type::Duration:
|
||||
return TypedValue("DURATION", ctx.memory);
|
||||
case TypedValue::Type::Graph:
|
||||
case TypedValue::Type::Function:
|
||||
throw QueryRuntimeException("Cannot fetch graph as it is not standardized openCypher type name");
|
||||
}
|
||||
}
|
||||
|
@ -18,6 +18,7 @@
|
||||
#include <map>
|
||||
#include <optional>
|
||||
#include <regex>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
@ -903,7 +904,17 @@ class ExpressionEvaluator : public ExpressionVisitor<TypedValue> {
|
||||
return TypedValue(std::move(result), ctx_->memory);
|
||||
}
|
||||
|
||||
TypedValue Visit(Exists &exists) override { return TypedValue{frame_->at(symbol_table_->at(exists)), ctx_->memory}; }
|
||||
TypedValue Visit(Exists &exists) override {
|
||||
TypedValue &frame_exists_value = frame_->at(symbol_table_->at(exists));
|
||||
if (!frame_exists_value.IsFunction()) [[unlikely]] {
|
||||
throw QueryRuntimeException(
|
||||
"Unexpected behavior: Exists expected a function, got {}. Please report the problem on GitHub issues",
|
||||
frame_exists_value.type());
|
||||
}
|
||||
TypedValue result{ctx_->memory};
|
||||
frame_exists_value.ValueFunction()(&result);
|
||||
return result;
|
||||
}
|
||||
|
||||
TypedValue Visit(All &all) override {
|
||||
auto list_value = all.list_expression_->Accept(*this);
|
||||
|
@ -2500,13 +2500,16 @@ std::vector<Symbol> EvaluatePatternFilter::ModifiedSymbols(const SymbolTable &ta
|
||||
}
|
||||
|
||||
bool EvaluatePatternFilter::EvaluatePatternFilterCursor::Pull(Frame &frame, ExecutionContext &context) {
|
||||
OOMExceptionEnabler oom_exception;
|
||||
SCOPED_PROFILE_OP("EvaluatePatternFilter");
|
||||
std::function<void(TypedValue *)> function = [&frame, self = this->self_, input_cursor = this->input_cursor_.get(),
|
||||
&context](TypedValue *return_value) {
|
||||
OOMExceptionEnabler oom_exception;
|
||||
input_cursor->Reset();
|
||||
|
||||
input_cursor_->Reset();
|
||||
|
||||
frame[self_.output_symbol_] = TypedValue(input_cursor_->Pull(frame, context), context.evaluation_context.memory);
|
||||
*return_value = TypedValue(input_cursor->Pull(frame, context), context.evaluation_context.memory);
|
||||
};
|
||||
|
||||
frame[self_.output_symbol_] = TypedValue(std::move(function));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include <stack>
|
||||
#include <unordered_set>
|
||||
|
||||
#include "query/plan/preprocess.hpp"
|
||||
#include "utils/algorithm.hpp"
|
||||
#include "utils/exceptions.hpp"
|
||||
#include "utils/logging.hpp"
|
||||
@ -516,14 +517,25 @@ bool HasBoundFilterSymbols(const std::unordered_set<Symbol> &bound_symbols, cons
|
||||
|
||||
Expression *ExtractFilters(const std::unordered_set<Symbol> &bound_symbols, Filters &filters, AstStorage &storage) {
|
||||
Expression *filter_expr = nullptr;
|
||||
std::vector<FilterInfo> and_joinable_filters{};
|
||||
for (auto filters_it = filters.begin(); filters_it != filters.end();) {
|
||||
if (HasBoundFilterSymbols(bound_symbols, *filters_it)) {
|
||||
filter_expr = impl::BoolJoin<AndOperator>(storage, filter_expr, filters_it->expression);
|
||||
and_joinable_filters.emplace_back(*filters_it);
|
||||
filters_it = filters.erase(filters_it);
|
||||
} else {
|
||||
filters_it++;
|
||||
}
|
||||
}
|
||||
// Idea here is to join filters in a way
|
||||
// that pattern filter ( exists() ) is at the end
|
||||
// so if any of the AND filters before
|
||||
// evaluate to false we don't need to
|
||||
// evaluate pattern ( exists() ) filter
|
||||
std::partition(and_joinable_filters.begin(), and_joinable_filters.end(),
|
||||
[](const FilterInfo &filter_info) { return filter_info.type != FilterInfo::Type::Pattern; });
|
||||
for (auto &and_joinable_filter : and_joinable_filters) {
|
||||
filter_expr = impl::BoolJoin<AndOperator>(storage, filter_expr, and_joinable_filter.expression);
|
||||
}
|
||||
return filter_expr;
|
||||
}
|
||||
|
||||
|
@ -313,6 +313,8 @@ mgp_value_type FromTypedValueType(memgraph::query::TypedValue::Type type) {
|
||||
return MGP_VALUE_TYPE_LOCAL_DATE_TIME;
|
||||
case memgraph::query::TypedValue::Type::Duration:
|
||||
return MGP_VALUE_TYPE_DURATION;
|
||||
case memgraph::query::TypedValue::Type::Function:
|
||||
throw std::logic_error{"mgp_value for TypedValue::Type::Function doesn't exist."};
|
||||
case memgraph::query::TypedValue::Type::Graph:
|
||||
throw std::logic_error{"mgp_value for TypedValue::Type::Graph doesn't exist."};
|
||||
}
|
||||
@ -3672,7 +3674,8 @@ std::ostream &PrintValue(const TypedValue &value, std::ostream *stream) {
|
||||
case TypedValue::Type::Edge:
|
||||
case TypedValue::Type::Path:
|
||||
case TypedValue::Type::Graph:
|
||||
LOG_FATAL("value must not be a graph element");
|
||||
case TypedValue::Type::Function:
|
||||
LOG_FATAL("value must not be a graph|function element");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright 2022 Memgraph Ltd.
|
||||
// Copyright 2023 Memgraph Ltd.
|
||||
//
|
||||
// Use of this software is governed by the Business Source License
|
||||
// included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
|
||||
@ -22,6 +22,7 @@
|
||||
#include "storage/v2/temporal.hpp"
|
||||
#include "utils/exceptions.hpp"
|
||||
#include "utils/fnv.hpp"
|
||||
#include "utils/logging.hpp"
|
||||
#include "utils/memory.hpp"
|
||||
|
||||
namespace memgraph::query {
|
||||
@ -215,6 +216,9 @@ TypedValue::TypedValue(const TypedValue &other, utils::MemoryResource *memory) :
|
||||
case Type::Duration:
|
||||
new (&duration_v) utils::Duration(other.duration_v);
|
||||
return;
|
||||
case Type::Function:
|
||||
new (&function_v) std::function<void(TypedValue *)>(other.function_v);
|
||||
return;
|
||||
case Type::Graph:
|
||||
auto *graph_ptr = utils::Allocator<Graph>(memory_).new_object<Graph>(*other.graph_v);
|
||||
new (&graph_v) std::unique_ptr<Graph>(graph_ptr);
|
||||
@ -268,6 +272,9 @@ TypedValue::TypedValue(TypedValue &&other, utils::MemoryResource *memory) : memo
|
||||
case Type::Duration:
|
||||
new (&duration_v) utils::Duration(other.duration_v);
|
||||
break;
|
||||
case Type::Function:
|
||||
new (&function_v) std::function<void(TypedValue *)>(other.function_v);
|
||||
break;
|
||||
case Type::Graph:
|
||||
if (other.GetMemoryResource() == memory_) {
|
||||
new (&graph_v) std::unique_ptr<Graph>(std::move(other.graph_v));
|
||||
@ -343,6 +350,7 @@ DEFINE_VALUE_AND_TYPE_GETTERS(utils::Date, Date, date_v)
|
||||
DEFINE_VALUE_AND_TYPE_GETTERS(utils::LocalTime, LocalTime, local_time_v)
|
||||
DEFINE_VALUE_AND_TYPE_GETTERS(utils::LocalDateTime, LocalDateTime, local_date_time_v)
|
||||
DEFINE_VALUE_AND_TYPE_GETTERS(utils::Duration, Duration, duration_v)
|
||||
DEFINE_VALUE_AND_TYPE_GETTERS(std::function<void(TypedValue *)>, Function, function_v)
|
||||
|
||||
Graph &TypedValue::ValueGraph() {
|
||||
if (type_ != Type::Graph) {
|
||||
@ -417,6 +425,8 @@ std::ostream &operator<<(std::ostream &os, const TypedValue::Type &type) {
|
||||
return os << "duration";
|
||||
case TypedValue::Type::Graph:
|
||||
return os << "graph";
|
||||
case TypedValue::Type::Function:
|
||||
return os << "function";
|
||||
}
|
||||
LOG_FATAL("Unsupported TypedValue::Type");
|
||||
}
|
||||
@ -569,6 +579,9 @@ TypedValue &TypedValue::operator=(const TypedValue &other) {
|
||||
case Type::Duration:
|
||||
new (&duration_v) utils::Duration(other.duration_v);
|
||||
return *this;
|
||||
case Type::Function:
|
||||
new (&function_v) std::function<void(TypedValue *)>(other.function_v);
|
||||
return *this;
|
||||
}
|
||||
LOG_FATAL("Unsupported TypedValue::Type");
|
||||
}
|
||||
@ -628,6 +641,9 @@ TypedValue &TypedValue::operator=(TypedValue &&other) noexcept(false) {
|
||||
case Type::Duration:
|
||||
new (&duration_v) utils::Duration(other.duration_v);
|
||||
break;
|
||||
case Type::Function:
|
||||
new (&function_v) std::function<void(TypedValue *)>{other.function_v};
|
||||
break;
|
||||
case Type::Graph:
|
||||
if (other.GetMemoryResource() == memory_) {
|
||||
new (&graph_v) std::unique_ptr<Graph>(std::move(other.graph_v));
|
||||
@ -676,6 +692,9 @@ void TypedValue::DestroyValue() {
|
||||
case Type::LocalDateTime:
|
||||
case Type::Duration:
|
||||
break;
|
||||
case Type::Function:
|
||||
std::destroy_at(&function_v);
|
||||
break;
|
||||
case Type::Graph: {
|
||||
auto *graph = graph_v.release();
|
||||
std::destroy_at(&graph_v);
|
||||
@ -1153,6 +1172,8 @@ size_t TypedValue::Hash::operator()(const TypedValue &value) const {
|
||||
case TypedValue::Type::Duration:
|
||||
return utils::DurationHash{}(value.ValueDuration());
|
||||
break;
|
||||
case TypedValue::Type::Function:
|
||||
throw TypedValueException("Unsupported hash function for Function");
|
||||
case TypedValue::Type::Graph:
|
||||
throw TypedValueException("Unsupported hash function for Graph");
|
||||
}
|
||||
|
@ -84,7 +84,8 @@ class TypedValue {
|
||||
LocalTime,
|
||||
LocalDateTime,
|
||||
Duration,
|
||||
Graph
|
||||
Graph,
|
||||
Function
|
||||
};
|
||||
|
||||
// TypedValue at this exact moment of compilation is an incomplete type, and
|
||||
@ -420,6 +421,9 @@ class TypedValue {
|
||||
new (&graph_v) std::unique_ptr<Graph>(graph_ptr);
|
||||
}
|
||||
|
||||
explicit TypedValue(std::function<void(TypedValue *)> &&other)
|
||||
: function_v(std::move(other)), type_(Type::Function) {}
|
||||
|
||||
/**
|
||||
* Construct with the value of other.
|
||||
* Default utils::NewDeleteResource() is used for allocations. After the move,
|
||||
@ -451,6 +455,7 @@ class TypedValue {
|
||||
TypedValue &operator=(const utils::LocalTime &);
|
||||
TypedValue &operator=(const utils::LocalDateTime &);
|
||||
TypedValue &operator=(const utils::Duration &);
|
||||
TypedValue &operator=(const std::function<void(TypedValue *)> &);
|
||||
|
||||
/** Copy assign other, utils::MemoryResource of `this` is used */
|
||||
TypedValue &operator=(const TypedValue &other);
|
||||
@ -506,6 +511,7 @@ class TypedValue {
|
||||
DECLARE_VALUE_AND_TYPE_GETTERS(utils::LocalDateTime, LocalDateTime)
|
||||
DECLARE_VALUE_AND_TYPE_GETTERS(utils::Duration, Duration)
|
||||
DECLARE_VALUE_AND_TYPE_GETTERS(Graph, Graph)
|
||||
DECLARE_VALUE_AND_TYPE_GETTERS(std::function<void(TypedValue *)>, Function)
|
||||
|
||||
#undef DECLARE_VALUE_AND_TYPE_GETTERS
|
||||
|
||||
@ -550,6 +556,7 @@ class TypedValue {
|
||||
utils::Duration duration_v;
|
||||
// As the unique_ptr is not allocator aware, it requires special attention when copying or moving graphs
|
||||
std::unique_ptr<Graph> graph_v;
|
||||
std::function<void(TypedValue *)> function_v;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -138,6 +138,8 @@ inline std::string ToString(const memgraph::query::TypedValue &value, const TAcc
|
||||
break;
|
||||
case memgraph::query::TypedValue::Type::Graph:
|
||||
throw std::logic_error{"Not implemented"};
|
||||
case memgraph::query::TypedValue::Type::Function:
|
||||
throw std::logic_error{"Not implemented"};
|
||||
}
|
||||
return os.str();
|
||||
}
|
||||
|
@ -13,6 +13,7 @@
|
||||
#include <cmath>
|
||||
#include <iterator>
|
||||
#include <memory>
|
||||
#include <stdexcept>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
|
||||
@ -83,6 +84,14 @@ class ExpressionEvaluatorTest : public ::testing::Test {
|
||||
return id;
|
||||
}
|
||||
|
||||
Exists *CreateExistsWithValue(std::string name, TypedValue &&value) {
|
||||
auto id = storage.template Create<Exists>();
|
||||
auto symbol = symbol_table.CreateSymbol(name, true);
|
||||
id->MapTo(symbol);
|
||||
frame[symbol] = std::move(value);
|
||||
return id;
|
||||
}
|
||||
|
||||
template <class TExpression>
|
||||
auto Eval(TExpression *expr) {
|
||||
ctx.properties = NamesToProperties(storage.properties_, &dba);
|
||||
@ -149,6 +158,33 @@ TYPED_TEST(ExpressionEvaluatorTest, AndOperatorShortCircuit) {
|
||||
}
|
||||
}
|
||||
|
||||
TYPED_TEST(ExpressionEvaluatorTest, AndExistsOperatorShortCircuit) {
|
||||
{
|
||||
std::function<void(TypedValue *)> my_func = [](TypedValue * /*return_value*/) {
|
||||
throw QueryRuntimeException("This should not be evaluated");
|
||||
};
|
||||
TypedValue func_should_not_evaluate{std::move(my_func)};
|
||||
|
||||
auto *op = this->storage.template Create<AndOperator>(
|
||||
this->storage.template Create<PrimitiveLiteral>(false),
|
||||
this->CreateExistsWithValue("anon1", std::move(func_should_not_evaluate)));
|
||||
auto value = this->Eval(op);
|
||||
EXPECT_EQ(value.ValueBool(), false);
|
||||
}
|
||||
{
|
||||
std::function<void(TypedValue *)> my_func = [memory = this->ctx.memory](TypedValue *return_value) {
|
||||
*return_value = TypedValue(false, memory);
|
||||
};
|
||||
TypedValue should_evaluate{std::move(my_func)};
|
||||
|
||||
auto *op =
|
||||
this->storage.template Create<AndOperator>(this->storage.template Create<PrimitiveLiteral>(true),
|
||||
this->CreateExistsWithValue("anon1", std::move(should_evaluate)));
|
||||
auto value = this->Eval(op);
|
||||
EXPECT_EQ(value.ValueBool(), false);
|
||||
}
|
||||
}
|
||||
|
||||
TYPED_TEST(ExpressionEvaluatorTest, AndOperatorNull) {
|
||||
{
|
||||
// Null doesn't short circuit
|
||||
|
@ -853,6 +853,26 @@ TYPED_TEST(TestPlanner, MatchFilterPropIsNotNull) {
|
||||
}
|
||||
}
|
||||
|
||||
TYPED_TEST(TestPlanner, MatchFilterWhere) {
|
||||
// Test MATCH (n)-[r]-(m) WHERE exists((n)-[]-()) and n!=n and 7!=8 RETURN n
|
||||
auto *query = QUERY(SINGLE_QUERY(
|
||||
MATCH(PATTERN(NODE("n"), EDGE("r"), NODE("m"))),
|
||||
WHERE(AND(EXISTS(PATTERN(NODE("n"), EDGE("edge2", memgraph::query::EdgeAtom::Direction::BOTH, {}, false),
|
||||
NODE("node3", std::nullopt, false))),
|
||||
AND(NEQ(IDENT("n"), IDENT("n")), NEQ(LITERAL(7), LITERAL(8))))),
|
||||
RETURN("n")));
|
||||
|
||||
std::list<BaseOpChecker *> pattern_filter{new ExpectScanAll(), new ExpectExpand(), new ExpectLimit(),
|
||||
new ExpectEvaluatePatternFilter()};
|
||||
CheckPlan<TypeParam>(
|
||||
query, this->storage,
|
||||
ExpectFilter(), // 7!=8
|
||||
ExpectScanAll(),
|
||||
ExpectFilter(std::vector<std::list<BaseOpChecker *>>{pattern_filter}), // filter pulls from expand
|
||||
ExpectExpand(), ExpectProduce());
|
||||
DeleteListContent(&pattern_filter);
|
||||
}
|
||||
|
||||
TYPED_TEST(TestPlanner, MultiMatchWhere) {
|
||||
// Test MATCH (n) -[r]- (m) MATCH (l) WHERE n.prop < 42 RETURN n
|
||||
FakeDbAccessor dba;
|
||||
|
@ -14,11 +14,13 @@
|
||||
#include <climits>
|
||||
#include <utility>
|
||||
|
||||
#include "query/frontend/ast/ast.hpp"
|
||||
#include "query/frontend/semantic/symbol_generator.hpp"
|
||||
#include "query/frontend/semantic/symbol_table.hpp"
|
||||
#include "query/plan/operator.hpp"
|
||||
#include "query/plan/planner.hpp"
|
||||
#include "query/plan/preprocess.hpp"
|
||||
#include "utils/typeinfo.hpp"
|
||||
|
||||
namespace memgraph::query::plan {
|
||||
|
||||
@ -197,6 +199,29 @@ class ExpectFilter : public OpChecker<Filter> {
|
||||
|
||||
filter.pattern_filters_[i]->Accept(check_updates);
|
||||
}
|
||||
// ordering in AND Operator must be ..., exists, exists, exists.
|
||||
auto *expr = filter.expression_;
|
||||
std::vector<Expression *> filter_expressions;
|
||||
while (auto *and_operator = utils::Downcast<AndOperator>(expr)) {
|
||||
auto *expr1 = and_operator->expression1_;
|
||||
auto *expr2 = and_operator->expression2_;
|
||||
filter_expressions.emplace_back(expr1);
|
||||
expr = expr2;
|
||||
}
|
||||
if (expr) filter_expressions.emplace_back(expr);
|
||||
|
||||
auto it = filter_expressions.begin();
|
||||
for (; it != filter_expressions.end(); it++) {
|
||||
if ((*it)->GetTypeInfo().name == query::Exists::kType.name) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
while (it != filter_expressions.end()) {
|
||||
ASSERT_TRUE((*it)->GetTypeInfo().name == query::Exists::kType.name)
|
||||
<< "Filter expression is '" << (*it)->GetTypeInfo().name << "' expected '" << query::Exists::kType.name
|
||||
<< "'!";
|
||||
it++;
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<std::list<BaseOpChecker *>> pattern_filters_;
|
||||
|
Loading…
Reference in New Issue
Block a user