# Copyright (c) reifydb.com 2025
# This file is licensed under the Apache-2.0, see license.md file
query 'CALL rql::explain("from users AGGREGATE { min_age: min(age) } BY {name}")'
---
> +-------+---------+----------+-------------+---------------------------------------+
> | idx | depth | parent | kind | detail |
> +-------+---------+----------+-------------+---------------------------------------+
> | 0 | 0 | none | Aggregate | by=[name] map=[min(age) as min_age] |
> | 1 | 1 | 0 | TableScan | default::users |
> +-------+---------+----------+-------------+---------------------------------------+
>