diff options
author | drh <drh@noemail.net> | 2002-02-19 22:42:05 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2002-02-19 22:42:05 +0000 |
commit | 5cf8e8c7fa103aea2f10fc36a77cd4419c56bc5d (patch) | |
tree | 91e87acefabb1bb2d3882cf213e43d19a2303c7d /src/sqliteInt.h | |
parent | 9562b55115c5f708d593d92ca2257e62d6bb425b (diff) | |
download | sqlite-5cf8e8c7fa103aea2f10fc36a77cd4419c56bc5d.tar.gz sqlite-5cf8e8c7fa103aea2f10fc36a77cd4419c56bc5d.zip |
New ROWIDs are numbered sequentially. (CVS 383)
FossilOrigin-Name: 1686196a8aea326f616bc8205df99cd84d955ec4
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 1f3db95bf..302a2b494 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.87 2002/02/18 18:30:33 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.88 2002/02/19 22:42:05 drh Exp $ */ #include "sqlite.h" #include "hash.h" @@ -182,7 +182,7 @@ struct sqlite { Hash tblDrop; /* Uncommitted DROP TABLEs */ Hash idxDrop; /* Uncommitted DROP INDEXs */ int lastRowid; /* ROWID of most recent insert */ - int nextRowid; /* Next generated rowID */ + int priorNewRowid; /* Last randomly generated ROWID */ int onError; /* Default conflict algorithm */ }; |