Rename jsonb_hash_ops to jsonb_path_ops.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 12e611d43e6efbf0e36014a3055ed47366facee7
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2014-05-11T16:06:04Z
Releases: 9.4.0
Rename jsonb_hash_ops to jsonb_path_ops.

There's no longer much pressure to switch the default GIN opclass for
jsonb, but there was still some unhappiness with the name "jsonb_hash_ops",
since hashing is no longer a distinguishing property of that opclass,
and anyway it seems like a relatively minor detail.  At the suggestion of
Heikki Linnakangas, we'll use "jsonb_path_ops" instead; that captures the
important characteristic that each index entry depends on the entire path
from the document root to the indexed value.

Also add a user-facing explanation of the implementation properties of
these two opclasses.

Files