Update of /cvsroot/monetdb/sql/src/backends/monet5
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv15086/src/backends/monet5

Modified Files:
        sql.mx 
Log Message:
propagated changes of Tuesday Oct 27 2009 - Thursday Oct 29 2009
from the Nov2009 branch to the development trunk

  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2009/10/27 - mr-meltdown: src/backends/monet5/sql.mx,1.358.2.7
  fix horrible misindenting
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2009/10/27 - mr-meltdown: src/backends/monet5/sql.mx,1.358.2.8
  be a bit more helpful
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2009/10/27 - mr-meltdown: src/backends/monet5/sql.mx,1.358.2.9
  typo
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Index: sql.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/backends/monet5/sql.mx,v
retrieving revision 1.363
retrieving revision 1.364
diff -u -d -r1.363 -r1.364
--- sql.mx      26 Oct 2009 10:12:44 -0000      1.363
+++ sql.mx      29 Oct 2009 08:42:50 -0000      1.364
@@ -208,7 +208,7 @@
 
 pattern rsColumn{unsafe}(rs:int, tname:str, name:str, typename:str, 
digits:int, scale:int, col:bat[:oid,:any_1] ) :void
 address mvc_result_column_wrap
-comment "Add the colunm to the table query result";
+comment "Add the column to the table query result";
 
 pattern declaredTable{unsafe}( name:str ) :int 
 address mvc_declared_table_wrap
@@ -2170,11 +2170,10 @@
        (void) cntxt;
        if (msg)
                return msg;
-        if( (b = BATdescriptor(*bid)) == NULL ){
-                throw(SQL, "sql.rsColumn", "Cannot access descriptor");
-        }
+       if ((b = BATdescriptor(*bid)) == NULL)
+               throw(SQL, "sql.rsColumn", "cannot access BAT descriptor");
        if (mvc_result_column(m, *tn, *name, *type, *digits, *scale, b)) 
-               res = createException(SQL, "sql.rsColumn", "failed");
+               res = createException(SQL, "sql.rsColumn", "mvc_result_column 
failed");
        *ret = 0;
        BBPunfix(b->batCacheid);
        return res;


------------------------------------------------------------------------------
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