1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

Fix a typo in check-in (5769) (CVS 5770)

FossilOrigin-Name: 24891902fa625445aa47ae930f0cb340cc73d25d
This commit is contained in:
drh
2008-10-06 15:18:02 +00:00
parent 41204f1fdd
commit 3d1c1e8722
3 changed files with 9 additions and 9 deletions

View File

@ -14,7 +14,7 @@
** resolve all identifiers by associating them with a particular
** table and column.
**
** $Id: resolve.c,v 1.6 2008/10/06 13:54:35 drh Exp $
** $Id: resolve.c,v 1.7 2008/10/06 15:18:02 drh Exp $
*/
#include "sqliteInt.h"
#include <stdlib.h>
@ -436,7 +436,7 @@ static int resolveExprStep(Walker *pWalker, Expr *pExpr){
pExpr->affinity = SQLITE_AFF_INTEGER;
break;
}
#endif /* SQLITE_OMIT_UPDATE_DELETE_LIMIT
#endif /* SQLITE_OMIT_UPDATE_DELETE_LIMIT */
/* A lone identifier is the name of a column.
*/