From c0cc7a633d700a1885f5c1d31029bae52a6ae496 Mon Sep 17 00:00:00 2001 From: hns Date: Mon, 23 Oct 2006 18:34:23 +0000 Subject: [PATCH] * Use extensionId/prototype name instead of just the prototype name if a filter refers to the prototype column. Fixes bug 484 (merging to helma_1_5 from HEAD) --- src/helma/objectmodel/db/Relation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/objectmodel/db/Relation.java b/src/helma/objectmodel/db/Relation.java index dd540999..335618c0 100644 --- a/src/helma/objectmodel/db/Relation.java +++ b/src/helma/objectmodel/db/Relation.java @@ -887,7 +887,7 @@ public final class Relation { } else if (columnName.equals(dbmap.getNameField())) { value = nonvirtual.getName(); } else if (columnName.equals(dbmap.getPrototypeField())) { - value = nonvirtual.getPrototype(); + value = dbmap.getExtensionId(); } } }