Move strategy numbers to include/access/stratnum.h
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 15 May 2015 20:03:16 +0000 (17:03 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 15 May 2015 20:03:16 +0000 (17:03 -0300)
commit26df7066cc229887d4defdf1d105c0a22b8a88fb
tree5b9cd2cefa7c52d703f9d51a48426f9820118f03
parent1e98fa0bf8de9d25d97fb346755a9c9c17bba549
Move strategy numbers to include/access/stratnum.h

For upcoming BRIN opclasses, it's convenient to have strategy numbers
defined in a single place.  Since there's nothing appropriate, create
it.  The StrategyNumber typedef now lives there, as well as existing
strategy numbers for B-trees (from skey.h) and R-tree-and-friends (from
gist.h).  skey.h is forced to include stratnum.h because of the
StrategyNumber typedef, but gist.h is not; extensions that currently
rely on gist.h for rtree strategy numbers might need to add a new

A few .c files can stop including skey.h and/or gist.h, which is a nice
side benefit.

Per discussion:
https://www.postgresql.org/message-id/20150514232132.GZ2523@alvh.no-ip.org

Authored by Emre Hasegeli and Álvaro.

(It's not clear to me why bootscanner.l has any #include lines at all.)
35 files changed:
contrib/btree_gin/btree_gin.c
contrib/cube/cube.c
contrib/hstore/hstore_gin.c
contrib/hstore/hstore_gist.c
contrib/intarray/_int_gin.c
contrib/intarray/_int_gist.c
contrib/intarray/_intbig_gist.c
contrib/ltree/_ltree_gist.c
contrib/ltree/ltree_gist.c
contrib/pg_trgm/trgm_gin.c
contrib/pg_trgm/trgm_gist.c
contrib/seg/seg.c
src/backend/access/brin/brin_minmax.c
src/backend/access/gin/ginarrayproc.c
src/backend/access/gist/gistproc.c
src/backend/access/spgist/spgkdtreeproc.c
src/backend/access/spgist/spgquadtreeproc.c
src/backend/bootstrap/bootparse.y
src/backend/bootstrap/bootscanner.l
src/backend/optimizer/path/equivclass.c
src/backend/optimizer/path/indxpath.c
src/backend/optimizer/path/pathkeys.c
src/backend/optimizer/plan/createplan.c
src/backend/optimizer/util/predtest.c
src/backend/utils/adt/jsonb_gin.c
src/backend/utils/adt/network_gist.c
src/backend/utils/adt/rangetypes_gist.c
src/backend/utils/adt/rangetypes_spgist.c
src/backend/utils/adt/tsginidx.c
src/backend/utils/adt/tsquery_gist.c
src/include/access/gist.h
src/include/access/nbtree.h
src/include/access/skey.h
src/include/access/stratnum.h [new file with mode: 0644]
src/include/utils/rangetypes.h