├── .gitignore ├── LICENSE.md ├── README.md ├── admin └── db_creation_date.sql ├── diff └── diff-tables.sql ├── global_search ├── README.md └── global_search.sql ├── hamming_weight ├── Makefile ├── hamming_weight.c └── hamming_weight.sql ├── large_objects ├── lo_digest.sql └── lo_size.sql ├── pivots ├── dynamic-pivot-create.sql └── dynamic-pivot-refcursor.sql ├── psql-cli ├── psql-coproc-functions.sh ├── psql-edit-replace.sh ├── psql-quote-meta.bash ├── psqlrc-for-edit-replace └── tar-to-pg-copy.sh ├── strings ├── parse-option.sql ├── plperl │ ├── env_vars.sql │ └── multi_replace_plperl.sql ├── unicode-versions.sql └── utf8-truncate.sql └── tsearch └── dict_maxlen ├── Makefile ├── README.md ├── dict_maxlen--1.0.sql ├── dict_maxlen.c └── dict_maxlen.control /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore backup files 2 | *~ 3 | 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/README.md -------------------------------------------------------------------------------- /admin/db_creation_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/admin/db_creation_date.sql -------------------------------------------------------------------------------- /diff/diff-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/diff/diff-tables.sql -------------------------------------------------------------------------------- /global_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/global_search/README.md -------------------------------------------------------------------------------- /global_search/global_search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/global_search/global_search.sql -------------------------------------------------------------------------------- /hamming_weight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/hamming_weight/Makefile -------------------------------------------------------------------------------- /hamming_weight/hamming_weight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/hamming_weight/hamming_weight.c -------------------------------------------------------------------------------- /hamming_weight/hamming_weight.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/hamming_weight/hamming_weight.sql -------------------------------------------------------------------------------- /large_objects/lo_digest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/large_objects/lo_digest.sql -------------------------------------------------------------------------------- /large_objects/lo_size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/large_objects/lo_size.sql -------------------------------------------------------------------------------- /pivots/dynamic-pivot-create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/pivots/dynamic-pivot-create.sql -------------------------------------------------------------------------------- /pivots/dynamic-pivot-refcursor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/pivots/dynamic-pivot-refcursor.sql -------------------------------------------------------------------------------- /psql-cli/psql-coproc-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/psql-cli/psql-coproc-functions.sh -------------------------------------------------------------------------------- /psql-cli/psql-edit-replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/psql-cli/psql-edit-replace.sh -------------------------------------------------------------------------------- /psql-cli/psql-quote-meta.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/psql-cli/psql-quote-meta.bash -------------------------------------------------------------------------------- /psql-cli/psqlrc-for-edit-replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/psql-cli/psqlrc-for-edit-replace -------------------------------------------------------------------------------- /psql-cli/tar-to-pg-copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/psql-cli/tar-to-pg-copy.sh -------------------------------------------------------------------------------- /strings/parse-option.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/strings/parse-option.sql -------------------------------------------------------------------------------- /strings/plperl/env_vars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/strings/plperl/env_vars.sql -------------------------------------------------------------------------------- /strings/plperl/multi_replace_plperl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/strings/plperl/multi_replace_plperl.sql -------------------------------------------------------------------------------- /strings/unicode-versions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/strings/unicode-versions.sql -------------------------------------------------------------------------------- /strings/utf8-truncate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/strings/utf8-truncate.sql -------------------------------------------------------------------------------- /tsearch/dict_maxlen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/tsearch/dict_maxlen/Makefile -------------------------------------------------------------------------------- /tsearch/dict_maxlen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/tsearch/dict_maxlen/README.md -------------------------------------------------------------------------------- /tsearch/dict_maxlen/dict_maxlen--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/tsearch/dict_maxlen/dict_maxlen--1.0.sql -------------------------------------------------------------------------------- /tsearch/dict_maxlen/dict_maxlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/tsearch/dict_maxlen/dict_maxlen.c -------------------------------------------------------------------------------- /tsearch/dict_maxlen/dict_maxlen.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dverite/postgresql-functions/HEAD/tsearch/dict_maxlen/dict_maxlen.control --------------------------------------------------------------------------------