Changeset: 4469982ede06 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=4469982ede06
Modified Files:
        monetdb5/modules/mal/projectionpath.c
Branch: unlock
Log Message:

small fix for projectionpath with join results


diffs (12 lines):

diff --git a/monetdb5/modules/mal/projectionpath.c 
b/monetdb5/modules/mal/projectionpath.c
--- a/monetdb5/modules/mal/projectionpath.c
+++ b/monetdb5/modules/mal/projectionpath.c
@@ -29,7 +29,7 @@ ALGprojectionpath(Client cntxt, MalBlkPt
        for (i = pci->retc; i < pci->argc; i++) {
                bid = *getArgReference_bat(stk, pci, i);
                b = BATdescriptor(bid);
-               if (b == NULL || (i + 1 < pci->argc && !BATiscand(b))) {
+               if (b == NULL || (i + 1 < pci->argc && (!BATiscand(b) && 
ATOMtype(b->ttype) != TYPE_oid))) {
                        while (--i >= pci->retc)
                                BBPunfix(joins[i - pci->retc]->batCacheid);
                        GDKfree(joins);
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to