From a265b7f70aa01a34ae30554186ee8c2089e035d8 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 27 Jul 2003 03:51:59 +0000 Subject: > Am Son, 2003-06-22 um 02.09 schrieb Joe Conway: >>Sounds like all that's needed for your case. But to be complete, in >>addition to changing tablefunc.c we'd have to: >>1) come up with a new function call signature that makes sense and does >>not cause backward compatibility problems for other people >>2) make needed changes to tablefunc.sql.in >>3) adjust the README.tablefunc appropriately >>4) adjust the regression test for new functionality >>5) be sure we don't break any of the old cases >> >>If you want to submit a complete patch, it would be gratefully accepted >>-- for review at least ;-) > > Here's the patch, at least for steps 1-3 Nabil Sayegh Joe Conway --- contrib/tablefunc/tablefunc.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'contrib/tablefunc/tablefunc.h') diff --git a/contrib/tablefunc/tablefunc.h b/contrib/tablefunc/tablefunc.h index b9e3b12c6b1..7671073ca28 100644 --- a/contrib/tablefunc/tablefunc.h +++ b/contrib/tablefunc/tablefunc.h @@ -4,6 +4,8 @@ * Sample to demonstrate C functions which return setof scalar * and setof composite. * Joe Conway + * And contributors: + * Nabil Sayegh * * Copyright 2002 by PostgreSQL Global Development Group * @@ -36,5 +38,6 @@ extern Datum normal_rand(PG_FUNCTION_ARGS); extern Datum crosstab(PG_FUNCTION_ARGS); extern Datum crosstab_hash(PG_FUNCTION_ARGS); extern Datum connectby_text(PG_FUNCTION_ARGS); +extern Datum connectby_text_serial(PG_FUNCTION_ARGS); #endif /* TABLEFUNC_H */ -- cgit v1.2.3