blob: fb9acd40aeae30872fb9ced4a3ff466dc3184b4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
/// Used in ProfileEvents and MemoryTracker to determine their hierarchy level
/// The less value the higher level (zero level is the root)
enum class VariableContext
{
Global = 0,
User, /// Group of processes
Process, /// For example, a query or a merge
Thread, /// A thread of a process
};
|