[BUGS] Re: BUG #6294: character 0xefbd9e of encoding "UTF8" has no equivalent in "BIG5"

2011-11-16 Thread CN
The following UTF8 character can not be converted to big5, either: CST ERROR: character 0xe28895 of encoding "UTF8" has no equivalent in "BIG5" Again, iconv has no problem with the conversion: iconv -f utf8 -t big5 Regards CN -- http://www.fastmail.fm - Send yo

[BUGS] BUG #6294: character 0xefbd9e of encoding "UTF8" has no equivalent in "BIG5"

2011-11-15 Thread CN Liu
The following bug has been logged online: Bug reference: 6294 Logged by: CN Liu Email address: cnli...@fastmail.fm PostgreSQL version: 9.1.1 Operating system: Debian Squeeze Description:character 0xefbd9e of encoding "UTF8" has no equivalent in &quo

[BUGS] BUG #3770: Follow up: Fail to make bcc32.mak for libpq

2007-11-21 Thread CN
The following bug has been logged online: Bug reference: 3770 Logged by: CN Email address: [EMAIL PROTECTED] PostgreSQL version: 8.3beta3 Operating system: Win 98 Description:Follow up: Fail to make bcc32.mak for libpq Details: I manually copied ~/src/include/port

[BUGS] BUG #3769: Fail to make bcc32.mak for libpq

2007-11-21 Thread CN
The following bug has been logged online: Bug reference: 3769 Logged by: CN Email address: [EMAIL PROTECTED] PostgreSQL version: 8.3beta3 Operating system: Win 98 Description:Fail to make bcc32.mak for libpq Details: MAKE Version 5.2 Copyright (c) 1987, 2000

[BUGS] BUG #3182: Cannot make libpq with BCC 5.5

2007-03-26 Thread CN Liou
The following bug has been logged online: Bug reference: 3182 Logged by: CN Liou Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.3 Operating system: Win98 Description:Cannot make libpq with BCC 5.5 Details: bcc32.exe -I\borland\bcc55\include;..\..\include

[BUGS] BUG #2827

2006-12-17 Thread CN
"fe-connect.c": case CONNECTION_NEEDED: while (conn->addr_cur != NULL) { struct addrinfo *addr_cur = conn->addr_cur; if(addr_cur->ai_addr == NULL){ fopen("c:\\log.txt","a+"); fputs("addr_cur->ai_addr",f); //this do

[BUGS] BUG #2827: AV occurs to libpq with newer versions of wine

2006-12-15 Thread CN Liou
The following bug has been logged online: Bug reference: 2827 Logged by: CN Liou Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2 Operating system: libwine Description:AV occurs to libpq with newer versions of wine Details: libpq.dll works fine under

[BUGS] BUG #2677: BCC 5.5 can't compile libpq 8.2 beta 1

2006-10-06 Thread CN
The following bug has been logged online: Bug reference: 2677 Logged by: CN Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2beta1 Operating system: Win98 Description:BCC 5.5 can't compile libpq 8.2 beta 1 Details: In ~/src/interfaces/libpq/ the co

Re: [BUGS] Can not build libpq.dll with BCC

2005-09-28 Thread CN
INVALID_HANDLE) #define WSA_INVALID_PARAMETER (ERROR_INVALID_PARAMETER) #define WSA_NOT_ENOUGH_MEMORY (ERROR_NOT_ENOUGH_MEMORY) #define WSA_OPERATION_ABORTED (ERROR_OPERATION_ABORTED) ... Regards, CN -- http://www.fastmail.fm - Access your email from home and the web -

[BUGS] Can not build libpq.dll with BCC

2005-09-27 Thread CN
Hi! I filled out the bug form but I don't see my report appear in bug archive. Hence I am resorting to pgsql-bug list. Regards, CN OS: Win98 on top of win4lin on top of Linux Compiler BC++ 5.6.4 Possible bug 1: Unless lines 142 and 143 in ~/interfaces/libpq/bcc32.mak are ch

[BUGS] Contraints problem in PLPGSQL

2003-10-20 Thread CN
NSERT INTO tb1 VALUES($1); INSERT INTO tb2 VALUES($1,200); GET DIAGNOSTICS n=ROW_COUNT; RETURN n; END' LANGUAGE PLPGSQL STABLE; SELECT test2(1); --1 row is returned SELECT test2(1); --1 row is returned SELECT * FROM tb2; --0 row is returned. Regards, CN -- http://www.fastmail

[BUGS] RI Bug In Inherited Table

2003-03-12 Thread cn cn
I forget to mention the version: postgreSQL 7.3.2. Regards, CN - CREATE TABLE tt1 ( c1 int primary key )WITHOUT OIDS; CREATE TABLE tt2 ( PRIMARY KEY (c1,c2), c1 int, c2 int )INHERITS (tt1) WITHOUT OI---DS; CREATE TABLE tt3 ( CONSTRAINT fktt3c1 FOREIGN KEY (c1) REFERENCES tt1 (c1

[BUGS] RI Bug In Inherited Table

2003-03-12 Thread cn cn
Hi! Please try the following. Regards, CN - CREATE TABLE tt1 ( c1int primary key )WITHOUT OIDS; CREATE TABLE tt2 ( PRIMARY KEY (c1,c2), c1int, c2int )INHERITS (tt1) WITHOUT OIDS; CREATE TABLE tt3 ( CONSTRAINT fktt3c1 FOREIGN KEY (c1) REFERENCES tt1 (c1), PRIMARY KEY (c1,c2), c1int

[BUGS] Table Inherit Problem

2003-01-04 Thread CN
Hello! Could you check the following testing results and questions? Thank you! CN CREATE TABLE tt1 ( f1 INTEGER PRIMARY KEY )WITHOUT OIDS; CREATE TABLE tt2 ( PRIMARY KEY (f1,f2), f2 INTEGER, f3 VARCHAR(80) ) INHERITS (tt1) WITHOUT OIDS; db1=# insert into tt2 values(1,1