mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-24 12:28:12 +00:00
6983452: SyncProvider issue for JoinRowSet implementation
Reviewed-by: darcy, ohair
This commit is contained in:
parent
331eea0db7
commit
c90d91d5fc
@ -889,7 +889,12 @@ public class CachedRowSetImpl extends BaseRowSet implements RowSet, RowSetIntern
|
||||
success = false;
|
||||
} else {
|
||||
tWriter = (TransactionalWriter)rowSetWriter;
|
||||
((CachedRowSetWriter)tWriter).commit(this, updateOnInsert);
|
||||
if (tWriter instanceof CachedRowSetWriter) {
|
||||
((CachedRowSetWriter)tWriter).commit(this, updateOnInsert);
|
||||
} else {
|
||||
tWriter.commit();
|
||||
}
|
||||
|
||||
success = true;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user