[DOCS] Translating manual, I got a error.

2006-08-20 Thread Heejin Mun
Hi.I'm translating manual into Korean. But there is a error.After translating, I run 'make postgres.tar.gz'.And then com shows me a error message.'Jade:start.sgml:15:64:E: non SGML character number 148'
I suppose that because Korean should be used with character-set Utf-8 or Euc-kr, character-set designated in sgml must be changed.But I don't know how to change.show me the way.Have a good day!
-- My Blog: http://www.siren99.co.kr


[DOCS] boolean type cast

2006-08-20 Thread Taiki Yamaguchi
Hi,

I found a minor glitch in the documentation for 8.1 where it talks about
boolean data type.

Here is what the documentation says:

"Tip:  Values of the boolean type cannot be cast directly to other types
(e.g., CAST (boolval AS integer) does not work)."


It is true for pre-8.1. As for 8.1, however, boolean type cast works:

=# select true::int;
 int4
--
1
(1 row)



regards,


--
Taiki Yamaguchi



---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [DOCS] boolean type cast

2006-08-20 Thread Tom Lane
Taiki Yamaguchi <[EMAIL PROTECTED]> writes:
> I found a minor glitch in the documentation for 8.1 where it talks about
> boolean data type.

Yeah, looks like we missed updating that bit :-(

I'm tempted to just delete the whole .  Is there a reason to insert
some other text in its place?  If so, what to say?

regards, tom lane

---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
   subscribe-nomail command to [EMAIL PROTECTED] so that your
   message can get through to the mailing list cleanly