feat(sqlx): adding the cache from the database

This commit is contained in:
Raphael 2026-02-17 15:26:49 +01:00 committed by Raphaël
parent 68beb0c582
commit e712275a64
20 changed files with 681 additions and 0 deletions

View file

@ -0,0 +1,52 @@
{
"db_name": "PostgreSQL",
"query": "SELECT * FROM users WHERE user_id = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "user_id",
"type_info": "Text"
},
{
"ordinal": 1,
"name": "is_owner",
"type_info": "Bool"
},
{
"ordinal": 2,
"name": "is_buyer",
"type_info": "Bool"
},
{
"ordinal": 3,
"name": "is_dev",
"type_info": "Bool"
},
{
"ordinal": 4,
"name": "is_enium",
"type_info": "Bool"
},
{
"ordinal": 5,
"name": "is_pwn",
"type_info": "Bool"
}
],
"parameters": {
"Left": [
"Text"
]
},
"nullable": [
false,
false,
false,
false,
false,
false
]
},
"hash": "1f612b9033ba9ff47bcfe182f04c913a240359154f13cee1b2e93687b6dd497c"
}