mirror of
https://github.com/postgres/postgres.git
synced 2026-02-21 00:40:20 -05:00
Remove assertion in pgstat_count_io_op()
An equivalent check is done with pgstat_is_ioop_tracked_in_bytes(), so
there is no need for this extra one. Small cleanup that should have
been included in f92c854cf4.
Author: Nazir Bilal Yavuz
Reviewed-by: Bertrand Drouvot
Discussion: https://postgr.es/m/CAN55FZ0oqxBaaHAEsj=xFqkzE3n5P=3RA1V_igXwL-RV7QRzyw@mail.gmail.com
This commit is contained in:
parent
f92c854cf4
commit
d2181b3218
1 changed files with 0 additions and 1 deletions
|
|
@ -78,7 +78,6 @@ pgstat_count_io_op(IOObject io_object, IOContext io_context, IOOp io_op,
|
|||
{
|
||||
Assert((unsigned int) io_object < IOOBJECT_NUM_TYPES);
|
||||
Assert((unsigned int) io_context < IOCONTEXT_NUM_TYPES);
|
||||
Assert((unsigned int) io_op < IOOP_NUM_TYPES);
|
||||
Assert(pgstat_is_ioop_tracked_in_bytes(io_op) || bytes == 0);
|
||||
Assert(pgstat_tracks_io_op(MyBackendType, io_object, io_context, io_op));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue