SQLITE_PRIVATE declaration missing on sqlite3VdbeGetLastOp?
(1) By David Butler (gdavidbutler) on 2023-04-20 03:19:49 [source]
In the amalgamation sqlite3VdbeGetLast Op is declared with:
SQLITE_PRIVATE VdbeOp sqlite3VdbeGetLastOp(Vdbe);
Then implemented without the SQLITE_PRIVATE with:
VdbeOp * sqlite3VdbeGetLastOp(Vdbe *p){ return sqlite3VdbeGetOp(p, p->nOp - 1); }
(2) By Richard Hipp (drh) on 2023-04-20 10:41:54 in reply to 1 [link] [source]
Fixed in check-in 1864569bb9fe28a5