Skip to content

Commit 79426ad

Browse files
authored
query: Fix incorrect null check in table rendering (#6125)
1 parent b4ed2b9 commit 79426ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/query/table.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func generateTableArrowRecord(
145145

146146
isLeaf := isFirstNonNil(sampleRow, locationRow, r.Locations)
147147
var buildID []byte
148-
if r.MappingBuildIDDict.IsValid(locationRow) {
148+
if r.MappingBuildIDIndices.IsValid(locationRow) {
149149
buildID = r.MappingBuildIDDict.Value(int(r.MappingBuildIDIndices.Value(locationRow)))
150150
}
151151
addr := r.Address.Value(locationRow)

0 commit comments

Comments
 (0)