mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-11-25 10:46:15 +00:00
52d8b8f1c4
* test snapshots * allow multi-scope auth * hors-sujet: fix C compile warning * update jwt and add hashbrown feature * replace Auth with RequestContext * extract RequestContext * fix auth check for multi-scopes * pass NamespaceName in StmtKind::Attach * fallback to global auth if key is not set in ns config * add allow_attach to namespace creation * return meta store from namespace store * test attach * fmt * review edits
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,
|
|
},
|
|
],
|
|
},
|
|
),
|
|
)
|