File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -192,8 +192,8 @@ 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_local = 161 ,
196- fb_info_counts_scope_global = 162 ,
195+ fb_info_counts_scope_att = 161 ,
196+ fb_info_counts_scope_db = 162 ,
197197
198198 isc_info_db_last_value /* Leave this LAST! */
199199};
Original file line number Diff line number Diff line change @@ -4604,8 +4604,8 @@ IProfilerStatsImpl = class(IProfilerStats)
46044604 fb_info_wire_roundtrips = byte(158);
46054605 fb_info_max_blob_cache_size = byte(159);
46064606 fb_info_max_inline_blob_size = byte(160);
4607- fb_info_counts_scope_local = byte(161);
4608- fb_info_counts_scope_global = byte(162);
4607+ fb_info_counts_scope_att = byte(161);
4608+ fb_info_counts_scope_db = byte(162);
46094609 fb_info_crypt_encrypted = $01;
46104610 fb_info_crypt_process = $02;
46114611 fb_feature_multi_statements = byte(1);
Original file line number Diff line number Diff line change @@ -936,13 +936,13 @@ void INF_database_info(thread_db* tdbb,
936936 length = INF_convert (attachment->att_parallel_workers , buffer);
937937 break ;
938938
939- case fb_info_counts_scope_local :
939+ case fb_info_counts_scope_att :
940940 pageStats = recordStats = &attachment->att_stats ;
941941 memoryStats = &attachment->att_memory_stats ;
942942 *info++ = item;
943943 continue ;
944944
945- case fb_info_counts_scope_global :
945+ case fb_info_counts_scope_db :
946946 pageStats = recordStats = &dbb->dbb_stats ;
947947 memoryStats = &dbb->dbb_memory_stats ;
948948 *info++ = item;
You can’t perform that action at this time.
0 commit comments