I *thought* INSERT IGNORE would ignore the fact that my table already contains a record with unique key and INSERT the new record right over top of it. It appears that what it REALLY does is ignore the new row, insert nothing, and not give me the duplicate key error I would get if I didn't use IGNORE.
Am I right?