1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

More tests of the sqlite_set_authorizer() API together with fixes for bugs

that the new tests uncovered. (CVS 832)

FossilOrigin-Name: cc2ae781ac186f9ee1afacdc9117087421955369
This commit is contained in:
drh
2003-01-14 02:49:27 +00:00
parent 7160220495
commit 77ad4e4133
7 changed files with 1408 additions and 39 deletions

View File

@@ -106,6 +106,9 @@ void sqliteCreateTrigger(
if( sqliteAuthCheck(pParse, code, zName, tab->zName) ){
goto trigger_cleanup;
}
if( sqliteAuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(tab->isTemp), 0)){
goto trigger_cleanup;
}
}
#endif
}