Where is pg_create_restore_point funciton in 9.1a2 ?

From: Emanuel Calvo <postgres(dot)arg(at)gmail(dot)com>
To: postgresql Forums <pgsql-general(at)postgresql(dot)org>, pgsql-bugs(at)postgresql(dot)org
Subject: Where is pg_create_restore_point funciton in 9.1a2 ?
Date: 2011-06-22 08:28:51
Message-ID: BANLkTim37HVYJ5hsJsKyHtDLB7pCr8JVzw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-general

I'm still finding pg_create_restore_point in 9.1a2 documentation:
http://www.postgresql.org/docs/9.1/static/functions-admin.html

But I've compiled that version and I didn't found it:

postgres=# \df *create_restore*
List of functions
Schema | Name | Result data type | Argument data types | Type
--------+------+------------------+---------------------+------
(0 rows)

postgres=# select pg_create_restore_point('name');
ERROR: function pg_create_restore_point(unknown) does not exist
LINE 1: select pg_create_restore_point('name');
^
HINT: No function matches the given name and argument types. You
might need to add explicit type casts.
postgres=# select pg_create_restore_point('name'::text);
ERROR: function pg_create_restore_point(text) does not exist
LINE 1: select pg_create_restore_point('name'::text);
^
HINT: No function matches the given name and argument types. You
might need to add explicit type casts.

By the way, another issue that I found is when I execute \df. It
doesn't display anything (I must
force with * to do that).
I don't know if it is correct but in other releases it displays all
the functions (as \d displays
all the relations in this one).

--
--
              Emanuel Calvo
              Helpame.com

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Jaime Casanova 2011-06-22 09:14:09 Re: Where is pg_create_restore_point funciton in 9.1a2 ?
Previous Message David Hernández 2011-06-22 07:37:56 Re: ¿Está el servidor en ejecución localmente y aceptando conexiones en el socket de dominio Unix <</tmp/.s.PGSQL.5432>>?

Browse pgsql-general by date

  From Date Subject
Next Message Wim Bertels 2011-06-22 08:38:39 Error details in sql (and plpgsql) (possible feature request)
Previous Message Amitabh Kant 2011-06-22 08:11:25 Re: getting postgres server on freebsd startup?