From 15c408be1dc4494f1cd8ea1a771d7c099f6d77ef Mon Sep 17 00:00:00 2001 From: epriestley Date: Sat, 17 May 2014 22:37:45 -0700 Subject: [PATCH] Change LONGTEXT cache column to BINARY See T4898. As it turns out, `latin1` LONGTEXT is not approximately equivalent to LONGBLOB. --- resources/sql/autopatches/20140518.dxmorebinarycache.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 resources/sql/autopatches/20140518.dxmorebinarycache.sql diff --git a/resources/sql/autopatches/20140518.dxmorebinarycache.sql b/resources/sql/autopatches/20140518.dxmorebinarycache.sql new file mode 100644 index 0000000000..27859bfd4b --- /dev/null +++ b/resources/sql/autopatches/20140518.dxmorebinarycache.sql @@ -0,0 +1,4 @@ +TRUNCATE {$NAMESPACE}_differential.differential_changeset_parse_cache; + +ALTER TABLE {$NAMESPACE}_differential.differential_changeset_parse_cache + CHANGE cache cache LONGBLOB NOT NULL;