Changeset: 12f45c349ff1 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/12f45c349ff1
Modified Files:
        monetdb5/optimizer/opt_pushselect.c
Branch: default
Log Message:

backported fix, need changes for optcall


diffs (16 lines):

diff --git a/monetdb5/optimizer/opt_pushselect.c 
b/monetdb5/optimizer/opt_pushselect.c
--- a/monetdb5/optimizer/opt_pushselect.c
+++ b/monetdb5/optimizer/opt_pushselect.c
@@ -110,8 +110,10 @@ OPTpushselectImplementation(Client ctx, 
        str msg = MAL_SUCCEED;
        allocator *ta = mb->ta;
 
-       if (MB_LARGE(mb))
-                       return msg;
+       if (MB_LARGE(mb)) {
+               (void) pushInt(mb, pci, actions);
+               return msg;
+       }
        if (mb->errors)
                throw(MAL, "optimizer.pushselect", "%s", mb->errors);
 
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to