Prepare 3.51.0.

This commit is contained in:
Nuno Cruces
2025-10-15 16:25:35 +01:00
parent 1db4366226
commit 0b040d3f09
5 changed files with 21 additions and 7 deletions

View File

@@ -59,7 +59,8 @@ func (c *cursor) Next() error {
}
func (c *cursor) RowID() (int64, error) {
return int64(c.rowID), nil
// One-based RowID for consistency with carray and other tables.
return int64(c.rowID) + 1, nil
}
func (c *cursor) Column(ctx sqlite3.Context, n int) error {