Indexing support for pattern matching operations via separate operator
Peter Eisentraut <peter_e@gmx.net>
Indexing support for pattern matching operations via separate operator class when lc_collate is not C.
Files
| Path | Change | +/− |
|---|---|---|
| doc/src/sgml/charset.sgml | modified | +3 −13 |
| doc/src/sgml/indices.sgml | modified | +44 −1 |
| doc/src/sgml/release.sgml | modified | +2 −1 |
| doc/src/sgml/runtime.sgml | modified | +8 −21 |
| src/backend/access/nbtree/nbtcompare.c | modified | +10 −1 |
| src/backend/optimizer/path/indxpath.c | modified | +46 −35 |
| src/backend/utils/adt/name.c | modified | +60 −1 |
| src/backend/utils/adt/selfuncs.c | modified | +18 −103 |
| src/backend/utils/adt/varlena.c | modified | +144 −1 |
| src/bin/initdb/initdb.sh | modified | +1 −8 |
| src/include/catalog/catversion.h | modified | +2 −2 |
| src/include/catalog/pg_amop.h | modified | +41 −1 |
| src/include/catalog/pg_amproc.h | modified | +5 −1 |
| src/include/catalog/pg_opclass.h | modified | +5 −1 |
| src/include/catalog/pg_operator.h | modified | +32 −1 |
| src/include/catalog/pg_proc.h | modified | +34 −1 |
| src/include/utils/builtins.h | modified | +15 −1 |
| src/include/utils/selfuncs.h | modified | +1 −2 |
| src/test/regress/expected/opr_sanity.out | modified | +12 −7 |
| src/test/regress/sql/opr_sanity.sql | modified | +5 −5 |