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

core: sum aggregation #61

Merged
merged 2 commits into from
Jul 2, 2024
Merged

core: sum aggregation #61

merged 2 commits into from
Jul 2, 2024

Commits on Jul 1, 2024

  1. core: sum aggregation

    ```
    Welcome to Limbo SQL shell!
    > select sum(age), avg(age) from users;
    504915|50.4915
    >
    fedora :: ~/fun/limbo » sqlite3 database.db
    SQLite version 3.40.1 2022-12-28 14:03:47
    Enter ".help" for usage hints.
    sqlite> select sum(age), avg(age) from users;
    504915|50.4915
    ```
    
    Signed-off-by: Pere Diaz Bou <[email protected]>
    pereman2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    903998e View commit details
    Browse the repository at this point in the history
  2. core: fix initialization of sum vdbe

    Signed-off-by: Pere Diaz Bou <[email protected]>
    pereman2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    75d97b7 View commit details
    Browse the repository at this point in the history