Skip to content

Commit

Permalink
Replicate clear instruction unconditionally
Browse files Browse the repository at this point in the history
  • Loading branch information
jedelbo committed Jun 13, 2024
1 parent 8da33a3 commit c090040
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* Valgrind could report a branch on an uninitialized read when opening something that is not an encrypted Realm file as an encrypted Realm file ([PR #7789](https://github.com/realm/realm-core/pull/7789), since v14.10.0).
* Opening an FLX realm asynchronously may not wait to download all data ([#7720](https://github.com/realm/realm-core/issues/7720), since FLX sync was introduced).
* Fix compilation with Xcode 16 ([PR #7802](https://github.com/realm/realm-core/pull/7802))
* You could get unexpected merge results when assigning to a list ([#7809](https://github.com/realm/realm-core/issues/7809), since v10.2.0)

### Breaking changes
* None.
Expand Down
9 changes: 5 additions & 4 deletions src/realm/dictionary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -823,10 +823,11 @@ size_t Dictionary::find_first(Mixed value) const

void Dictionary::clear()
{
if (size() > 0) {
if (Replication* repl = get_replication()) {
repl->dictionary_clear(*this);
}
auto sz = size();
if (Replication* repl = get_replication()) {
repl->dictionary_clear(*this);
}
if (sz > 0) {
CascadeState cascade_state(CascadeState::Mode::Strong);
bool recurse = remove_backlinks(cascade_state);

Expand Down
9 changes: 5 additions & 4 deletions src/realm/list.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -930,10 +930,11 @@ inline LnkLst Obj::get_linklist(StringData col_name) const
template <class T>
void Lst<T>::clear()
{
if (size() > 0) {
if (Replication* repl = Base::get_replication()) {
repl->list_clear(*this);
}
auto sz = size();
if (Replication* repl = Base::get_replication()) {
repl->list_clear(*this);
}
if (sz > 0) {
do_clear();
bump_content_version();
}
Expand Down
63 changes: 63 additions & 0 deletions test/test_sync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6204,6 +6204,69 @@ TEST(Sync_DeleteCollectionInCollection)
}
}

TEST(Sync_CollectionClear)
{
TEST_CLIENT_DB(db_1);
TEST_CLIENT_DB(db_2);

TEST_DIR(dir);
fixtures::ClientServerFixture fixture{dir, test_context};
fixture.start();

Session session_1 = fixture.make_session(db_1, "/test");
Session session_2 = fixture.make_session(db_2, "/test");

Timestamp now{std::chrono::system_clock::now()};

write_transaction(db_1, [&](WriteTransaction& tr) {
auto& g = tr.get_group();
auto table = g.add_table_with_primary_key("class_Table", type_Int, "id");
auto col_list = table->add_column_list(type_Int, "ints");
auto col_dict = table->add_column_dictionary(type_String, "features");

auto foo = table->create_object_with_primary_key(123);
auto list = foo.get_list<Int>(col_list);
list.clear();
list.add(1);
auto dict = foo.get_dictionary(col_dict);
dict.clear();
dict.insert("address", "Any Road 3");
});

write_transaction(db_2, [&](WriteTransaction& tr) {
auto& g = tr.get_group();
auto table = g.add_table_with_primary_key("class_Table", type_Int, "id");
auto col_list = table->add_column_list(type_Int, "ints");
auto col_dict = table->add_column_dictionary(type_String, "features");

auto foo = table->create_object_with_primary_key(123);
auto list = foo.get_list<Int>(col_list);
list.clear();
list.add(2);
auto dict = foo.get_dictionary(col_dict);
dict.clear();
dict.insert("city", "Andeby");
});

session_1.wait_for_upload_complete_or_client_stopped();
session_2.wait_for_upload_complete_or_client_stopped();
session_1.wait_for_download_complete_or_client_stopped();
session_2.wait_for_download_complete_or_client_stopped();

{
ReadTransaction read_1{db_1};
auto table = read_1.get_table("class_Table");
auto obj = table->get_object_with_primary_key(123);
auto list = obj.get_list<Int>("ints");
auto dict = obj.get_dictionary("features");
CHECK_EQUAL(list.size(), 1);
CHECK_EQUAL(dict.size(), 1);

ReadTransaction read_2{db_2};
CHECK(compare_groups(read_1, read_2));
}
}

TEST(Sync_Dictionary_Links)
{
TEST_CLIENT_DB(db_1);
Expand Down

0 comments on commit c090040

Please sign in to comment.