[BUGS] BUG #3376: Erro : COMMIT

2007-06-08 Thread Felipe Nogueira
The following bug has been logged online: Bug reference: 3376 Logged by: Felipe Nogueira Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.4 Operating system: Windows 2003 Description:Erro : COMMIT Details: PostgreSQL 8.2.4 on i686-pc-mingw32, compiled by GCC

Re: [BUGS] BUG #3376: Erro : COMMIT

2007-06-08 Thread Heikki Linnakangas
Please keep the list CC'd so that others can help and learn from the discussion. Felipe Nogueira wrote: How I commit? I have a function that it will insert into a table, after all, I have commit. You commit after calling the function. Like this: BEGIN; SELECT data(1,2); COMMIT; -- Heikki

Re: [BUGS] BUG #3376: Erro : COMMIT

2007-06-08 Thread Heikki Linnakangas
Felipe Nogueira wrote: I have the following function CREATE OR REPLACE FUNCTION "public"."data" (integer, integer) RETURNS integer AS $body$ DECLARE vDATA integer; BEGIN COMMIT; END; $body$ LANGUAGE 'plpgsql' STABLE CALLED ON NULL INPUT SECURITY INVOKER; When I execute i have the error ERR

Re: [BUGS] BUG #3326: Invalid lower bound of autovacuum_cost_limit

2007-06-08 Thread Alvaro Herrera
Galy Lee wrote: > * Bug-2: 0-cost-limit for autovacuum worker > > When autovacuum_max_workers > autovacuum_vacuum_cost_limit, the above > zero-division error also happened. Ah, this is a problem in the balance code -- it fails to consider that the cost limit may be end up being 0 in the integer

[BUGS] BUG #3377: pg_dump: No matching tables were found

2007-06-08 Thread Kevin Neufeld
The following bug has been logged online: Bug reference: 3377 Logged by: Kevin Neufeld Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.4 Operating system: Linux Fedora Core 3 Description:pg_dump: No matching tables were found Details: pg_dump does not seem

Re: [BUGS] BUG #3377: pg_dump: No matching tables were found

2007-06-08 Thread Alvaro Herrera
Kevin Neufeld wrote: > $ pg_dump -U postgres -t mytable postgres | less > pg_dump: No matching tables were found > > $ pg_dump -U postgres -n test -t mytable postgres | less > pg_dump: No matching tables were found Try pg_dump -t test.mytable Then check the docs of the new version, which state

Re: [BUGS] BUG #3377: pg_dump: No matching tables were found

2007-06-08 Thread Christian Gonzalez
I Think that your problem is: test.mytable() <> test.mytable, why your table name include --> () On Fri, 2007-06-08 at 16:59 +, Kevin Neufeld wrote: > The following bug has been logged online: > > Bug reference: 3377 > Logged by: Kevin Neufeld > Email address: [EMAIL PROTE