diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2018-05-09 10:33:55 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2018-05-09 10:33:55 -0300 |
commit | c775fb9e18ace94e61d5d9587b5667f7baaca459 (patch) | |
tree | 26ff10634171168644003375e12ac4db64a049f3 /src | |
parent | 91703ca2144e58d041c132fb7ff06a6d1721e904 (diff) | |
download | postgresql-c775fb9e18ace94e61d5d9587b5667f7baaca459.tar.gz postgresql-c775fb9e18ace94e61d5d9587b5667f7baaca459.zip |
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
Diffstat (limited to 'src')
-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; |