From: <tho...@us...> - 2010-11-04 23:20:40
|
Revision: 3899 http://bigdata.svn.sourceforge.net/bigdata/?rev=3899&view=rev Author: thompsonbry Date: 2010-11-04 23:20:34 +0000 (Thu, 04 Nov 2010) Log Message: ----------- Putting the synchronized block back into AbstractBTree.touch() as it causes problems with the nested subquery join. See https://sourceforge.net/apps/trac/bigdata/ticket/201 Modified Paths: -------------- branches/JOURNAL_HA_BRANCH/bigdata/src/java/com/bigdata/btree/AbstractBTree.java Modified: branches/JOURNAL_HA_BRANCH/bigdata/src/java/com/bigdata/btree/AbstractBTree.java =================================================================== --- branches/JOURNAL_HA_BRANCH/bigdata/src/java/com/bigdata/btree/AbstractBTree.java 2010-11-04 20:59:28 UTC (rev 3898) +++ branches/JOURNAL_HA_BRANCH/bigdata/src/java/com/bigdata/btree/AbstractBTree.java 2010-11-04 23:20:34 UTC (rev 3899) @@ -3391,13 +3391,15 @@ * @todo Actually, I think that this is just a fence post in ringbuffer * beforeOffer() method and the code might work without the synchronized * block if the fence post was fixed. + * + * @see https://sourceforge.net/apps/trac/bigdata/ticket/201 */ -// synchronized (this) { + synchronized (this) { doTouch(node); -// } + } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |