It adds the field 'uid' to existing table, but does not fill in the values from real nodes, so all usernames in the views get '(not verified)' message. This does the trick:
db_query('UPDATE {node_comments} c SET uid = (SELECT uid FROM {node} n WHERE n.nid = c.cid)');
(if this uid field is really needed at all).
Comments
Comment #1
quicksketchThis was fixed with #467330: uid column is 0 after upgrade.