mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-11-22 08:06:21 +00:00
adf36104ad
* add test * fix auth using attach alias instead of target
24 lines
443 B
Plaintext
24 lines
443 B
Plaintext
---
|
|
source: libsql-server/tests/standalone/attach.rs
|
|
expression: rows.next().await
|
|
---
|
|
Ok(
|
|
Some(
|
|
Row {
|
|
cols: [
|
|
Col {
|
|
name: Some(
|
|
"x",
|
|
),
|
|
decltype: None,
|
|
},
|
|
],
|
|
inner: [
|
|
Integer {
|
|
value: 43,
|
|
},
|
|
],
|
|
},
|
|
),
|
|
)
|