# Copyright (c) reifydb.com 2026
# This file is licensed under the Apache-2.0
# Test query with named parameters
query_named 'MAP { x: $x, y: $y }' 'x=100' 'y=world'
---
> +-------+---------+
> | x | y |
> +-------+---------+
> | 100 | world |
> +-------+---------+
>