diff options
| author | Robert Haas <rhaas@postgresql.org> | 2011-11-07 21:47:45 -0500 |
|---|---|---|
| committer | Robert Haas <rhaas@postgresql.org> | 2011-11-07 21:47:45 -0500 |
| commit | b60653bc0b75b7f3b5dda0a2968a22129aafb2b2 (patch) | |
| tree | 626bcd83e8c11629eb54fb1afec2226f15fbb2e4 /contrib/hstore/Makefile | |
| parent | bbb6e559c4ea0fb4c346beda76736451dc24eb4e (diff) | |
| download | postgresql-b60653bc0b75b7f3b5dda0a2968a22129aafb2b2.tar.gz | |
Remove hstore's text => text operator.
Since PostgreSQL 9.0, we've emitted a warning message when an operator
named => is created, because the SQL standard now reserves that token
for another use. But we've also shipped such an operator with hstore.
Use of the function hstore(text, text) has been recommended in
preference to =>(text, text). Per discussion, it's now time to take
the next step and stop shipping the operator. This will allow us to
prohibit the use of => as an operator name in a future release if and
when we wish to support the SQL standard use of this token.
The release notes should mention this incompatibility.
Patch by me, reviewed by David Wheeler, Dimitri Fontaine and Tom Lane.
Diffstat (limited to 'contrib/hstore/Makefile')
| -rw-r--r-- | contrib/hstore/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/hstore/Makefile b/contrib/hstore/Makefile index fce1a32328..e9e5e53142 100644 --- a/contrib/hstore/Makefile +++ b/contrib/hstore/Makefile @@ -5,7 +5,8 @@ OBJS = hstore_io.o hstore_op.o hstore_gist.o hstore_gin.o hstore_compat.o \ crc32.o EXTENSION = hstore -DATA = hstore--1.0.sql hstore--unpackaged--1.0.sql +DATA = hstore--1.0.sql hstore--1.1.sql hstore--1.0--1.1.sql \ + hstore--unpackaged--1.0.sql REGRESS = hstore |
