OLD | NEW |
1 /* | 1 /* |
2 ** 2003 September 6 | 2 ** 2003 September 6 |
3 ** | 3 ** |
4 ** The author disclaims copyright to this source code. In place of | 4 ** The author disclaims copyright to this source code. In place of |
5 ** a legal notice, here is a blessing: | 5 ** a legal notice, here is a blessing: |
6 ** | 6 ** |
7 ** May you do good and not evil. | 7 ** May you do good and not evil. |
8 ** May you find forgiveness for yourself and forgive others. | 8 ** May you find forgiveness for yourself and forgive others. |
9 ** May you share freely, never taking more than you give. | 9 ** May you share freely, never taking more than you give. |
10 ** | 10 ** |
(...skipping 3188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3199 ** in a better query plan. | 3199 ** in a better query plan. |
3200 */ | 3200 */ |
3201 void sqlite3VdbeSetVarmask(Vdbe *v, int iVar){ | 3201 void sqlite3VdbeSetVarmask(Vdbe *v, int iVar){ |
3202 assert( iVar>0 ); | 3202 assert( iVar>0 ); |
3203 if( iVar>32 ){ | 3203 if( iVar>32 ){ |
3204 v->expmask = 0xffffffff; | 3204 v->expmask = 0xffffffff; |
3205 }else{ | 3205 }else{ |
3206 v->expmask |= ((u32)1 << (iVar-1)); | 3206 v->expmask |= ((u32)1 << (iVar-1)); |
3207 } | 3207 } |
3208 } | 3208 } |
OLD | NEW |