Adding authentication data replication (#1666)
* Add AUTH system tx deltas * Add auth data RPC and handlers * Support multiple system deltas in a single transaction * Added e2e test * Bugfix: KVStore segfault after move --------- Co-authored-by: Gareth Lloyd <gareth.lloyd@memgraph.io>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// Copyright 2023 Memgraph Ltd.
|
||||
// Copyright 2024 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
|
||||
@@ -68,7 +68,16 @@ class TransactionQueueMultipleTest : public ::testing::Test {
|
||||
}() // iile
|
||||
};
|
||||
|
||||
memgraph::query::InterpreterContext interpreter_context{{}, nullptr, &repl_state};
|
||||
memgraph::system::System system_state;
|
||||
memgraph::query::InterpreterContext interpreter_context{{},
|
||||
nullptr,
|
||||
&repl_state,
|
||||
system_state
|
||||
#ifdef MG_ENTERPRISE
|
||||
,
|
||||
nullptr
|
||||
#endif
|
||||
};
|
||||
InterpreterFaker main_interpreter{&interpreter_context, db};
|
||||
std::vector<InterpreterFaker *> running_interpreters;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user