Update of /cvsroot/monetdb/sql/src/server
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23431/src/server

Modified Files:
        sql_mvc.mx 
Log Message:
propagated changes of Friday Oct 09 2009
from the Nov2009 branch to the development trunk

  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2009/10/09 - sjoerd: src/server/sql_mvc.mx,1.226.2.2
  propagated changes of Friday Oct 09 2009
  from the Aug2009 branch to the Nov2009 branch
  
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    2009/10/09 - sjoerd: src/server/sql_mvc.mx,1.223.2.5
    It seems c->t->s can be NULL when we get here.
    This fixes the crash in test decl_sec_tab_in_func_body.SF-1907858.sql
    in src/test/BugTracker.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Index: sql_mvc.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/server/sql_mvc.mx,v
retrieving revision 1.227
retrieving revision 1.228
diff -u -d -r1.227 -r1.228
--- sql_mvc.mx  8 Oct 2009 13:36:00 -0000       1.227
+++ sql_mvc.mx  9 Oct 2009 08:57:07 -0000       1.228
@@ -858,7 +858,7 @@
        if (mvc_debug)
                fprintf(stderr, "mvc_bind_column %s.%s\n", t->base.name, cname);
 
-       if (!isTempSchema(c->t->s) && !isDeclaredSchema(c->t->s))
+       if (c->t->s && !isTempSchema(c->t->s) && !isDeclaredSchema(c->t->s))
                m->last = c;
        return c;
 }


------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to