diff options
| author | Joe Conway | 2009-08-05 16:11:07 +0000 |
|---|---|---|
| committer | Joe Conway | 2009-08-05 16:11:07 +0000 |
| commit | f4095b4c4b24a6fd2c1c330e572c24c6a9c99ea9 (patch) | |
| tree | ddc3c8603474fd2d3c5a0c3de693383825495fd1 /contrib/dblink/dblink.h | |
| parent | 16f3cf8c0c3c452ff06a3267b2f13bf0bd3b3892 (diff) | |
Implement dblink_get_notify().
Adds the ability to retrieve async notifications using dblink,
via the addition of the function dblink_get_notify(). Original patch
by Marcus Kempe, suggestions by Tom Lane and Alvaro Herrera, patch
review and adjustments by Joe Conway.
Diffstat (limited to 'contrib/dblink/dblink.h')
| -rw-r--r-- | contrib/dblink/dblink.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/dblink/dblink.h b/contrib/dblink/dblink.h index 829748d8923..6828bcc9b7a 100644 --- a/contrib/dblink/dblink.h +++ b/contrib/dblink/dblink.h @@ -8,7 +8,7 @@ * Darko Prenosil <Darko.Prenosil@finteh.hr> * Shridhar Daithankar <shridhar_daithankar@persistent.co.in> * - * $PostgreSQL: pgsql/contrib/dblink/dblink.h,v 1.22 2009/06/09 17:41:02 tgl Exp $ + * $PostgreSQL: pgsql/contrib/dblink/dblink.h,v 1.23 2009/08/05 16:11:07 joe Exp $ * Copyright (c) 2001-2009, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * @@ -57,5 +57,6 @@ extern Datum dblink_build_sql_insert(PG_FUNCTION_ARGS); extern Datum dblink_build_sql_delete(PG_FUNCTION_ARGS); extern Datum dblink_build_sql_update(PG_FUNCTION_ARGS); extern Datum dblink_current_query(PG_FUNCTION_ARGS); +extern Datum dblink_get_notify(PG_FUNCTION_ARGS); #endif /* DBLINK_H */ |
