mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-11-14 19:27:10 +00:00
dac888bbb7
* 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
37 lines
481 B
Plaintext
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
|
|
}
|
|
}
|
|
]
|