mirror of
https://github.com/postgres/postgres.git
synced 2025-09-11 00:12:06 +03: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:
@@ -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));
|
||||
|
||||
|
Reference in New Issue
Block a user