diff --git a/core/vdbe/mod.rs b/core/vdbe/mod.rs index 596bbc10..7f91d40a 100644 --- a/core/vdbe/mod.rs +++ b/core/vdbe/mod.rs @@ -2164,7 +2164,6 @@ impl Program { } fn get_new_rowid(cursor: &mut Box, mut rng: R) -> Result> { - // TODO: try last + 1 and if it's already a big number then use randomness cursor.seek_to_last()?; let mut rowid = cursor.rowid()?.unwrap_or(0) + 1; if rowid > i64::MAX.try_into().unwrap() {