msi: Add a test to exersize the code to retrieve rows from join tables.
diff --git a/dlls/msi/tests/db.c b/dlls/msi/tests/db.c
index d3e9ad1..6a2852d 100644
--- a/dlls/msi/tests/db.c
+++ b/dlls/msi/tests/db.c
@@ -3218,6 +3218,9 @@
ok( !lstrcmp( buf, join_res_first[i].two ),
"For (row %d, column 2) expected '%s', got %s\n", i, join_res_first[i].two, buf );
+ r = MsiViewModify(hview, MSIMODIFY_UPDATE, hrec);
+ todo_wine ok( r == ERROR_SUCCESS, "failed to modiy view: %d\n", r );
+
i++;
MsiCloseHandle(hrec);
}