1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/finance/gnucash/files/patch-PostgresBackend
Joe Marcus Clarke ac25d171d0 Fix US-ASCII encoding problem with the PostgreSQL backend. US-ASCII will be
substituted by SQL_ASCII which Postgres understands.

Submitted by:	Richard Schilling <rschi@rsmba.biz>
2004-07-27 14:23:18 +00:00

17 lines
553 B
Plaintext

*** src/backend/postgres/PostgresBackend.orig Mon Jul 26 17:17:45 2004
--- src/backend/postgres/PostgresBackend.c Mon Jul 26 17:33:16 2004
***************
*** 2104,2109 ****
--- 2104,2114 ----
if (!strcmp (encoding, "ANSI_X3.4-1968"))
encoding = "SQL_ASCII";
+ if (!strcmp(encoding, "US-ASCII"))
+ encoding = "SQL_ASCII";
+
+ printf("\nDatabase encoding is: %s.\n", encoding);
+
/* create the database */
p = be->buff; *p =0;
p = stpcpy (p, "CREATE DATABASE ");