** 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. */
| 9032 | ** returning. Otherwise, discard the sqlite3_finalize() return value. |
| 9033 | */ |
| 9034 | static void idxFinalize(int *pRc, sqlite3_stmt *pStmt){ |
| 9035 | int rc = sqlite3_finalize(pStmt); |
| 9036 | if( *pRc==SQLITE_OK ) *pRc = rc; |
| 9037 | } |
| 9038 | |
| 9039 | /* |
| 9040 | ** Attempt to allocate an IdxTable structure corresponding to table zTab |
no outgoing calls
no test coverage detected