What I have seen so far in the documentation of Postgres that when we want to index some column, it will by default use B tree as the data structure of indexing but B+ tree is much faster than B tree so why default indexing is on B tree and not on B+ tree.
For Reference(how B+ tree is better): https://www.tutorialcup.com/dbms/b-tree.htm
So my question is: why they are not using B+ tree for indexing by default.