diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-06-20 14:31:29 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-06-20 14:32:01 -0400 |
commit | 15c91568cfa4777892207a85000fdfd72b59b677 (patch) | |
tree | a0d824fd8c41ea9dc3ead7161286da1c0e7e6cb8 /src | |
parent | ba63dbd9edc0d58e5f0891ead979674b1b45ad17 (diff) | |
download | postgresql-15c91568cfa4777892207a85000fdfd72b59b677.tar.gz postgresql-15c91568cfa4777892207a85000fdfd72b59b677.zip |
Fix typo in code comment
Author: Masahiko Sawada <sawada.mshk@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/catalog/partition.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/catalog/partition.c b/src/backend/catalog/partition.c index a7c9b9a46c1..68fc12b50ee 100644 --- a/src/backend/catalog/partition.c +++ b/src/backend/catalog/partition.c @@ -1200,7 +1200,7 @@ get_partition_operator(PartitionKey key, int col, StrategyNumber strategy, /* * If one doesn't exist, we must resort to using an operator in the same - * opreator family but with the operator class declared input type. It is + * operator family but with the operator class declared input type. It is * OK to do so, because the column's type is known to be binary-coercible * with the operator class input type (otherwise, the operator class in * question would not have been accepted as the partitioning operator |