Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ type QuerySamplesInfo struct {
WaitEvent sql.NullString
State sql.NullString
BackendType sql.NullString
BackendXID sql.NullInt32
BackendXID sql.NullInt64
BackendXmin sql.NullInt64
QueryID sql.NullInt64
Query sql.NullString
Expand Down Expand Up @@ -514,7 +514,7 @@ func (c *QuerySamples) buildQuerySampleLabelsWithEnd(state *SampleState, endAt s
clientAddr,
state.LastRow.BackendType.String,
state.LastRow.State.String,
state.LastRow.BackendXID.Int32,
state.LastRow.BackendXID.Int64,
state.LastRow.BackendXmin.Int64,
xactDuration,
queryDuration,
Expand Down Expand Up @@ -543,7 +543,7 @@ func (c *QuerySamples) buildWaitEventLabels(state *SampleState, we WaitEventOccu
state.LastRow.Username.String,
state.LastRow.BackendType.String,
we.LastState,
state.LastRow.BackendXID.Int32,
state.LastRow.BackendXID.Int64,
state.LastRow.BackendXmin.Int64,
we.LastWaitTime,
we.WaitEventType,
Expand Down
Loading