Lines Matching refs:op
536 int op; /* SQLITE_UPDATE, DELETE or INSERT */ in test_conflict_handler() local
543 sqlite3changeset_op(pIter, &zTab, &nCol, &op, 0); in test_conflict_handler()
554 op==SQLITE_INSERT ? "INSERT" : in test_conflict_handler()
555 op==SQLITE_UPDATE ? "UPDATE" : in test_conflict_handler()
579 if( op!=SQLITE_INSERT ){ in test_conflict_handler()
591 if( op!=SQLITE_DELETE ){ in test_conflict_handler()
633 if( op==SQLITE_DELETE ){ in test_conflict_handler()
644 if( op==SQLITE_INSERT ){ in test_conflict_handler()
698 int op; /* SQLITE_UPDATE, DELETE or INSERT */ in replace_handler() local
704 sqlite3changeset_op(pIter, &zTab, &nCol, &op, 0); in replace_handler()
706 if( op!=SQLITE_INSERT ){ in replace_handler()
715 if( op!=SQLITE_DELETE ){ in replace_handler()
1085 int op; /* SQLITE_INSERT, UPDATE or DELETE */ in test_sqlite3session_foreach() local
1104 sqlite3changeset_op(pIter, &zTab, &nCol, &op, &bIndirect); in test_sqlite3session_foreach()
1107 op==SQLITE_INSERT ? "INSERT" : in test_sqlite3session_foreach()
1108 op==SQLITE_UPDATE ? "UPDATE" : in test_sqlite3session_foreach()
1126 if( op!=SQLITE_INSERT ){ in test_sqlite3session_foreach()
1134 if( op!=SQLITE_DELETE ){ in test_sqlite3session_foreach()
1296 int op; in test_sqlite3session_config() member
1316 rc = sqlite3session_config(aSub[iSub].op, (void*)&iVal); in test_sqlite3session_config()