diff -p nls.mk nls.mk.orig
*** nls.mk Thu Jan 20 01:48:42 2005
--- nls.mk.orig Thu Jan 20 01:48:16 2005
***
*** 1,6
# $PostgreSQL: pgsql/src/bin/pg_dump/nls.mk,v 1.18 2004/11/27 22:44:13 petere
Exp $
CATALOG_NAME := pg_dump
! AVAIL_LANGUAGES := cs de es fr it ko nb
Please add 2 po files for version 8.0.
libpq-ko.po.gz
Description: GNU Zip compressed data
psql-ko.po.gz
Description: GNU Zip compressed data
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster
this bug is only for win32 system.
On mingw32 random() function have to be initialized by srandom().
so, I put srandom(time(NULL)) line.
and,
Because random() function return integer (2byte), this return integer number
need filtering.
so, I changed random() % 255 line.
on win32, original code ge
ï
I found that function
gen_salt() in contrib/pgcrypto had bug on win32.
I patched contrib/pgcrypto/random.c file.
pgcrypto_random.patch
Description: Binary data
---(end of broadcast)---
TIP 7: don't forget to increase your free
ï
I found that function
gen_salt() in contrib/pgcrypto had bug on win32.
I patched contrib/pgcrypto/random.c file.
--
$ diff random.orig.c random.c 42a43>
#include 87a89,90>
srandom(time(NULL));>
89c92<
*dst++ =
random();--->
Time: 2.490 ms
Sorry, above text is korean language.
strpos returns wrong result.
- Original Message -
From: "Tom Lane" <[EMAIL PROTECTED]>
To: "Korea PostgreSQL Users' Group" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>; "Tatsuo Ishii&
In src/backend/utils/adt/varlena.c,
766 line must be exits in block of 'else if (elm >1)' too.
Because, strpos() function make a wrong result in multibyte string.
line 796
ps1 = p1 = (pg_wchar *) palloc((len1 + 1) * sizeof(pg_wchar));
(void) pg_mb2wcha
In 7.4.1, intarray module have a problme about equal operator (=).
select * from table where intarray_column = '{}';
above query make error.
because when not equal operator (<>) is made,
this make incorrect equal operator by implicate.
so, I patched.
Patch content is here.
= BEGIN of FILE