Add sqlx cache to allow compile time verification in CI
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 5m49s

This commit is contained in:
2026-07-02 22:07:39 -05:00
parent 0c3e86cf00
commit 3e3215b25f
7 changed files with 260 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
{
"db_name": "SQLite",
"query": "SELECT * from users where name = ?",
"describe": {
"columns": [
{
"name": "name",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "role",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "password",
"ordinal": 2,
"type_info": "Text"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false,
false
]
},
"hash": "3a0708525a9b79496995698914aa04b30a09af51179b91f58e4c495f2d02ccf4"
}