├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── blackhole ├── Makefile ├── README ├── blackhole--1.0.sql ├── blackhole.c └── blackhole.control ├── blackhole_am ├── .gitignore ├── Makefile ├── README ├── blackhole_am--1.0.sql ├── blackhole_am.c ├── blackhole_am.control ├── expected │ └── blackhole_am.out └── sql │ └── blackhole_am.sql ├── blackhole_cplusplus ├── Makefile ├── README ├── blackhole_cplusplus--1.0.sql ├── blackhole_cplusplus.cc └── blackhole_cplusplus.control ├── compress_test ├── Makefile ├── README ├── compression_test--1.0.sql ├── compression_test.c └── compression_test.control ├── count_relations ├── Makefile ├── README └── count_relations.c ├── custom_wal ├── Makefile ├── README ├── custom_wal--1.0.sql ├── custom_wal.c └── custom_wal.control ├── decoder_raw ├── .gitignore ├── Makefile ├── README ├── decoder_raw.c ├── expected │ └── basic.out ├── logical.conf └── sql │ └── basic.sql ├── docker ├── Dockerfile_dev ├── Dockerfile_postgres ├── README ├── build │ └── Dockerfile └── mkimage-alpine.sh ├── examples ├── README ├── create_agg.sql ├── create_function.sql ├── event_trigger.sql ├── partition.sql ├── pgbench_table_updates.sql └── pthread_libpq.c ├── hello_notify ├── Makefile ├── README └── hello_notify.c ├── hello_signal ├── Makefile ├── README └── hello_signal.c ├── hello_world ├── Makefile ├── README └── hello_world.c ├── hint_parser ├── .gitignore ├── Makefile ├── README ├── expected │ └── hint_parser.out ├── hint_gram.y ├── hint_parser--1.0.sql ├── hint_parser.c ├── hint_parser.control ├── hint_parser.h ├── hint_scanner.l └── sql │ └── hint_parser.sql ├── hmac_funcs ├── .gitignore ├── Makefile ├── README ├── expected │ └── hmac_funcs.out ├── hmac_funcs--1.0.sql ├── hmac_funcs.c ├── hmac_funcs.control └── sql │ └── hmac_funcs.sql ├── hook_utility ├── Makefile ├── README └── hook_utility.c ├── indent_typedefs.list ├── jsonlog ├── Makefile ├── README └── jsonlog.c ├── kill_idle ├── Makefile ├── README └── kill_idle.c ├── lwlock_test ├── .gitignore ├── Makefile ├── README ├── lwlock_test--1.0.sql ├── lwlock_test.c └── lwlock_test.control ├── mcxtalloc_test ├── .gitignore ├── Makefile ├── README ├── expected │ ├── mcxtalloc_test.out │ └── mcxtalloc_test_1.out ├── mcxtalloc_test--1.0.sql ├── mcxtalloc_test.c ├── mcxtalloc_test.control └── sql │ └── mcxtalloc_test.sql ├── object_hooks ├── .gitignore ├── Makefile ├── README ├── expected │ └── alter_table.out ├── object_hooks.c └── sql │ └── alter_table.sql ├── overflow ├── .gitignore ├── Makefile ├── README ├── expected │ └── overflow.out ├── int.c ├── overflow--1.0.sql ├── overflow.c ├── overflow.control ├── sql │ └── overflow.sql └── uint.c ├── passwordcheck_extra ├── .gitignore ├── Makefile ├── README ├── expected │ └── passwordcheck_extra.out ├── passwordcheck_extra.c └── sql │ └── passwordcheck_extra.sql ├── pg_fix_truncation ├── Makefile ├── README ├── pg_fix_truncation--1.0.sql ├── pg_fix_truncation.c └── pg_fix_truncation.control ├── pg_mark_glibc ├── .gitignore ├── Makefile ├── README └── pg_mark_glibc.c ├── pg_panic ├── Makefile ├── README └── pg_panic.c ├── pg_rusage ├── Makefile ├── README ├── pg_rusage--1.0.sql ├── pg_rusage.c └── pg_rusage.control ├── pg_sasl_prepare ├── .gitignore ├── Makefile ├── README ├── pg_sasl_prepare--1.0.sql ├── pg_sasl_prepare.c └── pg_sasl_prepare.control ├── pg_statvfs ├── Makefile ├── README ├── pg_statvfs--1.0.sql ├── pg_statvfs.c └── pg_statvfs.control ├── pg_swap_pages ├── Makefile ├── README ├── pg_swap_pages--1.0.sql ├── pg_swap_pages.c └── pg_swap_pages.control ├── pg_trunc2del ├── Makefile ├── README └── pg_trunc2del.c ├── pg_wal_blocks ├── .gitignore ├── Makefile ├── README └── pg_wal_blocks.c ├── pgmpc ├── META.json ├── Makefile ├── README ├── pgmpc--0.1.0.sql ├── pgmpc.c └── pgmpc.control ├── plpgsql_cb ├── .gitignore ├── Makefile ├── README ├── expected │ └── plpgsql_cb.out ├── plpgsql_cb.c └── sql │ └── plpgsql_cb.sql ├── receiver_raw ├── Makefile ├── README └── receiver_raw.c ├── scram_utils ├── .gitignore ├── Makefile ├── README ├── expected │ └── scram_utils.out ├── scram_utils--1.0.sql ├── scram_utils.c ├── scram_utils.control └── sql │ └── scram_utils.sql ├── signal_rmgr ├── .gitignore ├── Makefile ├── signal_rmgr--1.0.sql ├── signal_rmgr.c ├── signal_rmgr.control └── t │ └── 001_basic.pl ├── upgrade_tests ├── README ├── REL9_4_STABLE.dump ├── REL9_5_STABLE.dump ├── REL9_6_STABLE.dump ├── REL_10_STABLE.dump ├── REL_11_STABLE.dump ├── REL_12_STABLE.dump ├── REL_13_STABLE.dump ├── REL_14_STABLE.dump └── REL_15_STABLE.dump └── wal_utils ├── .gitignore ├── Makefile ├── README ├── expected ├── archive_data.out ├── init.out ├── parse_wal_history.out └── wal_segment_list.out ├── sql ├── archive_data.sql ├── init.sql ├── parse_wal_history.sql └── wal_segment_list.sql ├── wal_utils--1.0.sql ├── wal_utils.c └── wal_utils.control /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [michaelpq] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/README.md -------------------------------------------------------------------------------- /blackhole/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole/Makefile -------------------------------------------------------------------------------- /blackhole/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole/README -------------------------------------------------------------------------------- /blackhole/blackhole--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole/blackhole--1.0.sql -------------------------------------------------------------------------------- /blackhole/blackhole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole/blackhole.c -------------------------------------------------------------------------------- /blackhole/blackhole.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole/blackhole.control -------------------------------------------------------------------------------- /blackhole_am/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore test paths 2 | /results/ 3 | -------------------------------------------------------------------------------- /blackhole_am/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_am/Makefile -------------------------------------------------------------------------------- /blackhole_am/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_am/README -------------------------------------------------------------------------------- /blackhole_am/blackhole_am--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_am/blackhole_am--1.0.sql -------------------------------------------------------------------------------- /blackhole_am/blackhole_am.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_am/blackhole_am.c -------------------------------------------------------------------------------- /blackhole_am/blackhole_am.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_am/blackhole_am.control -------------------------------------------------------------------------------- /blackhole_am/expected/blackhole_am.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_am/expected/blackhole_am.out -------------------------------------------------------------------------------- /blackhole_am/sql/blackhole_am.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_am/sql/blackhole_am.sql -------------------------------------------------------------------------------- /blackhole_cplusplus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_cplusplus/Makefile -------------------------------------------------------------------------------- /blackhole_cplusplus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_cplusplus/README -------------------------------------------------------------------------------- /blackhole_cplusplus/blackhole_cplusplus--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_cplusplus/blackhole_cplusplus--1.0.sql -------------------------------------------------------------------------------- /blackhole_cplusplus/blackhole_cplusplus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_cplusplus/blackhole_cplusplus.cc -------------------------------------------------------------------------------- /blackhole_cplusplus/blackhole_cplusplus.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/blackhole_cplusplus/blackhole_cplusplus.control -------------------------------------------------------------------------------- /compress_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/compress_test/Makefile -------------------------------------------------------------------------------- /compress_test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/compress_test/README -------------------------------------------------------------------------------- /compress_test/compression_test--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/compress_test/compression_test--1.0.sql -------------------------------------------------------------------------------- /compress_test/compression_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/compress_test/compression_test.c -------------------------------------------------------------------------------- /compress_test/compression_test.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/compress_test/compression_test.control -------------------------------------------------------------------------------- /count_relations/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/count_relations/Makefile -------------------------------------------------------------------------------- /count_relations/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/count_relations/README -------------------------------------------------------------------------------- /count_relations/count_relations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/count_relations/count_relations.c -------------------------------------------------------------------------------- /custom_wal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/custom_wal/Makefile -------------------------------------------------------------------------------- /custom_wal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/custom_wal/README -------------------------------------------------------------------------------- /custom_wal/custom_wal--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/custom_wal/custom_wal--1.0.sql -------------------------------------------------------------------------------- /custom_wal/custom_wal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/custom_wal/custom_wal.c -------------------------------------------------------------------------------- /custom_wal/custom_wal.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/custom_wal/custom_wal.control -------------------------------------------------------------------------------- /decoder_raw/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /results/ 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /decoder_raw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/decoder_raw/Makefile -------------------------------------------------------------------------------- /decoder_raw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/decoder_raw/README -------------------------------------------------------------------------------- /decoder_raw/decoder_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/decoder_raw/decoder_raw.c -------------------------------------------------------------------------------- /decoder_raw/expected/basic.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/decoder_raw/expected/basic.out -------------------------------------------------------------------------------- /decoder_raw/logical.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/decoder_raw/logical.conf -------------------------------------------------------------------------------- /decoder_raw/sql/basic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/decoder_raw/sql/basic.sql -------------------------------------------------------------------------------- /docker/Dockerfile_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/docker/Dockerfile_dev -------------------------------------------------------------------------------- /docker/Dockerfile_postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/docker/Dockerfile_postgres -------------------------------------------------------------------------------- /docker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/docker/README -------------------------------------------------------------------------------- /docker/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/docker/build/Dockerfile -------------------------------------------------------------------------------- /docker/mkimage-alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/docker/mkimage-alpine.sh -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/examples/README -------------------------------------------------------------------------------- /examples/create_agg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/examples/create_agg.sql -------------------------------------------------------------------------------- /examples/create_function.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/examples/create_function.sql -------------------------------------------------------------------------------- /examples/event_trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/examples/event_trigger.sql -------------------------------------------------------------------------------- /examples/partition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/examples/partition.sql -------------------------------------------------------------------------------- /examples/pgbench_table_updates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/examples/pgbench_table_updates.sql -------------------------------------------------------------------------------- /examples/pthread_libpq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/examples/pthread_libpq.c -------------------------------------------------------------------------------- /hello_notify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hello_notify/Makefile -------------------------------------------------------------------------------- /hello_notify/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hello_notify/README -------------------------------------------------------------------------------- /hello_notify/hello_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hello_notify/hello_notify.c -------------------------------------------------------------------------------- /hello_signal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hello_signal/Makefile -------------------------------------------------------------------------------- /hello_signal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hello_signal/README -------------------------------------------------------------------------------- /hello_signal/hello_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hello_signal/hello_signal.c -------------------------------------------------------------------------------- /hello_world/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hello_world/Makefile -------------------------------------------------------------------------------- /hello_world/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hello_world/README -------------------------------------------------------------------------------- /hello_world/hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hello_world/hello_world.c -------------------------------------------------------------------------------- /hint_parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/.gitignore -------------------------------------------------------------------------------- /hint_parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/Makefile -------------------------------------------------------------------------------- /hint_parser/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/README -------------------------------------------------------------------------------- /hint_parser/expected/hint_parser.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/expected/hint_parser.out -------------------------------------------------------------------------------- /hint_parser/hint_gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/hint_gram.y -------------------------------------------------------------------------------- /hint_parser/hint_parser--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/hint_parser--1.0.sql -------------------------------------------------------------------------------- /hint_parser/hint_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/hint_parser.c -------------------------------------------------------------------------------- /hint_parser/hint_parser.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/hint_parser.control -------------------------------------------------------------------------------- /hint_parser/hint_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/hint_parser.h -------------------------------------------------------------------------------- /hint_parser/hint_scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/hint_scanner.l -------------------------------------------------------------------------------- /hint_parser/sql/hint_parser.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hint_parser/sql/hint_parser.sql -------------------------------------------------------------------------------- /hmac_funcs/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /results/ 3 | -------------------------------------------------------------------------------- /hmac_funcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hmac_funcs/Makefile -------------------------------------------------------------------------------- /hmac_funcs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hmac_funcs/README -------------------------------------------------------------------------------- /hmac_funcs/expected/hmac_funcs.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hmac_funcs/expected/hmac_funcs.out -------------------------------------------------------------------------------- /hmac_funcs/hmac_funcs--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hmac_funcs/hmac_funcs--1.0.sql -------------------------------------------------------------------------------- /hmac_funcs/hmac_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hmac_funcs/hmac_funcs.c -------------------------------------------------------------------------------- /hmac_funcs/hmac_funcs.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hmac_funcs/hmac_funcs.control -------------------------------------------------------------------------------- /hmac_funcs/sql/hmac_funcs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hmac_funcs/sql/hmac_funcs.sql -------------------------------------------------------------------------------- /hook_utility/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hook_utility/Makefile -------------------------------------------------------------------------------- /hook_utility/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hook_utility/README -------------------------------------------------------------------------------- /hook_utility/hook_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/hook_utility/hook_utility.c -------------------------------------------------------------------------------- /indent_typedefs.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/indent_typedefs.list -------------------------------------------------------------------------------- /jsonlog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/jsonlog/Makefile -------------------------------------------------------------------------------- /jsonlog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/jsonlog/README -------------------------------------------------------------------------------- /jsonlog/jsonlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/jsonlog/jsonlog.c -------------------------------------------------------------------------------- /kill_idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/kill_idle/Makefile -------------------------------------------------------------------------------- /kill_idle/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/kill_idle/README -------------------------------------------------------------------------------- /kill_idle/kill_idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/kill_idle/kill_idle.c -------------------------------------------------------------------------------- /lwlock_test/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore test paths 2 | /results/ 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /lwlock_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/lwlock_test/Makefile -------------------------------------------------------------------------------- /lwlock_test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/lwlock_test/README -------------------------------------------------------------------------------- /lwlock_test/lwlock_test--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/lwlock_test/lwlock_test--1.0.sql -------------------------------------------------------------------------------- /lwlock_test/lwlock_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/lwlock_test/lwlock_test.c -------------------------------------------------------------------------------- /lwlock_test/lwlock_test.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/lwlock_test/lwlock_test.control -------------------------------------------------------------------------------- /mcxtalloc_test/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /results/ 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /mcxtalloc_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/mcxtalloc_test/Makefile -------------------------------------------------------------------------------- /mcxtalloc_test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/mcxtalloc_test/README -------------------------------------------------------------------------------- /mcxtalloc_test/expected/mcxtalloc_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/mcxtalloc_test/expected/mcxtalloc_test.out -------------------------------------------------------------------------------- /mcxtalloc_test/expected/mcxtalloc_test_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/mcxtalloc_test/expected/mcxtalloc_test_1.out -------------------------------------------------------------------------------- /mcxtalloc_test/mcxtalloc_test--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/mcxtalloc_test/mcxtalloc_test--1.0.sql -------------------------------------------------------------------------------- /mcxtalloc_test/mcxtalloc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/mcxtalloc_test/mcxtalloc_test.c -------------------------------------------------------------------------------- /mcxtalloc_test/mcxtalloc_test.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/mcxtalloc_test/mcxtalloc_test.control -------------------------------------------------------------------------------- /mcxtalloc_test/sql/mcxtalloc_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/mcxtalloc_test/sql/mcxtalloc_test.sql -------------------------------------------------------------------------------- /object_hooks/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /results/ 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /object_hooks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/object_hooks/Makefile -------------------------------------------------------------------------------- /object_hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/object_hooks/README -------------------------------------------------------------------------------- /object_hooks/expected/alter_table.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/object_hooks/expected/alter_table.out -------------------------------------------------------------------------------- /object_hooks/object_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/object_hooks/object_hooks.c -------------------------------------------------------------------------------- /object_hooks/sql/alter_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/object_hooks/sql/alter_table.sql -------------------------------------------------------------------------------- /overflow/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore test paths 2 | /results/ 3 | -------------------------------------------------------------------------------- /overflow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/overflow/Makefile -------------------------------------------------------------------------------- /overflow/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/overflow/README -------------------------------------------------------------------------------- /overflow/expected/overflow.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/overflow/expected/overflow.out -------------------------------------------------------------------------------- /overflow/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/overflow/int.c -------------------------------------------------------------------------------- /overflow/overflow--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/overflow/overflow--1.0.sql -------------------------------------------------------------------------------- /overflow/overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/overflow/overflow.c -------------------------------------------------------------------------------- /overflow/overflow.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/overflow/overflow.control -------------------------------------------------------------------------------- /overflow/sql/overflow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/overflow/sql/overflow.sql -------------------------------------------------------------------------------- /overflow/uint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/overflow/uint.c -------------------------------------------------------------------------------- /passwordcheck_extra/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore test paths 2 | /results/ 3 | -------------------------------------------------------------------------------- /passwordcheck_extra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/passwordcheck_extra/Makefile -------------------------------------------------------------------------------- /passwordcheck_extra/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/passwordcheck_extra/README -------------------------------------------------------------------------------- /passwordcheck_extra/expected/passwordcheck_extra.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/passwordcheck_extra/expected/passwordcheck_extra.out -------------------------------------------------------------------------------- /passwordcheck_extra/passwordcheck_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/passwordcheck_extra/passwordcheck_extra.c -------------------------------------------------------------------------------- /passwordcheck_extra/sql/passwordcheck_extra.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/passwordcheck_extra/sql/passwordcheck_extra.sql -------------------------------------------------------------------------------- /pg_fix_truncation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_fix_truncation/Makefile -------------------------------------------------------------------------------- /pg_fix_truncation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_fix_truncation/README -------------------------------------------------------------------------------- /pg_fix_truncation/pg_fix_truncation--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_fix_truncation/pg_fix_truncation--1.0.sql -------------------------------------------------------------------------------- /pg_fix_truncation/pg_fix_truncation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_fix_truncation/pg_fix_truncation.c -------------------------------------------------------------------------------- /pg_fix_truncation/pg_fix_truncation.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_fix_truncation/pg_fix_truncation.control -------------------------------------------------------------------------------- /pg_mark_glibc/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_mark_glibc 2 | -------------------------------------------------------------------------------- /pg_mark_glibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_mark_glibc/Makefile -------------------------------------------------------------------------------- /pg_mark_glibc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_mark_glibc/README -------------------------------------------------------------------------------- /pg_mark_glibc/pg_mark_glibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_mark_glibc/pg_mark_glibc.c -------------------------------------------------------------------------------- /pg_panic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_panic/Makefile -------------------------------------------------------------------------------- /pg_panic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_panic/README -------------------------------------------------------------------------------- /pg_panic/pg_panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_panic/pg_panic.c -------------------------------------------------------------------------------- /pg_rusage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_rusage/Makefile -------------------------------------------------------------------------------- /pg_rusage/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_rusage/README -------------------------------------------------------------------------------- /pg_rusage/pg_rusage--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_rusage/pg_rusage--1.0.sql -------------------------------------------------------------------------------- /pg_rusage/pg_rusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_rusage/pg_rusage.c -------------------------------------------------------------------------------- /pg_rusage/pg_rusage.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_rusage/pg_rusage.control -------------------------------------------------------------------------------- /pg_sasl_prepare/.gitignore: -------------------------------------------------------------------------------- 1 | /utf8_table.h 2 | /UnicodeData.txt 3 | -------------------------------------------------------------------------------- /pg_sasl_prepare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_sasl_prepare/Makefile -------------------------------------------------------------------------------- /pg_sasl_prepare/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_sasl_prepare/README -------------------------------------------------------------------------------- /pg_sasl_prepare/pg_sasl_prepare--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_sasl_prepare/pg_sasl_prepare--1.0.sql -------------------------------------------------------------------------------- /pg_sasl_prepare/pg_sasl_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_sasl_prepare/pg_sasl_prepare.c -------------------------------------------------------------------------------- /pg_sasl_prepare/pg_sasl_prepare.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_sasl_prepare/pg_sasl_prepare.control -------------------------------------------------------------------------------- /pg_statvfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_statvfs/Makefile -------------------------------------------------------------------------------- /pg_statvfs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_statvfs/README -------------------------------------------------------------------------------- /pg_statvfs/pg_statvfs--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_statvfs/pg_statvfs--1.0.sql -------------------------------------------------------------------------------- /pg_statvfs/pg_statvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_statvfs/pg_statvfs.c -------------------------------------------------------------------------------- /pg_statvfs/pg_statvfs.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_statvfs/pg_statvfs.control -------------------------------------------------------------------------------- /pg_swap_pages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_swap_pages/Makefile -------------------------------------------------------------------------------- /pg_swap_pages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_swap_pages/README -------------------------------------------------------------------------------- /pg_swap_pages/pg_swap_pages--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_swap_pages/pg_swap_pages--1.0.sql -------------------------------------------------------------------------------- /pg_swap_pages/pg_swap_pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_swap_pages/pg_swap_pages.c -------------------------------------------------------------------------------- /pg_swap_pages/pg_swap_pages.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_swap_pages/pg_swap_pages.control -------------------------------------------------------------------------------- /pg_trunc2del/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_trunc2del/Makefile -------------------------------------------------------------------------------- /pg_trunc2del/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_trunc2del/README -------------------------------------------------------------------------------- /pg_trunc2del/pg_trunc2del.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_trunc2del/pg_trunc2del.c -------------------------------------------------------------------------------- /pg_wal_blocks/.gitignore: -------------------------------------------------------------------------------- 1 | /xlogreader.c 2 | /pg_wal_blocks 3 | -------------------------------------------------------------------------------- /pg_wal_blocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_wal_blocks/Makefile -------------------------------------------------------------------------------- /pg_wal_blocks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_wal_blocks/README -------------------------------------------------------------------------------- /pg_wal_blocks/pg_wal_blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pg_wal_blocks/pg_wal_blocks.c -------------------------------------------------------------------------------- /pgmpc/META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pgmpc/META.json -------------------------------------------------------------------------------- /pgmpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pgmpc/Makefile -------------------------------------------------------------------------------- /pgmpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pgmpc/README -------------------------------------------------------------------------------- /pgmpc/pgmpc--0.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pgmpc/pgmpc--0.1.0.sql -------------------------------------------------------------------------------- /pgmpc/pgmpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pgmpc/pgmpc.c -------------------------------------------------------------------------------- /pgmpc/pgmpc.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/pgmpc/pgmpc.control -------------------------------------------------------------------------------- /plpgsql_cb/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /results/ 3 | -------------------------------------------------------------------------------- /plpgsql_cb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/plpgsql_cb/Makefile -------------------------------------------------------------------------------- /plpgsql_cb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/plpgsql_cb/README -------------------------------------------------------------------------------- /plpgsql_cb/expected/plpgsql_cb.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/plpgsql_cb/expected/plpgsql_cb.out -------------------------------------------------------------------------------- /plpgsql_cb/plpgsql_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/plpgsql_cb/plpgsql_cb.c -------------------------------------------------------------------------------- /plpgsql_cb/sql/plpgsql_cb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/plpgsql_cb/sql/plpgsql_cb.sql -------------------------------------------------------------------------------- /receiver_raw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/receiver_raw/Makefile -------------------------------------------------------------------------------- /receiver_raw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/receiver_raw/README -------------------------------------------------------------------------------- /receiver_raw/receiver_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/receiver_raw/receiver_raw.c -------------------------------------------------------------------------------- /scram_utils/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /results/ 3 | -------------------------------------------------------------------------------- /scram_utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/scram_utils/Makefile -------------------------------------------------------------------------------- /scram_utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/scram_utils/README -------------------------------------------------------------------------------- /scram_utils/expected/scram_utils.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/scram_utils/expected/scram_utils.out -------------------------------------------------------------------------------- /scram_utils/scram_utils--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/scram_utils/scram_utils--1.0.sql -------------------------------------------------------------------------------- /scram_utils/scram_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/scram_utils/scram_utils.c -------------------------------------------------------------------------------- /scram_utils/scram_utils.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/scram_utils/scram_utils.control -------------------------------------------------------------------------------- /scram_utils/sql/scram_utils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/scram_utils/sql/scram_utils.sql -------------------------------------------------------------------------------- /signal_rmgr/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore test paths 2 | /results/ 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /signal_rmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/signal_rmgr/Makefile -------------------------------------------------------------------------------- /signal_rmgr/signal_rmgr--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/signal_rmgr/signal_rmgr--1.0.sql -------------------------------------------------------------------------------- /signal_rmgr/signal_rmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/signal_rmgr/signal_rmgr.c -------------------------------------------------------------------------------- /signal_rmgr/signal_rmgr.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/signal_rmgr/signal_rmgr.control -------------------------------------------------------------------------------- /signal_rmgr/t/001_basic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/signal_rmgr/t/001_basic.pl -------------------------------------------------------------------------------- /upgrade_tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/README -------------------------------------------------------------------------------- /upgrade_tests/REL9_4_STABLE.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/REL9_4_STABLE.dump -------------------------------------------------------------------------------- /upgrade_tests/REL9_5_STABLE.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/REL9_5_STABLE.dump -------------------------------------------------------------------------------- /upgrade_tests/REL9_6_STABLE.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/REL9_6_STABLE.dump -------------------------------------------------------------------------------- /upgrade_tests/REL_10_STABLE.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/REL_10_STABLE.dump -------------------------------------------------------------------------------- /upgrade_tests/REL_11_STABLE.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/REL_11_STABLE.dump -------------------------------------------------------------------------------- /upgrade_tests/REL_12_STABLE.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/REL_12_STABLE.dump -------------------------------------------------------------------------------- /upgrade_tests/REL_13_STABLE.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/REL_13_STABLE.dump -------------------------------------------------------------------------------- /upgrade_tests/REL_14_STABLE.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/REL_14_STABLE.dump -------------------------------------------------------------------------------- /upgrade_tests/REL_15_STABLE.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/upgrade_tests/REL_15_STABLE.dump -------------------------------------------------------------------------------- /wal_utils/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore test paths 2 | /results/ 3 | -------------------------------------------------------------------------------- /wal_utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/Makefile -------------------------------------------------------------------------------- /wal_utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/README -------------------------------------------------------------------------------- /wal_utils/expected/archive_data.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/expected/archive_data.out -------------------------------------------------------------------------------- /wal_utils/expected/init.out: -------------------------------------------------------------------------------- 1 | -- Create extension for all the following tests 2 | CREATE EXTENSION wal_utils; 3 | -------------------------------------------------------------------------------- /wal_utils/expected/parse_wal_history.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/expected/parse_wal_history.out -------------------------------------------------------------------------------- /wal_utils/expected/wal_segment_list.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/expected/wal_segment_list.out -------------------------------------------------------------------------------- /wal_utils/sql/archive_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/sql/archive_data.sql -------------------------------------------------------------------------------- /wal_utils/sql/init.sql: -------------------------------------------------------------------------------- 1 | -- Create extension for all the following tests 2 | CREATE EXTENSION wal_utils; 3 | -------------------------------------------------------------------------------- /wal_utils/sql/parse_wal_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/sql/parse_wal_history.sql -------------------------------------------------------------------------------- /wal_utils/sql/wal_segment_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/sql/wal_segment_list.sql -------------------------------------------------------------------------------- /wal_utils/wal_utils--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/wal_utils--1.0.sql -------------------------------------------------------------------------------- /wal_utils/wal_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/wal_utils.c -------------------------------------------------------------------------------- /wal_utils/wal_utils.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelpq/pg_plugins/HEAD/wal_utils/wal_utils.control --------------------------------------------------------------------------------