diff options
author | Alvaro Herrera | 2018-05-09 13:33:55 +0000 |
---|---|---|
committer | Alvaro Herrera | 2018-05-09 13:33:55 +0000 |
commit | c775fb9e18ace94e61d5d9587b5667f7baaca459 (patch) | |
tree | 26ff10634171168644003375e12ac4db64a049f3 | |
parent | 91703ca2144e58d041c132fb7ff06a6d1721e904 (diff) |
Remove useless 'default' clause
Author: Michael Paquier
Reviewed-by: Amit Langote
Reviewed-by: Álvaro Herrera
Discussion: https://postgr.es/m/20180424012042.GD1570@paquier.xyz
Discussion: https://postgr.es/m/20180509061039.GC11897@paquier.xyz
-rw-r--r-- | src/backend/partitioning/partprune.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/backend/partitioning/partprune.c b/src/backend/partitioning/partprune.c index f954b92a6b1..eae690e2ca3 100644 --- a/src/backend/partitioning/partprune.c +++ b/src/backend/partitioning/partprune.c @@ -2954,10 +2954,6 @@ perform_pruning_combine_step(PartitionPruneContext *context, } } break; - - default: - elog(ERROR, "invalid pruning combine op: %d", - (int) cstep->combineOp); } return result; |