sqlx update + clippy

This commit is contained in:
Robin Appelman 2024-02-10 18:52:54 +01:00
commit e1a4036b61
29 changed files with 1261 additions and 776 deletions

View file

@ -0,0 +1,56 @@
{
"db_name": "PostgreSQL",
"query": "INSERT INTO rounds(\n round, log_id, length, winner, first_cap, red_score, blue_score,\n red_kills, blue_kills, red_dmg, blue_dmg, red_ubers, blue_ubers\n )\n VALUES($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13)\n RETURNING id",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Int4"
}
],
"parameters": {
"Left": [
"Int4",
"Int4",
"Int4",
{
"Custom": {
"name": "team",
"kind": {
"Enum": [
"blue",
"red",
"other"
]
}
}
},
{
"Custom": {
"name": "team",
"kind": {
"Enum": [
"blue",
"red",
"other"
]
}
}
},
"Int4",
"Int4",
"Int4",
"Int4",
"Int4",
"Int4",
"Int4",
"Int4"
]
},
"nullable": [
false
]
},
"hash": "eab40a01c0df317cdfb97eb4f88884f6776897ec2c2ecb8cae05748c8d087711"
}