We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64b17b8 commit 86826aeCopy full SHA for 86826ae
1 file changed
src/vdbe.c
@@ -8098,11 +8098,10 @@ case OP_VPrepareSql: {
8098
if( pModule->iVersion>=4 ){
8099
if( pModule->xPrepareSql && p->zSql ){
8100
rc = pModule->xPrepareSql(pVCur, p->zSql);
8101
- if( rc ) goto abort_due_to_error; // TODO set and test error msg
+ if( rc ) goto abort_due_to_error;
8102
}
8103
8104
8105
- if( rc ) goto abort_due_to_error;
8106
break;
8107
8108
#endif /* SQLITE_OMIT_VIRTUALTABLE */
0 commit comments