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

Modified Files:
      Tag: Aug2009
        sql.mx 
Log Message:
fix bigendian problem (lng != bat)


U sql.mx
Index: sql.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/backends/monet5/sql.mx,v
retrieving revision 1.347.2.3
retrieving revision 1.347.2.4
diff -u -d -r1.347.2.3 -r1.347.2.4
--- sql.mx      17 Sep 2009 20:28:00 -0000      1.347.2.3
+++ sql.mx      19 Sep 2009 20:16:34 -0000      1.347.2.4
@@ -1479,7 +1479,7 @@
        throw(SQL, "sql.next_value", "error");
 }
 
-/* str mvc_bat_next_value(int *res, int *sid, str *seqname); */
+/* str mvc_bat_next_value(bat *res, int *sid, str *seqname); */
 str
 mvc_bat_next_value(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci)
 {
@@ -1491,7 +1491,7 @@
        sql_sequence *seq = NULL;
        seqbulk *sb = NULL;
        BATiter bi;
-       lng *res  = (lng *) getArgReference(stk, pci, 0);
+       bat *res  = (bat *) getArgReference(stk, pci, 0);
        int *sid  = (int *) getArgReference(stk, pci, 1);
        str *seqname  = (str *) getArgReference(stk, pci, 2);
 


------------------------------------------------------------------------------
Come build with us! The BlackBerry® 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/devconf
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to