mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-01 06:27:03 +03:00
The geopoly virtual table seems to be working. But only thinly tested so far.
FossilOrigin-Name: 4288f1ad5966701eac4cfe3061e8ce98e34e0d6c112307668729642a06458d5f
This commit is contained in:
@ -2893,7 +2893,7 @@ static int reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode){
|
||||
/*
|
||||
** Select a currently unused rowid for a new r-tree record.
|
||||
*/
|
||||
static int newRowid(Rtree *pRtree, i64 *piRowid){
|
||||
static int rtreeNewRowid(Rtree *pRtree, i64 *piRowid){
|
||||
int rc;
|
||||
sqlite3_bind_null(pRtree->pWriteRowid, 1);
|
||||
sqlite3_bind_null(pRtree->pWriteRowid, 2);
|
||||
@ -3180,7 +3180,7 @@ static int rtreeUpdate(
|
||||
|
||||
/* Figure out the rowid of the new row. */
|
||||
if( bHaveRowid==0 ){
|
||||
rc = newRowid(pRtree, &cell.iRowid);
|
||||
rc = rtreeNewRowid(pRtree, &cell.iRowid);
|
||||
}
|
||||
*pRowid = cell.iRowid;
|
||||
|
||||
|
Reference in New Issue
Block a user