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: us...@infra.apache.org With regards, Apache Git Services