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

Remove dead code. (CVS 5601)

FossilOrigin-Name: 6de9c084fc533fbb22af6a4cd3e4e9a461b13876
This commit is contained in:
drh
2008-08-22 17:34:45 +00:00
parent 87a03282b1
commit ee76c61657
9 changed files with 23 additions and 53 deletions

View File

@ -14,7 +14,7 @@
** resolve all identifiers by associating them with a particular
** table and column.
**
** $Id: resolve.c,v 1.1 2008/08/20 16:35:10 drh Exp $
** $Id: resolve.c,v 1.2 2008/08/22 17:34:45 drh Exp $
*/
#include "sqliteInt.h"
#include <stdlib.h>
@ -1082,18 +1082,6 @@ int sqlite3ResolveExprNames(
}
return ExprHasProperty(pExpr, EP_Error);
}
int sqlite3ResolveExprListNames(
NameContext *pNC, /* Namespace to resolve expressions in. */
ExprList *pList /* List of expressions to be analyzed. */
){
int i;
struct ExprList_item *pItem;
if( pList==0 ) return 0;
for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){
if( sqlite3ResolveExprNames(pNC, pItem->pExpr) ) return 1;
}
return 0;
}
/*