Project

General

Profile

HowTo make Wiki history working with Postgres 90 » History » Version 1

Florian Breitwieser, 2011-02-21 17:28

1 1 Florian Breitwieser
h1. HowTo make Wiki history working with Postgres 9.0
2
3
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:
4
5
<pre>
6
ALTER DATABASE redmine SET bytea_output TO 'escape';
7
</pre>
8
9
See also #7677.