Skip to content

Commit 244c154

Browse files
author
Markus Nullmeier
committed
port declarations and test of new contains operators '<@', '@>' to backwards-compatible variants '@', '~'
1 parent 95d7fd4 commit 244c154

10 files changed

+2295
-1640
lines changed

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,18 @@ OBJS = sscan.o sparse.o sbuffer.o vector3d.o point.o \
77
EXTENSION = pg_sphere
88
DATA_built = pg_sphere--1.0.sql
99
DOCS = README.pg_sphere COPYRIGHT.pg_sphere
10-
REGRESS = init tables points euler circle line ellipse poly path box index
10+
REGRESS = init tables points euler circle line ellipse poly path box index \
11+
contains_ops contains_ops_compat
12+
1113
EXTRA_CLEAN = pg_sphere--1.0.sql $(PGS_SQL)
1214

1315
CRUSH_TESTS = init_extended circle_extended
1416

1517
# order of sql files is important
1618
PGS_SQL = pgs_types.sql pgs_point.sql pgs_euler.sql pgs_circle.sql \
1719
pgs_line.sql pgs_ellipse.sql pgs_polygon.sql pgs_path.sql \
18-
pgs_box.sql pgs_gist.sql pgs_crossmatch.sql
20+
pgs_box.sql pgs_contains_ops.sql pgs_contains_ops_compat.sql \
21+
pgs_gist.sql pgs_crossmatch.sql \
1922

2023
ifdef USE_PGXS
2124
ifndef PG_CONFIG
@@ -56,4 +59,3 @@ endif
5659
dist : clean sparse.c sscan.c
5760
find . -name '*~' -type f -exec rm {} \;
5861
cd .. && tar --exclude CVS -czf pg_sphere.tar.gz pg_sphere && cd -
59-

0 commit comments

Comments
 (0)