File tree 3 files changed +1
-33
lines changed
3 files changed +1
-33
lines changed Original file line number Diff line number Diff line change @@ -1549,22 +1549,6 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser
1549
1549
<entry><literal>WALWrite</literal></entry>
1550
1550
<entry>Waiting for a write to a WAL file.</entry>
1551
1551
</row>
1552
- <row>
1553
- <entry><literal>LogicalChangesRead</literal></entry>
1554
- <entry>Waiting for a read from a logical changes file.</entry>
1555
- </row>
1556
- <row>
1557
- <entry><literal>LogicalChangesWrite</literal></entry>
1558
- <entry>Waiting for a write to a logical changes file.</entry>
1559
- </row>
1560
- <row>
1561
- <entry><literal>LogicalSubxactRead</literal></entry>
1562
- <entry>Waiting for a read from a logical subxact file.</entry>
1563
- </row>
1564
- <row>
1565
- <entry><literal>LogicalSubxactWrite</literal></entry>
1566
- <entry>Waiting for a write to a logical subxact file.</entry>
1567
- </row>
1568
1552
</tbody>
1569
1553
</tgroup>
1570
1554
</table>
Original file line number Diff line number Diff line change @@ -717,18 +717,6 @@ pgstat_get_wait_io(WaitEventIO w)
717
717
case WAIT_EVENT_WAL_WRITE :
718
718
event_name = "WALWrite" ;
719
719
break ;
720
- case WAIT_EVENT_LOGICAL_CHANGES_READ :
721
- event_name = "LogicalChangesRead" ;
722
- break ;
723
- case WAIT_EVENT_LOGICAL_CHANGES_WRITE :
724
- event_name = "LogicalChangesWrite" ;
725
- break ;
726
- case WAIT_EVENT_LOGICAL_SUBXACT_READ :
727
- event_name = "LogicalSubxactRead" ;
728
- break ;
729
- case WAIT_EVENT_LOGICAL_SUBXACT_WRITE :
730
- event_name = "LogicalSubxactWrite" ;
731
- break ;
732
720
733
721
/* no default case, so that compiler will warn */
734
722
}
Original file line number Diff line number Diff line change @@ -221,11 +221,7 @@ typedef enum
221
221
WAIT_EVENT_WAL_READ ,
222
222
WAIT_EVENT_WAL_SYNC ,
223
223
WAIT_EVENT_WAL_SYNC_METHOD_ASSIGN ,
224
- WAIT_EVENT_WAL_WRITE ,
225
- WAIT_EVENT_LOGICAL_CHANGES_READ ,
226
- WAIT_EVENT_LOGICAL_CHANGES_WRITE ,
227
- WAIT_EVENT_LOGICAL_SUBXACT_READ ,
228
- WAIT_EVENT_LOGICAL_SUBXACT_WRITE
224
+ WAIT_EVENT_WAL_WRITE
229
225
} WaitEventIO ;
230
226
231
227
You can’t perform that action at this time.
0 commit comments