Files
poimen-memory/.sqlx/query-aee5900f5e3d7cbba23729bbf2dd033dcc4cb41f6c851bf447a9238810684d18.json
T
rock f2975b82c2
CI / CI (pull_request) Failing after 5m49s
fix: sqlx offline cache + borrow fix + Dockerfile + unified CI
- Add .sqlx/ query cache (generated from live DB)
- SQLX_OFFLINE=true in Dockerfile (no DB at build time)
- Fix borrow checker errors in versioning.rs (ref from)
- rust:1.81 → rust:1-bookworm
- cargo build --release -p mem-cli
- Single CI job, DOCKER_HOST, build+push on all events
2026-09-07 16:43:27 -07:00

54 lines
1.3 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "\n SELECT \n version_num,\n operation,\n snapshot,\n changed_at,\n changed_by,\n COALESCE(fields_changed, '{}') as \"fields_changed!\"\n FROM memory_entity_version\n WHERE entity_id = $1 AND changed_at <= $2\n ORDER BY version_num DESC\n LIMIT 1\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "version_num",
"type_info": "Int4"
},
{
"ordinal": 1,
"name": "operation",
"type_info": "Varchar"
},
{
"ordinal": 2,
"name": "snapshot",
"type_info": "Jsonb"
},
{
"ordinal": 3,
"name": "changed_at",
"type_info": "Timestamptz"
},
{
"ordinal": 4,
"name": "changed_by",
"type_info": "Varchar"
},
{
"ordinal": 5,
"name": "fields_changed!",
"type_info": "TextArray"
}
],
"parameters": {
"Left": [
"Text",
"Timestamptz"
]
},
"nullable": [
false,
false,
false,
false,
false,
null
]
},
"hash": "aee5900f5e3d7cbba23729bbf2dd033dcc4cb41f6c851bf447a9238810684d18"
}