mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
d744d5d859
Summary: Fixes T4898. After we increased the strictness of the `%s` conversion, most `serialize()` output is rejected from the cache. Drop the cache, change the column type to latin1_bin, and then use `%B` to mark the data as binary during query construction. Test Plan: Viewed Differential, saw cache fills. Reviewers: btrahan, spicyj Reviewed By: spicyj Subscribers: epriestley Maniphest Tasks: T4898 Differential Revision: https://secure.phabricator.com/D9171
4 lines
204 B
SQL
4 lines
204 B
SQL
TRUNCATE {$NAMESPACE}_differential.differential_changeset_parse_cache;
|
|
|
|
ALTER TABLE {$NAMESPACE}_differential.differential_changeset_parse_cache
|
|
CHANGE cache cache LONGTEXT COLLATE latin1_bin NOT NULL;
|