Remove unnecessary conversions.

This commit is contained in:
Nuno Cruces
2024-05-23 17:20:40 +01:00
parent 53eef1510f
commit b1f2ff55a0
2 changed files with 4 additions and 4 deletions

View File

@@ -116,5 +116,5 @@ func (cur *seriesCursor) EOF() bool {
}
func (cur *seriesCursor) RowID() (int64, error) {
return int64(cur.value), nil
return cur.value, nil
}