diff options
| author | Yoshiyuki Asaba | 2007-10-22 04:20:47 +0000 |
|---|---|---|
| committer | Yoshiyuki Asaba | 2007-10-22 04:20:47 +0000 |
| commit | 3f3e24dc993f5f0db3c844c2ff0d6d23d2957482 (patch) | |
| tree | 07ab26c92795d3be2ebc243b178c744ccebdc53f | |
| parent | 18f2007f72537ab0f15f84558e8358976ea3f25f (diff) | |
Add a item about fixing query cache.V1_3
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | NEWS | 2 | ||||
| -rw-r--r-- | doc/pgpool-ja.html | 1 |
3 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2007-10-18 Yoshiyuki Asaba <y-asaba@sraoss.co.jp> + + * pool_query_cache.c: Although the second argument of + PQunescapeBytea() requires size_t which size is 8 byte in 64bit + machine, pgpool passed 4 byte variable. It caused segfault. So + fixed passing size_t variable. + 2007-10-16 Yoshiyuki Asaba <y-asaba@sraoss.co.jp> * pool_process_query.c: Fix hang up in load balancing mode. The @@ -9,6 +9,8 @@ statement. (Yoshiyuki) * Fix hang up in load balance mode. (Yoshiyuki) - This was introduced in V1.2. + * Fix segmentation fault in 64-bit environment when query cache + is enable. (Yoshiyuki) 1.2.1 (tomoboshi) 2007/09/28 * Version 1.2.1 diff --git a/doc/pgpool-ja.html b/doc/pgpool-ja.html index 88f83597e..8850525c8 100644 --- a/doc/pgpool-ja.html +++ b/doc/pgpool-ja.html @@ -1908,6 +1908,7 @@ count(*) $B$r;H$C$?%/%(%j$O!"0J2<$N$h$&$K=q$-49$($,9T$o$l$^$9!#(B <ul> <li> $B$3$NIT6q9g$O(B 1.2 $B$G:.F~$7$?IT6q9g$G$9!#(B </ul> + <li> 64bit $B4D6-$G%/%(%j%-%c%C%7%e5!G=$rM-8z$K$9$k$H!"%/%i%C%7%e$9$k2DG=@-$N$"$kIT6q9g$r=$@5$7$^$7$?(B(Yoshiyuki) </ul> <h2>1.2.1 (tomoboshi) 2007/09/28</h2> |
