Changeset: 6cc746b52730 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=6cc746b52730
Modified Files:
        monetdb5/mal/mal_session.c
Branch: default
Log Message:

Revert the patch  62218:b6b07ce207a9
It breaks the proper working of the system.
Catching initialization exceptions should be
dealt with in a different way.


diffs (21 lines):

diff --git a/monetdb5/mal/mal_session.c b/monetdb5/mal/mal_session.c
--- a/monetdb5/mal/mal_session.c
+++ b/monetdb5/mal/mal_session.c
@@ -58,15 +58,11 @@ malBootstrap(void)
        }
        pushEndInstruction(c->curprg->def);
        chkProgram(c->fdout, c->nspace, c->curprg->def);
-       if (c->curprg->def->errors) {
+       if (c->curprg->def->errors) 
                showErrors(c);
-               return 0;
-       }
        s = MALengine(c);
-       if (s != MAL_SUCCEED) {
+       if (s != MAL_SUCCEED)
                GDKfree(s);
-               return 0;
-       }
        return 1;
 }
 
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to