diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-01-24 09:08:13 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-01-24 09:08:13 -0500 |
commit | 52df3420cd241b1411da3e4b24318db12bf22cba (patch) | |
tree | 11bc3b82f2ef740bb9f5c4e4ed6951d71f5959e7 /src | |
parent | 289992c462b504ffa289202ce8fc34a56b4048c3 (diff) | |
download | postgresql-52df3420cd241b1411da3e4b24318db12bf22cba.tar.gz postgresql-52df3420cd241b1411da3e4b24318db12bf22cba.zip |
Remove unused variable.
This was intended to be included in the previous commit,
but I goofed.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/catalog/partition.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/catalog/partition.c b/src/backend/catalog/partition.c index 1df9af110a4..839daad7a3e 100644 --- a/src/backend/catalog/partition.c +++ b/src/backend/catalog/partition.c @@ -622,8 +622,6 @@ partition_bounds_equal(PartitionKey key, for (j = 0; j < key->partnatts; j++) { - int32 cmpval; - /* For range partitions, the bounds might not be finite. */ if (b1->content != NULL) { |