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

Modified Files:
        sql_parser.mx 
Log Message:
propagated changes of Saturday Sep 05 2009 - Monday Sep 07 2009
from the Aug2009 branch to the development trunk

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2009/09/05 - nielsnes: src/server/sql_parser.mx,1.312.2.7
fixed bug in hex values
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Index: sql_parser.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/server/sql_parser.mx,v
retrieving revision 1.317
retrieving revision 1.318
diff -u -d -r1.317 -r1.318
--- sql_parser.mx       4 Sep 2009 11:52:48 -0000       1.317
+++ sql_parser.mx       7 Sep 2009 09:32:21 -0000       1.318
@@ -3778,7 +3778,7 @@
 
                  while (i<len)
                  {
-                       res <<= 5;
+                       res <<= 4;
                        if ('0'<= hexa[i] && hexa[i] <= '9')
                                res = res + (hexa[i] - '0');
                        else if ('A' <= hexa[i] && hexa[i] <= 'F')


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to