diff options
Diffstat (limited to 'src/backend/tcop/dest.c')
-rw-r--r-- | src/backend/tcop/dest.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/backend/tcop/dest.c b/src/backend/tcop/dest.c index 0505c4c5cf2..ad3475ba8a4 100644 --- a/src/backend/tcop/dest.c +++ b/src/backend/tcop/dest.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.39 2000/07/08 03:04:15 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.40 2000/10/22 22:14:55 petere Exp $ * *------------------------------------------------------------------------- */ @@ -179,27 +179,22 @@ DestToFunction(CommandDest dest) { switch (dest) { - case Remote: - /* printtup wants a dynamically allocated DestReceiver */ + case Remote: + /* printtup wants a dynamically allocated DestReceiver */ return printtup_create_DR(); - break; case RemoteInternal: return &printtup_internalDR; - break; case Debug: return &debugtupDR; - break; case SPI: return &spi_printtupDR; - break; case None: default: return &donothingDR; - break; } /* |