diff options
author | Robert Haas | 2016-06-07 15:25:53 +0000 |
---|---|---|
committer | Robert Haas | 2016-06-07 15:26:41 +0000 |
commit | ffab82fbda884bc73485d877dd7d528c4cb15e82 (patch) | |
tree | 4176c4a1bb7a03d11b3da7497f2ff4e927776ee0 /contrib/fuzzystrmatch/Makefile | |
parent | 50e5226bb3272daac1edb13fce9b8e92be302d64 (diff) |
Update fuzzystrmatch extension for parallel query.
All functions provided by this extension are PARALLEL SAFE.
Andreas Karlsson
Diffstat (limited to 'contrib/fuzzystrmatch/Makefile')
-rw-r--r-- | contrib/fuzzystrmatch/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/fuzzystrmatch/Makefile b/contrib/fuzzystrmatch/Makefile index 0327d9510a..51e215a919 100644 --- a/contrib/fuzzystrmatch/Makefile +++ b/contrib/fuzzystrmatch/Makefile @@ -4,7 +4,8 @@ MODULE_big = fuzzystrmatch OBJS = fuzzystrmatch.o dmetaphone.o $(WIN32RES) EXTENSION = fuzzystrmatch -DATA = fuzzystrmatch--1.0.sql fuzzystrmatch--unpackaged--1.0.sql +DATA = fuzzystrmatch--1.1.sql fuzzystrmatch--1.0--1.1.sql \ + fuzzystrmatch--unpackaged--1.0.sql PGFILEDESC = "fuzzystrmatch - similarities and distance between strings" ifdef USE_PGXS |