normally decorators are valid for all packs/querie...
# general
m
normally decorators are valid for all packs/queries. Can decorators also be used/identified per a pack or a query?
z
I don't believe decorators can be targeted to individual packs. I think they are always global. If you want additional information with a single query, you can always add a subquery in the
SELECT
statement (eg.
SELECT *, (SELECT uuid FROM system_info) uuid FROM time
m
usefull info, thank you