Skip to content

Commit

Permalink
Merge branch 'main' into tigris-int64
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi committed Aug 5, 2022
2 parents 4923666 + df30711 commit c630579
Show file tree
Hide file tree
Showing 9 changed files with 434 additions and 245 deletions.
8 changes: 8 additions & 0 deletions integration/update_field_compat_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ func TestUpdateFieldCompatInc(t *testing.T) {
update: bson.D{{"$inc", bson.D{{}}}},
skip: "https://github.com/FerretDB/FerretDB/issues/673",
},
"DotNotationFieldExist": {
update: bson.D{{"$inc", bson.D{{"v.foo", int32(1)}}}},
skip: "https://github.com/FerretDB/FerretDB/issues/972",
},
"DotNotationFieldNotExist": {
update: bson.D{{"$inc", bson.D{{"foo.bar", int32(1)}}}},
skip: "https://github.com/FerretDB/FerretDB/issues/972",
},
}

testUpdateCompat(t, testCases)
Expand Down
Loading

0 comments on commit c630579

Please sign in to comment.