Re: [HACKERS] contrib/rtree_gist into core system?

2005-06-30 Thread falcon
Hello, pgsql-hackers. Sorry for fludding. Bug 1614 was fixed in 8.0.3. I just tests. -- falcon mailto:[EMAIL PROTECTED] ---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ? http

Re: [HACKERS] contrib/rtree_gist into core system?

2005-06-29 Thread falcon
ay be it can touch tsearch2. I don't know. But the bug exists. -- falcon mailto:[EMAIL PROTECTED] ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command

[HACKERS] plpgsql SET OF functions in field list of select

2005-05-05 Thread falcon
Hello. Why pgplsql setof ... function cannot be used in field list of select? It is possible to use C functions, plperl functions and sql functions, but pgplsql returns: ERROR: set-valued function called in context that cannot accept a set CONTEXT: PL/pgSQL function "my_gen_ser" line 6 at retur

[HACKERS] Why not cache stable functions?

2005-04-15 Thread falcon
ctically it may be formed as: set enable_stable_function_cache=on; -- And somewhat in postgresql.conf set max_stable_function_cache=1000; create function ... stable cached(400); And I think it useful to cache values for immutable functioins accros whole connection. -- falcon