Zhihong Yu writes:
> I was able to create gin index on inet column in PG.
> GIN is good with points/elements in sets. Is gin a good index for inet
> column ?
As far as Postgres is concerned, inet is a scalar type: it has a
linear sort order, and there aren't many operations on it that are
concern
## Zhihong Yu (z...@yugabyte.com):
> I was able to create gin index on inet column in PG.
>
> GIN is good with points/elements in sets. Is gin a good index for inet
> column ?
> It seems gist index would be better.
Why not use btree? The common operations are quite supported with that.
(Common o