--- views.install	2012-01-25 11:47:12.561861903 -0500
+++ views.install	2012-01-25 11:46:50.779367491 -0500
@@ -275,7 +275,9 @@
   // views_schema_6000() rather than the default views_schema().
   // This is important for processing subsequent table updates.
   $schema = views_schema_6000();
-  _drupal_initialize_schema('views', $schema);
+  // This is a drupal 6 thing. Why is this still here?
+  // Ward, 2012-01-25
+  //_drupal_initialize_schema('views', $schema);
 
   foreach ($schema as $name => $table) {
     db_create_table($name, $table);
@@ -285,6 +287,9 @@
 /**
  * Remove '$' symbol in special blocks, as it is invalid for theming.
  */
+
+/* 6001 does not apply to D7. Ward, 2012-01-25 */
+/* 
 function views_update_6001() {
   $result = db_query("SELECT * FROM {blocks} WHERE module = 'views' AND delta LIKE '\$exp%'");
   foreach ($result as $block) {
@@ -293,6 +298,7 @@
   }
   update_sql("UPDATE {blocks} SET delta = CONCAT(delta, '-block_1') WHERE module = 'views'");
 }
+*/
 
 // NOTE: Update 6002 removed because it did not always work.
 // Update 6004 implements the change correctly.
