diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-28 20:52:51 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-28 20:52:51 +0000 |
commit | dcd80a6f3f90ce4e6bcb36e6f4bfeec9c8619940 (patch) | |
tree | 680129df4fdc0d354ab77d88c7827b9631962687 | |
parent | e6effba7806bea7aa54c6329c81057e15fc2f5ff (diff) | |
download | brdo-dcd80a6f3f90ce4e6bcb36e6f4bfeec9c8619940.tar.gz brdo-dcd80a6f3f90ce4e6bcb36e6f4bfeec9c8619940.tar.bz2 |
#99970 by Heine. Make page cache keys case-sensitive on MySQL.
-rw-r--r-- | modules/system/system.install | 2 | ||||
-rw-r--r-- | update.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 3f243d699..caafe15ca 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -189,7 +189,7 @@ function system_install() { INDEX expire (expire) ) /*!40100 DEFAULT CHARACTER SET UTF8 */ "); db_query("CREATE TABLE {cache_page} ( - cid varchar(255) NOT NULL default '', + cid varchar(255) BINARY NOT NULL default '', data longblob, expire int NOT NULL default '0', created int NOT NULL default '0', diff --git a/update.php b/update.php index f43b0048d..09b3b8eaf 100644 --- a/update.php +++ b/update.php @@ -713,7 +713,7 @@ function update_create_cache_tables() { INDEX expire (expire) ) /*!40100 DEFAULT CHARACTER SET UTF8 */ "); $ret[] = update_sql("CREATE TABLE {cache_page} ( - cid varchar(255) NOT NULL default '', + cid varchar(255) BINARY NOT NULL default '', data longblob, expire int NOT NULL default '0', created int NOT NULL default '0', |