Skip to content

Commit 4c2f847

Browse files
mszygendaflobernd
andauthored
Change QueryCacheStats field types from int -> long (#2513) (#2687)
(cherry picked from commit 739bd9d) Conflicts: specification/_types/Stats.ts Co-authored-by: Florian Bernd <[email protected]>
1 parent 06872b5 commit 4c2f847

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

specification/_types/Stats.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,14 +147,14 @@ export class PluginStats {
147147
}
148148

149149
export class QueryCacheStats {
150-
cache_count: integer
151-
cache_size: integer
152-
evictions: integer
153-
hit_count: integer
150+
cache_count: long
151+
cache_size: long
152+
evictions: long
153+
hit_count: long
154154
memory_size?: ByteSize
155155
memory_size_in_bytes: long
156-
miss_count: integer
157-
total_count: integer
156+
miss_count: long
157+
total_count: long
158158
}
159159

160160
export class RecoveryStats {

0 commit comments

Comments
 (0)