We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35201c3 commit 77730fcCopy full SHA for 77730fc
Microsoft.Azure.Cosmos/src/Telemetry/OpenTelemetry/ShowQueryMode.cs
@@ -12,16 +12,16 @@ public enum ShowQueryMode
12
/// <summary>
13
/// Do not show query.
14
/// </summary>
15
- NONE,
+ NONE = 0,
16
17
18
/// Print parameterized query only.
19
20
- PARAMETERIZED_ONLY,
+ PARAMETERIZED_ONLY = 1,
21
22
23
/// Print both parameterized and non parameterized query.
24
25
- ALL
+ ALL = 2
26
}
27
0 commit comments