File tree Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -1549,6 +1549,22 @@ 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>
1552
1568
</tbody>
1553
1569
</tgroup>
1554
1570
</table>
Original file line number Diff line number Diff line change @@ -714,6 +714,18 @@ pgstat_get_wait_io(WaitEventIO w)
714
714
case WAIT_EVENT_WAL_WRITE :
715
715
event_name = "WALWrite" ;
716
716
break ;
717
+ case WAIT_EVENT_LOGICAL_CHANGES_READ :
718
+ event_name = "LogicalChangesRead" ;
719
+ break ;
720
+ case WAIT_EVENT_LOGICAL_CHANGES_WRITE :
721
+ event_name = "LogicalChangesWrite" ;
722
+ break ;
723
+ case WAIT_EVENT_LOGICAL_SUBXACT_READ :
724
+ event_name = "LogicalSubxactRead" ;
725
+ break ;
726
+ case WAIT_EVENT_LOGICAL_SUBXACT_WRITE :
727
+ event_name = "LogicalSubxactWrite" ;
728
+ break ;
717
729
718
730
/* no default case, so that compiler will warn */
719
731
}
Original file line number Diff line number Diff line change @@ -220,7 +220,11 @@ typedef enum
220
220
WAIT_EVENT_WAL_READ ,
221
221
WAIT_EVENT_WAL_SYNC ,
222
222
WAIT_EVENT_WAL_SYNC_METHOD_ASSIGN ,
223
- WAIT_EVENT_WAL_WRITE
223
+ WAIT_EVENT_WAL_WRITE ,
224
+ WAIT_EVENT_LOGICAL_CHANGES_READ ,
225
+ WAIT_EVENT_LOGICAL_CHANGES_WRITE ,
226
+ WAIT_EVENT_LOGICAL_SUBXACT_READ ,
227
+ WAIT_EVENT_LOGICAL_SUBXACT_WRITE
224
228
} WaitEventIO ;
225
229
226
230
You can’t perform that action at this time.
0 commit comments