A score for a post should be upvotes - downvotes however in the data dump there are approx 3.5K posts where these numbers do not align:

Try running:

select count(*) from Posts p

where (
  select sum(case when VoteTypeId = 2 then 1 else -1 end)
  from Votes 
  where p.Id = PostId and VoteTypeId in (2,3)
) <> Score

This is mucking up some of my queries.

Is there a reason for this?

Can this be fixed in future data dumps?

link|improve this question

52% accept rate
note, this does not affect SEDE as I am manually setting score (actually Im just about to, but for all intentional purposes I am) – waffles Jun 17 '10 at 1:20
feedback

2 Answers

The reason are probably race conditions on things that really should be done in a transaction. There are scripts running from time to time to clean up after these problems, but probably they didn't run shortly enough before the dump. Also some posts, like deleted ones, seem to be excluded from the correction scripts.

link|improve this answer
feedback

I don't think we export the "offensive / spam" threshold votes, since those are private. And they will affect the score of a post.

link|improve this answer
@jon: Presently the different vote views are consistent, even if something got flagged. – sth Jun 17 '10 at 19:50
@sth: I was picking on Jeff's assertion that flags are private. – Jon Seigel Jun 17 '10 at 20:11
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged