From 9ff09c402fb539bd57912065ddb12a5fa9e8e14d Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Thu, 26 Feb 2026 15:14:58 +0100 Subject: [PATCH] chore: add explicit listing to attribute columns output in query --- 01.workspace/heave/src/fun/sqlite_load_attributes.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/01.workspace/heave/src/fun/sqlite_load_attributes.rs b/01.workspace/heave/src/fun/sqlite_load_attributes.rs index 4b7cee0..ffce4bb 100644 --- a/01.workspace/heave/src/fun/sqlite_load_attributes.rs +++ b/01.workspace/heave/src/fun/sqlite_load_attributes.rs @@ -2,7 +2,15 @@ use crate::*; use rusqlite::*; const SELECT_ATTRIBUTE_BY_FK: &str = r#" - SELECT * FROM attribute + SELECT + id, + entity_id, + value_int, + value_uint, + value_real, + value_text, + value_bool + FROM attribute WHERE entity_id = ?1; "#;