Skip to content

Commit 2cac6fc

Browse files
authored
Add local/global scope modifiers for the db-info performance counters (#8771)
* Add local/global modifiers for the db-info performance counters * Rename the tags
1 parent efa86f3 commit 2cac6fc

File tree

3 files changed

+108
-111
lines changed

3 files changed

+108
-111
lines changed

src/include/firebird/impl/inf_pub.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,9 @@ enum db_info_types
192192
fb_info_max_blob_cache_size = 159,
193193
fb_info_max_inline_blob_size = 160,
194194

195+
fb_info_counts_scope_att = 161,
196+
fb_info_counts_scope_db = 162,
197+
195198
isc_info_db_last_value /* Leave this LAST! */
196199
};
197200

src/include/gen/Firebird.pas

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4608,6 +4608,8 @@ IProfilerStatsImpl = class(IProfilerStats)
46084608
fb_info_wire_roundtrips = byte(158);
46094609
fb_info_max_blob_cache_size = byte(159);
46104610
fb_info_max_inline_blob_size = byte(160);
4611+
fb_info_counts_scope_att = byte(161);
4612+
fb_info_counts_scope_db = byte(162);
46114613
fb_info_crypt_encrypted = $01;
46124614
fb_info_crypt_process = $02;
46134615
fb_feature_multi_statements = byte(1);

0 commit comments

Comments
 (0)