Hi,John Wu,
thx for reply。

Maybe because my maillist opinion is set to digist model(now i set it off),  i 
don't got your email。 so i have to create a one new thread。

i check the svn Revision 743 and i debug it。

i found that it still have some problem。

3978 ▸--- while (*str != 0 && isspace(*str) != 0) ++ str;
this line will remove all space between "unsigned" and "int"。
so after this line, the line is something like "unsignedint"

so when it then go to  
3991 ▸---if (type.compare(0, 8, "unsigned ") == 0) {
according to http://www.cplusplus.com/reference/string/string/compare/
this compare is also incorrect。
it may be
if (type.compare(0, 8, "unsigned") == 0) { (no space follow unsigned)
or  
if (type.compare(0, 8, "unsigned ", 8) == 0) { (the last param 8 is Number of 
characters to compare.)

please check it。thx!


--  
lijun


On 2014年8月14日 Thursday at 上午3:01, [email protected] wrote:

> Re: ibis::tablex::parseNamesAndTypes bug (K. John Wu)  
Today's Topics:

1. Re: ibis::tablex::parseNamesAndTypes bug (K. John Wu)


----------------------------------------------------------------------

Message: 1
Date: Wed, 13 Aug 2014 00:27:35 -0700
From: "K. John Wu" <[email protected] (mailto:[email protected])>
Subject: Re: [FastBit-users] ibis::tablex::parseNamesAndTypes bug
To: FastBit Users <[email protected] 
(mailto:[email protected])>
Message-ID: <[email protected] (mailto:[email protected])>
Content-Type: text/plain; charset=utf-8

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Hi, LiJun,

Thanks for the feedback. We have updated the source code following
your suggestion. The source code is checked in as SVN Revision 743.
Please give it a try when you get the chance and let us know if you
find any problem with it.

John 
_______________________________________________
FastBit-users mailing list
[email protected]
https://hpcrdm.lbl.gov/cgi-bin/mailman/listinfo/fastbit-users

Reply via email to