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

Omit the sqlite3VdbeCode() routine. Use sqlite3NameFromToken() more to

reduce the amount of code. (CVS 1639)

FossilOrigin-Name: 99d0436e0ee1c917b2b7bbf005f05288b535648a
This commit is contained in:
drh
2004-06-19 14:49:12 +00:00
parent 65d8439342
commit a99db3b6ac
11 changed files with 66 additions and 135 deletions

View File

@@ -100,7 +100,7 @@ void sqlite3BeginTrigger(
/* Check that the trigger name is not reserved and that no trigger of the
** specified name exists */
zName = sqlite3TableNameFromToken(pName);
zName = sqlite3NameFromToken(pName);
if( !zName || SQLITE_OK!=sqlite3CheckObjectName(pParse, zName) ){
goto trigger_cleanup;
}