diff options
author | Peter Geoghegan | 2020-02-19 00:07:16 +0000 |
---|---|---|
committer | Peter Geoghegan | 2020-02-19 00:07:16 +0000 |
commit | fe9b92854e7d5f66d3abb565c5b60a879b6c9442 (patch) | |
tree | 05eb7ee4a6f64df8bc5ad3eadb0f2a2528786e14 | |
parent | b7e51b350c4e6b1cb3404588cf11801525e2336f (diff) |
Remove obsolete _bt_compare() comment.
btbuild() has nothing to say about how NULL values compare in nbtree.
Besides, there are _bt_compare() header comments that describe how NULL
values are handled.
-rw-r--r-- | src/backend/access/nbtree/nbtsearch.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/access/nbtree/nbtsearch.c b/src/backend/access/nbtree/nbtsearch.c index c573814f01e..df065d72f84 100644 --- a/src/backend/access/nbtree/nbtsearch.c +++ b/src/backend/access/nbtree/nbtsearch.c @@ -601,7 +601,6 @@ _bt_compare(Relation rel, datum = index_getattr(itup, scankey->sk_attno, itupdesc, &isNull); - /* see comments about NULLs handling in btbuild */ if (scankey->sk_flags & SK_ISNULL) /* key is NULL */ { if (isNull) |