chore: make entity column names explicity during query in load by id

This commit is contained in:
2026-02-27 07:48:36 +01:00
parent 558be49adb
commit ed936be08c

View File

@@ -2,7 +2,7 @@ use crate::*;
use rusqlite::*; use rusqlite::*;
const SELECT_ENTITY_BY_ID: &str = r#" const SELECT_ENTITY_BY_ID: &str = r#"
SELECT * FROM entity SELECT id, class, subclass, ref_date FROM entity
WHERE id = ?1; WHERE id = ?1;
"#; "#;