merge from 1.2

This commit is contained in:
Jonathan Ellis 2013-08-08 11:15:54 -05:00
commit f30629b83f
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ public class SSTableReader extends SSTable
*/
public long estimatedKeys()
{
return indexSummary.size() * indexSummary.getIndexInterval();
return ((long) indexSummary.size()) * indexSummary.getIndexInterval();
}
/**