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

disable asserts, ie iterator could return a bat_nil.


diffs (19 lines):

diff --git a/monetdb5/mal/mal_interpreter.c b/monetdb5/mal/mal_interpreter.c
--- a/monetdb5/mal/mal_interpreter.c
+++ b/monetdb5/mal/mal_interpreter.c
@@ -676,12 +676,12 @@ str runMALsequence(Client cntxt, MalBlkP
                                        int t = getArgType(mb, pci, i);
 
                                        if (isaBatType(t)) {
-                                               bat bid = stk->stk[a].val.bval;
+                                               //bat bid = 
stk->stk[a].val.bval;
                                                t = getBatType(t);
                                                assert(stk->stk[a].vtype == 
TYPE_bat);
-                                               assert( !is_bat_nil(bid));
+                                               //assert( !is_bat_nil(bid));
                                                assert(t != TYPE_any);
-                                               assert( 
ATOMtype(BBP_desc(bid)->ttype) == ATOMtype(t));
+                                               //assert( 
ATOMtype(BBP_desc(bid)->ttype) == ATOMtype(t));
                                        } else {
                                                assert(t == stk->stk[a].vtype);
                                        }
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to