Actions
HowTo make Wiki history working with Postgres 90 » History » Revision 4
« Previous |
Revision 4/30
(diff)
| Next »
Florian Breitwieser, 2011-02-21 17:31
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 Florian Breitwieser over 13 years ago · 4 revisions