HowTo make Wiki history working with Postgres 90 » History » Revision 10
« Previous |
Revision 10/30
(diff)
| Next »
Etienne Massip, 2012-09-29 10:42
Spam squashing
HowTo make Wiki history working with Postgres 9.0¶
Problem¶
When accessing the history version of a Wiki page (e.g. Wiki?version=16), just a string which is not human readable is displayed. It starts like this and is about 5000 characters long:
\x68312e204d532050726f63657373696e6720506970656 ...
Same result for exporting TXT or HTML of the current version, and a Wiki-diff just diffs between two such strings.
Solution¶
PostgreSQL 9 introduced a new 'hex' format for bytea data input and output. Default for output is now hex, but it can be easily reverted to the old 'escape' format with the following command:
ALTER DATABASE redmine SET bytea_output TO 'escape';
See also #7677.
Updated by Etienne Massip about 12 years ago · 10 revisions