reifydb-client 0.4.13

Official Rust client library for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (c) reifydb.com 2025
# This file is licensed under the MIT

# Test command with positional parameters in MAP query
# First test with a simple map using positional parameters
query_positional 'MAP { val1: $1, val2: $2 }' 123 456
---
> +--------+--------+
> |  val1  |  val2  |
> +--------+--------+
> |  123   |  456   |
> +--------+--------+
>