mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-10 15:01:03 +00:00
remove unnecessary timestamp slice allocation
This commit is contained in:
parent
a433862c98
commit
3d7fc0c1c6
1 changed files with 1 additions and 2 deletions
3
api.go
3
api.go
|
|
@ -747,8 +747,7 @@ func importNotNullColumns(index *Index, columnIDs []uint64) error {
|
|||
}
|
||||
|
||||
notNullRowIDs := make([]uint64, len(columnIDs))
|
||||
notNullTimestamps := make([]*time.Time, len(columnIDs))
|
||||
return nnf.Import(notNullRowIDs, columnIDs, notNullTimestamps)
|
||||
return nnf.Import(notNullRowIDs, columnIDs, nil)
|
||||
}
|
||||
|
||||
// MaxShards returns the maximum shard number for each index in a map.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue