Hi,
We are trying install postgresql 9.2.3 version for windows xp.
Below issue happen only for this particular PC.
Other windows XP installations are ok.
Here initdb command failed mentioning that , it is able to find postgres ,
but version mismatched.
Below code print this.
--->
postgresql-9.2.3\
The following bug has been logged on the website:
Bug reference: 8134
Logged by: Jinu KJ
Email address: jinu.m...@gmail.com
PostgreSQL version: 9.2.3
Operating system: Windows XP
Description:
Hi,
We are trying install postgresql 9.2.3 version for windows xp.
Below is
Hi,
Given the following function:
CREATE OR REPLACE FUNCTION unaccent_text(text)
RETURNS text AS
$BODY$
-- unaccent is STABLE, but the indexes must use IMMUTABLE functions.
-- comment this line out when calling pg_dump.
SELECT unaccent($1);
-- Uncomment this line when calling pg_dump.