# Copyright (c) reifydb.com 2026
# This file is licensed under the Apache-2.0
# Test query with positional parameters
query_positional 'MAP { x: $1, y: $2 }' 42 'hello'
---
> +------+---------+
> | x | y |
> +------+---------+
> | 42 | hello |
> +------+---------+
>