0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2024-11-14 19:27:10 +00:00
libsql/libsql-server/tests/hrana/snapshots/tests__hrana__batch__stats_legacy.snap
Lucio Franco dac888bbb7
server: add query stats to hrana responses (#1267)
* server: add query stats to hrana responses

* update spec with stats

* remove unused import

* fix snapshot

* more snapshots

* add stats to legacy api

* address comments
2024-04-11 16:23:21 +00:00

37 lines
481 B
Plaintext

---
source: libsql-server/tests/hrana/batch.rs
expression: json
---
[
{
"results": {
"columns": [],
"rows": [],
"rows_read": 1,
"rows_written": 2
}
},
{
"results": {
"columns": [],
"rows": [],
"rows_read": 0,
"rows_written": 1
}
},
{
"results": {
"columns": [
"x"
],
"rows": [
[
42
]
],
"rows_read": 1,
"rows_written": 0
}
}
]