aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2014-01-15 20:10:15 +0000
committerdrh <drh@noemail.net>2014-01-15 20:10:15 +0000
commit93c36bb399cee329b8bc0a10bff0af8b3d498f6e (patch)
tree316563f61f2f7af09a14148770a00ed31dbf9d11 /src
parenteede6a538d32de61cc644e09fcb90264496791ac (diff)
downloadsqlite-93c36bb399cee329b8bc0a10bff0af8b3d498f6e.tar.gz
sqlite-93c36bb399cee329b8bc0a10bff0af8b3d498f6e.zip
Remove an ALWAYS() that is no longer always true.
FossilOrigin-Name: c95823cd451f7721174393817a801403647467db
Diffstat (limited to 'src')
-rw-r--r--src/select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select.c b/src/select.c
index 7f20dc689..b4ce7be9e 100644
--- a/src/select.c
+++ b/src/select.c
@@ -1217,7 +1217,7 @@ static const char *columnTypeImpl(
sNC.pParse = pNC->pParse;
zType = columnType(&sNC, p,&zOrigDb,&zOrigTab,&zOrigCol, &estWidth);
}
- }else if( ALWAYS(pTab->pSchema) ){
+ }else if( pTab->pSchema ){
/* A real table */
assert( !pS );
if( iCol<0 ) iCol = pTab->iPKey;