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

This commit is contained in:
2026-02-27 07:47:32 +01:00
parent 9ff09c402f
commit 558be49adb

View File

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