@@ -228,137 +228,137 @@ public Task<int> GetWritesAsync(CancellationToken cancellationToken = default)
228
228
/// Returns the number of removals of a version of a record of the affected tables.
229
229
/// </summary>
230
230
/// <returns>Dictionary with the number of removals, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
231
- public IDictionary < uint , ulong > GetBackoutCount ( )
231
+ public IDictionary < short , ulong > GetBackoutCount ( )
232
232
{
233
- return GetValue < IDictionary < uint , ulong > > ( IscCodes . isc_info_backout_count ) ;
233
+ return GetValue < IDictionary < short , ulong > > ( IscCodes . isc_info_backout_count ) ;
234
234
}
235
235
/// <summary>
236
236
/// Returns the number of removals of a version of a record of the affected tables.
237
237
/// </summary>
238
238
/// <returns>Dictionary with the number of removals, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
239
- public Task < IDictionary < uint , ulong > > GetBackoutCountAsync ( CancellationToken cancellationToken = default )
239
+ public Task < IDictionary < short , ulong > > GetBackoutCountAsync ( CancellationToken cancellationToken = default )
240
240
{
241
- return GetValueAsync < IDictionary < uint , ulong > > ( IscCodes . isc_info_backout_count , cancellationToken ) ;
241
+ return GetValueAsync < IDictionary < short , ulong > > ( IscCodes . isc_info_backout_count , cancellationToken ) ;
242
242
}
243
243
244
244
/// <summary>
245
245
/// Returns the number of database deletes of the affected tables since the database was last attached.
246
246
/// </summary>
247
247
/// <returns>Dictionary with the number of deletes, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
248
- public IDictionary < uint , ulong > GetDeleteCount ( )
248
+ public IDictionary < short , ulong > GetDeleteCount ( )
249
249
{
250
- return GetValue < IDictionary < uint , ulong > > ( IscCodes . isc_info_delete_count ) ;
250
+ return GetValue < IDictionary < short , ulong > > ( IscCodes . isc_info_delete_count ) ;
251
251
}
252
252
/// <summary>
253
253
/// Returns the number of database deletes of the affected tables since the database was last attached.
254
254
/// </summary>
255
255
/// <returns>Dictionary with the number of deletes, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
256
- public Task < IDictionary < uint , ulong > > GetDeleteCountAsync ( CancellationToken cancellationToken = default )
256
+ public Task < IDictionary < short , ulong > > GetDeleteCountAsync ( CancellationToken cancellationToken = default )
257
257
{
258
- return GetValueAsync < IDictionary < uint , ulong > > ( IscCodes . isc_info_delete_count , cancellationToken ) ;
258
+ return GetValueAsync < IDictionary < short , ulong > > ( IscCodes . isc_info_delete_count , cancellationToken ) ;
259
259
}
260
260
261
261
/// <summary>
262
262
/// Returns the number of removals of a record and all of its ancestors, for records whose deletions have been committed of the affected tables since the database was last attached.
263
263
/// </summary>
264
264
/// <returns>Dictionary with the number of removals, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
265
- public IDictionary < uint , ulong > GetExpungeCount ( )
265
+ public IDictionary < short , ulong > GetExpungeCount ( )
266
266
{
267
- return GetValue < IDictionary < uint , ulong > > ( IscCodes . isc_info_expunge_count ) ;
267
+ return GetValue < IDictionary < short , ulong > > ( IscCodes . isc_info_expunge_count ) ;
268
268
}
269
269
270
270
/// <summary>
271
271
/// Returns the number of removals of a record and all of its ancestors, for records whose deletions have been committed of the affected tables since the database was last attached.
272
272
/// </summary>
273
273
/// <returns>Dictionary with the number of removals, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
274
- public Task < IDictionary < uint , ulong > > GetExpungeCountAsync ( CancellationToken cancellationToken = default )
274
+ public Task < IDictionary < short , ulong > > GetExpungeCountAsync ( CancellationToken cancellationToken = default )
275
275
{
276
- return GetValueAsync < IDictionary < uint , ulong > > ( IscCodes . isc_info_expunge_count , cancellationToken ) ;
276
+ return GetValueAsync < IDictionary < short , ulong > > ( IscCodes . isc_info_expunge_count , cancellationToken ) ;
277
277
}
278
278
279
279
/// <summary>
280
280
/// Returns the number of inserts into the database of the affected tables since the database was last attached.
281
281
/// </summary>
282
282
/// <returns>Dictionary with the number of inserts, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
283
- public IDictionary < uint , ulong > GetInsertCount ( )
283
+ public IDictionary < short , ulong > GetInsertCount ( )
284
284
{
285
- return GetValue < IDictionary < uint , ulong > > ( IscCodes . isc_info_insert_count ) ;
285
+ return GetValue < IDictionary < short , ulong > > ( IscCodes . isc_info_insert_count ) ;
286
286
}
287
287
/// <summary>
288
288
/// Returns the number of inserts into the database of the affected tables since the database was last attached.
289
289
/// </summary>
290
290
/// <returns>Dictionary with the number of inserts, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
291
- public Task < IDictionary < uint , ulong > > GetInsertCountAsync ( CancellationToken cancellationToken = default )
291
+ public Task < IDictionary < short , ulong > > GetInsertCountAsync ( CancellationToken cancellationToken = default )
292
292
{
293
- return GetValueAsync < IDictionary < uint , ulong > > ( IscCodes . isc_info_insert_count , cancellationToken ) ;
293
+ return GetValueAsync < IDictionary < short , ulong > > ( IscCodes . isc_info_insert_count , cancellationToken ) ;
294
294
}
295
295
296
296
/// <summary>
297
297
/// Returns the number of removals of old versions of fully mature records (records that are committed, so that older ancestor versions are no longer needed) of the affected tables.
298
298
/// </summary>
299
299
/// <returns>Dictionary with the number of removals, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
300
- public IDictionary < uint , ulong > GetPurgeCount ( )
300
+ public IDictionary < short , ulong > GetPurgeCount ( )
301
301
{
302
- return GetValue < IDictionary < uint , ulong > > ( IscCodes . isc_info_purge_count ) ;
302
+ return GetValue < IDictionary < short , ulong > > ( IscCodes . isc_info_purge_count ) ;
303
303
}
304
304
/// <summary>
305
305
/// Returns the number of removals of old versions of fully mature records (records that are committed, so that older ancestor versions are no longer needed) of the affected tables.
306
306
/// </summary>
307
307
/// <returns>Dictionary with the number of removals, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
308
- public Task < IDictionary < uint , ulong > > GetPurgeCountAsync ( CancellationToken cancellationToken = default )
308
+ public Task < IDictionary < short , ulong > > GetPurgeCountAsync ( CancellationToken cancellationToken = default )
309
309
{
310
- return GetValueAsync < IDictionary < uint , ulong > > ( IscCodes . isc_info_purge_count , cancellationToken ) ;
310
+ return GetValueAsync < IDictionary < short , ulong > > ( IscCodes . isc_info_purge_count , cancellationToken ) ;
311
311
}
312
312
313
313
/// <summary>
314
314
/// Returns the number of reads done via an index of the affected tables since the database was last attached.
315
315
/// </summary>
316
316
/// <returns>Dictionary with the number of reads, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
317
- public IDictionary < uint , ulong > GetReadIdxCount ( )
317
+ public IDictionary < short , ulong > GetReadIdxCount ( )
318
318
{
319
- return GetValue < IDictionary < uint , ulong > > ( IscCodes . isc_info_read_idx_count ) ;
319
+ return GetValue < IDictionary < short , ulong > > ( IscCodes . isc_info_read_idx_count ) ;
320
320
}
321
321
/// <summary>
322
322
/// Returns the number of reads done via an index of the affected tables since the database was last attached.
323
323
/// </summary>
324
324
/// <returns>Dictionary with the number of reads, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
325
- public Task < IDictionary < uint , ulong > > GetReadIdxCountAsync ( CancellationToken cancellationToken = default )
325
+ public Task < IDictionary < short , ulong > > GetReadIdxCountAsync ( CancellationToken cancellationToken = default )
326
326
{
327
- return GetValueAsync < IDictionary < uint , ulong > > ( IscCodes . isc_info_read_idx_count , cancellationToken ) ;
327
+ return GetValueAsync < IDictionary < short , ulong > > ( IscCodes . isc_info_read_idx_count , cancellationToken ) ;
328
328
}
329
329
330
330
/// <summary>
331
331
/// Returns the number of sequential table scans (row reads) of the affected tables since the database was last attached.
332
332
/// </summary>
333
333
/// <returns>Dictionary with the number of reads, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
334
- public IDictionary < uint , ulong > GetReadSeqCount ( )
334
+ public IDictionary < short , ulong > GetReadSeqCount ( )
335
335
{
336
- return GetValue < IDictionary < uint , ulong > > ( IscCodes . isc_info_read_seq_count ) ;
336
+ return GetValue < IDictionary < short , ulong > > ( IscCodes . isc_info_read_seq_count ) ;
337
337
}
338
338
/// <summary>
339
339
/// Returns the number of sequential table scans (row reads) of the affected tables since the database was last attached.
340
340
/// </summary>
341
341
/// <returns>Dictionary with the number of reads, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
342
- public Task < IDictionary < uint , ulong > > GetReadSeqCountAsync ( CancellationToken cancellationToken = default )
342
+ public Task < IDictionary < short , ulong > > GetReadSeqCountAsync ( CancellationToken cancellationToken = default )
343
343
{
344
- return GetValueAsync < IDictionary < uint , ulong > > ( IscCodes . isc_info_read_seq_count , cancellationToken ) ;
344
+ return GetValueAsync < IDictionary < short , ulong > > ( IscCodes . isc_info_read_seq_count , cancellationToken ) ;
345
345
}
346
346
347
347
/// <summary>
348
348
/// Returns the number of database updates of the affected tables since the database was last attached.
349
349
/// </summary>
350
350
/// <returns>Dictionary with the number of updates, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
351
- public IDictionary < uint , ulong > GetUpdateCount ( )
351
+ public IDictionary < short , ulong > GetUpdateCount ( )
352
352
{
353
- return GetValue < IDictionary < uint , ulong > > ( IscCodes . isc_info_update_count ) ;
353
+ return GetValue < IDictionary < short , ulong > > ( IscCodes . isc_info_update_count ) ;
354
354
}
355
355
/// <summary>
356
356
/// Returns the number of database updates of the affected tables since the database was last attached.
357
357
/// </summary>
358
358
/// <returns>Dictionary with the number of updates, with table id (field RDB$RELATION_ID of the system table RDB$RELATIONS) as key.</returns>
359
- public Task < IDictionary < uint , ulong > > GetUpdateCountAsync ( CancellationToken cancellationToken = default )
359
+ public Task < IDictionary < short , ulong > > GetUpdateCountAsync ( CancellationToken cancellationToken = default )
360
360
{
361
- return GetValueAsync < IDictionary < uint , ulong > > ( IscCodes . isc_info_update_count , cancellationToken ) ;
361
+ return GetValueAsync < IDictionary < short , ulong > > ( IscCodes . isc_info_update_count , cancellationToken ) ;
362
362
}
363
363
364
364
public int GetDatabaseSizeInPages ( )
0 commit comments