mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-10 15:01:03 +00:00
Merge pull request #1812 from travisturner/error-message
fix incorrect error message
This commit is contained in:
commit
8c4b1548bc
1 changed files with 1 additions and 1 deletions
2
field.go
2
field.go
|
|
@ -1124,7 +1124,7 @@ func (f *Field) Import(rowIDs, columnIDs []uint64, timestamps []*time.Time, opts
|
|||
|
||||
frag, err := view.CreateFragmentIfNotExists(key.Shard)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "creating view")
|
||||
return errors.Wrap(err, "creating fragment")
|
||||
}
|
||||
|
||||
if err := frag.bulkImport(data.RowIDs, data.ColumnIDs, options); err != nil {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue