From 4e0071fb8a44c5a91f46638a8414379fa68dad04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Thu, 30 Aug 2007 15:31:46 +0000 Subject: #111127 rollback by chx, slightly extended: roll back node_load cache, it needs more thought and discussion, so postponed until at least Drupal 7 --- modules/system/system.install | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) (limited to 'modules/system/system.install') diff --git a/modules/system/system.install b/modules/system/system.install index 1421ecc2d..0479a5992 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3698,24 +3698,8 @@ function system_update_6027() { * Add the node load cache table. */ function system_update_6028() { - $ret = array(); - - // Create the cache_node table. - $schema['cache_node'] = array( - 'fields' => array( - 'cid' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), - 'data' => array('type' => 'blob', 'not null' => FALSE, 'size' => 'big'), - 'expire' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), - 'created' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), - 'headers' => array('type' => 'text', 'not null' => FALSE), - 'serialized' => array('type' => 'int', 'size' => 'small', 'not null' => TRUE, 'default' => 0) - ), - 'indexes' => array('expire' => array('expire')), - 'primary key' => array('cid'), - ); - db_create_table($ret, 'cache_node', $schema['cache_node']); - - return $ret; + // Removed node_load cache to discuss it more for Drupal 7. + return array(); } /** -- cgit v1.2.3