Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

5.7 bug 81399 test replace number round+gis precision differences #72

Closed
wants to merge 17 commits into from
Closed

5.7 bug 81399 test replace number round+gis precision differences #72

wants to merge 17 commits into from

Commits on May 11, 2016

  1. Add replace_numberic_round to mysqltest

    This rounds the numbers in the output where there is a
    decimal to the number of decimal places specified.
    
    Numbers > 1e10 or < -1e10 are expressed as components.
    
    Trailing 0s aren't added to existing numbers
    
    e.g.
    --replace_numberic_round 5
        10         -> 10
        10.        -> 10.
        t1.col     -> t1.col
        t1elephant -> t1elephant
        0x0FE11DE  -> 0x0FE11DE
        10.12345   -> 10.12345
        10.123456  -> 10.12346
        10.1234567 -> 10.12346
        10.123451  -> 10.12345
        10.00000   -> 10
        10.00100   -> 10.001
        10.000004  -> 10
        10.000005  -> 10.00001
    grooverdan committed May 11, 2016
    Copy the full SHA
    9f60474 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    e493b8d View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    6061e6b View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    80ffd3f View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    17deb32 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    c1956de View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    1285113 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    7c8e253 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    6e16e5a View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    cb3d2c4 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    53a29f7 View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    02013da View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    527e2ee View commit details
    Browse the repository at this point in the history
  14. Copy the full SHA
    484c7af View commit details
    Browse the repository at this point in the history
  15. round gis.spatial_analysis_functions_buffer test to 1/10s vs 1/100s f…

    …or cross platform results
    grooverdan committed May 11, 2016
    Copy the full SHA
    d6d32b6 View commit details
    Browse the repository at this point in the history
  16. Copy the full SHA
    2a80c3a View commit details
    Browse the repository at this point in the history
  17. Copy the full SHA
    463b52b View commit details
    Browse the repository at this point in the history