** End of virtual table implementation. *************************************************************************/ ** Finalize SQL statement pStmt. If (*pRc) is SQLITE_OK when this function ** is called, set it to the return value of sqlite3_finalize() before ** returning. Otherwise, discard the sqlite3_finalize() return value. */
| 10875 | ** returning. Otherwise, discard the sqlite3_finalize() return value. |
| 10876 | */ |
| 10877 | static void idxFinalize(int *pRc, sqlite3_stmt *pStmt){ |
| 10878 | int rc = sqlite3_finalize(pStmt); |
| 10879 | if( *pRc==SQLITE_OK ) *pRc = rc; |
| 10880 | } |
| 10881 | |
| 10882 | /* |
| 10883 | ** Attempt to allocate an IdxTable structure corresponding to table zTab |
no outgoing calls
no test coverage detected