better debug name for interned query arguments (#837)

* feat: Improve debug name for interned query arguments

* Change name again
This commit is contained in:
Micha Reiser 2025-04-30 19:20:49 +02:00 committed by GitHub
parent 42f15835c0
commit ad3dff6cb3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -139,7 +139,7 @@ macro_rules! setup_tracked_fn {
file: file!(),
line: line!(),
};
const DEBUG_NAME: &'static str = "Configuration";
const DEBUG_NAME: &'static str = concat!(stringify!($fn_name), "::interned_arguments");
type Fields<$db_lt> = ($($input_ty),*);