You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sqoop.apache.org by GitBox <gi...@apache.org> on 2019/04/22 08:09:58 UTC

[GitHub] [sqoop] chenqixu opened a new pull request #79: FloatSplitter has a problem with the final splits.add

chenqixu opened a new pull request #79: FloatSplitter has a problem with the final splits.add
URL: https://github.com/apache/sqoop/pull/79
 
 
   FloatSplitter has a problem with the final splits.add.
   Example:
   maxVal = 133.333
   numSplits = 2
   if use curUpper,It's going to be like this.
   [float_code >= 1.111 AND float_code < 67.22200000000001, float_code >= 133.33300000000003 AND float_code <= 133.333]
   So curLower is needed.
   [float_code >= 1.111 AND float_code < 67.22200000000001, float_code >= 67.22200000000001 AND float_code <= 133.333]

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services