feat(sqlx): adding the cache sqlx

This commit is contained in:
Raphael 2026-02-17 01:55:49 +01:00 committed by Raphaël
parent dbfc5cbf62
commit 281f69115e
5 changed files with 143 additions and 0 deletions

View file

@ -0,0 +1,59 @@
{
"db_name": "PostgreSQL",
"query": "SELECT status, activity_type as \"activity_type: BotActivity\", presence as \"presence: BotPresence\" FROM bots WHERE id = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "status",
"type_info": "Text"
},
{
"ordinal": 1,
"name": "activity_type: BotActivity",
"type_info": {
"Custom": {
"name": "bot_activity",
"kind": {
"Enum": [
"Playing",
"Streaming",
"Listening",
"Watching",
"Competing"
]
}
}
}
},
{
"ordinal": 2,
"name": "presence: BotPresence",
"type_info": {
"Custom": {
"name": "bot_presence",
"kind": {
"Enum": [
"online",
"idle",
"dnd",
"invisible"
]
}
}
}
}
],
"parameters": {
"Left": [
"Int4"
]
},
"nullable": [
false,
false,
false
]
},
"hash": "2702523871f6edf697d2467a70d0ed4faf9e27109d54f4a594b97116750cd1a7"
}