mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Use proper types so it compiles on DEC C89. Thanks Erik Bertelson.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.3 1996/11/10 03:02:42 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.4 1997/01/08 08:36:31 bryanh Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -45,12 +45,12 @@
|
||||
* output functions
|
||||
* ----------------
|
||||
*/
|
||||
void
|
||||
donothing(List *tuple, List *attrdesc)
|
||||
static void
|
||||
donothing(HeapTuple tuple, TupleDesc attrdesc)
|
||||
{
|
||||
}
|
||||
|
||||
void (*DestToFunction(CommandDest dest))()
|
||||
void (*DestToFunction(CommandDest dest))(HeapTuple, TupleDesc)
|
||||
{
|
||||
switch (dest) {
|
||||
case RemoteInternal:
|
||||
|
Reference in New Issue
Block a user