Lines Matching refs:to_op
76811 int aff, to_op;
76815 to_op = aff - SQLITE_AFF_TEXT + OP_ToText;
76816 assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT );
76817 assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE );
76818 assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC );
76819 assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER );
76820 assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL );
76821 testcase( to_op==OP_ToText );
76822 testcase( to_op==OP_ToBlob );
76823 testcase( to_op==OP_ToNumeric );
76824 testcase( to_op==OP_ToInt );
76825 testcase( to_op==OP_ToReal );
76830 sqlite3VdbeAddOp1(v, to_op, inReg);