1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a requirement mark. No changes to code.

FossilOrigin-Name: d18f61b78c8fafef742efbc890382537e8584180
This commit is contained in:
drh
2016-11-02 13:18:46 +00:00
parent 1ad93a003d
commit e77caa191b
3 changed files with 8 additions and 8 deletions

View File

@@ -4270,7 +4270,7 @@ case OP_NewRowid: { /* out2 */
sqlite3VdbeMemIntegerify(pMem);
assert( (pMem->flags & MEM_Int)!=0 ); /* mem(P3) holds an integer */
if( pMem->u.i==MAX_ROWID || pC->useRandomRowid ){
rc = SQLITE_FULL; /* IMP: R-12275-61338 */
rc = SQLITE_FULL; /* IMP: R-17817-00630 */
goto abort_due_to_error;
}
if( v<pMem->u.i+1 ){