When a groupby node is created, whatever was in the

cache previously with its key is evicted. This fixes
a bug introduced with null node caching.
This commit is contained in:
hns 2001-03-22 15:45:43 +00:00
parent b4e8ff87fe
commit 485c9572d7

View file

@ -920,6 +920,7 @@ public class Node implements INode, Serializable {
setNode (sid, node); setNode (sid, node);
subnodes.addElement (node.getID ()); subnodes.addElement (node.getID ());
} }
nmgr.evictKey (node.getKey ());
return node; return node;
} }
} catch (Exception noluck) { } catch (Exception noluck) {