? 220143-fix-filter-url-rev2.patch ? 220143-fix-filter-url.patch ? 336483-add-index-for-comment-count.patch ? 470306-email-column-too-short-rev4.patch Index: modules/system/system.install =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.install,v retrieving revision 1.359 diff -u -p -r1.359 system.install --- modules/system/system.install 28 Jul 2009 19:18:08 -0000 1.359 +++ modules/system/system.install 29 Jul 2009 04:34:33 -0000 @@ -2257,6 +2257,15 @@ function system_update_7029() { } /** + * Add an index to node_comment_statistics on comment_count. + */ +function system_update_7030() { + $ret = array(); + db_add_index(&$ret, 'node_comment_statistics', 'comment_count', array('comment_count')); + return $ret; +} + +/** * @} End of "defgroup updates-6.x-to-7.x" * The next series of updates should start at 8000. */