loss of precision for long long values in v1 index

XMLWordPrintableJSON

    • Type: Bug
    • Resolution: Done
    • Priority: Major - P3
    • 2.0.0-rc1
    • Affects Version/s: None
    • Component/s: Index Maintenance
    • None
    • Fully Compatible
    • ALL
    • None
    • 3
    • None
    • None
    • None
    • None
    • None
    • None

      I think this
      double d = (double) n;
      if( d != n ) {

      needs to be this

      double d = (double) n;
      if( (long long)d != n ) {

      Test forthcoming.

            Assignee:
            Dwight Merriman
            Reporter:
            Aaron Staple (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: