Skip to content

Commit

Permalink
RecordSlotSize: ignore qrep/xmin mirrors (#1367)
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex authored Feb 23, 2024
1 parent 00fd27d commit 58954df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/activities/flowable.go
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ func (a *FlowableActivity) SendWALHeartbeat(ctx context.Context) error {
}

func (a *FlowableActivity) RecordSlotSizes(ctx context.Context) error {
rows, err := a.CatalogPool.Query(ctx, "SELECT flows.name, flows.config_proto FROM flows")
rows, err := a.CatalogPool.Query(ctx, "SELECT flows.name, flows.config_proto FROM flows WHERE query_string IS NULL")
if err != nil {
return err
}
Expand Down

0 comments on commit 58954df

Please sign in to comment.