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

fix: EXPOSED-48 Incorrect statistics aggregate functions #1745

Merged
merged 4 commits into from
Jun 1, 2023

Commits on May 31, 2023

  1. fix: EXPOSED-48 Incorrect statistics aggregate functions

    The aggregate functions for statistics were failing on:
    - [SQLite] with 'no such function' exception fron DB. Now they fail early with
    an UnsupportedByDialectException.
    - [SQL Server] because of unrecognized syntax. Now they use the correct function
    name.
    
    It was possible to invoke these extension functions on a string-type column, for
    example, and compile, which would result in an SQLException thrown by the DB.
    The type is now restricted to accept only numeric values.
    
    Add a new test class for statistics aggregate functions.
    bog-walk committed May 31, 2023
    Configuration menu
    Copy the full SHA
    040ce85 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    20e5d9f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b1acdf3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f2f28be View commit details
    Browse the repository at this point in the history