$wp_query->query(array('post__in'=>array($numbers),'showposts'=>5,'paged'=>$paged));
$wp_query->query(array('post__in'=>array(1, 2, 3, 4, 5),'showposts'=>5,'paged'=>$paged));
<?php $post_ids = $wpdb->get_col("SELECT comment_post_ID FROM $wpdb->comments WHERE user_id = $current_user->ID AND comment_approved = '1' "); $numbers = implode(', ', $post_ids); ?>
$wp_query->query(array('post__in'=>explode(", ", $numbers),'showposts'=>5,'paged'=>$paged));