mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-10 01:02:56 +03:00
Fix a harmless compiler warning.
FossilOrigin-Name: 34343c4b0657767f2676a2a9feb670cf000824e3eadfb1a6d87b57404191d8f9
This commit is contained in:
@@ -573,8 +573,8 @@ static int lookupName(
|
||||
assert( pExpr->y.pTab!=0 );
|
||||
assert( pMatch->iCursor==pExpr->iTable );
|
||||
if( pExpr->y.pTab->tabFlags & TF_HasGenerated ){
|
||||
Column *pCol = pExpr->y.pTab->aCol + pExpr->iColumn;
|
||||
if( pCol->colFlags & COLFLAG_GENERATED ) n = BMS-1;
|
||||
Column *pColumn = pExpr->y.pTab->aCol + pExpr->iColumn;
|
||||
if( pColumn->colFlags & COLFLAG_GENERATED ) n = BMS-1;
|
||||
}
|
||||
pMatch->colUsed |= ((Bitmask)1)<<n;
|
||||
}
|
||||
|
Reference in New Issue
Block a user