add sqlx
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 21m51s

This commit is contained in:
Nicholas Orlowsky 2025-09-12 20:17:57 -04:00
parent deaaa3fad3
commit c089f62164
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
6 changed files with 589 additions and 7 deletions

View file

@ -0,0 +1,55 @@
{
"db_name": "PostgreSQL",
"query": "SELECT \n route_id,\n direction_id,\n direction as \"direction: libseptastic::direction::CardinalDirection\",\n direction_destination\n FROM \n septa_directions\n WHERE \n route_id = $1\n ;",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "route_id",
"type_info": "Text"
},
{
"ordinal": 1,
"name": "direction_id",
"type_info": "Int8"
},
{
"ordinal": 2,
"name": "direction: libseptastic::direction::CardinalDirection",
"type_info": {
"Custom": {
"name": "septa_direction_type",
"kind": {
"Enum": [
"northbound",
"southbound",
"eastbound",
"westbound",
"inbound",
"outbound",
"loop"
]
}
}
}
},
{
"ordinal": 3,
"name": "direction_destination",
"type_info": "Text"
}
],
"parameters": {
"Left": [
"Text"
]
},
"nullable": [
false,
false,
false,
false
]
},
"hash": "cf4e35691a709fd362b53e3d1f64b6043cbda87c0b5ebb01ba74a6ebb430425c"
}