├── .cirrus.star ├── .cirrus.tasks.yml ├── .cirrus.yml ├── .dir-locals.el ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── config.yaml │ ├── enhancement.yaml │ └── question.yaml ├── pull_request_template.md ├── scripts │ └── create-tag.sh └── workflows │ ├── main.yml │ ├── manual_tags.yml │ └── test_rpm.yml ├── .gitignore ├── BabelfishDump.spec ├── CODE_OF_CONDUCT.md ├── COPYRIGHT ├── GNUmakefile.in ├── HISTORY ├── LICENSE.PostgreSQL ├── MAINTAINERS.md ├── Makefile ├── README ├── README.md ├── SECURITY.md ├── aclocal.m4 ├── config ├── Makefile ├── ax_pthread.m4 ├── c-compiler.m4 ├── c-library.m4 ├── check_decls.m4 ├── check_modules.pl ├── config.guess ├── config.sub ├── general.m4 ├── install-sh ├── llvm.m4 ├── meson.build ├── missing ├── perl.m4 ├── pkg.m4 ├── prep_buildtree ├── programs.m4 ├── python.m4 └── tcl.m4 ├── configure ├── configure.ac ├── contrib ├── Makefile ├── README ├── amcheck │ ├── .gitignore │ ├── Makefile │ ├── amcheck--1.0--1.1.sql │ ├── amcheck--1.0.sql │ ├── amcheck--1.1--1.2.sql │ ├── amcheck--1.2--1.3.sql │ ├── amcheck--1.3--1.4.sql │ ├── amcheck.control │ ├── expected │ │ ├── check.out │ │ ├── check_btree.out │ │ └── check_heap.out │ ├── meson.build │ ├── sql │ │ ├── check.sql │ │ ├── check_btree.sql │ │ └── check_heap.sql │ ├── t │ │ ├── 001_verify_heapam.pl │ │ ├── 002_cic.pl │ │ ├── 003_cic_2pc.pl │ │ ├── 004_verify_nbtree_unique.pl │ │ └── 005_pitr.pl │ ├── verify_heapam.c │ └── verify_nbtree.c ├── auth_delay │ ├── Makefile │ ├── auth_delay.c │ └── meson.build ├── auto_explain │ ├── .gitignore │ ├── Makefile │ ├── auto_explain.c │ ├── expected │ │ └── alter_reset.out │ ├── meson.build │ ├── sql │ │ └── alter_reset.sql │ └── t │ │ └── 001_auto_explain.pl ├── basebackup_to_shell │ ├── .gitignore │ ├── Makefile │ ├── basebackup_to_shell.c │ ├── meson.build │ └── t │ │ └── 001_basic.pl ├── basic_archive │ ├── .gitignore │ ├── Makefile │ ├── basic_archive.c │ ├── basic_archive.conf │ ├── expected │ │ └── basic_archive.out │ ├── meson.build │ └── sql │ │ └── basic_archive.sql ├── bloom │ ├── .gitignore │ ├── Makefile │ ├── blcost.c │ ├── blinsert.c │ ├── bloom--1.0.sql │ ├── bloom.control │ ├── bloom.h │ ├── blscan.c │ ├── blutils.c │ ├── blvacuum.c │ ├── blvalidate.c │ ├── expected │ │ └── bloom.out │ ├── meson.build │ ├── sql │ │ └── bloom.sql │ └── t │ │ └── 001_wal.pl ├── bool_plperl │ ├── .gitignore │ ├── Makefile │ ├── bool_plperl--1.0.sql │ ├── bool_plperl.c │ ├── bool_plperl.control │ ├── bool_plperlu--1.0.sql │ ├── bool_plperlu.control │ ├── expected │ │ ├── bool_plperl.out │ │ └── bool_plperlu.out │ ├── meson.build │ └── sql │ │ ├── bool_plperl.sql │ │ └── bool_plperlu.sql ├── btree_gin │ ├── .gitignore │ ├── Makefile │ ├── btree_gin--1.0--1.1.sql │ ├── btree_gin--1.0.sql │ ├── btree_gin--1.1--1.2.sql │ ├── btree_gin--1.2--1.3.sql │ ├── btree_gin.c │ ├── btree_gin.control │ ├── expected │ │ ├── bit.out │ │ ├── bool.out │ │ ├── bpchar.out │ │ ├── bytea.out │ │ ├── char.out │ │ ├── cidr.out │ │ ├── date.out │ │ ├── enum.out │ │ ├── float4.out │ │ ├── float8.out │ │ ├── inet.out │ │ ├── install_btree_gin.out │ │ ├── int2.out │ │ ├── int4.out │ │ ├── int8.out │ │ ├── interval.out │ │ ├── macaddr.out │ │ ├── macaddr8.out │ │ ├── money.out │ │ ├── name.out │ │ ├── numeric.out │ │ ├── oid.out │ │ ├── text.out │ │ ├── time.out │ │ ├── timestamp.out │ │ ├── timestamptz.out │ │ ├── timetz.out │ │ ├── uuid.out │ │ ├── varbit.out │ │ └── varchar.out │ ├── meson.build │ └── sql │ │ ├── bit.sql │ │ ├── bool.sql │ │ ├── bpchar.sql │ │ ├── bytea.sql │ │ ├── char.sql │ │ ├── cidr.sql │ │ ├── date.sql │ │ ├── enum.sql │ │ ├── float4.sql │ │ ├── float8.sql │ │ ├── inet.sql │ │ ├── install_btree_gin.sql │ │ ├── int2.sql │ │ ├── int4.sql │ │ ├── int8.sql │ │ ├── interval.sql │ │ ├── macaddr.sql │ │ ├── macaddr8.sql │ │ ├── money.sql │ │ ├── name.sql │ │ ├── numeric.sql │ │ ├── oid.sql │ │ ├── text.sql │ │ ├── time.sql │ │ ├── timestamp.sql │ │ ├── timestamptz.sql │ │ ├── timetz.sql │ │ ├── uuid.sql │ │ ├── varbit.sql │ │ └── varchar.sql ├── btree_gist │ ├── .gitignore │ ├── Makefile │ ├── btree_bit.c │ ├── btree_bool.c │ ├── btree_bytea.c │ ├── btree_cash.c │ ├── btree_date.c │ ├── btree_enum.c │ ├── btree_float4.c │ ├── btree_float8.c │ ├── btree_gist--1.0--1.1.sql │ ├── btree_gist--1.1--1.2.sql │ ├── btree_gist--1.2--1.3.sql │ ├── btree_gist--1.2.sql │ ├── btree_gist--1.3--1.4.sql │ ├── btree_gist--1.4--1.5.sql │ ├── btree_gist--1.5--1.6.sql │ ├── btree_gist--1.6--1.7.sql │ ├── btree_gist.c │ ├── btree_gist.control │ ├── btree_gist.h │ ├── btree_inet.c │ ├── btree_int2.c │ ├── btree_int4.c │ ├── btree_int8.c │ ├── btree_interval.c │ ├── btree_macaddr.c │ ├── btree_macaddr8.c │ ├── btree_numeric.c │ ├── btree_oid.c │ ├── btree_text.c │ ├── btree_time.c │ ├── btree_ts.c │ ├── btree_utils_num.c │ ├── btree_utils_num.h │ ├── btree_utils_var.c │ ├── btree_utils_var.h │ ├── btree_uuid.c │ ├── data │ │ ├── bit.data │ │ ├── cash.data │ │ ├── char.data │ │ ├── date.data │ │ ├── enum.data │ │ ├── float4.data │ │ ├── float8.data │ │ ├── inet.data │ │ ├── int2.data │ │ ├── int4.data │ │ ├── int8.data │ │ ├── interval.data │ │ ├── macaddr.data │ │ ├── numeric.data │ │ ├── text.data │ │ ├── time.data │ │ ├── timestamp.data │ │ ├── timestamptz.data │ │ ├── timetz.data │ │ ├── uuid.data │ │ └── varbit.data │ ├── expected │ │ ├── bit.out │ │ ├── bool.out │ │ ├── bytea.out │ │ ├── cash.out │ │ ├── char.out │ │ ├── char_1.out │ │ ├── cidr.out │ │ ├── date.out │ │ ├── enum.out │ │ ├── float4.out │ │ ├── float8.out │ │ ├── inet.out │ │ ├── init.out │ │ ├── int2.out │ │ ├── int4.out │ │ ├── int8.out │ │ ├── interval.out │ │ ├── macaddr.out │ │ ├── macaddr8.out │ │ ├── not_equal.out │ │ ├── numeric.out │ │ ├── oid.out │ │ ├── partitions.out │ │ ├── text.out │ │ ├── text_1.out │ │ ├── time.out │ │ ├── timestamp.out │ │ ├── timestamptz.out │ │ ├── timetz.out │ │ ├── uuid.out │ │ ├── varbit.out │ │ ├── varchar.out │ │ └── varchar_1.out │ ├── meson.build │ └── sql │ │ ├── bit.sql │ │ ├── bool.sql │ │ ├── bytea.sql │ │ ├── cash.sql │ │ ├── char.sql │ │ ├── cidr.sql │ │ ├── date.sql │ │ ├── enum.sql │ │ ├── float4.sql │ │ ├── float8.sql │ │ ├── inet.sql │ │ ├── init.sql │ │ ├── int2.sql │ │ ├── int4.sql │ │ ├── int8.sql │ │ ├── interval.sql │ │ ├── macaddr.sql │ │ ├── macaddr8.sql │ │ ├── not_equal.sql │ │ ├── numeric.sql │ │ ├── oid.sql │ │ ├── partitions.sql │ │ ├── text.sql │ │ ├── time.sql │ │ ├── timestamp.sql │ │ ├── timestamptz.sql │ │ ├── timetz.sql │ │ ├── uuid.sql │ │ ├── varbit.sql │ │ └── varchar.sql ├── citext │ ├── .gitignore │ ├── Makefile │ ├── citext--1.0--1.1.sql │ ├── citext--1.1--1.2.sql │ ├── citext--1.2--1.3.sql │ ├── citext--1.3--1.4.sql │ ├── citext--1.4--1.5.sql │ ├── citext--1.4.sql │ ├── citext--1.5--1.6.sql │ ├── citext.c │ ├── citext.control │ ├── expected │ │ ├── citext.out │ │ ├── citext_1.out │ │ ├── citext_utf8.out │ │ ├── citext_utf8_1.out │ │ └── create_index_acl.out │ ├── meson.build │ └── sql │ │ ├── citext.sql │ │ ├── citext_utf8.sql │ │ └── create_index_acl.sql ├── contrib-global.mk ├── cube │ ├── .gitignore │ ├── CHANGES │ ├── Makefile │ ├── cube--1.0--1.1.sql │ ├── cube--1.1--1.2.sql │ ├── cube--1.2--1.3.sql │ ├── cube--1.2.sql │ ├── cube--1.3--1.4.sql │ ├── cube--1.4--1.5.sql │ ├── cube.c │ ├── cube.control │ ├── cubedata.h │ ├── cubeparse.y │ ├── cubescan.l │ ├── data │ │ └── test_cube.data │ ├── expected │ │ ├── cube.out │ │ └── cube_sci.out │ ├── meson.build │ └── sql │ │ ├── cube.sql │ │ └── cube_sci.sql ├── dblink │ ├── .gitignore │ ├── Makefile │ ├── dblink--1.0--1.1.sql │ ├── dblink--1.1--1.2.sql │ ├── dblink--1.2.sql │ ├── dblink.c │ ├── dblink.control │ ├── expected │ │ └── dblink.out │ ├── meson.build │ ├── pg_service.conf │ └── sql │ │ └── dblink.sql ├── dict_int │ ├── .gitignore │ ├── Makefile │ ├── dict_int--1.0.sql │ ├── dict_int.c │ ├── dict_int.control │ ├── expected │ │ └── dict_int.out │ ├── meson.build │ └── sql │ │ └── dict_int.sql ├── dict_xsyn │ ├── .gitignore │ ├── Makefile │ ├── dict_xsyn--1.0.sql │ ├── dict_xsyn.c │ ├── dict_xsyn.control │ ├── expected │ │ └── dict_xsyn.out │ ├── meson.build │ ├── sql │ │ └── dict_xsyn.sql │ └── xsyn_sample.rules ├── earthdistance │ ├── .gitignore │ ├── Makefile │ ├── earthdistance--1.0--1.1.sql │ ├── earthdistance--1.1--1.2.sql │ ├── earthdistance--1.1.sql │ ├── earthdistance.c │ ├── earthdistance.control │ ├── expected │ │ └── earthdistance.out │ ├── meson.build │ └── sql │ │ └── earthdistance.sql ├── file_fdw │ ├── .gitignore │ ├── Makefile │ ├── data │ │ ├── agg.bad │ │ ├── agg.csv │ │ ├── agg.data │ │ ├── copy_default.csv │ │ ├── list1.csv │ │ ├── list2.bad │ │ ├── list2.csv │ │ └── text.csv │ ├── expected │ │ └── file_fdw.out │ ├── file_fdw--1.0.sql │ ├── file_fdw.c │ ├── file_fdw.control │ ├── meson.build │ └── sql │ │ └── file_fdw.sql ├── fuzzystrmatch │ ├── .gitignore │ ├── Makefile │ ├── daitch_mokotoff.c │ ├── daitch_mokotoff_header.pl │ ├── dmetaphone.c │ ├── expected │ │ ├── fuzzystrmatch.out │ │ ├── fuzzystrmatch_utf8.out │ │ └── fuzzystrmatch_utf8_1.out │ ├── fuzzystrmatch--1.0--1.1.sql │ ├── fuzzystrmatch--1.1--1.2.sql │ ├── fuzzystrmatch--1.1.sql │ ├── fuzzystrmatch.c │ ├── fuzzystrmatch.control │ ├── meson.build │ └── sql │ │ ├── fuzzystrmatch.sql │ │ └── fuzzystrmatch_utf8.sql ├── hstore │ ├── .gitignore │ ├── Makefile │ ├── data │ │ └── hstore.data │ ├── expected │ │ ├── hstore.out │ │ ├── hstore_utf8.out │ │ └── hstore_utf8_1.out │ ├── hstore--1.1--1.2.sql │ ├── hstore--1.2--1.3.sql │ ├── hstore--1.3--1.4.sql │ ├── hstore--1.4--1.5.sql │ ├── hstore--1.4.sql │ ├── hstore--1.5--1.6.sql │ ├── hstore--1.6--1.7.sql │ ├── hstore--1.7--1.8.sql │ ├── hstore.control │ ├── hstore.h │ ├── hstore_compat.c │ ├── hstore_gin.c │ ├── hstore_gist.c │ ├── hstore_io.c │ ├── hstore_op.c │ ├── hstore_subs.c │ ├── meson.build │ └── sql │ │ ├── hstore.sql │ │ └── hstore_utf8.sql ├── hstore_plperl │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ ├── create_transform.out │ │ ├── hstore_plperl.out │ │ └── hstore_plperlu.out │ ├── hstore_plperl--1.0.sql │ ├── hstore_plperl.c │ ├── hstore_plperl.control │ ├── hstore_plperlu--1.0.sql │ ├── hstore_plperlu.control │ ├── meson.build │ └── sql │ │ ├── create_transform.sql │ │ ├── hstore_plperl.sql │ │ └── hstore_plperlu.sql ├── hstore_plpython │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── hstore_plpython.out │ ├── hstore_plpython.c │ ├── hstore_plpython3u--1.0.sql │ ├── hstore_plpython3u.control │ ├── meson.build │ └── sql │ │ └── hstore_plpython.sql ├── intagg │ ├── Makefile │ ├── intagg--1.0--1.1.sql │ ├── intagg--1.1.sql │ ├── intagg.control │ └── meson.build ├── intarray │ ├── .gitignore │ ├── Makefile │ ├── _int.h │ ├── _int_bool.c │ ├── _int_gin.c │ ├── _int_gist.c │ ├── _int_op.c │ ├── _int_selfuncs.c │ ├── _int_tool.c │ ├── _intbig_gist.c │ ├── bench │ │ ├── bench.pl │ │ └── create_test.pl │ ├── data │ │ └── test__int.data │ ├── expected │ │ └── _int.out │ ├── intarray--1.0--1.1.sql │ ├── intarray--1.1--1.2.sql │ ├── intarray--1.2--1.3.sql │ ├── intarray--1.2.sql │ ├── intarray--1.3--1.4.sql │ ├── intarray--1.4--1.5.sql │ ├── intarray.control │ ├── meson.build │ └── sql │ │ └── _int.sql ├── isn │ ├── .gitignore │ ├── EAN13.h │ ├── ISBN.h │ ├── ISMN.h │ ├── ISSN.h │ ├── Makefile │ ├── UPC.h │ ├── expected │ │ └── isn.out │ ├── isn--1.0--1.1.sql │ ├── isn--1.1--1.2.sql │ ├── isn--1.1.sql │ ├── isn.c │ ├── isn.control │ ├── isn.h │ ├── meson.build │ └── sql │ │ └── isn.sql ├── jsonb_plperl │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ ├── jsonb_plperl.out │ │ └── jsonb_plperlu.out │ ├── jsonb_plperl--1.0.sql │ ├── jsonb_plperl.c │ ├── jsonb_plperl.control │ ├── jsonb_plperlu--1.0.sql │ ├── jsonb_plperlu.control │ ├── meson.build │ └── sql │ │ ├── jsonb_plperl.sql │ │ └── jsonb_plperlu.sql ├── jsonb_plpython │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── jsonb_plpython.out │ ├── jsonb_plpython.c │ ├── jsonb_plpython3u--1.0.sql │ ├── jsonb_plpython3u.control │ ├── meson.build │ └── sql │ │ └── jsonb_plpython.sql ├── lo │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── lo.out │ ├── lo--1.0--1.1.sql │ ├── lo--1.1.sql │ ├── lo.c │ ├── lo.control │ ├── lo_test.sql │ ├── meson.build │ └── sql │ │ └── lo.sql ├── ltree │ ├── .gitignore │ ├── Makefile │ ├── _ltree_gist.c │ ├── _ltree_op.c │ ├── crc32.c │ ├── crc32.h │ ├── data │ │ ├── _ltree.data │ │ └── ltree.data │ ├── expected │ │ └── ltree.out │ ├── lquery_op.c │ ├── ltree--1.0--1.1.sql │ ├── ltree--1.1--1.2.sql │ ├── ltree--1.1.sql │ ├── ltree--1.2--1.3.sql │ ├── ltree.control │ ├── ltree.h │ ├── ltree_gist.c │ ├── ltree_io.c │ ├── ltree_op.c │ ├── ltreetest.sql │ ├── ltxtquery_io.c │ ├── ltxtquery_op.c │ ├── meson.build │ └── sql │ │ └── ltree.sql ├── ltree_plpython │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── ltree_plpython.out │ ├── ltree_plpython.c │ ├── ltree_plpython3u--1.0.sql │ ├── ltree_plpython3u.control │ ├── meson.build │ └── sql │ │ └── ltree_plpython.sql ├── meson.build ├── oid2name │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── oid2name.c │ └── t │ │ └── 001_basic.pl ├── pageinspect │ ├── .gitignore │ ├── Makefile │ ├── brinfuncs.c │ ├── btreefuncs.c │ ├── expected │ │ ├── brin.out │ │ ├── btree.out │ │ ├── checksum.out │ │ ├── checksum_1.out │ │ ├── gin.out │ │ ├── gist.out │ │ ├── hash.out │ │ ├── oldextversions.out │ │ └── page.out │ ├── fsmfuncs.c │ ├── ginfuncs.c │ ├── gistfuncs.c │ ├── hashfuncs.c │ ├── heapfuncs.c │ ├── meson.build │ ├── pageinspect--1.0--1.1.sql │ ├── pageinspect--1.1--1.2.sql │ ├── pageinspect--1.10--1.11.sql │ ├── pageinspect--1.11--1.12.sql │ ├── pageinspect--1.2--1.3.sql │ ├── pageinspect--1.3--1.4.sql │ ├── pageinspect--1.4--1.5.sql │ ├── pageinspect--1.5--1.6.sql │ ├── pageinspect--1.5.sql │ ├── pageinspect--1.6--1.7.sql │ ├── pageinspect--1.7--1.8.sql │ ├── pageinspect--1.8--1.9.sql │ ├── pageinspect--1.9--1.10.sql │ ├── pageinspect.control │ ├── pageinspect.h │ ├── rawpage.c │ └── sql │ │ ├── brin.sql │ │ ├── btree.sql │ │ ├── checksum.sql │ │ ├── gin.sql │ │ ├── gist.sql │ │ ├── hash.sql │ │ ├── oldextversions.sql │ │ └── page.sql ├── passwordcheck │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ ├── passwordcheck.out │ │ └── passwordcheck_1.out │ ├── meson.build │ ├── passwordcheck.c │ └── sql │ │ └── passwordcheck.sql ├── pg_buffercache │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── pg_buffercache.out │ ├── meson.build │ ├── pg_buffercache--1.0--1.1.sql │ ├── pg_buffercache--1.1--1.2.sql │ ├── pg_buffercache--1.2--1.3.sql │ ├── pg_buffercache--1.2.sql │ ├── pg_buffercache--1.3--1.4.sql │ ├── pg_buffercache--1.4--1.5.sql │ ├── pg_buffercache.control │ ├── pg_buffercache_pages.c │ └── sql │ │ └── pg_buffercache.sql ├── pg_freespacemap │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── pg_freespacemap.out │ ├── meson.build │ ├── pg_freespacemap--1.0--1.1.sql │ ├── pg_freespacemap--1.1--1.2.sql │ ├── pg_freespacemap--1.1.sql │ ├── pg_freespacemap.c │ ├── pg_freespacemap.conf │ ├── pg_freespacemap.control │ └── sql │ │ └── pg_freespacemap.sql ├── pg_prewarm │ ├── .gitignore │ ├── Makefile │ ├── autoprewarm.c │ ├── expected │ │ └── pg_prewarm.out │ ├── meson.build │ ├── pg_prewarm--1.0--1.1.sql │ ├── pg_prewarm--1.1--1.2.sql │ ├── pg_prewarm--1.1.sql │ ├── pg_prewarm.c │ ├── pg_prewarm.control │ ├── sql │ │ └── pg_prewarm.sql │ └── t │ │ └── 001_basic.pl ├── pg_stat_statements │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ ├── cleanup.out │ │ ├── cursors.out │ │ ├── dml.out │ │ ├── entry_timestamp.out │ │ ├── extended.out │ │ ├── level_tracking.out │ │ ├── oldextversions.out │ │ ├── planning.out │ │ ├── select.out │ │ ├── user_activity.out │ │ ├── utility.out │ │ └── wal.out │ ├── meson.build │ ├── pg_stat_statements--1.0--1.1.sql │ ├── pg_stat_statements--1.1--1.2.sql │ ├── pg_stat_statements--1.10--1.11.sql │ ├── pg_stat_statements--1.2--1.3.sql │ ├── pg_stat_statements--1.3--1.4.sql │ ├── pg_stat_statements--1.4--1.5.sql │ ├── pg_stat_statements--1.4.sql │ ├── pg_stat_statements--1.5--1.6.sql │ ├── pg_stat_statements--1.6--1.7.sql │ ├── pg_stat_statements--1.7--1.8.sql │ ├── pg_stat_statements--1.8--1.9.sql │ ├── pg_stat_statements--1.9--1.10.sql │ ├── pg_stat_statements.c │ ├── pg_stat_statements.conf │ ├── pg_stat_statements.control │ ├── sql │ │ ├── cleanup.sql │ │ ├── cursors.sql │ │ ├── dml.sql │ │ ├── entry_timestamp.sql │ │ ├── extended.sql │ │ ├── level_tracking.sql │ │ ├── oldextversions.sql │ │ ├── planning.sql │ │ ├── select.sql │ │ ├── user_activity.sql │ │ ├── utility.sql │ │ └── wal.sql │ └── t │ │ └── 010_restart.pl ├── pg_surgery │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── heap_surgery.out │ ├── heap_surgery.c │ ├── meson.build │ ├── pg_surgery--1.0.sql │ ├── pg_surgery.control │ └── sql │ │ └── heap_surgery.sql ├── pg_trgm │ ├── .gitignore │ ├── Makefile │ ├── data │ │ ├── trgm.data │ │ └── trgm2.data │ ├── expected │ │ ├── pg_strict_word_trgm.out │ │ ├── pg_trgm.out │ │ └── pg_word_trgm.out │ ├── meson.build │ ├── pg_trgm--1.0--1.1.sql │ ├── pg_trgm--1.1--1.2.sql │ ├── pg_trgm--1.2--1.3.sql │ ├── pg_trgm--1.3--1.4.sql │ ├── pg_trgm--1.3.sql │ ├── pg_trgm--1.4--1.5.sql │ ├── pg_trgm--1.5--1.6.sql │ ├── pg_trgm.control │ ├── sql │ │ ├── pg_strict_word_trgm.sql │ │ ├── pg_trgm.sql │ │ └── pg_word_trgm.sql │ ├── trgm.h │ ├── trgm_gin.c │ ├── trgm_gist.c │ ├── trgm_op.c │ └── trgm_regexp.c ├── pg_visibility │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── pg_visibility.out │ ├── meson.build │ ├── pg_visibility--1.0--1.1.sql │ ├── pg_visibility--1.1--1.2.sql │ ├── pg_visibility--1.1.sql │ ├── pg_visibility.c │ ├── pg_visibility.control │ ├── sql │ │ └── pg_visibility.sql │ └── t │ │ └── 001_concurrent_transaction.pl ├── pg_walinspect │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ ├── oldextversions.out │ │ └── pg_walinspect.out │ ├── meson.build │ ├── pg_walinspect--1.0--1.1.sql │ ├── pg_walinspect--1.0.sql │ ├── pg_walinspect.c │ ├── pg_walinspect.control │ ├── sql │ │ ├── oldextversions.sql │ │ └── pg_walinspect.sql │ └── walinspect.conf ├── pgcrypto │ ├── .gitignore │ ├── Makefile │ ├── crypt-blowfish.c │ ├── crypt-des.c │ ├── crypt-gensalt.c │ ├── crypt-md5.c │ ├── expected │ │ ├── 3des.out │ │ ├── 3des_1.out │ │ ├── blowfish.out │ │ ├── blowfish_1.out │ │ ├── cast5.out │ │ ├── cast5_1.out │ │ ├── crypt-blowfish.out │ │ ├── crypt-des.out │ │ ├── crypt-md5.out │ │ ├── crypt-md5_1.out │ │ ├── crypt-xdes.out │ │ ├── des.out │ │ ├── des_1.out │ │ ├── hmac-md5.out │ │ ├── hmac-md5_1.out │ │ ├── hmac-sha1.out │ │ ├── init.out │ │ ├── md5.out │ │ ├── md5_1.out │ │ ├── pgp-armor.out │ │ ├── pgp-compression.out │ │ ├── pgp-decrypt.out │ │ ├── pgp-decrypt_1.out │ │ ├── pgp-encrypt-md5.out │ │ ├── pgp-encrypt-md5_1.out │ │ ├── pgp-encrypt.out │ │ ├── pgp-info.out │ │ ├── pgp-pubkey-decrypt.out │ │ ├── pgp-pubkey-decrypt_1.out │ │ ├── pgp-pubkey-encrypt.out │ │ ├── pgp-zlib-DISABLED.out │ │ ├── rijndael.out │ │ ├── sha1.out │ │ └── sha2.out │ ├── mbuf.c │ ├── mbuf.h │ ├── meson.build │ ├── openssl.c │ ├── pgcrypto--1.0--1.1.sql │ ├── pgcrypto--1.1--1.2.sql │ ├── pgcrypto--1.2--1.3.sql │ ├── pgcrypto--1.3.sql │ ├── pgcrypto.c │ ├── pgcrypto.control │ ├── pgcrypto.h │ ├── pgp-armor.c │ ├── pgp-cfb.c │ ├── pgp-compress.c │ ├── pgp-decrypt.c │ ├── pgp-encrypt.c │ ├── pgp-info.c │ ├── pgp-mpi-openssl.c │ ├── pgp-mpi.c │ ├── pgp-pgsql.c │ ├── pgp-pubdec.c │ ├── pgp-pubenc.c │ ├── pgp-pubkey.c │ ├── pgp-s2k.c │ ├── pgp.c │ ├── pgp.h │ ├── px-crypt.c │ ├── px-crypt.h │ ├── px-hmac.c │ ├── px.c │ ├── px.h │ └── sql │ │ ├── 3des.sql │ │ ├── blowfish.sql │ │ ├── cast5.sql │ │ ├── crypt-blowfish.sql │ │ ├── crypt-des.sql │ │ ├── crypt-md5.sql │ │ ├── crypt-xdes.sql │ │ ├── des.sql │ │ ├── hmac-md5.sql │ │ ├── hmac-sha1.sql │ │ ├── init.sql │ │ ├── md5.sql │ │ ├── pgp-armor.sql │ │ ├── pgp-compression.sql │ │ ├── pgp-decrypt.sql │ │ ├── pgp-encrypt-md5.sql │ │ ├── pgp-encrypt.sql │ │ ├── pgp-info.sql │ │ ├── pgp-pubkey-decrypt.sql │ │ ├── pgp-pubkey-encrypt.sql │ │ ├── pgp-zlib-DISABLED.sql │ │ ├── rijndael.sql │ │ ├── sha1.sql │ │ └── sha2.sql ├── pgrowlocks │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── pgrowlocks.out │ ├── meson.build │ ├── pgrowlocks--1.0--1.1.sql │ ├── pgrowlocks--1.1--1.2.sql │ ├── pgrowlocks--1.2.sql │ ├── pgrowlocks.c │ ├── pgrowlocks.control │ └── specs │ │ └── pgrowlocks.spec ├── pgstattuple │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── pgstattuple.out │ ├── meson.build │ ├── pgstatapprox.c │ ├── pgstatindex.c │ ├── pgstattuple--1.0--1.1.sql │ ├── pgstattuple--1.1--1.2.sql │ ├── pgstattuple--1.2--1.3.sql │ ├── pgstattuple--1.3--1.4.sql │ ├── pgstattuple--1.4--1.5.sql │ ├── pgstattuple--1.4.sql │ ├── pgstattuple.c │ ├── pgstattuple.control │ └── sql │ │ └── pgstattuple.sql ├── postgres_fdw │ ├── .gitignore │ ├── Makefile │ ├── connection.c │ ├── deparse.c │ ├── expected │ │ ├── postgres_fdw.out │ │ ├── query_cancel.out │ │ └── query_cancel_1.out │ ├── meson.build │ ├── option.c │ ├── postgres_fdw--1.0--1.1.sql │ ├── postgres_fdw--1.0.sql │ ├── postgres_fdw.c │ ├── postgres_fdw.control │ ├── postgres_fdw.h │ ├── shippable.c │ └── sql │ │ ├── postgres_fdw.sql │ │ └── query_cancel.sql ├── seg │ ├── .gitignore │ ├── Makefile │ ├── data │ │ └── test_seg.data │ ├── expected │ │ ├── partition.out │ │ ├── security.out │ │ └── seg.out │ ├── meson.build │ ├── seg--1.0--1.1.sql │ ├── seg--1.1--1.2.sql │ ├── seg--1.1.sql │ ├── seg--1.2--1.3.sql │ ├── seg--1.3--1.4.sql │ ├── seg-validate.pl │ ├── seg.c │ ├── seg.control │ ├── segdata.h │ ├── segparse.y │ ├── segscan.l │ ├── sort-segments.pl │ └── sql │ │ ├── partition.sql │ │ ├── security.sql │ │ └── seg.sql ├── sepgsql │ ├── .gitignore │ ├── Makefile │ ├── database.c │ ├── dml.c │ ├── expected │ │ ├── alter.out │ │ ├── ddl.out │ │ ├── dml.out │ │ ├── label.out │ │ ├── misc.out │ │ └── truncate.out │ ├── hooks.c │ ├── label.c │ ├── launcher │ ├── meson.build │ ├── proc.c │ ├── relation.c │ ├── schema.c │ ├── selinux.c │ ├── sepgsql-regtest.te │ ├── sepgsql.h │ ├── sepgsql.sql.in │ ├── sql │ │ ├── alter.sql │ │ ├── ddl.sql │ │ ├── dml.sql │ │ ├── label.sql │ │ ├── misc.sql │ │ └── truncate.sql │ ├── test_sepgsql │ └── uavc.c ├── spi │ ├── Makefile │ ├── autoinc--1.0.sql │ ├── autoinc.c │ ├── autoinc.control │ ├── autoinc.example │ ├── insert_username--1.0.sql │ ├── insert_username.c │ ├── insert_username.control │ ├── insert_username.example │ ├── meson.build │ ├── moddatetime--1.0.sql │ ├── moddatetime.c │ ├── moddatetime.control │ ├── moddatetime.example │ ├── refint--1.0.sql │ ├── refint.c │ ├── refint.control │ └── refint.example ├── sslinfo │ ├── Makefile │ ├── meson.build │ ├── sslinfo--1.0--1.1.sql │ ├── sslinfo--1.1--1.2.sql │ ├── sslinfo--1.2.sql │ ├── sslinfo.c │ └── sslinfo.control ├── start-scripts │ ├── freebsd │ ├── linux │ └── macos │ │ ├── README │ │ ├── org.postgresql.postgres.plist │ │ └── postgres-wrapper.sh ├── tablefunc │ ├── .gitignore │ ├── Makefile │ ├── data │ │ ├── connectby_int.data │ │ ├── connectby_text.data │ │ └── ct.data │ ├── expected │ │ └── tablefunc.out │ ├── meson.build │ ├── sql │ │ └── tablefunc.sql │ ├── tablefunc--1.0.sql │ ├── tablefunc.c │ ├── tablefunc.control │ └── tablefunc.h ├── tcn │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── tcn.out │ ├── meson.build │ ├── specs │ │ └── tcn.spec │ ├── tcn--1.0.sql │ ├── tcn.c │ └── tcn.control ├── test_decoding │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ ├── binary.out │ │ ├── catalog_change_snapshot.out │ │ ├── concurrent_ddl_dml.out │ │ ├── concurrent_stream.out │ │ ├── ddl.out │ │ ├── decoding_in_xact.out │ │ ├── decoding_into_rel.out │ │ ├── delayed_startup.out │ │ ├── invalidation_distribution.out │ │ ├── messages.out │ │ ├── mxact.out │ │ ├── oldest_xmin.out │ │ ├── ondisk_startup.out │ │ ├── permissions.out │ │ ├── prepared.out │ │ ├── replorigin.out │ │ ├── rewrite.out │ │ ├── skip_snapshot_restore.out │ │ ├── slot.out │ │ ├── slot_creation_error.out │ │ ├── snapshot_transfer.out │ │ ├── spill.out │ │ ├── stats.out │ │ ├── stream.out │ │ ├── subxact_without_top.out │ │ ├── time.out │ │ ├── toast.out │ │ ├── truncate.out │ │ ├── twophase.out │ │ ├── twophase_snapshot.out │ │ ├── twophase_stream.out │ │ └── xact.out │ ├── logical.conf │ ├── meson.build │ ├── specs │ │ ├── catalog_change_snapshot.spec │ │ ├── concurrent_ddl_dml.spec │ │ ├── concurrent_stream.spec │ │ ├── delayed_startup.spec │ │ ├── invalidation_distribution.spec │ │ ├── mxact.spec │ │ ├── oldest_xmin.spec │ │ ├── ondisk_startup.spec │ │ ├── skip_snapshot_restore.spec │ │ ├── slot_creation_error.spec │ │ ├── snapshot_transfer.spec │ │ ├── subxact_without_top.spec │ │ └── twophase_snapshot.spec │ ├── sql │ │ ├── binary.sql │ │ ├── ddl.sql │ │ ├── decoding_in_xact.sql │ │ ├── decoding_into_rel.sql │ │ ├── messages.sql │ │ ├── permissions.sql │ │ ├── prepared.sql │ │ ├── replorigin.sql │ │ ├── rewrite.sql │ │ ├── slot.sql │ │ ├── spill.sql │ │ ├── stats.sql │ │ ├── stream.sql │ │ ├── time.sql │ │ ├── toast.sql │ │ ├── truncate.sql │ │ ├── twophase.sql │ │ ├── twophase_stream.sql │ │ └── xact.sql │ ├── t │ │ └── 001_repl_stats.pl │ └── test_decoding.c ├── tsm_system_rows │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── tsm_system_rows.out │ ├── meson.build │ ├── sql │ │ └── tsm_system_rows.sql │ ├── tsm_system_rows--1.0.sql │ ├── tsm_system_rows.c │ └── tsm_system_rows.control ├── tsm_system_time │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ └── tsm_system_time.out │ ├── meson.build │ ├── sql │ │ └── tsm_system_time.sql │ ├── tsm_system_time--1.0.sql │ ├── tsm_system_time.c │ └── tsm_system_time.control ├── unaccent │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ ├── unaccent.out │ │ └── unaccent_1.out │ ├── generate_unaccent_rules.py │ ├── meson.build │ ├── sql │ │ └── unaccent.sql │ ├── unaccent--1.0--1.1.sql │ ├── unaccent--1.1.sql │ ├── unaccent.c │ ├── unaccent.control │ └── unaccent.rules ├── uuid-ossp │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ ├── uuid_ossp.out │ │ └── uuid_ossp_1.out │ ├── meson.build │ ├── sql │ │ └── uuid_ossp.sql │ ├── uuid-ossp--1.0--1.1.sql │ ├── uuid-ossp--1.1.sql │ ├── uuid-ossp.c │ └── uuid-ossp.control ├── vacuumlo │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── t │ │ └── 001_basic.pl │ └── vacuumlo.c └── xml2 │ ├── .gitignore │ ├── Makefile │ ├── expected │ ├── xml2.out │ └── xml2_1.out │ ├── meson.build │ ├── sql │ └── xml2.sql │ ├── xml2--1.0--1.1.sql │ ├── xml2--1.1.sql │ ├── xml2.control │ ├── xpath.c │ └── xslt_proc.c ├── doc ├── KNOWN_BUGS ├── MISSING_FEATURES ├── Makefile ├── TODO └── src │ ├── Makefile │ └── sgml │ ├── .gitignore │ ├── Makefile │ ├── README.links │ ├── acronyms.sgml │ ├── advanced.sgml │ ├── amcheck.sgml │ ├── appendix-obsolete-default-roles.sgml │ ├── appendix-obsolete-pgreceivexlog.sgml │ ├── appendix-obsolete-pgresetxlog.sgml │ ├── appendix-obsolete-pgxlogdump.sgml │ ├── appendix-obsolete-recovery-config.sgml │ ├── appendix-obsolete.sgml │ ├── arch-dev.sgml │ ├── archive-modules.sgml │ ├── array.sgml │ ├── auth-delay.sgml │ ├── auto-explain.sgml │ ├── backup-manifest.sgml │ ├── backup.sgml │ ├── basebackup-to-shell.sgml │ ├── basic-archive.sgml │ ├── bgworker.sgml │ ├── biblio.sgml │ ├── bki.sgml │ ├── bloom.sgml │ ├── brin.sgml │ ├── btree-gin.sgml │ ├── btree-gist.sgml │ ├── btree.sgml │ ├── catalogs.sgml │ ├── charset.sgml │ ├── citext.sgml │ ├── client-auth.sgml │ ├── color.sgml │ ├── config.sgml │ ├── contrib-spi.sgml │ ├── contrib.sgml │ ├── cube.sgml │ ├── custom-rmgr.sgml │ ├── custom-scan.sgml │ ├── datatype.sgml │ ├── datetime.sgml │ ├── dblink.sgml │ ├── ddl.sgml │ ├── dfunc.sgml │ ├── dict-int.sgml │ ├── dict-xsyn.sgml │ ├── dml.sgml │ ├── docguide.sgml │ ├── earthdistance.sgml │ ├── ecpg.sgml │ ├── errcodes.sgml │ ├── event-trigger.sgml │ ├── extend.sgml │ ├── external-projects.sgml │ ├── fdwhandler.sgml │ ├── features.sgml │ ├── file-fdw.sgml │ ├── filelist.sgml │ ├── func.sgml │ ├── fuzzystrmatch.sgml │ ├── generate-errcodes-table.pl │ ├── generate-keywords-table.pl │ ├── generate-targets-meson.pl │ ├── generic-wal.sgml │ ├── geqo.sgml │ ├── gin.sgml │ ├── gist.sgml │ ├── glossary.sgml │ ├── hash.sgml │ ├── high-availability.sgml │ ├── history.sgml │ ├── hstore.sgml │ ├── images │ ├── Makefile │ ├── README │ ├── fixup-svg.xsl │ ├── genetic-algorithm.gv │ ├── genetic-algorithm.svg │ ├── gin.gv │ ├── gin.svg │ ├── pagelayout.svg │ └── pagelayout.txt │ ├── indexam.sgml │ ├── indextypes.sgml │ ├── indices.sgml │ ├── info.sgml │ ├── information_schema.sgml │ ├── install-binaries.sgml │ ├── installation.sgml │ ├── intagg.sgml │ ├── intarray.sgml │ ├── intro.sgml │ ├── isn.sgml │ ├── jit.sgml │ ├── json.sgml │ ├── keywords.sgml │ ├── keywords │ ├── sql1992-nonreserved.txt │ ├── sql1992-reserved.txt │ ├── sql2016-02-nonreserved.txt │ ├── sql2016-02-reserved.txt │ ├── sql2016-09-nonreserved.txt │ ├── sql2016-09-reserved.txt │ ├── sql2016-14-nonreserved.txt │ ├── sql2016-14-reserved.txt │ ├── sql2023-02-nonreserved.txt │ ├── sql2023-02-reserved.txt │ ├── sql2023-09-nonreserved.txt │ ├── sql2023-09-reserved.txt │ ├── sql2023-14-nonreserved.txt │ └── sql2023-14-reserved.txt │ ├── legal.sgml │ ├── libpq.sgml │ ├── limits.sgml │ ├── lo.sgml │ ├── lobj.sgml │ ├── logical-replication.sgml │ ├── logicaldecoding.sgml │ ├── ltree.sgml │ ├── maintenance.sgml │ ├── manage-ag.sgml │ ├── meson.build │ ├── mk_feature_tables.pl │ ├── monitoring.sgml │ ├── mvcc.sgml │ ├── nls.sgml │ ├── notation.sgml │ ├── oid2name.sgml │ ├── pageinspect.sgml │ ├── parallel.sgml │ ├── passwordcheck.sgml │ ├── perform.sgml │ ├── pgbuffercache.sgml │ ├── pgcrypto.sgml │ ├── pgfreespacemap.sgml │ ├── pgprewarm.sgml │ ├── pgrowlocks.sgml │ ├── pgstatstatements.sgml │ ├── pgstattuple.sgml │ ├── pgsurgery.sgml │ ├── pgtrgm.sgml │ ├── pgvisibility.sgml │ ├── pgwalinspect.sgml │ ├── planstats.sgml │ ├── plhandler.sgml │ ├── plperl.sgml │ ├── plpgsql.sgml │ ├── plpython.sgml │ ├── pltcl.sgml │ ├── postgres-fdw.sgml │ ├── postgres.sgml │ ├── problems.sgml │ ├── protocol.sgml │ ├── queries.sgml │ ├── query.sgml │ ├── rangetypes.sgml │ ├── ref │ ├── abort.sgml │ ├── allfiles.sgml │ ├── alter_aggregate.sgml │ ├── alter_collation.sgml │ ├── alter_conversion.sgml │ ├── alter_database.sgml │ ├── alter_default_privileges.sgml │ ├── alter_domain.sgml │ ├── alter_event_trigger.sgml │ ├── alter_extension.sgml │ ├── alter_foreign_data_wrapper.sgml │ ├── alter_foreign_table.sgml │ ├── alter_function.sgml │ ├── alter_group.sgml │ ├── alter_index.sgml │ ├── alter_language.sgml │ ├── alter_large_object.sgml │ ├── alter_materialized_view.sgml │ ├── alter_opclass.sgml │ ├── alter_operator.sgml │ ├── alter_opfamily.sgml │ ├── alter_policy.sgml │ ├── alter_procedure.sgml │ ├── alter_publication.sgml │ ├── alter_role.sgml │ ├── alter_routine.sgml │ ├── alter_rule.sgml │ ├── alter_schema.sgml │ ├── alter_sequence.sgml │ ├── alter_server.sgml │ ├── alter_statistics.sgml │ ├── alter_subscription.sgml │ ├── alter_system.sgml │ ├── alter_table.sgml │ ├── alter_tablespace.sgml │ ├── alter_trigger.sgml │ ├── alter_tsconfig.sgml │ ├── alter_tsdictionary.sgml │ ├── alter_tsparser.sgml │ ├── alter_tstemplate.sgml │ ├── alter_type.sgml │ ├── alter_user.sgml │ ├── alter_user_mapping.sgml │ ├── alter_view.sgml │ ├── analyze.sgml │ ├── begin.sgml │ ├── call.sgml │ ├── checkpoint.sgml │ ├── close.sgml │ ├── cluster.sgml │ ├── clusterdb.sgml │ ├── comment.sgml │ ├── commit.sgml │ ├── commit_prepared.sgml │ ├── copy.sgml │ ├── create_access_method.sgml │ ├── create_aggregate.sgml │ ├── create_cast.sgml │ ├── create_collation.sgml │ ├── create_conversion.sgml │ ├── create_database.sgml │ ├── create_domain.sgml │ ├── create_event_trigger.sgml │ ├── create_extension.sgml │ ├── create_foreign_data_wrapper.sgml │ ├── create_foreign_table.sgml │ ├── create_function.sgml │ ├── create_group.sgml │ ├── create_index.sgml │ ├── create_language.sgml │ ├── create_materialized_view.sgml │ ├── create_opclass.sgml │ ├── create_operator.sgml │ ├── create_opfamily.sgml │ ├── create_policy.sgml │ ├── create_procedure.sgml │ ├── create_publication.sgml │ ├── create_role.sgml │ ├── create_rule.sgml │ ├── create_schema.sgml │ ├── create_sequence.sgml │ ├── create_server.sgml │ ├── create_statistics.sgml │ ├── create_subscription.sgml │ ├── create_table.sgml │ ├── create_table_as.sgml │ ├── create_tablespace.sgml │ ├── create_transform.sgml │ ├── create_trigger.sgml │ ├── create_tsconfig.sgml │ ├── create_tsdictionary.sgml │ ├── create_tsparser.sgml │ ├── create_tstemplate.sgml │ ├── create_type.sgml │ ├── create_user.sgml │ ├── create_user_mapping.sgml │ ├── create_view.sgml │ ├── createdb.sgml │ ├── createuser.sgml │ ├── deallocate.sgml │ ├── declare.sgml │ ├── delete.sgml │ ├── discard.sgml │ ├── do.sgml │ ├── drop_access_method.sgml │ ├── drop_aggregate.sgml │ ├── drop_cast.sgml │ ├── drop_collation.sgml │ ├── drop_conversion.sgml │ ├── drop_database.sgml │ ├── drop_domain.sgml │ ├── drop_event_trigger.sgml │ ├── drop_extension.sgml │ ├── drop_foreign_data_wrapper.sgml │ ├── drop_foreign_table.sgml │ ├── drop_function.sgml │ ├── drop_group.sgml │ ├── drop_index.sgml │ ├── drop_language.sgml │ ├── drop_materialized_view.sgml │ ├── drop_opclass.sgml │ ├── drop_operator.sgml │ ├── drop_opfamily.sgml │ ├── drop_owned.sgml │ ├── drop_policy.sgml │ ├── drop_procedure.sgml │ ├── drop_publication.sgml │ ├── drop_role.sgml │ ├── drop_routine.sgml │ ├── drop_rule.sgml │ ├── drop_schema.sgml │ ├── drop_sequence.sgml │ ├── drop_server.sgml │ ├── drop_statistics.sgml │ ├── drop_subscription.sgml │ ├── drop_table.sgml │ ├── drop_tablespace.sgml │ ├── drop_transform.sgml │ ├── drop_trigger.sgml │ ├── drop_tsconfig.sgml │ ├── drop_tsdictionary.sgml │ ├── drop_tsparser.sgml │ ├── drop_tstemplate.sgml │ ├── drop_type.sgml │ ├── drop_user.sgml │ ├── drop_user_mapping.sgml │ ├── drop_view.sgml │ ├── dropdb.sgml │ ├── dropuser.sgml │ ├── ecpg-ref.sgml │ ├── end.sgml │ ├── execute.sgml │ ├── explain.sgml │ ├── fetch.sgml │ ├── grant.sgml │ ├── import_foreign_schema.sgml │ ├── initdb.sgml │ ├── insert.sgml │ ├── listen.sgml │ ├── load.sgml │ ├── lock.sgml │ ├── merge.sgml │ ├── move.sgml │ ├── notify.sgml │ ├── pg_amcheck.sgml │ ├── pg_basebackup.sgml │ ├── pg_checksums.sgml │ ├── pg_combinebackup.sgml │ ├── pg_config-ref.sgml │ ├── pg_controldata.sgml │ ├── pg_createsubscriber.sgml │ ├── pg_ctl-ref.sgml │ ├── pg_dump.sgml │ ├── pg_dumpall.sgml │ ├── pg_isready.sgml │ ├── pg_receivewal.sgml │ ├── pg_recvlogical.sgml │ ├── pg_resetwal.sgml │ ├── pg_restore.sgml │ ├── pg_rewind.sgml │ ├── pg_verifybackup.sgml │ ├── pg_waldump.sgml │ ├── pg_walsummary.sgml │ ├── pgarchivecleanup.sgml │ ├── pgbench.sgml │ ├── pgtestfsync.sgml │ ├── pgtesttiming.sgml │ ├── pgupgrade.sgml │ ├── postgres-ref.sgml │ ├── prepare.sgml │ ├── prepare_transaction.sgml │ ├── psql-ref.sgml │ ├── reassign_owned.sgml │ ├── refresh_materialized_view.sgml │ ├── reindex.sgml │ ├── reindexdb.sgml │ ├── release_savepoint.sgml │ ├── reset.sgml │ ├── revoke.sgml │ ├── rollback.sgml │ ├── rollback_prepared.sgml │ ├── rollback_to.sgml │ ├── savepoint.sgml │ ├── security_label.sgml │ ├── select.sgml │ ├── select_into.sgml │ ├── set.sgml │ ├── set_constraints.sgml │ ├── set_role.sgml │ ├── set_session_auth.sgml │ ├── set_transaction.sgml │ ├── show.sgml │ ├── start_transaction.sgml │ ├── truncate.sgml │ ├── unlisten.sgml │ ├── update.sgml │ ├── vacuum.sgml │ ├── vacuumdb.sgml │ └── values.sgml │ ├── reference.sgml │ ├── regress.sgml │ ├── release-17.sgml │ ├── release.sgml │ ├── replication-origins.sgml │ ├── rowtypes.sgml │ ├── rules.sgml │ ├── runtime.sgml │ ├── seg.sgml │ ├── sepgsql.sgml │ ├── sourcerepo.sgml │ ├── sources.sgml │ ├── spgist.sgml │ ├── spi.sgml │ ├── sslinfo.sgml │ ├── start.sgml │ ├── storage.sgml │ ├── stylesheet-common.xsl │ ├── stylesheet-fo.xsl │ ├── stylesheet-html-common.xsl │ ├── stylesheet-html-nochunk.xsl │ ├── stylesheet-man.xsl │ ├── stylesheet-speedup-common.xsl │ ├── stylesheet-speedup-xhtml.xsl │ ├── stylesheet-text.xsl │ ├── stylesheet.css │ ├── stylesheet.css.xml │ ├── stylesheet.xsl │ ├── syntax.sgml │ ├── system-views.sgml │ ├── tableam.sgml │ ├── tablefunc.sgml │ ├── tablesample-method.sgml │ ├── targets-meson.txt │ ├── tcn.sgml │ ├── test-decoding.sgml │ ├── textsearch.sgml │ ├── trigger.sgml │ ├── tsm-system-rows.sgml │ ├── tsm-system-time.sgml │ ├── typeconv.sgml │ ├── unaccent.sgml │ ├── user-manag.sgml │ ├── uuid-ossp.sgml │ ├── vacuumlo.sgml │ ├── version.sgml.in │ ├── wal-for-extensions.sgml │ ├── wal.sgml │ ├── xact.sgml │ ├── xaggr.sgml │ ├── xfunc.sgml │ ├── xindex.sgml │ ├── xml2.sgml │ ├── xmltools_dep_wrapper │ ├── xoper.sgml │ ├── xplang.sgml │ └── xtypes.sgml ├── meson.build ├── meson_options.txt └── src ├── .gitignore ├── DEVELOPERS ├── Makefile ├── Makefile.global.in ├── Makefile.shlib ├── backend ├── .gitignore ├── Makefile ├── access │ ├── Makefile │ ├── brin │ │ ├── Makefile │ │ ├── README │ │ ├── brin.c │ │ ├── brin_bloom.c │ │ ├── brin_inclusion.c │ │ ├── brin_minmax.c │ │ ├── brin_minmax_multi.c │ │ ├── brin_pageops.c │ │ ├── brin_revmap.c │ │ ├── brin_tuple.c │ │ ├── brin_validate.c │ │ ├── brin_xlog.c │ │ └── meson.build │ ├── common │ │ ├── Makefile │ │ ├── attmap.c │ │ ├── bufmask.c │ │ ├── detoast.c │ │ ├── heaptuple.c │ │ ├── indextuple.c │ │ ├── meson.build │ │ ├── printsimple.c │ │ ├── printtup.c │ │ ├── relation.c │ │ ├── reloptions.c │ │ ├── scankey.c │ │ ├── session.c │ │ ├── syncscan.c │ │ ├── tidstore.c │ │ ├── toast_compression.c │ │ ├── toast_internals.c │ │ ├── tupconvert.c │ │ └── tupdesc.c │ ├── gin │ │ ├── Makefile │ │ ├── README │ │ ├── ginarrayproc.c │ │ ├── ginbtree.c │ │ ├── ginbulk.c │ │ ├── gindatapage.c │ │ ├── ginentrypage.c │ │ ├── ginfast.c │ │ ├── ginget.c │ │ ├── gininsert.c │ │ ├── ginlogic.c │ │ ├── ginpostinglist.c │ │ ├── ginscan.c │ │ ├── ginutil.c │ │ ├── ginvacuum.c │ │ ├── ginvalidate.c │ │ ├── ginxlog.c │ │ └── meson.build │ ├── gist │ │ ├── Makefile │ │ ├── README │ │ ├── gist.c │ │ ├── gistbuild.c │ │ ├── gistbuildbuffers.c │ │ ├── gistget.c │ │ ├── gistproc.c │ │ ├── gistscan.c │ │ ├── gistsplit.c │ │ ├── gistutil.c │ │ ├── gistvacuum.c │ │ ├── gistvalidate.c │ │ ├── gistxlog.c │ │ └── meson.build │ ├── hash │ │ ├── Makefile │ │ ├── README │ │ ├── hash.c │ │ ├── hash_xlog.c │ │ ├── hashfunc.c │ │ ├── hashinsert.c │ │ ├── hashovfl.c │ │ ├── hashpage.c │ │ ├── hashsearch.c │ │ ├── hashsort.c │ │ ├── hashutil.c │ │ ├── hashvalidate.c │ │ └── meson.build │ ├── heap │ │ ├── Makefile │ │ ├── README.HOT │ │ ├── README.tuplock │ │ ├── heapam.c │ │ ├── heapam_handler.c │ │ ├── heapam_visibility.c │ │ ├── heaptoast.c │ │ ├── hio.c │ │ ├── meson.build │ │ ├── pruneheap.c │ │ ├── rewriteheap.c │ │ ├── vacuumlazy.c │ │ └── visibilitymap.c │ ├── index │ │ ├── Makefile │ │ ├── amapi.c │ │ ├── amvalidate.c │ │ ├── genam.c │ │ ├── indexam.c │ │ └── meson.build │ ├── meson.build │ ├── nbtree │ │ ├── Makefile │ │ ├── README │ │ ├── meson.build │ │ ├── nbtcompare.c │ │ ├── nbtdedup.c │ │ ├── nbtinsert.c │ │ ├── nbtpage.c │ │ ├── nbtree.c │ │ ├── nbtsearch.c │ │ ├── nbtsort.c │ │ ├── nbtsplitloc.c │ │ ├── nbtutils.c │ │ ├── nbtvalidate.c │ │ └── nbtxlog.c │ ├── rmgrdesc │ │ ├── Makefile │ │ ├── README │ │ ├── brindesc.c │ │ ├── clogdesc.c │ │ ├── committsdesc.c │ │ ├── dbasedesc.c │ │ ├── genericdesc.c │ │ ├── gindesc.c │ │ ├── gistdesc.c │ │ ├── hashdesc.c │ │ ├── heapdesc.c │ │ ├── logicalmsgdesc.c │ │ ├── meson.build │ │ ├── mxactdesc.c │ │ ├── nbtdesc.c │ │ ├── relmapdesc.c │ │ ├── replorigindesc.c │ │ ├── rmgrdesc_utils.c │ │ ├── seqdesc.c │ │ ├── smgrdesc.c │ │ ├── spgdesc.c │ │ ├── standbydesc.c │ │ ├── tblspcdesc.c │ │ ├── xactdesc.c │ │ └── xlogdesc.c │ ├── sequence │ │ ├── Makefile │ │ ├── meson.build │ │ └── sequence.c │ ├── spgist │ │ ├── Makefile │ │ ├── README │ │ ├── meson.build │ │ ├── spgdoinsert.c │ │ ├── spginsert.c │ │ ├── spgkdtreeproc.c │ │ ├── spgproc.c │ │ ├── spgquadtreeproc.c │ │ ├── spgscan.c │ │ ├── spgtextproc.c │ │ ├── spgutils.c │ │ ├── spgvacuum.c │ │ ├── spgvalidate.c │ │ └── spgxlog.c │ ├── table │ │ ├── Makefile │ │ ├── meson.build │ │ ├── table.c │ │ ├── tableam.c │ │ ├── tableamapi.c │ │ └── toast_helper.c │ ├── tablesample │ │ ├── Makefile │ │ ├── bernoulli.c │ │ ├── meson.build │ │ ├── system.c │ │ └── tablesample.c │ └── transam │ │ ├── Makefile │ │ ├── README │ │ ├── README.parallel │ │ ├── clog.c │ │ ├── commit_ts.c │ │ ├── generic_xlog.c │ │ ├── meson.build │ │ ├── multixact.c │ │ ├── parallel.c │ │ ├── rmgr.c │ │ ├── slru.c │ │ ├── subtrans.c │ │ ├── timeline.c │ │ ├── transam.c │ │ ├── twophase.c │ │ ├── twophase_rmgr.c │ │ ├── varsup.c │ │ ├── xact.c │ │ ├── xlog.c │ │ ├── xlogarchive.c │ │ ├── xlogbackup.c │ │ ├── xlogfuncs.c │ │ ├── xloginsert.c │ │ ├── xlogprefetcher.c │ │ ├── xlogreader.c │ │ ├── xlogrecovery.c │ │ ├── xlogstats.c │ │ └── xlogutils.c ├── archive │ ├── Makefile │ ├── meson.build │ └── shell_archive.c ├── backup │ ├── Makefile │ ├── backup_manifest.c │ ├── basebackup.c │ ├── basebackup_copy.c │ ├── basebackup_gzip.c │ ├── basebackup_incremental.c │ ├── basebackup_lz4.c │ ├── basebackup_progress.c │ ├── basebackup_server.c │ ├── basebackup_sink.c │ ├── basebackup_target.c │ ├── basebackup_throttle.c │ ├── basebackup_zstd.c │ ├── meson.build │ ├── walsummary.c │ └── walsummaryfuncs.c ├── bootstrap │ ├── .gitignore │ ├── Makefile │ ├── bootparse.y │ ├── bootscanner.l │ ├── bootstrap.c │ └── meson.build ├── catalog │ ├── Catalog.pm │ ├── Makefile │ ├── aclchk.c │ ├── catalog.c │ ├── dependency.c │ ├── genbki.pl │ ├── heap.c │ ├── index.c │ ├── indexing.c │ ├── information_schema.sql │ ├── meson.build │ ├── namespace.c │ ├── objectaccess.c │ ├── objectaddress.c │ ├── partition.c │ ├── pg_aggregate.c │ ├── pg_attrdef.c │ ├── pg_cast.c │ ├── pg_class.c │ ├── pg_collation.c │ ├── pg_constraint.c │ ├── pg_conversion.c │ ├── pg_db_role_setting.c │ ├── pg_depend.c │ ├── pg_enum.c │ ├── pg_inherits.c │ ├── pg_largeobject.c │ ├── pg_namespace.c │ ├── pg_operator.c │ ├── pg_parameter_acl.c │ ├── pg_proc.c │ ├── pg_publication.c │ ├── pg_range.c │ ├── pg_shdepend.c │ ├── pg_subscription.c │ ├── pg_type.c │ ├── sql_feature_packages.txt │ ├── sql_features.txt │ ├── storage.c │ ├── system_functions.sql │ ├── system_views.sql │ └── toasting.c ├── commands │ ├── Makefile │ ├── aggregatecmds.c │ ├── alter.c │ ├── amcmds.c │ ├── analyze.c │ ├── async.c │ ├── cluster.c │ ├── collationcmds.c │ ├── comment.c │ ├── constraint.c │ ├── conversioncmds.c │ ├── copy.c │ ├── copyfrom.c │ ├── copyfromparse.c │ ├── copyto.c │ ├── createas.c │ ├── dbcommands.c │ ├── define.c │ ├── discard.c │ ├── dropcmds.c │ ├── event_trigger.c │ ├── explain.c │ ├── extension.c │ ├── foreigncmds.c │ ├── functioncmds.c │ ├── indexcmds.c │ ├── lockcmds.c │ ├── matview.c │ ├── meson.build │ ├── opclasscmds.c │ ├── operatorcmds.c │ ├── policy.c │ ├── portalcmds.c │ ├── prepare.c │ ├── proclang.c │ ├── publicationcmds.c │ ├── schemacmds.c │ ├── seclabel.c │ ├── sequence.c │ ├── statscmds.c │ ├── subscriptioncmds.c │ ├── tablecmds.c │ ├── tablespace.c │ ├── trigger.c │ ├── tsearchcmds.c │ ├── typecmds.c │ ├── user.c │ ├── vacuum.c │ ├── vacuumparallel.c │ ├── variable.c │ └── view.c ├── common.mk ├── executor │ ├── Makefile │ ├── README │ ├── execAmi.c │ ├── execAsync.c │ ├── execCurrent.c │ ├── execExpr.c │ ├── execExprInterp.c │ ├── execGrouping.c │ ├── execIndexing.c │ ├── execJunk.c │ ├── execMain.c │ ├── execParallel.c │ ├── execPartition.c │ ├── execProcnode.c │ ├── execReplication.c │ ├── execSRF.c │ ├── execScan.c │ ├── execTuples.c │ ├── execUtils.c │ ├── functions.c │ ├── instrument.c │ ├── meson.build │ ├── nodeAgg.c │ ├── nodeAppend.c │ ├── nodeBitmapAnd.c │ ├── nodeBitmapHeapscan.c │ ├── nodeBitmapIndexscan.c │ ├── nodeBitmapOr.c │ ├── nodeCtescan.c │ ├── nodeCustom.c │ ├── nodeForeignscan.c │ ├── nodeFunctionscan.c │ ├── nodeGather.c │ ├── nodeGatherMerge.c │ ├── nodeGroup.c │ ├── nodeHash.c │ ├── nodeHashjoin.c │ ├── nodeIncrementalSort.c │ ├── nodeIndexonlyscan.c │ ├── nodeIndexscan.c │ ├── nodeLimit.c │ ├── nodeLockRows.c │ ├── nodeMaterial.c │ ├── nodeMemoize.c │ ├── nodeMergeAppend.c │ ├── nodeMergejoin.c │ ├── nodeModifyTable.c │ ├── nodeNamedtuplestorescan.c │ ├── nodeNestloop.c │ ├── nodeProjectSet.c │ ├── nodeRecursiveunion.c │ ├── nodeResult.c │ ├── nodeSamplescan.c │ ├── nodeSeqscan.c │ ├── nodeSetOp.c │ ├── nodeSort.c │ ├── nodeSubplan.c │ ├── nodeSubqueryscan.c │ ├── nodeTableFuncscan.c │ ├── nodeTidrangescan.c │ ├── nodeTidscan.c │ ├── nodeUnique.c │ ├── nodeValuesscan.c │ ├── nodeWindowAgg.c │ ├── nodeWorktablescan.c │ ├── spi.c │ ├── tqueue.c │ └── tstoreReceiver.c ├── foreign │ ├── Makefile │ ├── foreign.c │ └── meson.build ├── jit │ ├── Makefile │ ├── README │ ├── jit.c │ ├── llvm │ │ ├── Makefile │ │ ├── SectionMemoryManager.LICENSE │ │ ├── SectionMemoryManager.cpp │ │ ├── llvmjit.c │ │ ├── llvmjit_deform.c │ │ ├── llvmjit_error.cpp │ │ ├── llvmjit_expr.c │ │ ├── llvmjit_inline.cpp │ │ ├── llvmjit_types.c │ │ ├── llvmjit_wrap.cpp │ │ └── meson.build │ └── meson.build ├── lib │ ├── Makefile │ ├── README │ ├── bipartite_match.c │ ├── bloomfilter.c │ ├── dshash.c │ ├── hyperloglog.c │ ├── ilist.c │ ├── integerset.c │ ├── knapsack.c │ ├── meson.build │ ├── pairingheap.c │ └── rbtree.c ├── libpq │ ├── Makefile │ ├── README.SSL │ ├── auth-sasl.c │ ├── auth-scram.c │ ├── auth.c │ ├── be-fsstubs.c │ ├── be-gssapi-common.c │ ├── be-secure-common.c │ ├── be-secure-gssapi.c │ ├── be-secure-openssl.c │ ├── be-secure.c │ ├── crypt.c │ ├── hba.c │ ├── ifaddr.c │ ├── meson.build │ ├── pg_hba.conf.sample │ ├── pg_ident.conf.sample │ ├── pqcomm.c │ ├── pqformat.c │ ├── pqmq.c │ └── pqsignal.c ├── main │ ├── Makefile │ ├── main.c │ └── meson.build ├── meson.build ├── nls.mk ├── nodes │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── bitmapset.c │ ├── copyfuncs.c │ ├── equalfuncs.c │ ├── extensible.c │ ├── gen_node_support.pl │ ├── list.c │ ├── makefuncs.c │ ├── meson.build │ ├── multibitmapset.c │ ├── nodeFuncs.c │ ├── outfuncs.c │ ├── params.c │ ├── print.c │ ├── queryjumblefuncs.c │ ├── read.c │ ├── readfuncs.c │ ├── tidbitmap.c │ └── value.c ├── optimizer │ ├── Makefile │ ├── README │ ├── geqo │ │ ├── Makefile │ │ ├── geqo_copy.c │ │ ├── geqo_cx.c │ │ ├── geqo_erx.c │ │ ├── geqo_eval.c │ │ ├── geqo_main.c │ │ ├── geqo_misc.c │ │ ├── geqo_mutation.c │ │ ├── geqo_ox1.c │ │ ├── geqo_ox2.c │ │ ├── geqo_pmx.c │ │ ├── geqo_pool.c │ │ ├── geqo_px.c │ │ ├── geqo_random.c │ │ ├── geqo_recombination.c │ │ ├── geqo_selection.c │ │ └── meson.build │ ├── meson.build │ ├── path │ │ ├── Makefile │ │ ├── allpaths.c │ │ ├── clausesel.c │ │ ├── costsize.c │ │ ├── equivclass.c │ │ ├── indxpath.c │ │ ├── joinpath.c │ │ ├── joinrels.c │ │ ├── meson.build │ │ ├── pathkeys.c │ │ └── tidpath.c │ ├── plan │ │ ├── Makefile │ │ ├── README │ │ ├── analyzejoins.c │ │ ├── createplan.c │ │ ├── initsplan.c │ │ ├── meson.build │ │ ├── planagg.c │ │ ├── planmain.c │ │ ├── planner.c │ │ ├── setrefs.c │ │ └── subselect.c │ ├── prep │ │ ├── Makefile │ │ ├── meson.build │ │ ├── prepagg.c │ │ ├── prepjointree.c │ │ ├── prepqual.c │ │ ├── preptlist.c │ │ └── prepunion.c │ └── util │ │ ├── Makefile │ │ ├── appendinfo.c │ │ ├── clauses.c │ │ ├── inherit.c │ │ ├── joininfo.c │ │ ├── meson.build │ │ ├── orclauses.c │ │ ├── paramassign.c │ │ ├── pathnode.c │ │ ├── placeholder.c │ │ ├── plancat.c │ │ ├── predtest.c │ │ ├── relnode.c │ │ ├── restrictinfo.c │ │ ├── tlist.c │ │ └── var.c ├── parser │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── analyze.c │ ├── check_keywords.pl │ ├── gram.y │ ├── gramparse.h │ ├── meson.build │ ├── parse_agg.c │ ├── parse_clause.c │ ├── parse_coerce.c │ ├── parse_collate.c │ ├── parse_cte.c │ ├── parse_enr.c │ ├── parse_expr.c │ ├── parse_func.c │ ├── parse_jsontable.c │ ├── parse_merge.c │ ├── parse_node.c │ ├── parse_oper.c │ ├── parse_param.c │ ├── parse_relation.c │ ├── parse_target.c │ ├── parse_type.c │ ├── parse_utilcmd.c │ ├── parser.c │ ├── scan.l │ └── scansup.c ├── partitioning │ ├── Makefile │ ├── meson.build │ ├── partbounds.c │ ├── partdesc.c │ └── partprune.c ├── po │ ├── LINGUAS │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── id.po │ ├── it.po │ ├── ja.po │ ├── ka.po │ ├── ko.po │ ├── meson.build │ ├── pl.po │ ├── pt_BR.po │ ├── ru.po │ ├── sv.po │ ├── tr.po │ ├── uk.po │ └── zh_CN.po ├── port │ ├── .gitignore │ ├── Makefile │ ├── atomics.c │ ├── meson.build │ ├── posix_sema.c │ ├── sysv_sema.c │ ├── sysv_shmem.c │ ├── tas │ │ ├── dummy.s │ │ ├── sunstudio_sparc.s │ │ └── sunstudio_x86.s │ ├── win32 │ │ ├── Makefile │ │ ├── crashdump.c │ │ ├── meson.build │ │ ├── signal.c │ │ ├── socket.c │ │ └── timer.c │ ├── win32_sema.c │ └── win32_shmem.c ├── postmaster │ ├── Makefile │ ├── autovacuum.c │ ├── auxprocess.c │ ├── bgworker.c │ ├── bgwriter.c │ ├── checkpointer.c │ ├── fork_process.c │ ├── interrupt.c │ ├── launch_backend.c │ ├── meson.build │ ├── pgarch.c │ ├── postmaster.c │ ├── startup.c │ ├── syslogger.c │ ├── walsummarizer.c │ └── walwriter.c ├── regex │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── meson.build │ ├── regc_color.c │ ├── regc_cvec.c │ ├── regc_lex.c │ ├── regc_locale.c │ ├── regc_nfa.c │ ├── regc_pg_locale.c │ ├── regcomp.c │ ├── rege_dfa.c │ ├── regerror.c │ ├── regexec.c │ ├── regexport.c │ ├── regfree.c │ └── regprefix.c ├── replication │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── libpqwalreceiver │ │ ├── Makefile │ │ ├── libpqwalreceiver.c │ │ └── meson.build │ ├── logical │ │ ├── Makefile │ │ ├── applyparallelworker.c │ │ ├── decode.c │ │ ├── launcher.c │ │ ├── logical.c │ │ ├── logicalfuncs.c │ │ ├── meson.build │ │ ├── message.c │ │ ├── origin.c │ │ ├── proto.c │ │ ├── relation.c │ │ ├── reorderbuffer.c │ │ ├── slotsync.c │ │ ├── snapbuild.c │ │ ├── tablesync.c │ │ └── worker.c │ ├── meson.build │ ├── pgoutput │ │ ├── Makefile │ │ ├── meson.build │ │ └── pgoutput.c │ ├── repl_gram.y │ ├── repl_scanner.l │ ├── slot.c │ ├── slotfuncs.c │ ├── syncrep.c │ ├── syncrep_gram.y │ ├── syncrep_scanner.l │ ├── walreceiver.c │ ├── walreceiverfuncs.c │ └── walsender.c ├── rewrite │ ├── Makefile │ ├── meson.build │ ├── rewriteDefine.c │ ├── rewriteHandler.c │ ├── rewriteManip.c │ ├── rewriteRemove.c │ ├── rewriteSearchCycle.c │ ├── rewriteSupport.c │ └── rowsecurity.c ├── snowball │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── dict_snowball.c │ ├── libstemmer │ │ ├── api.c │ │ ├── stem_ISO_8859_1_basque.c │ │ ├── stem_ISO_8859_1_catalan.c │ │ ├── stem_ISO_8859_1_danish.c │ │ ├── stem_ISO_8859_1_dutch.c │ │ ├── stem_ISO_8859_1_english.c │ │ ├── stem_ISO_8859_1_finnish.c │ │ ├── stem_ISO_8859_1_french.c │ │ ├── stem_ISO_8859_1_german.c │ │ ├── stem_ISO_8859_1_indonesian.c │ │ ├── stem_ISO_8859_1_irish.c │ │ ├── stem_ISO_8859_1_italian.c │ │ ├── stem_ISO_8859_1_norwegian.c │ │ ├── stem_ISO_8859_1_porter.c │ │ ├── stem_ISO_8859_1_portuguese.c │ │ ├── stem_ISO_8859_1_spanish.c │ │ ├── stem_ISO_8859_1_swedish.c │ │ ├── stem_ISO_8859_2_hungarian.c │ │ ├── stem_ISO_8859_2_romanian.c │ │ ├── stem_KOI8_R_russian.c │ │ ├── stem_UTF_8_arabic.c │ │ ├── stem_UTF_8_armenian.c │ │ ├── stem_UTF_8_basque.c │ │ ├── stem_UTF_8_catalan.c │ │ ├── stem_UTF_8_danish.c │ │ ├── stem_UTF_8_dutch.c │ │ ├── stem_UTF_8_english.c │ │ ├── stem_UTF_8_finnish.c │ │ ├── stem_UTF_8_french.c │ │ ├── stem_UTF_8_german.c │ │ ├── stem_UTF_8_greek.c │ │ ├── stem_UTF_8_hindi.c │ │ ├── stem_UTF_8_hungarian.c │ │ ├── stem_UTF_8_indonesian.c │ │ ├── stem_UTF_8_irish.c │ │ ├── stem_UTF_8_italian.c │ │ ├── stem_UTF_8_lithuanian.c │ │ ├── stem_UTF_8_nepali.c │ │ ├── stem_UTF_8_norwegian.c │ │ ├── stem_UTF_8_porter.c │ │ ├── stem_UTF_8_portuguese.c │ │ ├── stem_UTF_8_romanian.c │ │ ├── stem_UTF_8_russian.c │ │ ├── stem_UTF_8_serbian.c │ │ ├── stem_UTF_8_spanish.c │ │ ├── stem_UTF_8_swedish.c │ │ ├── stem_UTF_8_tamil.c │ │ ├── stem_UTF_8_turkish.c │ │ ├── stem_UTF_8_yiddish.c │ │ └── utilities.c │ ├── meson.build │ ├── snowball.sql.in │ ├── snowball_create.pl │ ├── snowball_func.sql.in │ └── stopwords │ │ ├── danish.stop │ │ ├── dutch.stop │ │ ├── english.stop │ │ ├── finnish.stop │ │ ├── french.stop │ │ ├── german.stop │ │ ├── hungarian.stop │ │ ├── italian.stop │ │ ├── nepali.stop │ │ ├── norwegian.stop │ │ ├── portuguese.stop │ │ ├── russian.stop │ │ ├── spanish.stop │ │ ├── swedish.stop │ │ ├── tsql_contains.stop │ │ └── turkish.stop ├── statistics │ ├── Makefile │ ├── README │ ├── README.dependencies │ ├── README.mcv │ ├── dependencies.c │ ├── extended_stats.c │ ├── mcv.c │ ├── meson.build │ └── mvdistinct.c ├── storage │ ├── Makefile │ ├── aio │ │ ├── Makefile │ │ ├── meson.build │ │ └── read_stream.c │ ├── buffer │ │ ├── Makefile │ │ ├── README │ │ ├── buf_init.c │ │ ├── buf_table.c │ │ ├── bufmgr.c │ │ ├── freelist.c │ │ ├── localbuf.c │ │ └── meson.build │ ├── file │ │ ├── Makefile │ │ ├── buffile.c │ │ ├── copydir.c │ │ ├── fd.c │ │ ├── fileset.c │ │ ├── meson.build │ │ ├── reinit.c │ │ └── sharedfileset.c │ ├── freespace │ │ ├── Makefile │ │ ├── README │ │ ├── freespace.c │ │ ├── fsmpage.c │ │ ├── indexfsm.c │ │ └── meson.build │ ├── ipc │ │ ├── Makefile │ │ ├── barrier.c │ │ ├── dsm.c │ │ ├── dsm_impl.c │ │ ├── dsm_registry.c │ │ ├── ipc.c │ │ ├── ipci.c │ │ ├── latch.c │ │ ├── meson.build │ │ ├── pmsignal.c │ │ ├── procarray.c │ │ ├── procsignal.c │ │ ├── shm_mq.c │ │ ├── shm_toc.c │ │ ├── shmem.c │ │ ├── signalfuncs.c │ │ ├── sinval.c │ │ ├── sinvaladt.c │ │ └── standby.c │ ├── large_object │ │ ├── Makefile │ │ ├── inv_api.c │ │ └── meson.build │ ├── lmgr │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── README-SSI │ │ ├── README.barrier │ │ ├── condition_variable.c │ │ ├── deadlock.c │ │ ├── generate-lwlocknames.pl │ │ ├── lmgr.c │ │ ├── lock.c │ │ ├── lwlock.c │ │ ├── meson.build │ │ ├── predicate.c │ │ ├── proc.c │ │ ├── s_lock.c │ │ └── spin.c │ ├── meson.build │ ├── page │ │ ├── Makefile │ │ ├── README │ │ ├── bufpage.c │ │ ├── checksum.c │ │ ├── itemptr.c │ │ └── meson.build │ ├── smgr │ │ ├── Makefile │ │ ├── README │ │ ├── bulk_write.c │ │ ├── md.c │ │ ├── meson.build │ │ └── smgr.c │ └── sync │ │ ├── Makefile │ │ ├── meson.build │ │ └── sync.c ├── tcop │ ├── Makefile │ ├── backend_startup.c │ ├── cmdtag.c │ ├── dest.c │ ├── fastpath.c │ ├── meson.build │ ├── postgres.c │ ├── pquery.c │ └── utility.c ├── tsearch │ ├── Makefile │ ├── dict.c │ ├── dict_ispell.c │ ├── dict_simple.c │ ├── dict_synonym.c │ ├── dict_thesaurus.c │ ├── dicts │ │ ├── hunspell_sample.affix │ │ ├── hunspell_sample_long.affix │ │ ├── hunspell_sample_long.dict │ │ ├── hunspell_sample_num.affix │ │ ├── hunspell_sample_num.dict │ │ ├── irregular_verbs.syn │ │ ├── ispell_sample.affix │ │ ├── ispell_sample.dict │ │ ├── synonym_sample.syn │ │ └── thesaurus_sample.ths │ ├── meson.build │ ├── regis.c │ ├── spell.c │ ├── to_tsany.c │ ├── ts_locale.c │ ├── ts_parse.c │ ├── ts_selfuncs.c │ ├── ts_typanalyze.c │ ├── ts_utils.c │ ├── wparser.c │ └── wparser_def.c └── utils │ ├── .gitignore │ ├── Gen_dummy_probes.pl │ ├── Gen_fmgrtab.pl │ ├── Makefile │ ├── activity │ ├── .gitignore │ ├── Makefile │ ├── backend_progress.c │ ├── backend_status.c │ ├── generate-wait_event_types.pl │ ├── meson.build │ ├── pgstat.c │ ├── pgstat_archiver.c │ ├── pgstat_bgwriter.c │ ├── pgstat_checkpointer.c │ ├── pgstat_database.c │ ├── pgstat_function.c │ ├── pgstat_io.c │ ├── pgstat_relation.c │ ├── pgstat_replslot.c │ ├── pgstat_shmem.c │ ├── pgstat_slru.c │ ├── pgstat_subscription.c │ ├── pgstat_wal.c │ ├── pgstat_xact.c │ ├── wait_event.c │ ├── wait_event_funcs.c │ └── wait_event_names.txt │ ├── adt │ ├── .gitignore │ ├── Makefile │ ├── acl.c │ ├── amutils.c │ ├── array_expanded.c │ ├── array_selfuncs.c │ ├── array_typanalyze.c │ ├── array_userfuncs.c │ ├── arrayfuncs.c │ ├── arraysubs.c │ ├── arrayutils.c │ ├── ascii.c │ ├── bool.c │ ├── cash.c │ ├── char.c │ ├── cryptohashfuncs.c │ ├── date.c │ ├── datetime.c │ ├── datum.c │ ├── dbsize.c │ ├── domains.c │ ├── encode.c │ ├── enum.c │ ├── expandeddatum.c │ ├── expandedrecord.c │ ├── float.c │ ├── format_type.c │ ├── formatting.c │ ├── genfile.c │ ├── geo_ops.c │ ├── geo_selfuncs.c │ ├── geo_spgist.c │ ├── hbafuncs.c │ ├── inet_cidr_ntop.c │ ├── inet_net_pton.c │ ├── int.c │ ├── int8.c │ ├── json.c │ ├── jsonb.c │ ├── jsonb_gin.c │ ├── jsonb_op.c │ ├── jsonb_util.c │ ├── jsonbsubs.c │ ├── jsonfuncs.c │ ├── jsonpath.c │ ├── jsonpath_exec.c │ ├── jsonpath_gram.y │ ├── jsonpath_internal.h │ ├── jsonpath_scan.l │ ├── levenshtein.c │ ├── like.c │ ├── like_match.c │ ├── like_support.c │ ├── lockfuncs.c │ ├── mac.c │ ├── mac8.c │ ├── mcxtfuncs.c │ ├── meson.build │ ├── misc.c │ ├── multirangetypes.c │ ├── multirangetypes_selfuncs.c │ ├── name.c │ ├── network.c │ ├── network_gist.c │ ├── network_selfuncs.c │ ├── network_spgist.c │ ├── numeric.c │ ├── numutils.c │ ├── oid.c │ ├── oracle_compat.c │ ├── orderedsetaggs.c │ ├── partitionfuncs.c │ ├── pg_locale.c │ ├── pg_lsn.c │ ├── pg_upgrade_support.c │ ├── pgstatfuncs.c │ ├── pseudorandomfuncs.c │ ├── pseudotypes.c │ ├── quote.c │ ├── rangetypes.c │ ├── rangetypes_gist.c │ ├── rangetypes_selfuncs.c │ ├── rangetypes_spgist.c │ ├── rangetypes_typanalyze.c │ ├── regexp.c │ ├── regproc.c │ ├── ri_triggers.c │ ├── rowtypes.c │ ├── ruleutils.c │ ├── selfuncs.c │ ├── tid.c │ ├── timestamp.c │ ├── trigfuncs.c │ ├── tsginidx.c │ ├── tsgistidx.c │ ├── tsquery.c │ ├── tsquery_cleanup.c │ ├── tsquery_gist.c │ ├── tsquery_op.c │ ├── tsquery_rewrite.c │ ├── tsquery_util.c │ ├── tsrank.c │ ├── tsvector.c │ ├── tsvector_op.c │ ├── tsvector_parser.c │ ├── uuid.c │ ├── varbit.c │ ├── varchar.c │ ├── varlena.c │ ├── version.c │ ├── waitfuncs.c │ ├── windowfuncs.c │ ├── xid.c │ ├── xid8funcs.c │ └── xml.c │ ├── cache │ ├── Makefile │ ├── attoptcache.c │ ├── catcache.c │ ├── evtcache.c │ ├── inval.c │ ├── lsyscache.c │ ├── meson.build │ ├── partcache.c │ ├── plancache.c │ ├── relcache.c │ ├── relfilenumbermap.c │ ├── relmapper.c │ ├── spccache.c │ ├── syscache.c │ ├── ts_cache.c │ └── typcache.c │ ├── errcodes.txt │ ├── error │ ├── Makefile │ ├── assert.c │ ├── csvlog.c │ ├── elog.c │ ├── jsonlog.c │ └── meson.build │ ├── fmgr │ ├── Makefile │ ├── README │ ├── dfmgr.c │ ├── fmgr.c │ ├── funcapi.c │ └── meson.build │ ├── generate-errcodes.pl │ ├── hash │ ├── Makefile │ ├── dynahash.c │ ├── meson.build │ └── pg_crc.c │ ├── init │ ├── Makefile │ ├── globals.c │ ├── meson.build │ ├── miscinit.c │ ├── postinit.c │ └── usercontext.c │ ├── mb │ ├── Makefile │ ├── README │ ├── Unicode │ │ ├── Makefile │ │ ├── UCS_to_BIG5.pl │ │ ├── UCS_to_EUC_CN.pl │ │ ├── UCS_to_EUC_JIS_2004.pl │ │ ├── UCS_to_EUC_JP.pl │ │ ├── UCS_to_EUC_KR.pl │ │ ├── UCS_to_EUC_TW.pl │ │ ├── UCS_to_GB18030.pl │ │ ├── UCS_to_JOHAB.pl │ │ ├── UCS_to_SHIFT_JIS_2004.pl │ │ ├── UCS_to_SJIS.pl │ │ ├── UCS_to_UHC.pl │ │ ├── UCS_to_most.pl │ │ ├── big5_to_utf8.map │ │ ├── convutils.pm │ │ ├── euc-jis-2004-std.txt │ │ ├── euc_cn_to_utf8.map │ │ ├── euc_jis_2004_to_utf8.map │ │ ├── euc_jp_to_utf8.map │ │ ├── euc_kr_to_utf8.map │ │ ├── euc_tw_to_utf8.map │ │ ├── gb-18030-2000.xml │ │ ├── gb18030_to_utf8.map │ │ ├── gbk_to_utf8.map │ │ ├── iso8859_10_to_utf8.map │ │ ├── iso8859_13_to_utf8.map │ │ ├── iso8859_14_to_utf8.map │ │ ├── iso8859_15_to_utf8.map │ │ ├── iso8859_16_to_utf8.map │ │ ├── iso8859_2_to_utf8.map │ │ ├── iso8859_3_to_utf8.map │ │ ├── iso8859_4_to_utf8.map │ │ ├── iso8859_5_to_utf8.map │ │ ├── iso8859_6_to_utf8.map │ │ ├── iso8859_7_to_utf8.map │ │ ├── iso8859_8_to_utf8.map │ │ ├── iso8859_9_to_utf8.map │ │ ├── johab_to_utf8.map │ │ ├── koi8r_to_utf8.map │ │ ├── koi8u_to_utf8.map │ │ ├── shift_jis_2004_to_utf8.map │ │ ├── sjis-0213-2004-std.txt │ │ ├── sjis_to_utf8.map │ │ ├── uhc_to_utf8.map │ │ ├── utf8_to_big5.map │ │ ├── utf8_to_euc_cn.map │ │ ├── utf8_to_euc_jis_2004.map │ │ ├── utf8_to_euc_jp.map │ │ ├── utf8_to_euc_kr.map │ │ ├── utf8_to_euc_tw.map │ │ ├── utf8_to_gb18030.map │ │ ├── utf8_to_gbk.map │ │ ├── utf8_to_iso8859_10.map │ │ ├── utf8_to_iso8859_13.map │ │ ├── utf8_to_iso8859_14.map │ │ ├── utf8_to_iso8859_15.map │ │ ├── utf8_to_iso8859_16.map │ │ ├── utf8_to_iso8859_2.map │ │ ├── utf8_to_iso8859_3.map │ │ ├── utf8_to_iso8859_4.map │ │ ├── utf8_to_iso8859_5.map │ │ ├── utf8_to_iso8859_6.map │ │ ├── utf8_to_iso8859_7.map │ │ ├── utf8_to_iso8859_8.map │ │ ├── utf8_to_iso8859_9.map │ │ ├── utf8_to_johab.map │ │ ├── utf8_to_koi8r.map │ │ ├── utf8_to_koi8u.map │ │ ├── utf8_to_shift_jis_2004.map │ │ ├── utf8_to_sjis.map │ │ ├── utf8_to_uhc.map │ │ ├── utf8_to_win1250.map │ │ ├── utf8_to_win1251.map │ │ ├── utf8_to_win1252.map │ │ ├── utf8_to_win1253.map │ │ ├── utf8_to_win1254.map │ │ ├── utf8_to_win1255.map │ │ ├── utf8_to_win1256.map │ │ ├── utf8_to_win1257.map │ │ ├── utf8_to_win1258.map │ │ ├── utf8_to_win866.map │ │ ├── utf8_to_win874.map │ │ ├── win1250_to_utf8.map │ │ ├── win1251_to_utf8.map │ │ ├── win1252_to_utf8.map │ │ ├── win1253_to_utf8.map │ │ ├── win1254_to_utf8.map │ │ ├── win1255_to_utf8.map │ │ ├── win1256_to_utf8.map │ │ ├── win1257_to_utf8.map │ │ ├── win1258_to_utf8.map │ │ ├── win866_to_utf8.map │ │ └── win874_to_utf8.map │ ├── conv.c │ ├── conversion_procs │ │ ├── Makefile │ │ ├── README.euc_jp │ │ ├── cyrillic_and_mic │ │ │ ├── Makefile │ │ │ └── cyrillic_and_mic.c │ │ ├── euc2004_sjis2004 │ │ │ ├── Makefile │ │ │ └── euc2004_sjis2004.c │ │ ├── euc_cn_and_mic │ │ │ ├── Makefile │ │ │ └── euc_cn_and_mic.c │ │ ├── euc_jp_and_sjis │ │ │ ├── Makefile │ │ │ ├── euc_jp_and_sjis.c │ │ │ └── sjis.map │ │ ├── euc_kr_and_mic │ │ │ ├── Makefile │ │ │ └── euc_kr_and_mic.c │ │ ├── euc_tw_and_big5 │ │ │ ├── Makefile │ │ │ ├── big5.c │ │ │ └── euc_tw_and_big5.c │ │ ├── latin2_and_win1250 │ │ │ ├── Makefile │ │ │ └── latin2_and_win1250.c │ │ ├── latin_and_mic │ │ │ ├── Makefile │ │ │ └── latin_and_mic.c │ │ ├── meson.build │ │ ├── proc.mk │ │ ├── utf8_and_big5 │ │ │ ├── Makefile │ │ │ └── utf8_and_big5.c │ │ ├── utf8_and_cyrillic │ │ │ ├── Makefile │ │ │ └── utf8_and_cyrillic.c │ │ ├── utf8_and_euc2004 │ │ │ ├── Makefile │ │ │ └── utf8_and_euc2004.c │ │ ├── utf8_and_euc_cn │ │ │ ├── Makefile │ │ │ └── utf8_and_euc_cn.c │ │ ├── utf8_and_euc_jp │ │ │ ├── Makefile │ │ │ └── utf8_and_euc_jp.c │ │ ├── utf8_and_euc_kr │ │ │ ├── Makefile │ │ │ └── utf8_and_euc_kr.c │ │ ├── utf8_and_euc_tw │ │ │ ├── Makefile │ │ │ └── utf8_and_euc_tw.c │ │ ├── utf8_and_gb18030 │ │ │ ├── Makefile │ │ │ └── utf8_and_gb18030.c │ │ ├── utf8_and_gbk │ │ │ ├── Makefile │ │ │ └── utf8_and_gbk.c │ │ ├── utf8_and_iso8859 │ │ │ ├── Makefile │ │ │ └── utf8_and_iso8859.c │ │ ├── utf8_and_iso8859_1 │ │ │ ├── Makefile │ │ │ └── utf8_and_iso8859_1.c │ │ ├── utf8_and_johab │ │ │ ├── Makefile │ │ │ └── utf8_and_johab.c │ │ ├── utf8_and_sjis │ │ │ ├── Makefile │ │ │ └── utf8_and_sjis.c │ │ ├── utf8_and_sjis2004 │ │ │ ├── Makefile │ │ │ └── utf8_and_sjis2004.c │ │ ├── utf8_and_uhc │ │ │ ├── Makefile │ │ │ └── utf8_and_uhc.c │ │ └── utf8_and_win │ │ │ ├── Makefile │ │ │ └── utf8_and_win.c │ ├── iso.c │ ├── mbutils.c │ ├── meson.build │ ├── stringinfo_mb.c │ ├── win1251.c │ ├── win866.c │ ├── wstrcmp.c │ └── wstrncmp.c │ ├── meson.build │ ├── misc │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── conffiles.c │ ├── guc-file.l │ ├── guc.c │ ├── guc_funcs.c │ ├── guc_internal.h │ ├── guc_tables.c │ ├── help_config.c │ ├── injection_point.c │ ├── meson.build │ ├── pg_config.c │ ├── pg_controldata.c │ ├── pg_rusage.c │ ├── postgresql.conf.sample │ ├── ps_status.c │ ├── queryenvironment.c │ ├── rls.c │ ├── sampling.c │ ├── superuser.c │ ├── timeout.c │ └── tzparser.c │ ├── mmgr │ ├── Makefile │ ├── README │ ├── alignedalloc.c │ ├── aset.c │ ├── bump.c │ ├── dsa.c │ ├── freepage.c │ ├── generation.c │ ├── mcxt.c │ ├── memdebug.c │ ├── meson.build │ ├── portalmem.c │ └── slab.c │ ├── postprocess_dtrace.sed │ ├── probes.d │ ├── resowner │ ├── Makefile │ ├── README │ ├── meson.build │ └── resowner.c │ ├── sort │ ├── Makefile │ ├── logtape.c │ ├── meson.build │ ├── qsort_interruptible.c │ ├── sharedtuplestore.c │ ├── sortsupport.c │ ├── tuplesort.c │ ├── tuplesortvariants.c │ └── tuplestore.c │ └── time │ ├── Makefile │ ├── combocid.c │ ├── meson.build │ └── snapmgr.c ├── bin ├── Makefile ├── initdb │ ├── .gitignore │ ├── Makefile │ ├── findtimezone.c │ ├── initdb.c │ ├── meson.build │ ├── nls.mk │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ └── 001_initdb.pl ├── meson.build ├── pg_amcheck │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── meson.build │ ├── nls.mk │ ├── pg_amcheck.c │ ├── po │ │ ├── LINGUAS │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── ru.po │ │ ├── sv.po │ │ ├── uk.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ ├── 001_basic.pl │ │ ├── 002_nonesuch.pl │ │ ├── 003_check.pl │ │ ├── 004_verify_heapam.pl │ │ └── 005_opclass_damage.pl ├── pg_archivecleanup │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_archivecleanup.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ └── zh_CN.po │ └── t │ │ └── 010_pg_archivecleanup.pl ├── pg_basebackup │ ├── .gitignore │ ├── Makefile │ ├── bbstreamer.h │ ├── bbstreamer_file.c │ ├── bbstreamer_gzip.c │ ├── bbstreamer_inject.c │ ├── bbstreamer_lz4.c │ ├── bbstreamer_tar.c │ ├── bbstreamer_zstd.c │ ├── meson.build │ ├── nls.mk │ ├── pg_basebackup.c │ ├── pg_createsubscriber.c │ ├── pg_receivewal.c │ ├── pg_recvlogical.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ └── zh_CN.po │ ├── receivelog.c │ ├── receivelog.h │ ├── streamutil.c │ ├── streamutil.h │ ├── t │ │ ├── 010_pg_basebackup.pl │ │ ├── 011_in_place_tablespace.pl │ │ ├── 020_pg_receivewal.pl │ │ ├── 030_pg_recvlogical.pl │ │ └── 040_pg_createsubscriber.pl │ ├── walmethods.c │ └── walmethods.h ├── pg_checksums │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_checksums.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ ├── 001_basic.pl │ │ └── 002_actions.pl ├── pg_combinebackup │ ├── .gitignore │ ├── Makefile │ ├── backup_label.c │ ├── backup_label.h │ ├── copy_file.c │ ├── copy_file.h │ ├── load_manifest.c │ ├── load_manifest.h │ ├── meson.build │ ├── nls.mk │ ├── pg_combinebackup.c │ ├── po │ │ ├── LINGUAS │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── ru.po │ │ ├── sv.po │ │ └── uk.po │ ├── reconstruct.c │ ├── reconstruct.h │ ├── t │ │ ├── 001_basic.pl │ │ ├── 002_compare_backups.pl │ │ ├── 003_timeline.pl │ │ ├── 004_manifest.pl │ │ ├── 005_integrity.pl │ │ ├── 006_db_file_copy.pl │ │ ├── 007_wal_level_minimal.pl │ │ ├── 008_promote.pl │ │ └── 009_no_full_file.pl │ ├── write_manifest.c │ └── write_manifest.h ├── pg_config │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_config.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── nb.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── ta.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ └── 001_pg_config.pl ├── pg_controldata │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_controldata.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ └── 001_pg_controldata.pl ├── pg_ctl │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_ctl.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ ├── 001_start_stop.pl │ │ ├── 002_status.pl │ │ ├── 003_promote.pl │ │ └── 004_logrotate.pl ├── pg_dump │ ├── .gitignore │ ├── Makefile │ ├── common.c │ ├── compress_gzip.c │ ├── compress_gzip.h │ ├── compress_io.c │ ├── compress_io.h │ ├── compress_lz4.c │ ├── compress_lz4.h │ ├── compress_none.c │ ├── compress_none.h │ ├── compress_zstd.c │ ├── compress_zstd.h │ ├── dump_babel_utils.c │ ├── dump_babel_utils.h │ ├── dumpall_babel_utils.c │ ├── dumpall_babel_utils.h │ ├── dumputils.c │ ├── dumputils.h │ ├── filter.c │ ├── filter.h │ ├── meson.build │ ├── nls.mk │ ├── parallel.c │ ├── parallel.h │ ├── pg_backup.h │ ├── pg_backup_archiver.c │ ├── pg_backup_archiver.h │ ├── pg_backup_custom.c │ ├── pg_backup_db.c │ ├── pg_backup_db.h │ ├── pg_backup_directory.c │ ├── pg_backup_null.c │ ├── pg_backup_tar.c │ ├── pg_backup_tar.h │ ├── pg_backup_utils.c │ ├── pg_backup_utils.h │ ├── pg_dump.c │ ├── pg_dump.h │ ├── pg_dump_sort.c │ ├── pg_dumpall.c │ ├── pg_restore.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ ├── 001_basic.pl │ │ ├── 002_pg_dump.pl │ │ ├── 003_pg_dump_with_server.pl │ │ ├── 004_pg_dump_parallel.pl │ │ ├── 005_pg_dump_filterfile.pl │ │ └── 010_dump_connstr.pl ├── pg_resetwal │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_resetwal.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ └── zh_CN.po │ └── t │ │ ├── 001_basic.pl │ │ └── 002_corrupted.pl ├── pg_rewind │ ├── .gitignore │ ├── Makefile │ ├── datapagemap.c │ ├── datapagemap.h │ ├── file_ops.c │ ├── file_ops.h │ ├── filemap.c │ ├── filemap.h │ ├── libpq_source.c │ ├── local_source.c │ ├── meson.build │ ├── nls.mk │ ├── parsexlog.c │ ├── pg_rewind.c │ ├── pg_rewind.h │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── rewind_source.h │ ├── t │ │ ├── 001_basic.pl │ │ ├── 002_databases.pl │ │ ├── 003_extrafiles.pl │ │ ├── 004_pg_xlog_symlink.pl │ │ ├── 005_same_timeline.pl │ │ ├── 006_options.pl │ │ ├── 007_standby_source.pl │ │ ├── 008_min_recovery_point.pl │ │ ├── 009_growing_files.pl │ │ ├── 010_keep_recycled_wals.pl │ │ └── RewindTest.pm │ └── timeline.c ├── pg_test_fsync │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_test_fsync.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ └── 001_basic.pl ├── pg_test_timing │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_test_timing.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ └── 001_basic.pl ├── pg_upgrade │ ├── .gitignore │ ├── IMPLEMENTATION │ ├── Makefile │ ├── TESTING │ ├── check.c │ ├── controldata.c │ ├── dump.c │ ├── exec.c │ ├── file.c │ ├── function.c │ ├── info.c │ ├── meson.build │ ├── nls.mk │ ├── option.c │ ├── parallel.c │ ├── pg_upgrade.c │ ├── pg_upgrade.h │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ └── zh_CN.po │ ├── relfilenumber.c │ ├── server.c │ ├── t │ │ ├── 001_basic.pl │ │ ├── 002_pg_upgrade.pl │ │ ├── 003_logical_slots.pl │ │ └── 004_subscription.pl │ ├── tablespace.c │ ├── util.c │ └── version.c ├── pg_verifybackup │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_verifybackup.c │ ├── po │ │ ├── LINGUAS │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── ru.po │ │ ├── sv.po │ │ ├── uk.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── t │ │ ├── 001_basic.pl │ │ ├── 002_algorithm.pl │ │ ├── 003_corruption.pl │ │ ├── 004_options.pl │ │ ├── 005_bad_manifest.pl │ │ ├── 006_encoding.pl │ │ ├── 007_wal.pl │ │ ├── 008_untar.pl │ │ ├── 009_extract.pl │ │ └── 010_client_untar.pl ├── pg_waldump │ ├── .gitignore │ ├── Makefile │ ├── compat.c │ ├── meson.build │ ├── nls.mk │ ├── pg_waldump.c │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── rmgrdesc.c │ ├── rmgrdesc.h │ └── t │ │ ├── 001_basic.pl │ │ └── 002_save_fullpage.pl ├── pg_walsummary │ ├── .gitignore │ ├── Makefile │ ├── meson.build │ ├── nls.mk │ ├── pg_walsummary.c │ ├── po │ │ ├── LINGUAS │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── ru.po │ │ ├── sv.po │ │ └── uk.po │ └── t │ │ ├── 001_basic.pl │ │ └── 002_blocks.pl ├── pgbench │ ├── .gitignore │ ├── Makefile │ ├── exprparse.y │ ├── exprscan.l │ ├── meson.build │ ├── pgbench.c │ ├── pgbench.h │ └── t │ │ ├── 001_pgbench_with_server.pl │ │ └── 002_pgbench_no_server.pl ├── pgevent │ ├── MSG00001.bin │ ├── Makefile │ ├── README │ ├── exports.txt │ ├── meson.build │ ├── pgevent.c │ ├── pgevent.def │ ├── pgmsgevent.h │ ├── pgmsgevent.mc │ └── pgmsgevent.rc ├── psql │ ├── .gitignore │ ├── Makefile │ ├── command.c │ ├── command.h │ ├── common.c │ ├── common.h │ ├── copy.c │ ├── copy.h │ ├── create_help.pl │ ├── crosstabview.c │ ├── crosstabview.h │ ├── describe.c │ ├── describe.h │ ├── help.c │ ├── help.h │ ├── input.c │ ├── input.h │ ├── large_obj.c │ ├── large_obj.h │ ├── mainloop.c │ ├── mainloop.h │ ├── meson.build │ ├── nls.mk │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── prompt.c │ ├── prompt.h │ ├── psqlrc.sample │ ├── psqlscanslash.h │ ├── psqlscanslash.l │ ├── settings.h │ ├── startup.c │ ├── stringutils.c │ ├── stringutils.h │ ├── t │ │ ├── 001_basic.pl │ │ ├── 010_tab_completion.pl │ │ └── 020_cancel.pl │ ├── tab-complete.c │ ├── tab-complete.h │ ├── variables.c │ └── variables.h └── scripts │ ├── .gitignore │ ├── Makefile │ ├── clusterdb.c │ ├── common.c │ ├── common.h │ ├── createdb.c │ ├── createuser.c │ ├── dropdb.c │ ├── dropuser.c │ ├── meson.build │ ├── nls.mk │ ├── pg_isready.c │ ├── po │ ├── LINGUAS │ ├── cs.po │ ├── de.po │ ├── el.po │ ├── es.po │ ├── fr.po │ ├── he.po │ ├── it.po │ ├── ja.po │ ├── ka.po │ ├── ko.po │ ├── meson.build │ ├── pl.po │ ├── pt_BR.po │ ├── ru.po │ ├── sv.po │ ├── tr.po │ ├── uk.po │ └── zh_CN.po │ ├── reindexdb.c │ ├── t │ ├── 010_clusterdb.pl │ ├── 011_clusterdb_all.pl │ ├── 020_createdb.pl │ ├── 040_createuser.pl │ ├── 050_dropdb.pl │ ├── 070_dropuser.pl │ ├── 080_pg_isready.pl │ ├── 090_reindexdb.pl │ ├── 091_reindexdb_all.pl │ ├── 100_vacuumdb.pl │ ├── 101_vacuumdb_all.pl │ ├── 102_vacuumdb_stages.pl │ └── 200_connstr.pl │ └── vacuumdb.c ├── common ├── .gitignore ├── Makefile ├── archive.c ├── base64.c ├── binaryheap.c ├── blkreftable.c ├── checksum_helper.c ├── compression.c ├── config_info.c ├── controldata_utils.c ├── cryptohash.c ├── cryptohash_openssl.c ├── d2s.c ├── d2s_full_table.h ├── d2s_intrinsics.h ├── digit_table.h ├── encnames.c ├── exec.c ├── f2s.c ├── fe_memutils.c ├── file_perm.c ├── file_utils.c ├── hashfn.c ├── hmac.c ├── hmac_openssl.c ├── ip.c ├── jsonapi.c ├── keywords.c ├── kwlookup.c ├── link-canary.c ├── logging.c ├── md5.c ├── md5_common.c ├── md5_int.h ├── meson.build ├── parse_manifest.c ├── percentrepl.c ├── pg_get_line.c ├── pg_lzcompress.c ├── pg_prng.c ├── pgfnames.c ├── protocol_openssl.c ├── psprintf.c ├── relpath.c ├── restricted_token.c ├── rmtree.c ├── ryu_common.h ├── saslprep.c ├── scram-common.c ├── sha1.c ├── sha1_int.h ├── sha2.c ├── sha2_int.h ├── sprompt.c ├── string.c ├── stringinfo.c ├── unicode │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── case_test.c │ ├── category_test.c │ ├── generate-norm_test_table.pl │ ├── generate-unicode_case_table.pl │ ├── generate-unicode_category_table.pl │ ├── generate-unicode_east_asian_fw_table.pl │ ├── generate-unicode_nonspacing_table.pl │ ├── generate-unicode_norm_table.pl │ ├── generate-unicode_normprops_table.pl │ ├── generate-unicode_version.pl │ ├── meson.build │ └── norm_test.c ├── unicode_case.c ├── unicode_category.c ├── unicode_norm.c ├── username.c ├── wait_error.c └── wchar.c ├── fe_utils ├── .gitignore ├── Makefile ├── archive.c ├── cancel.c ├── conditional.c ├── connect_utils.c ├── mbprint.c ├── meson.build ├── option_utils.c ├── parallel_slot.c ├── print.c ├── psqlscan.l ├── query_utils.c ├── recovery_gen.c ├── simple_list.c └── string_utils.c ├── include ├── .gitignore ├── Makefile ├── access │ ├── amapi.h │ ├── amvalidate.h │ ├── attmap.h │ ├── attnum.h │ ├── brin.h │ ├── brin_internal.h │ ├── brin_page.h │ ├── brin_pageops.h │ ├── brin_revmap.h │ ├── brin_tuple.h │ ├── brin_xlog.h │ ├── bufmask.h │ ├── clog.h │ ├── commit_ts.h │ ├── detoast.h │ ├── genam.h │ ├── generic_xlog.h │ ├── gin.h │ ├── gin_private.h │ ├── ginblock.h │ ├── ginxlog.h │ ├── gist.h │ ├── gist_private.h │ ├── gistscan.h │ ├── gistxlog.h │ ├── hash.h │ ├── hash_xlog.h │ ├── heapam.h │ ├── heapam_xlog.h │ ├── heaptoast.h │ ├── hio.h │ ├── htup.h │ ├── htup_details.h │ ├── itup.h │ ├── multixact.h │ ├── nbtree.h │ ├── nbtxlog.h │ ├── parallel.h │ ├── printsimple.h │ ├── printtup.h │ ├── relation.h │ ├── reloptions.h │ ├── relscan.h │ ├── rewriteheap.h │ ├── rmgr.h │ ├── rmgrdesc_utils.h │ ├── rmgrlist.h │ ├── sdir.h │ ├── sequence.h │ ├── session.h │ ├── skey.h │ ├── slru.h │ ├── spgist.h │ ├── spgist_private.h │ ├── spgxlog.h │ ├── stratnum.h │ ├── subtrans.h │ ├── syncscan.h │ ├── sysattr.h │ ├── table.h │ ├── tableam.h │ ├── tidstore.h │ ├── timeline.h │ ├── toast_compression.h │ ├── toast_helper.h │ ├── toast_internals.h │ ├── transam.h │ ├── tsmapi.h │ ├── tupconvert.h │ ├── tupdesc.h │ ├── tupdesc_details.h │ ├── tupmacs.h │ ├── twophase.h │ ├── twophase_rmgr.h │ ├── valid.h │ ├── visibilitymap.h │ ├── visibilitymapdefs.h │ ├── xact.h │ ├── xlog.h │ ├── xlog_internal.h │ ├── xlogarchive.h │ ├── xlogbackup.h │ ├── xlogdefs.h │ ├── xloginsert.h │ ├── xlogprefetcher.h │ ├── xlogreader.h │ ├── xlogrecord.h │ ├── xlogrecovery.h │ ├── xlogstats.h │ └── xlogutils.h ├── archive │ ├── archive_module.h │ └── shell_archive.h ├── backup │ ├── backup_manifest.h │ ├── basebackup.h │ ├── basebackup_incremental.h │ ├── basebackup_sink.h │ ├── basebackup_target.h │ └── walsummary.h ├── bootstrap │ └── bootstrap.h ├── c.h ├── catalog │ ├── .gitignore │ ├── Makefile │ ├── binary_upgrade.h │ ├── catalog.h │ ├── catversion.h │ ├── dependency.h │ ├── duplicate_oids │ ├── genbki.h │ ├── heap.h │ ├── index.h │ ├── indexing.h │ ├── meson.build │ ├── namespace.h │ ├── objectaccess.h │ ├── objectaddress.h │ ├── partition.h │ ├── pg_aggregate.dat │ ├── pg_aggregate.h │ ├── pg_am.dat │ ├── pg_am.h │ ├── pg_amop.dat │ ├── pg_amop.h │ ├── pg_amproc.dat │ ├── pg_amproc.h │ ├── pg_attrdef.h │ ├── pg_attribute.h │ ├── pg_auth_members.h │ ├── pg_authid.dat │ ├── pg_authid.h │ ├── pg_cast.dat │ ├── pg_cast.h │ ├── pg_class.dat │ ├── pg_class.h │ ├── pg_collation.dat │ ├── pg_collation.h │ ├── pg_constraint.h │ ├── pg_control.h │ ├── pg_conversion.dat │ ├── pg_conversion.h │ ├── pg_database.dat │ ├── pg_database.h │ ├── pg_db_role_setting.h │ ├── pg_default_acl.h │ ├── pg_depend.h │ ├── pg_description.h │ ├── pg_enum.h │ ├── pg_event_trigger.h │ ├── pg_extension.h │ ├── pg_foreign_data_wrapper.h │ ├── pg_foreign_server.h │ ├── pg_foreign_table.h │ ├── pg_index.h │ ├── pg_inherits.h │ ├── pg_init_privs.h │ ├── pg_language.dat │ ├── pg_language.h │ ├── pg_largeobject.h │ ├── pg_largeobject_metadata.h │ ├── pg_namespace.dat │ ├── pg_namespace.h │ ├── pg_opclass.dat │ ├── pg_opclass.h │ ├── pg_operator.dat │ ├── pg_operator.h │ ├── pg_opfamily.dat │ ├── pg_opfamily.h │ ├── pg_parameter_acl.h │ ├── pg_partitioned_table.h │ ├── pg_policy.h │ ├── pg_proc.dat │ ├── pg_proc.h │ ├── pg_publication.h │ ├── pg_publication_namespace.h │ ├── pg_publication_rel.h │ ├── pg_range.dat │ ├── pg_range.h │ ├── pg_replication_origin.h │ ├── pg_rewrite.h │ ├── pg_seclabel.h │ ├── pg_sequence.h │ ├── pg_shdepend.h │ ├── pg_shdescription.h │ ├── pg_shseclabel.h │ ├── pg_statistic.h │ ├── pg_statistic_ext.h │ ├── pg_statistic_ext_data.h │ ├── pg_subscription.h │ ├── pg_subscription_rel.h │ ├── pg_tablespace.dat │ ├── pg_tablespace.h │ ├── pg_transform.h │ ├── pg_trigger.h │ ├── pg_ts_config.dat │ ├── pg_ts_config.h │ ├── pg_ts_config_map.dat │ ├── pg_ts_config_map.h │ ├── pg_ts_dict.dat │ ├── pg_ts_dict.h │ ├── pg_ts_parser.dat │ ├── pg_ts_parser.h │ ├── pg_ts_template.dat │ ├── pg_ts_template.h │ ├── pg_type.dat │ ├── pg_type.h │ ├── pg_user_mapping.h │ ├── reformat_dat_file.pl │ ├── renumber_oids.pl │ ├── storage.h │ ├── storage_xlog.h │ ├── toasting.h │ └── unused_oids ├── commands │ ├── alter.h │ ├── async.h │ ├── cluster.h │ ├── collationcmds.h │ ├── comment.h │ ├── conversioncmds.h │ ├── copy.h │ ├── copyfrom_internal.h │ ├── createas.h │ ├── dbcommands.h │ ├── dbcommands_xlog.h │ ├── defrem.h │ ├── discard.h │ ├── event_trigger.h │ ├── explain.h │ ├── extension.h │ ├── lockcmds.h │ ├── matview.h │ ├── policy.h │ ├── portalcmds.h │ ├── prepare.h │ ├── proclang.h │ ├── progress.h │ ├── publicationcmds.h │ ├── schemacmds.h │ ├── seclabel.h │ ├── sequence.h │ ├── subscriptioncmds.h │ ├── tablecmds.h │ ├── tablespace.h │ ├── trigger.h │ ├── typecmds.h │ ├── user.h │ ├── vacuum.h │ └── view.h ├── common │ ├── archive.h │ ├── base64.h │ ├── blkreftable.h │ ├── checksum_helper.h │ ├── compression.h │ ├── config_info.h │ ├── connect.h │ ├── controldata_utils.h │ ├── cryptohash.h │ ├── fe_memutils.h │ ├── file_perm.h │ ├── file_utils.h │ ├── hashfn.h │ ├── hashfn_unstable.h │ ├── hmac.h │ ├── int.h │ ├── int128.h │ ├── ip.h │ ├── jsonapi.h │ ├── keywords.h │ ├── kwlookup.h │ ├── link-canary.h │ ├── logging.h │ ├── md5.h │ ├── openssl.h │ ├── parse_manifest.h │ ├── percentrepl.h │ ├── pg_lzcompress.h │ ├── pg_prng.h │ ├── relpath.h │ ├── restricted_token.h │ ├── saslprep.h │ ├── scram-common.h │ ├── sha1.h │ ├── sha2.h │ ├── shortest_dec.h │ ├── string.h │ ├── unicode_case.h │ ├── unicode_case_table.h │ ├── unicode_category.h │ ├── unicode_category_table.h │ ├── unicode_east_asian_fw_table.h │ ├── unicode_nonspacing_table.h │ ├── unicode_norm.h │ ├── unicode_norm_hashfunc.h │ ├── unicode_norm_table.h │ ├── unicode_normprops_table.h │ ├── unicode_version.h │ └── username.h ├── datatype │ └── timestamp.h ├── executor │ ├── execAsync.h │ ├── execExpr.h │ ├── execParallel.h │ ├── execPartition.h │ ├── execdebug.h │ ├── execdesc.h │ ├── executor.h │ ├── functions.h │ ├── hashjoin.h │ ├── instrument.h │ ├── nodeAgg.h │ ├── nodeAppend.h │ ├── nodeBitmapAnd.h │ ├── nodeBitmapHeapscan.h │ ├── nodeBitmapIndexscan.h │ ├── nodeBitmapOr.h │ ├── nodeCtescan.h │ ├── nodeCustom.h │ ├── nodeForeignscan.h │ ├── nodeFunctionscan.h │ ├── nodeGather.h │ ├── nodeGatherMerge.h │ ├── nodeGroup.h │ ├── nodeHash.h │ ├── nodeHashjoin.h │ ├── nodeIncrementalSort.h │ ├── nodeIndexonlyscan.h │ ├── nodeIndexscan.h │ ├── nodeLimit.h │ ├── nodeLockRows.h │ ├── nodeMaterial.h │ ├── nodeMemoize.h │ ├── nodeMergeAppend.h │ ├── nodeMergejoin.h │ ├── nodeModifyTable.h │ ├── nodeNamedtuplestorescan.h │ ├── nodeNestloop.h │ ├── nodeProjectSet.h │ ├── nodeRecursiveunion.h │ ├── nodeResult.h │ ├── nodeSamplescan.h │ ├── nodeSeqscan.h │ ├── nodeSetOp.h │ ├── nodeSort.h │ ├── nodeSubplan.h │ ├── nodeSubqueryscan.h │ ├── nodeTableFuncscan.h │ ├── nodeTidrangescan.h │ ├── nodeTidscan.h │ ├── nodeUnique.h │ ├── nodeValuesscan.h │ ├── nodeWindowAgg.h │ ├── nodeWorktablescan.h │ ├── spi.h │ ├── spi_priv.h │ ├── tablefunc.h │ ├── tqueue.h │ ├── tstoreReceiver.h │ └── tuptable.h ├── fe_utils │ ├── archive.h │ ├── cancel.h │ ├── conditional.h │ ├── connect_utils.h │ ├── mbprint.h │ ├── option_utils.h │ ├── parallel_slot.h │ ├── print.h │ ├── psqlscan.h │ ├── psqlscan_int.h │ ├── query_utils.h │ ├── recovery_gen.h │ ├── simple_list.h │ └── string_utils.h ├── fmgr.h ├── foreign │ ├── fdwapi.h │ └── foreign.h ├── funcapi.h ├── getopt_long.h ├── jit │ ├── SectionMemoryManager.h │ ├── jit.h │ ├── llvmjit.h │ ├── llvmjit_backport.h │ └── llvmjit_emit.h ├── lib │ ├── binaryheap.h │ ├── bipartite_match.h │ ├── bloomfilter.h │ ├── dshash.h │ ├── hyperloglog.h │ ├── ilist.h │ ├── integerset.h │ ├── knapsack.h │ ├── pairingheap.h │ ├── qunique.h │ ├── radixtree.h │ ├── rbtree.h │ ├── simplehash.h │ ├── sort_template.h │ └── stringinfo.h ├── libpq │ ├── auth.h │ ├── be-fsstubs.h │ ├── be-gssapi-common.h │ ├── crypt.h │ ├── hba.h │ ├── ifaddr.h │ ├── libpq-be-fe-helpers.h │ ├── libpq-be.h │ ├── libpq-fs.h │ ├── libpq.h │ ├── pqcomm.h │ ├── pqformat.h │ ├── pqmq.h │ ├── pqsignal.h │ ├── protocol.h │ ├── sasl.h │ └── scram.h ├── mb │ ├── pg_wchar.h │ └── stringinfo_mb.h ├── meson.build ├── miscadmin.h ├── nodes │ ├── .gitignore │ ├── bitmapset.h │ ├── execnodes.h │ ├── extensible.h │ ├── lockoptions.h │ ├── makefuncs.h │ ├── memnodes.h │ ├── meson.build │ ├── miscnodes.h │ ├── multibitmapset.h │ ├── nodeFuncs.h │ ├── nodes.h │ ├── params.h │ ├── parsenodes.h │ ├── pathnodes.h │ ├── pg_list.h │ ├── plannodes.h │ ├── primnodes.h │ ├── print.h │ ├── queryjumble.h │ ├── readfuncs.h │ ├── replnodes.h │ ├── subscripting.h │ ├── supportnodes.h │ ├── tidbitmap.h │ └── value.h ├── optimizer │ ├── appendinfo.h │ ├── clauses.h │ ├── cost.h │ ├── geqo.h │ ├── geqo_copy.h │ ├── geqo_gene.h │ ├── geqo_misc.h │ ├── geqo_mutation.h │ ├── geqo_pool.h │ ├── geqo_random.h │ ├── geqo_recombination.h │ ├── geqo_selection.h │ ├── inherit.h │ ├── joininfo.h │ ├── optimizer.h │ ├── orclauses.h │ ├── paramassign.h │ ├── pathnode.h │ ├── paths.h │ ├── placeholder.h │ ├── plancat.h │ ├── planmain.h │ ├── planner.h │ ├── prep.h │ ├── restrictinfo.h │ ├── subselect.h │ └── tlist.h ├── parser │ ├── analyze.h │ ├── kwlist.h │ ├── parse_agg.h │ ├── parse_clause.h │ ├── parse_coerce.h │ ├── parse_collate.h │ ├── parse_cte.h │ ├── parse_enr.h │ ├── parse_expr.h │ ├── parse_func.h │ ├── parse_merge.h │ ├── parse_node.h │ ├── parse_oper.h │ ├── parse_param.h │ ├── parse_relation.h │ ├── parse_target.h │ ├── parse_type.h │ ├── parse_utilcmd.h │ ├── parser.h │ ├── parsetree.h │ ├── scanner.h │ └── scansup.h ├── partitioning │ ├── partbounds.h │ ├── partdefs.h │ ├── partdesc.h │ └── partprune.h ├── pch │ ├── c_pch.h │ ├── meson.build │ ├── postgres_fe_pch.h │ └── postgres_pch.h ├── pg_config.h.in ├── pg_config_ext.h.in ├── pg_config_ext.h.meson ├── pg_config_manual.h ├── pg_getopt.h ├── pg_trace.h ├── pgstat.h ├── pgtar.h ├── pgtime.h ├── port.h ├── port │ ├── atomics.h │ ├── atomics │ │ ├── arch-arm.h │ │ ├── arch-hppa.h │ │ ├── arch-ppc.h │ │ ├── arch-x86.h │ │ ├── fallback.h │ │ ├── generic-gcc.h │ │ ├── generic-msvc.h │ │ ├── generic-sunpro.h │ │ └── generic.h │ ├── cygwin.h │ ├── darwin.h │ ├── freebsd.h │ ├── linux.h │ ├── netbsd.h │ ├── openbsd.h │ ├── pg_bitutils.h │ ├── pg_bswap.h │ ├── pg_crc32c.h │ ├── pg_iovec.h │ ├── pg_lfind.h │ ├── pg_pthread.h │ ├── simd.h │ ├── solaris.h │ ├── win32.h │ ├── win32 │ │ ├── arpa │ │ │ └── inet.h │ │ ├── dlfcn.h │ │ ├── grp.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── in.h │ │ │ └── tcp.h │ │ ├── pwd.h │ │ └── sys │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── socket.h │ │ │ ├── un.h │ │ │ └── wait.h │ ├── win32_msvc │ │ ├── dirent.h │ │ ├── sys │ │ │ ├── file.h │ │ │ ├── param.h │ │ │ └── time.h │ │ ├── unistd.h │ │ └── utime.h │ ├── win32_port.h │ └── win32ntdll.h ├── portability │ ├── instr_time.h │ └── mem.h ├── postgres.h ├── postgres_ext.h ├── postgres_fe.h ├── postmaster │ ├── autovacuum.h │ ├── auxprocess.h │ ├── bgworker.h │ ├── bgworker_internals.h │ ├── bgwriter.h │ ├── fork_process.h │ ├── interrupt.h │ ├── pgarch.h │ ├── postmaster.h │ ├── protocol_extension.h │ ├── startup.h │ ├── syslogger.h │ ├── walsummarizer.h │ └── walwriter.h ├── regex │ ├── regcustom.h │ ├── regerrs.h │ ├── regex.h │ ├── regexport.h │ └── regguts.h ├── replication │ ├── decode.h │ ├── logical.h │ ├── logicallauncher.h │ ├── logicalproto.h │ ├── logicalrelation.h │ ├── logicalworker.h │ ├── message.h │ ├── origin.h │ ├── output_plugin.h │ ├── pgoutput.h │ ├── reorderbuffer.h │ ├── slot.h │ ├── slotsync.h │ ├── snapbuild.h │ ├── syncrep.h │ ├── walreceiver.h │ ├── walsender.h │ ├── walsender_private.h │ └── worker_internal.h ├── rewrite │ ├── prs2lock.h │ ├── rewriteDefine.h │ ├── rewriteHandler.h │ ├── rewriteManip.h │ ├── rewriteRemove.h │ ├── rewriteSearchCycle.h │ ├── rewriteSupport.h │ └── rowsecurity.h ├── snowball │ ├── header.h │ └── libstemmer │ │ ├── api.h │ │ ├── header.h │ │ ├── stem_ISO_8859_1_basque.h │ │ ├── stem_ISO_8859_1_catalan.h │ │ ├── stem_ISO_8859_1_danish.h │ │ ├── stem_ISO_8859_1_dutch.h │ │ ├── stem_ISO_8859_1_english.h │ │ ├── stem_ISO_8859_1_finnish.h │ │ ├── stem_ISO_8859_1_french.h │ │ ├── stem_ISO_8859_1_german.h │ │ ├── stem_ISO_8859_1_indonesian.h │ │ ├── stem_ISO_8859_1_irish.h │ │ ├── stem_ISO_8859_1_italian.h │ │ ├── stem_ISO_8859_1_norwegian.h │ │ ├── stem_ISO_8859_1_porter.h │ │ ├── stem_ISO_8859_1_portuguese.h │ │ ├── stem_ISO_8859_1_spanish.h │ │ ├── stem_ISO_8859_1_swedish.h │ │ ├── stem_ISO_8859_2_hungarian.h │ │ ├── stem_ISO_8859_2_romanian.h │ │ ├── stem_KOI8_R_russian.h │ │ ├── stem_UTF_8_arabic.h │ │ ├── stem_UTF_8_armenian.h │ │ ├── stem_UTF_8_basque.h │ │ ├── stem_UTF_8_catalan.h │ │ ├── stem_UTF_8_danish.h │ │ ├── stem_UTF_8_dutch.h │ │ ├── stem_UTF_8_english.h │ │ ├── stem_UTF_8_finnish.h │ │ ├── stem_UTF_8_french.h │ │ ├── stem_UTF_8_german.h │ │ ├── stem_UTF_8_greek.h │ │ ├── stem_UTF_8_hindi.h │ │ ├── stem_UTF_8_hungarian.h │ │ ├── stem_UTF_8_indonesian.h │ │ ├── stem_UTF_8_irish.h │ │ ├── stem_UTF_8_italian.h │ │ ├── stem_UTF_8_lithuanian.h │ │ ├── stem_UTF_8_nepali.h │ │ ├── stem_UTF_8_norwegian.h │ │ ├── stem_UTF_8_porter.h │ │ ├── stem_UTF_8_portuguese.h │ │ ├── stem_UTF_8_romanian.h │ │ ├── stem_UTF_8_russian.h │ │ ├── stem_UTF_8_serbian.h │ │ ├── stem_UTF_8_spanish.h │ │ ├── stem_UTF_8_swedish.h │ │ ├── stem_UTF_8_tamil.h │ │ ├── stem_UTF_8_turkish.h │ │ └── stem_UTF_8_yiddish.h ├── statistics │ ├── extended_stats_internal.h │ └── statistics.h ├── storage │ ├── .gitignore │ ├── barrier.h │ ├── block.h │ ├── buf.h │ ├── buf_internals.h │ ├── buffile.h │ ├── bufmgr.h │ ├── bufpage.h │ ├── bulk_write.h │ ├── checksum.h │ ├── checksum_impl.h │ ├── condition_variable.h │ ├── copydir.h │ ├── dsm.h │ ├── dsm_impl.h │ ├── dsm_registry.h │ ├── fd.h │ ├── fileset.h │ ├── freespace.h │ ├── fsm_internals.h │ ├── indexfsm.h │ ├── ipc.h │ ├── item.h │ ├── itemid.h │ ├── itemptr.h │ ├── large_object.h │ ├── latch.h │ ├── lmgr.h │ ├── lock.h │ ├── lockdefs.h │ ├── lwlock.h │ ├── lwlocklist.h │ ├── md.h │ ├── meson.build │ ├── off.h │ ├── pg_sema.h │ ├── pg_shmem.h │ ├── pmsignal.h │ ├── predicate.h │ ├── predicate_internals.h │ ├── proc.h │ ├── procarray.h │ ├── proclist.h │ ├── proclist_types.h │ ├── procnumber.h │ ├── procsignal.h │ ├── read_stream.h │ ├── reinit.h │ ├── relfilelocator.h │ ├── s_lock.h │ ├── sharedfileset.h │ ├── shm_mq.h │ ├── shm_toc.h │ ├── shmem.h │ ├── sinval.h │ ├── sinvaladt.h │ ├── smgr.h │ ├── spin.h │ ├── standby.h │ ├── standbydefs.h │ └── sync.h ├── tcop │ ├── backend_startup.h │ ├── cmdtag.h │ ├── cmdtaglist.h │ ├── deparse_utility.h │ ├── dest.h │ ├── fastpath.h │ ├── pquery.h │ ├── tcopprot.h │ └── utility.h ├── tsearch │ ├── dicts │ │ ├── regis.h │ │ └── spell.h │ ├── ts_cache.h │ ├── ts_locale.h │ ├── ts_public.h │ ├── ts_type.h │ └── ts_utils.h ├── utils │ ├── .gitignore │ ├── acl.h │ ├── aclchk_internal.h │ ├── array.h │ ├── arrayaccess.h │ ├── ascii.h │ ├── attoptcache.h │ ├── backend_progress.h │ ├── backend_status.h │ ├── builtins.h │ ├── bytea.h │ ├── cash.h │ ├── catcache.h │ ├── combocid.h │ ├── conffiles.h │ ├── date.h │ ├── datetime.h │ ├── datum.h │ ├── dsa.h │ ├── dynahash.h │ ├── elog.h │ ├── evtcache.h │ ├── expandeddatum.h │ ├── expandedrecord.h │ ├── float.h │ ├── fmgrtab.h │ ├── formatting.h │ ├── freepage.h │ ├── geo_decls.h │ ├── guc.h │ ├── guc_hooks.h │ ├── guc_tables.h │ ├── help_config.h │ ├── hsearch.h │ ├── index_selfuncs.h │ ├── inet.h │ ├── injection_point.h │ ├── inval.h │ ├── json.h │ ├── jsonb.h │ ├── jsonfuncs.h │ ├── jsonpath.h │ ├── logtape.h │ ├── lsyscache.h │ ├── memdebug.h │ ├── memutils.h │ ├── memutils_internal.h │ ├── memutils_memorychunk.h │ ├── meson.build │ ├── multirangetypes.h │ ├── numeric.h │ ├── palloc.h │ ├── partcache.h │ ├── pg_crc.h │ ├── pg_locale.h │ ├── pg_lsn.h │ ├── pg_rusage.h │ ├── pgstat_internal.h │ ├── pidfile.h │ ├── plancache.h │ ├── portal.h │ ├── ps_status.h │ ├── queryenvironment.h │ ├── rangetypes.h │ ├── regproc.h │ ├── rel.h │ ├── relcache.h │ ├── relfilenumbermap.h │ ├── relmapper.h │ ├── relptr.h │ ├── reltrigger.h │ ├── resowner.h │ ├── rls.h │ ├── ruleutils.h │ ├── sampling.h │ ├── selfuncs.h │ ├── sharedtuplestore.h │ ├── snapmgr.h │ ├── snapshot.h │ ├── sortsupport.h │ ├── spccache.h │ ├── syscache.h │ ├── timeout.h │ ├── timestamp.h │ ├── tuplesort.h │ ├── tuplestore.h │ ├── typcache.h │ ├── tzparser.h │ ├── usercontext.h │ ├── uuid.h │ ├── varbit.h │ ├── varlena.h │ ├── wait_event.h │ ├── xid8.h │ └── xml.h ├── varatt.h └── windowapi.h ├── interfaces ├── Makefile ├── ecpg │ ├── Makefile │ ├── README.dynSQL │ ├── compatlib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── exports.txt │ │ ├── informix.c │ │ └── meson.build │ ├── ecpglib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── connect.c │ │ ├── data.c │ │ ├── descriptor.c │ │ ├── ecpglib_extern.h │ │ ├── error.c │ │ ├── execute.c │ │ ├── exports.txt │ │ ├── memory.c │ │ ├── meson.build │ │ ├── misc.c │ │ ├── nls.mk │ │ ├── po │ │ │ ├── LINGUAS │ │ │ ├── cs.po │ │ │ ├── de.po │ │ │ ├── el.po │ │ │ ├── es.po │ │ │ ├── fr.po │ │ │ ├── it.po │ │ │ ├── ja.po │ │ │ ├── ka.po │ │ │ ├── ko.po │ │ │ ├── meson.build │ │ │ ├── pl.po │ │ │ ├── pt_BR.po │ │ │ ├── ru.po │ │ │ ├── sv.po │ │ │ ├── tr.po │ │ │ ├── uk.po │ │ │ ├── vi.po │ │ │ ├── zh_CN.po │ │ │ └── zh_TW.po │ │ ├── prepare.c │ │ ├── sqlda.c │ │ └── typename.c │ ├── include │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── datetime.h │ │ ├── decimal.h │ │ ├── ecpg-pthread-win32.h │ │ ├── ecpg_config.h.in │ │ ├── ecpg_informix.h │ │ ├── ecpgerrno.h │ │ ├── ecpglib.h │ │ ├── ecpgtype.h │ │ ├── meson.build │ │ ├── pgtypes.h │ │ ├── pgtypes_date.h │ │ ├── pgtypes_error.h │ │ ├── pgtypes_interval.h │ │ ├── pgtypes_numeric.h │ │ ├── pgtypes_timestamp.h │ │ ├── sql3types.h │ │ ├── sqlca.h │ │ ├── sqlda-compat.h │ │ ├── sqlda-native.h │ │ ├── sqlda.h │ │ └── sqltypes.h │ ├── meson.build │ ├── pgtypeslib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── common.c │ │ ├── datetime.c │ │ ├── dt.h │ │ ├── dt_common.c │ │ ├── exports.txt │ │ ├── interval.c │ │ ├── meson.build │ │ ├── numeric.c │ │ ├── pgtypeslib_extern.h │ │ └── timestamp.c │ ├── preproc │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.parser │ │ ├── c_keywords.c │ │ ├── c_kwlist.h │ │ ├── check_rules.pl │ │ ├── descriptor.c │ │ ├── ecpg.addons │ │ ├── ecpg.c │ │ ├── ecpg.header │ │ ├── ecpg.tokens │ │ ├── ecpg.trailer │ │ ├── ecpg.type │ │ ├── ecpg_keywords.c │ │ ├── ecpg_kwlist.h │ │ ├── keywords.c │ │ ├── meson.build │ │ ├── nls.mk │ │ ├── output.c │ │ ├── parse.pl │ │ ├── parser.c │ │ ├── pgc.l │ │ ├── po │ │ │ ├── LINGUAS │ │ │ ├── cs.po │ │ │ ├── de.po │ │ │ ├── el.po │ │ │ ├── es.po │ │ │ ├── fr.po │ │ │ ├── it.po │ │ │ ├── ja.po │ │ │ ├── ka.po │ │ │ ├── ko.po │ │ │ ├── meson.build │ │ │ ├── pl.po │ │ │ ├── pt_BR.po │ │ │ ├── ru.po │ │ │ ├── sv.po │ │ │ ├── tr.po │ │ │ ├── uk.po │ │ │ ├── vi.po │ │ │ ├── zh_CN.po │ │ │ └── zh_TW.po │ │ ├── preproc_extern.h │ │ ├── type.c │ │ ├── type.h │ │ └── variable.c │ └── test │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Makefile.regress │ │ ├── compat_informix │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── charfuncs.pgc │ │ ├── dec_test.pgc │ │ ├── describe.pgc │ │ ├── intoasc.pgc │ │ ├── meson.build │ │ ├── rfmtdate.pgc │ │ ├── rfmtlong.pgc │ │ ├── rnull.pgc │ │ ├── sqlda.pgc │ │ ├── test_informix.pgc │ │ └── test_informix2.pgc │ │ ├── compat_oracle │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── char_array.pgc │ │ └── meson.build │ │ ├── connect │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── meson.build │ │ ├── test1.pgc │ │ ├── test2.pgc │ │ ├── test3.pgc │ │ ├── test4.pgc │ │ └── test5.pgc │ │ ├── ecpg_schedule │ │ ├── expected │ │ ├── compat_informix-charfuncs.c │ │ ├── compat_informix-charfuncs.stderr │ │ ├── compat_informix-charfuncs.stdout │ │ ├── compat_informix-dec_test.c │ │ ├── compat_informix-dec_test.stderr │ │ ├── compat_informix-dec_test.stdout │ │ ├── compat_informix-describe.c │ │ ├── compat_informix-describe.stderr │ │ ├── compat_informix-describe.stdout │ │ ├── compat_informix-intoasc.c │ │ ├── compat_informix-intoasc.stderr │ │ ├── compat_informix-intoasc.stdout │ │ ├── compat_informix-rfmtdate.c │ │ ├── compat_informix-rfmtdate.stderr │ │ ├── compat_informix-rfmtdate.stdout │ │ ├── compat_informix-rfmtlong.c │ │ ├── compat_informix-rfmtlong.stderr │ │ ├── compat_informix-rfmtlong.stdout │ │ ├── compat_informix-rnull.c │ │ ├── compat_informix-rnull.stderr │ │ ├── compat_informix-rnull.stdout │ │ ├── compat_informix-sqlda.c │ │ ├── compat_informix-sqlda.stderr │ │ ├── compat_informix-sqlda.stdout │ │ ├── compat_informix-test_informix.c │ │ ├── compat_informix-test_informix.stderr │ │ ├── compat_informix-test_informix.stdout │ │ ├── compat_informix-test_informix2.c │ │ ├── compat_informix-test_informix2.stderr │ │ ├── compat_informix-test_informix2.stdout │ │ ├── compat_oracle-char_array.c │ │ ├── compat_oracle-char_array.stderr │ │ ├── compat_oracle-char_array.stdout │ │ ├── connect-test1-minGW32.stderr │ │ ├── connect-test1.c │ │ ├── connect-test1.stderr │ │ ├── connect-test1.stdout │ │ ├── connect-test2.c │ │ ├── connect-test2.stderr │ │ ├── connect-test2.stdout │ │ ├── connect-test3.c │ │ ├── connect-test3.stderr │ │ ├── connect-test3.stdout │ │ ├── connect-test4.c │ │ ├── connect-test4.stderr │ │ ├── connect-test4.stdout │ │ ├── connect-test5.c │ │ ├── connect-test5.stderr │ │ ├── connect-test5.stdout │ │ ├── pgtypeslib-dt_test.c │ │ ├── pgtypeslib-dt_test.stderr │ │ ├── pgtypeslib-dt_test.stdout │ │ ├── pgtypeslib-dt_test2.c │ │ ├── pgtypeslib-dt_test2.stderr │ │ ├── pgtypeslib-dt_test2.stdout │ │ ├── pgtypeslib-nan_test.c │ │ ├── pgtypeslib-nan_test.stderr │ │ ├── pgtypeslib-nan_test.stdout │ │ ├── pgtypeslib-num_test.c │ │ ├── pgtypeslib-num_test.stderr │ │ ├── pgtypeslib-num_test.stdout │ │ ├── pgtypeslib-num_test2.c │ │ ├── pgtypeslib-num_test2.stderr │ │ ├── pgtypeslib-num_test2.stdout │ │ ├── preproc-array_of_struct.c │ │ ├── preproc-array_of_struct.stderr │ │ ├── preproc-array_of_struct.stdout │ │ ├── preproc-autoprep.c │ │ ├── preproc-autoprep.stderr │ │ ├── preproc-autoprep.stdout │ │ ├── preproc-comment.c │ │ ├── preproc-comment.stderr │ │ ├── preproc-comment.stdout │ │ ├── preproc-cursor.c │ │ ├── preproc-cursor.stderr │ │ ├── preproc-cursor.stdout │ │ ├── preproc-define.c │ │ ├── preproc-define.stderr │ │ ├── preproc-define.stdout │ │ ├── preproc-describe.c │ │ ├── preproc-describe.stderr │ │ ├── preproc-describe.stdout │ │ ├── preproc-init.c │ │ ├── preproc-init.stderr │ │ ├── preproc-init.stdout │ │ ├── preproc-outofscope.c │ │ ├── preproc-outofscope.stderr │ │ ├── preproc-outofscope.stdout │ │ ├── preproc-pointer_to_struct.c │ │ ├── preproc-pointer_to_struct.stderr │ │ ├── preproc-pointer_to_struct.stdout │ │ ├── preproc-strings.c │ │ ├── preproc-strings.stderr │ │ ├── preproc-strings.stdout │ │ ├── preproc-type.c │ │ ├── preproc-type.stderr │ │ ├── preproc-type.stdout │ │ ├── preproc-variable.c │ │ ├── preproc-variable.stderr │ │ ├── preproc-variable.stdout │ │ ├── preproc-whenever.c │ │ ├── preproc-whenever.stderr │ │ ├── preproc-whenever.stdout │ │ ├── preproc-whenever_do_continue.c │ │ ├── preproc-whenever_do_continue.stderr │ │ ├── preproc-whenever_do_continue.stdout │ │ ├── sql-array.c │ │ ├── sql-array.stderr │ │ ├── sql-array.stdout │ │ ├── sql-binary.c │ │ ├── sql-binary.stderr │ │ ├── sql-binary.stdout │ │ ├── sql-bytea.c │ │ ├── sql-bytea.stderr │ │ ├── sql-bytea.stdout │ │ ├── sql-code100.c │ │ ├── sql-code100.stderr │ │ ├── sql-code100.stdout │ │ ├── sql-copystdout.c │ │ ├── sql-copystdout.stderr │ │ ├── sql-copystdout.stdout │ │ ├── sql-createtableas.c │ │ ├── sql-createtableas.stderr │ │ ├── sql-createtableas.stdout │ │ ├── sql-declare.c │ │ ├── sql-declare.stderr │ │ ├── sql-declare.stdout │ │ ├── sql-define.c │ │ ├── sql-define.stderr │ │ ├── sql-define.stdout │ │ ├── sql-desc.c │ │ ├── sql-desc.stderr │ │ ├── sql-desc.stdout │ │ ├── sql-describe.c │ │ ├── sql-describe.stderr │ │ ├── sql-describe.stdout │ │ ├── sql-dynalloc.c │ │ ├── sql-dynalloc.stderr │ │ ├── sql-dynalloc.stdout │ │ ├── sql-dynalloc2.c │ │ ├── sql-dynalloc2.stderr │ │ ├── sql-dynalloc2.stdout │ │ ├── sql-dyntest.c │ │ ├── sql-dyntest.stderr │ │ ├── sql-dyntest.stdout │ │ ├── sql-execute.c │ │ ├── sql-execute.stderr │ │ ├── sql-execute.stdout │ │ ├── sql-fetch.c │ │ ├── sql-fetch.stderr │ │ ├── sql-fetch.stdout │ │ ├── sql-func.c │ │ ├── sql-func.stderr │ │ ├── sql-func.stdout │ │ ├── sql-indicators.c │ │ ├── sql-indicators.stderr │ │ ├── sql-indicators.stdout │ │ ├── sql-insupd.c │ │ ├── sql-insupd.stderr │ │ ├── sql-insupd.stdout │ │ ├── sql-oldexec.c │ │ ├── sql-oldexec.stderr │ │ ├── sql-oldexec.stdout │ │ ├── sql-parser.c │ │ ├── sql-parser.stderr │ │ ├── sql-parser.stdout │ │ ├── sql-prepareas.c │ │ ├── sql-prepareas.stderr │ │ ├── sql-prepareas.stdout │ │ ├── sql-quote.c │ │ ├── sql-quote.stderr │ │ ├── sql-quote.stdout │ │ ├── sql-show.c │ │ ├── sql-show.stderr │ │ ├── sql-show.stdout │ │ ├── sql-sqlda.c │ │ ├── sql-sqlda.stderr │ │ ├── sql-sqlda.stdout │ │ ├── sql-sqljson.c │ │ ├── sql-sqljson.stderr │ │ ├── sql-sqljson.stdout │ │ ├── sql-sqljson_jsontable.c │ │ ├── sql-sqljson_jsontable.stderr │ │ ├── sql-sqljson_jsontable.stdout │ │ ├── sql-twophase.c │ │ ├── sql-twophase.stderr │ │ ├── sql-twophase.stdout │ │ ├── thread-alloc.c │ │ ├── thread-alloc.stderr │ │ ├── thread-alloc.stdout │ │ ├── thread-alloc_2.stdout │ │ ├── thread-descriptor.c │ │ ├── thread-descriptor.stderr │ │ ├── thread-descriptor.stdout │ │ ├── thread-prep.c │ │ ├── thread-prep.stderr │ │ ├── thread-prep.stdout │ │ ├── thread-prep_2.stdout │ │ ├── thread-thread.c │ │ ├── thread-thread.stderr │ │ ├── thread-thread.stdout │ │ ├── thread-thread_2.stdout │ │ ├── thread-thread_implicit.c │ │ ├── thread-thread_implicit.stderr │ │ ├── thread-thread_implicit.stdout │ │ └── thread-thread_implicit_2.stdout │ │ ├── meson.build │ │ ├── performance │ │ └── perftest.pgc │ │ ├── pg_regress_ecpg.c │ │ ├── pgtypeslib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── dt_test.pgc │ │ ├── dt_test2.pgc │ │ ├── meson.build │ │ ├── nan_test.pgc │ │ ├── num_test.pgc │ │ └── num_test2.pgc │ │ ├── preproc │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── array_of_struct.pgc │ │ ├── autoprep.pgc │ │ ├── comment.pgc │ │ ├── cursor.pgc │ │ ├── define.pgc │ │ ├── init.pgc │ │ ├── meson.build │ │ ├── outofscope.pgc │ │ ├── pointer_to_struct.pgc │ │ ├── strings.h │ │ ├── strings.pgc │ │ ├── struct.h │ │ ├── type.pgc │ │ ├── variable.pgc │ │ ├── whenever.pgc │ │ └── whenever_do_continue.pgc │ │ ├── printf_hack.h │ │ ├── regression.h │ │ ├── sql │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── array.pgc │ │ ├── binary.pgc │ │ ├── bytea.pgc │ │ ├── code100.pgc │ │ ├── copystdout.pgc │ │ ├── createtableas.pgc │ │ ├── declare.pgc │ │ ├── define.pgc │ │ ├── define_prelim.pgc │ │ ├── desc.pgc │ │ ├── describe.pgc │ │ ├── dynalloc.pgc │ │ ├── dynalloc2.pgc │ │ ├── dyntest.pgc │ │ ├── execute.pgc │ │ ├── fetch.pgc │ │ ├── func.pgc │ │ ├── indicators.pgc │ │ ├── insupd.pgc │ │ ├── meson.build │ │ ├── oldexec.pgc │ │ ├── parser.pgc │ │ ├── prepareas.pgc │ │ ├── quote.pgc │ │ ├── show.pgc │ │ ├── sqlda.pgc │ │ ├── sqljson.pgc │ │ ├── sqljson_jsontable.pgc │ │ └── twophase.pgc │ │ └── thread │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── alloc.pgc │ │ ├── descriptor.pgc │ │ ├── meson.build │ │ ├── prep.pgc │ │ ├── thread.pgc │ │ └── thread_implicit.pgc ├── libpq │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── exports.txt │ ├── fe-auth-sasl.h │ ├── fe-auth-scram.c │ ├── fe-auth.c │ ├── fe-auth.h │ ├── fe-cancel.c │ ├── fe-connect.c │ ├── fe-exec.c │ ├── fe-gssapi-common.c │ ├── fe-gssapi-common.h │ ├── fe-lobj.c │ ├── fe-misc.c │ ├── fe-print.c │ ├── fe-protocol3.c │ ├── fe-secure-common.c │ ├── fe-secure-common.h │ ├── fe-secure-gssapi.c │ ├── fe-secure-openssl.c │ ├── fe-secure.c │ ├── fe-trace.c │ ├── legacy-pqsignal.c │ ├── libpq-events.c │ ├── libpq-events.h │ ├── libpq-fe.h │ ├── libpq-int.h │ ├── meson.build │ ├── nls.mk │ ├── pg_service.conf.sample │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── pqexpbuffer.c │ ├── pqexpbuffer.h │ ├── pthread-win32.c │ ├── t │ │ ├── 001_uri.pl │ │ ├── 002_api.pl │ │ ├── 003_load_balance_host_list.pl │ │ ├── 004_load_balance_dns.pl │ │ └── 005_negotiate_encryption.pl │ ├── test │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── libpq_testclient.c │ │ ├── libpq_uri_regress.c │ │ └── meson.build │ ├── win32.c │ └── win32.h └── meson.build ├── makefiles ├── Makefile ├── Makefile.cygwin ├── Makefile.darwin ├── Makefile.freebsd ├── Makefile.linux ├── Makefile.netbsd ├── Makefile.openbsd ├── Makefile.solaris ├── Makefile.win32 ├── meson.build └── pgxs.mk ├── meson.build ├── nls-global.mk ├── pl ├── Makefile ├── meson.build ├── plperl │ ├── .gitignore │ ├── GNUmakefile │ ├── README │ ├── SPI.xs │ ├── Util.xs │ ├── expected │ │ ├── plperl.out │ │ ├── plperl_array.out │ │ ├── plperl_call.out │ │ ├── plperl_elog.out │ │ ├── plperl_elog_1.out │ │ ├── plperl_env.out │ │ ├── plperl_init.out │ │ ├── plperl_lc.out │ │ ├── plperl_lc_1.out │ │ ├── plperl_plperlu.out │ │ ├── plperl_setup.out │ │ ├── plperl_shared.out │ │ ├── plperl_transaction.out │ │ ├── plperl_trigger.out │ │ ├── plperl_util.out │ │ └── plperlu.out │ ├── meson.build │ ├── nls.mk │ ├── plc_perlboot.pl │ ├── plc_trusted.pl │ ├── plperl--1.0.sql │ ├── plperl.c │ ├── plperl.control │ ├── plperl.h │ ├── plperl_opmask.pl │ ├── plperl_system.h │ ├── plperlu--1.0.sql │ ├── plperlu.control │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── ppport.h │ ├── sql │ │ ├── plperl.sql │ │ ├── plperl_array.sql │ │ ├── plperl_call.sql │ │ ├── plperl_elog.sql │ │ ├── plperl_end.sql │ │ ├── plperl_env.sql │ │ ├── plperl_init.sql │ │ ├── plperl_lc.sql │ │ ├── plperl_plperlu.sql │ │ ├── plperl_setup.sql │ │ ├── plperl_shared.sql │ │ ├── plperl_transaction.sql │ │ ├── plperl_trigger.sql │ │ ├── plperl_util.sql │ │ └── plperlu.sql │ └── text2macro.pl ├── plpgsql │ ├── Makefile │ ├── meson.build │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── data │ │ └── copy1.data │ │ ├── expected │ │ ├── plpgsql_array.out │ │ ├── plpgsql_cache.out │ │ ├── plpgsql_cache_1.out │ │ ├── plpgsql_call.out │ │ ├── plpgsql_control.out │ │ ├── plpgsql_copy.out │ │ ├── plpgsql_domain.out │ │ ├── plpgsql_misc.out │ │ ├── plpgsql_record.out │ │ ├── plpgsql_simple.out │ │ ├── plpgsql_transaction.out │ │ ├── plpgsql_trap.out │ │ ├── plpgsql_trigger.out │ │ └── plpgsql_varprops.out │ │ ├── generate-plerrcodes.pl │ │ ├── meson.build │ │ ├── nls.mk │ │ ├── pl_comp.c │ │ ├── pl_exec.c │ │ ├── pl_funcs.c │ │ ├── pl_gram.y │ │ ├── pl_handler.c │ │ ├── pl_reserved_kwlist.h │ │ ├── pl_scanner.c │ │ ├── pl_unreserved_kwlist.h │ │ ├── plpgsql--1.0.sql │ │ ├── plpgsql.control │ │ ├── plpgsql.h │ │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── sql │ │ ├── plpgsql_array.sql │ │ ├── plpgsql_cache.sql │ │ ├── plpgsql_call.sql │ │ ├── plpgsql_control.sql │ │ ├── plpgsql_copy.sql │ │ ├── plpgsql_domain.sql │ │ ├── plpgsql_misc.sql │ │ ├── plpgsql_record.sql │ │ ├── plpgsql_simple.sql │ │ ├── plpgsql_transaction.sql │ │ ├── plpgsql_trap.sql │ │ ├── plpgsql_trigger.sql │ │ └── plpgsql_varprops.sql ├── plpython │ ├── .gitignore │ ├── Makefile │ ├── expected │ │ ├── README │ │ ├── plpython_call.out │ │ ├── plpython_composite.out │ │ ├── plpython_do.out │ │ ├── plpython_drop.out │ │ ├── plpython_ereport.out │ │ ├── plpython_error.out │ │ ├── plpython_error_5.out │ │ ├── plpython_global.out │ │ ├── plpython_import.out │ │ ├── plpython_newline.out │ │ ├── plpython_params.out │ │ ├── plpython_populate.out │ │ ├── plpython_quote.out │ │ ├── plpython_record.out │ │ ├── plpython_schema.out │ │ ├── plpython_setof.out │ │ ├── plpython_spi.out │ │ ├── plpython_subtransaction.out │ │ ├── plpython_test.out │ │ ├── plpython_transaction.out │ │ ├── plpython_trigger.out │ │ ├── plpython_types.out │ │ ├── plpython_unicode.out │ │ └── plpython_void.out │ ├── generate-spiexceptions.pl │ ├── meson.build │ ├── nls.mk │ ├── plpy_cursorobject.c │ ├── plpy_cursorobject.h │ ├── plpy_elog.c │ ├── plpy_elog.h │ ├── plpy_exec.c │ ├── plpy_exec.h │ ├── plpy_main.c │ ├── plpy_main.h │ ├── plpy_planobject.c │ ├── plpy_planobject.h │ ├── plpy_plpymodule.c │ ├── plpy_plpymodule.h │ ├── plpy_procedure.c │ ├── plpy_procedure.h │ ├── plpy_resultobject.c │ ├── plpy_resultobject.h │ ├── plpy_spi.c │ ├── plpy_spi.h │ ├── plpy_subxactobject.c │ ├── plpy_subxactobject.h │ ├── plpy_typeio.c │ ├── plpy_typeio.h │ ├── plpy_util.c │ ├── plpy_util.h │ ├── plpython.h │ ├── plpython3u--1.0.sql │ ├── plpython3u.control │ ├── plpython_system.h │ ├── po │ │ ├── LINGUAS │ │ ├── cs.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ka.po │ │ ├── ko.po │ │ ├── meson.build │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── sql │ │ ├── plpython_call.sql │ │ ├── plpython_composite.sql │ │ ├── plpython_do.sql │ │ ├── plpython_drop.sql │ │ ├── plpython_ereport.sql │ │ ├── plpython_error.sql │ │ ├── plpython_global.sql │ │ ├── plpython_import.sql │ │ ├── plpython_newline.sql │ │ ├── plpython_params.sql │ │ ├── plpython_populate.sql │ │ ├── plpython_quote.sql │ │ ├── plpython_record.sql │ │ ├── plpython_schema.sql │ │ ├── plpython_setof.sql │ │ ├── plpython_spi.sql │ │ ├── plpython_subtransaction.sql │ │ ├── plpython_test.sql │ │ ├── plpython_transaction.sql │ │ ├── plpython_trigger.sql │ │ ├── plpython_types.sql │ │ ├── plpython_unicode.sql │ │ └── plpython_void.sql └── tcl │ ├── .gitignore │ ├── Makefile │ ├── expected │ ├── pltcl_call.out │ ├── pltcl_queries.out │ ├── pltcl_setup.out │ ├── pltcl_start_proc.out │ ├── pltcl_subxact.out │ ├── pltcl_transaction.out │ ├── pltcl_trigger.out │ └── pltcl_unicode.out │ ├── generate-pltclerrcodes.pl │ ├── meson.build │ ├── nls.mk │ ├── pltcl--1.0.sql │ ├── pltcl.c │ ├── pltcl.control │ ├── pltclu--1.0.sql │ ├── pltclu.control │ ├── po │ ├── LINGUAS │ ├── cs.po │ ├── de.po │ ├── el.po │ ├── es.po │ ├── fr.po │ ├── it.po │ ├── ja.po │ ├── ka.po │ ├── ko.po │ ├── meson.build │ ├── pl.po │ ├── pt_BR.po │ ├── ro.po │ ├── ru.po │ ├── sv.po │ ├── tr.po │ ├── uk.po │ ├── vi.po │ ├── zh_CN.po │ └── zh_TW.po │ └── sql │ ├── pltcl_call.sql │ ├── pltcl_queries.sql │ ├── pltcl_setup.sql │ ├── pltcl_start_proc.sql │ ├── pltcl_subxact.sql │ ├── pltcl_transaction.sql │ ├── pltcl_trigger.sql │ └── pltcl_unicode.sql ├── port ├── .gitignore ├── Makefile ├── README ├── bsearch_arg.c ├── chklocale.c ├── dirent.c ├── dirmod.c ├── explicit_bzero.c ├── getopt.c ├── getopt_long.c ├── getpeereid.c ├── inet_aton.c ├── inet_net_ntop.c ├── kill.c ├── meson.build ├── mkdtemp.c ├── noblock.c ├── open.c ├── path.c ├── pg_bitutils.c ├── pg_crc32c_armv8.c ├── pg_crc32c_armv8_choose.c ├── pg_crc32c_loongarch.c ├── pg_crc32c_sb8.c ├── pg_crc32c_sse42.c ├── pg_crc32c_sse42_choose.c ├── pg_popcount_avx512.c ├── pg_popcount_avx512_choose.c ├── pg_strong_random.c ├── pgcheckdir.c ├── pgmkdirp.c ├── pgsleep.c ├── pgstrcasecmp.c ├── pgstrsignal.c ├── pqsignal.c ├── pthread-win32.h ├── pthread_barrier_wait.c ├── qsort.c ├── qsort_arg.c ├── quotes.c ├── snprintf.c ├── strerror.c ├── strlcat.c ├── strlcpy.c ├── strnlen.c ├── strtof.c ├── system.c ├── tar.c ├── user.c ├── win32.ico ├── win32common.c ├── win32dlopen.c ├── win32env.c ├── win32error.c ├── win32fdatasync.c ├── win32fseek.c ├── win32gai_strerror.c ├── win32getrusage.c ├── win32gettimeofday.c ├── win32link.c ├── win32ntdll.c ├── win32pread.c ├── win32pwrite.c ├── win32security.c ├── win32setlocale.c ├── win32stat.c └── win32ver.rc ├── template ├── cygwin ├── darwin ├── freebsd ├── linux ├── netbsd ├── openbsd ├── solaris └── win32 ├── test ├── Makefile ├── README ├── authentication │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── meson.build │ └── t │ │ ├── 001_password.pl │ │ ├── 002_saslprep.pl │ │ ├── 003_peer.pl │ │ ├── 004_file_inclusion.pl │ │ ├── 005_sspi.pl │ │ └── 006_login_trigger.pl ├── examples │ ├── .gitignore │ ├── Makefile │ ├── testlibpq.c │ ├── testlibpq2.c │ ├── testlibpq2.sql │ ├── testlibpq3.c │ ├── testlibpq3.sql │ ├── testlibpq4.c │ ├── testlo.c │ └── testlo64.c ├── icu │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── meson.build │ └── t │ │ └── 010_database.pl ├── isolation │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── expected │ │ ├── aborted-keyrevoke.out │ │ ├── alter-table-1.out │ │ ├── alter-table-2.out │ │ ├── alter-table-3.out │ │ ├── alter-table-4.out │ │ ├── async-notify.out │ │ ├── classroom-scheduling.out │ │ ├── cluster-conflict-partition.out │ │ ├── cluster-conflict.out │ │ ├── create-trigger.out │ │ ├── deadlock-hard.out │ │ ├── deadlock-parallel.out │ │ ├── deadlock-simple.out │ │ ├── deadlock-soft-2.out │ │ ├── deadlock-soft.out │ │ ├── delete-abort-savept-2.out │ │ ├── delete-abort-savept.out │ │ ├── detach-partition-concurrently-1.out │ │ ├── detach-partition-concurrently-2.out │ │ ├── detach-partition-concurrently-3.out │ │ ├── detach-partition-concurrently-4.out │ │ ├── drop-index-concurrently-1.out │ │ ├── drop-index-concurrently-1_2.out │ │ ├── eval-plan-qual-trigger.out │ │ ├── eval-plan-qual.out │ │ ├── fk-contention.out │ │ ├── fk-deadlock.out │ │ ├── fk-deadlock2.out │ │ ├── fk-deadlock2_1.out │ │ ├── fk-deadlock2_2.out │ │ ├── fk-deadlock_1.out │ │ ├── fk-partitioned-1.out │ │ ├── fk-partitioned-2.out │ │ ├── fk-snapshot.out │ │ ├── freeze-the-dead.out │ │ ├── horizons.out │ │ ├── index-only-scan.out │ │ ├── inherit-temp.out │ │ ├── inplace-inval.out │ │ ├── insert-conflict-do-nothing-2.out │ │ ├── insert-conflict-do-nothing.out │ │ ├── insert-conflict-do-update-2.out │ │ ├── insert-conflict-do-update-3.out │ │ ├── insert-conflict-do-update.out │ │ ├── insert-conflict-specconflict.out │ │ ├── intra-grant-inplace-db.out │ │ ├── intra-grant-inplace.out │ │ ├── lock-committed-keyupdate.out │ │ ├── lock-committed-update.out │ │ ├── lock-nowait.out │ │ ├── lock-update-delete.out │ │ ├── lock-update-delete_1.out │ │ ├── lock-update-traversal.out │ │ ├── matview-write-skew.out │ │ ├── merge-delete.out │ │ ├── merge-insert-update.out │ │ ├── merge-join.out │ │ ├── merge-match-recheck.out │ │ ├── merge-update.out │ │ ├── multiple-cic.out │ │ ├── multiple-row-versions.out │ │ ├── multixact-no-deadlock.out │ │ ├── multixact-no-forget.out │ │ ├── multixact-no-forget_1.out │ │ ├── nowait-2.out │ │ ├── nowait-3.out │ │ ├── nowait-4.out │ │ ├── nowait-4_1.out │ │ ├── nowait-5.out │ │ ├── nowait.out │ │ ├── partial-index.out │ │ ├── partition-concurrent-attach.out │ │ ├── partition-drop-index-locking.out │ │ ├── partition-key-update-1.out │ │ ├── partition-key-update-2.out │ │ ├── partition-key-update-3.out │ │ ├── partition-key-update-4.out │ │ ├── plpgsql-toast.out │ │ ├── predicate-gin.out │ │ ├── predicate-gist.out │ │ ├── predicate-hash.out │ │ ├── predicate-lock-hot-tuple.out │ │ ├── prepared-transactions-cic.out │ │ ├── prepared-transactions.out │ │ ├── project-manager.out │ │ ├── propagate-lock-delete.out │ │ ├── read-only-anomaly-2.out │ │ ├── read-only-anomaly-3.out │ │ ├── read-only-anomaly.out │ │ ├── read-write-unique-2.out │ │ ├── read-write-unique-3.out │ │ ├── read-write-unique-4.out │ │ ├── read-write-unique.out │ │ ├── receipt-report.out │ │ ├── referential-integrity.out │ │ ├── reindex-concurrently-toast.out │ │ ├── reindex-concurrently.out │ │ ├── reindex-schema.out │ │ ├── ri-trigger.out │ │ ├── sequence-ddl.out │ │ ├── serializable-parallel-2.out │ │ ├── serializable-parallel-3.out │ │ ├── serializable-parallel.out │ │ ├── simple-write-skew.out │ │ ├── skip-locked-2.out │ │ ├── skip-locked-3.out │ │ ├── skip-locked-4.out │ │ ├── skip-locked-4_1.out │ │ ├── skip-locked.out │ │ ├── stats.out │ │ ├── stats_1.out │ │ ├── subxid-overflow.out │ │ ├── temp-schema-cleanup.out │ │ ├── temporal-range-integrity.out │ │ ├── timeouts.out │ │ ├── total-cash.out │ │ ├── truncate-conflict.out │ │ ├── tuplelock-conflict.out │ │ ├── tuplelock-partition.out │ │ ├── tuplelock-update.out │ │ ├── tuplelock-upgrade-no-deadlock.out │ │ ├── two-ids.out │ │ ├── update-conflict-out.out │ │ ├── update-locked-tuple.out │ │ ├── vacuum-concurrent-drop.out │ │ ├── vacuum-conflict.out │ │ ├── vacuum-no-cleanup-lock.out │ │ └── vacuum-skip-locked.out │ ├── isolation_main.c │ ├── isolation_schedule │ ├── isolationtester.c │ ├── isolationtester.h │ ├── meson.build │ ├── specparse.y │ ├── specs │ │ ├── aborted-keyrevoke.spec │ │ ├── alter-table-1.spec │ │ ├── alter-table-2.spec │ │ ├── alter-table-3.spec │ │ ├── alter-table-4.spec │ │ ├── async-notify.spec │ │ ├── classroom-scheduling.spec │ │ ├── cluster-conflict-partition.spec │ │ ├── cluster-conflict.spec │ │ ├── create-trigger.spec │ │ ├── deadlock-hard.spec │ │ ├── deadlock-parallel.spec │ │ ├── deadlock-simple.spec │ │ ├── deadlock-soft-2.spec │ │ ├── deadlock-soft.spec │ │ ├── delete-abort-savept-2.spec │ │ ├── delete-abort-savept.spec │ │ ├── detach-partition-concurrently-1.spec │ │ ├── detach-partition-concurrently-2.spec │ │ ├── detach-partition-concurrently-3.spec │ │ ├── detach-partition-concurrently-4.spec │ │ ├── drop-index-concurrently-1.spec │ │ ├── eval-plan-qual-trigger.spec │ │ ├── eval-plan-qual.spec │ │ ├── fk-contention.spec │ │ ├── fk-deadlock.spec │ │ ├── fk-deadlock2.spec │ │ ├── fk-partitioned-1.spec │ │ ├── fk-partitioned-2.spec │ │ ├── fk-snapshot.spec │ │ ├── freeze-the-dead.spec │ │ ├── horizons.spec │ │ ├── index-only-scan.spec │ │ ├── inherit-temp.spec │ │ ├── inplace-inval.spec │ │ ├── insert-conflict-do-nothing-2.spec │ │ ├── insert-conflict-do-nothing.spec │ │ ├── insert-conflict-do-update-2.spec │ │ ├── insert-conflict-do-update-3.spec │ │ ├── insert-conflict-do-update.spec │ │ ├── insert-conflict-specconflict.spec │ │ ├── intra-grant-inplace-db.spec │ │ ├── intra-grant-inplace.spec │ │ ├── lock-committed-keyupdate.spec │ │ ├── lock-committed-update.spec │ │ ├── lock-nowait.spec │ │ ├── lock-update-delete.spec │ │ ├── lock-update-traversal.spec │ │ ├── matview-write-skew.spec │ │ ├── merge-delete.spec │ │ ├── merge-insert-update.spec │ │ ├── merge-join.spec │ │ ├── merge-match-recheck.spec │ │ ├── merge-update.spec │ │ ├── multiple-cic.spec │ │ ├── multiple-row-versions.spec │ │ ├── multixact-no-deadlock.spec │ │ ├── multixact-no-forget.spec │ │ ├── nowait-2.spec │ │ ├── nowait-3.spec │ │ ├── nowait-4.spec │ │ ├── nowait-5.spec │ │ ├── nowait.spec │ │ ├── partial-index.spec │ │ ├── partition-concurrent-attach.spec │ │ ├── partition-drop-index-locking.spec │ │ ├── partition-key-update-1.spec │ │ ├── partition-key-update-2.spec │ │ ├── partition-key-update-3.spec │ │ ├── partition-key-update-4.spec │ │ ├── plpgsql-toast.spec │ │ ├── predicate-gin.spec │ │ ├── predicate-gist.spec │ │ ├── predicate-hash.spec │ │ ├── predicate-lock-hot-tuple.spec │ │ ├── prepared-transactions-cic.spec │ │ ├── prepared-transactions.spec │ │ ├── project-manager.spec │ │ ├── propagate-lock-delete.spec │ │ ├── read-only-anomaly-2.spec │ │ ├── read-only-anomaly-3.spec │ │ ├── read-only-anomaly.spec │ │ ├── read-write-unique-2.spec │ │ ├── read-write-unique-3.spec │ │ ├── read-write-unique-4.spec │ │ ├── read-write-unique.spec │ │ ├── receipt-report.spec │ │ ├── referential-integrity.spec │ │ ├── reindex-concurrently-toast.spec │ │ ├── reindex-concurrently.spec │ │ ├── reindex-schema.spec │ │ ├── ri-trigger.spec │ │ ├── sequence-ddl.spec │ │ ├── serializable-parallel-2.spec │ │ ├── serializable-parallel-3.spec │ │ ├── serializable-parallel.spec │ │ ├── simple-write-skew.spec │ │ ├── skip-locked-2.spec │ │ ├── skip-locked-3.spec │ │ ├── skip-locked-4.spec │ │ ├── skip-locked.spec │ │ ├── stats.spec │ │ ├── subxid-overflow.spec │ │ ├── temp-schema-cleanup.spec │ │ ├── temporal-range-integrity.spec │ │ ├── timeouts.spec │ │ ├── total-cash.spec │ │ ├── truncate-conflict.spec │ │ ├── tuplelock-conflict.spec │ │ ├── tuplelock-partition.spec │ │ ├── tuplelock-update.spec │ │ ├── tuplelock-upgrade-no-deadlock.spec │ │ ├── two-ids.spec │ │ ├── update-conflict-out.spec │ │ ├── update-locked-tuple.spec │ │ ├── vacuum-concurrent-drop.spec │ │ ├── vacuum-conflict.spec │ │ ├── vacuum-no-cleanup-lock.spec │ │ └── vacuum-skip-locked.spec │ └── specscanner.l ├── kerberos │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── meson.build │ └── t │ │ └── 001_auth.pl ├── ldap │ ├── .gitignore │ ├── LdapServer.pm │ ├── Makefile │ ├── README │ ├── authdata.ldif │ ├── meson.build │ └── t │ │ ├── 001_auth.pl │ │ └── 002_bindpasswd.pl ├── locale │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── de_DE.ISO8859-1 │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ ├── de-ctype.out │ │ │ ├── test-de-char.sql.out │ │ │ ├── test-de-select.sql.out │ │ │ ├── test-de-sort.out │ │ │ ├── test-de-text.sql.out │ │ │ ├── test-de-upper-char.sql.out │ │ │ ├── test-de-upper-text.sql.out │ │ │ ├── test-de-upper-varchar.sql.out │ │ │ └── test-de-varchar.sql.out │ │ ├── runall │ │ ├── test-de-select.sql.in │ │ ├── test-de-sort.in │ │ ├── test-de-upper.sql.in │ │ └── test-de.sql.in │ ├── gr_GR.ISO8859-7 │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ ├── gr-ctype.out │ │ │ ├── test-gr-char.sql.out │ │ │ ├── test-gr-select.sql.out │ │ │ ├── test-gr-sort.out │ │ │ ├── test-gr-text.sql.out │ │ │ └── test-gr-varchar.sql.out │ │ ├── runall │ │ ├── test-gr-select.sql.in │ │ ├── test-gr-sort.in │ │ └── test-gr.sql.in │ ├── koi8-r │ │ ├── Makefile │ │ ├── expected │ │ │ ├── koi8-ctype.out │ │ │ ├── test-koi8-char.sql.out │ │ │ ├── test-koi8-select.sql.out │ │ │ ├── test-koi8-sort.out │ │ │ ├── test-koi8-text.sql.out │ │ │ └── test-koi8-varchar.sql.out │ │ ├── runall │ │ ├── test-koi8-select.sql.in │ │ ├── test-koi8-sort.in │ │ └── test-koi8.sql.in │ ├── koi8-to-win1251 │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ ├── test-koi8-char.sql.out │ │ │ ├── test-koi8-select.sql.out │ │ │ ├── test-koi8-sort.out │ │ │ ├── test-koi8-text.sql.out │ │ │ └── test-koi8-varchar.sql.out │ │ ├── runall │ │ ├── test-koi8-select.sql.in │ │ ├── test-koi8-sort.in │ │ └── test-koi8.sql.in │ ├── sort-test.pl │ ├── sort-test.py │ └── test-ctype.c ├── mb │ ├── README │ ├── expected │ │ ├── big5.out │ │ ├── euc_cn.out │ │ ├── euc_jp.out │ │ ├── euc_kr.out │ │ ├── euc_tw.out │ │ ├── gb18030.out │ │ ├── mule_internal.out │ │ ├── sjis.out │ │ └── utf8.out │ ├── mbregress.sh │ └── sql │ │ ├── big5.sql │ │ ├── euc_cn.sql │ │ ├── euc_jp.sql │ │ ├── euc_kr.sql │ │ ├── euc_tw.sql │ │ ├── gb18030.sql │ │ ├── mule_internal.sql │ │ ├── sjis.sql │ │ └── utf8.sql ├── meson.build ├── modules │ ├── Makefile │ ├── README │ ├── brin │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── summarization-and-inprogress-insertion.out │ │ ├── meson.build │ │ ├── specs │ │ │ └── summarization-and-inprogress-insertion.spec │ │ └── t │ │ │ ├── 01_workitems.pl │ │ │ └── 02_wal_consistency.pl │ ├── commit_ts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── commit_ts.conf │ │ ├── expected │ │ │ ├── commit_timestamp.out │ │ │ └── commit_timestamp_1.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── commit_timestamp.sql │ │ └── t │ │ │ ├── 001_base.pl │ │ │ ├── 002_standby.pl │ │ │ ├── 003_standby_2.pl │ │ │ └── 004_restart.pl │ ├── delay_execution │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── delay_execution.c │ │ ├── expected │ │ │ ├── partition-addition.out │ │ │ └── partition-removal-1.out │ │ ├── meson.build │ │ └── specs │ │ │ ├── partition-addition.spec │ │ │ └── partition-removal-1.spec │ ├── dummy_index_am │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── dummy_index_am--1.0.sql │ │ ├── dummy_index_am.c │ │ ├── dummy_index_am.control │ │ ├── expected │ │ │ └── reloptions.out │ │ ├── meson.build │ │ └── sql │ │ │ └── reloptions.sql │ ├── dummy_seclabel │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── dummy_seclabel--1.0.sql │ │ ├── dummy_seclabel.c │ │ ├── dummy_seclabel.control │ │ ├── expected │ │ │ └── dummy_seclabel.out │ │ ├── meson.build │ │ └── sql │ │ │ └── dummy_seclabel.sql │ ├── gin │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── gin_incomplete_splits.out │ │ ├── meson.build │ │ └── sql │ │ │ └── gin_incomplete_splits.sql │ ├── injection_points │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ ├── injection_points.out │ │ │ ├── inplace.out │ │ │ ├── reindex_conc.out │ │ │ ├── syscache-update-pruned.out │ │ │ ├── syscache-update-pruned_1.out │ │ │ └── vacuum.out │ │ ├── injection_points--1.0.sql │ │ ├── injection_points.c │ │ ├── injection_points.control │ │ ├── meson.build │ │ ├── regress_injection.c │ │ ├── specs │ │ │ ├── inplace.spec │ │ │ └── syscache-update-pruned.spec │ │ └── sql │ │ │ ├── injection_points.sql │ │ │ ├── reindex_conc.sql │ │ │ └── vacuum.sql │ ├── ldap_password_func │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── ldap_password_func.c │ │ ├── meson.build │ │ └── t │ │ │ └── 001_mutated_bindpasswd.pl │ ├── libpq_pipeline │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── libpq_pipeline.c │ │ ├── meson.build │ │ ├── t │ │ │ └── 001_libpq_pipeline.pl │ │ └── traces │ │ │ ├── disallowed_in_pipeline.trace │ │ │ ├── multi_pipelines.trace │ │ │ ├── nosync.trace │ │ │ ├── pipeline_abort.trace │ │ │ ├── pipeline_idle.trace │ │ │ ├── prepared.trace │ │ │ ├── simple_pipeline.trace │ │ │ ├── singlerow.trace │ │ │ └── transaction.trace │ ├── meson.build │ ├── plsample │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── plsample.out │ │ ├── meson.build │ │ ├── plsample--1.0.sql │ │ ├── plsample.c │ │ ├── plsample.control │ │ └── sql │ │ │ └── plsample.sql │ ├── spgist_name_ops │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── spgist_name_ops.out │ │ ├── meson.build │ │ ├── spgist_name_ops--1.0.sql │ │ ├── spgist_name_ops.c │ │ ├── spgist_name_ops.control │ │ └── sql │ │ │ └── spgist_name_ops.sql │ ├── ssl_passphrase_callback │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── meson.build │ │ ├── server.crt │ │ ├── server.key │ │ ├── ssl_passphrase_func.c │ │ └── t │ │ │ └── 001_testfunc.pl │ ├── test_bloomfilter │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── test_bloomfilter.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_bloomfilter.sql │ │ ├── test_bloomfilter--1.0.sql │ │ ├── test_bloomfilter.c │ │ └── test_bloomfilter.control │ ├── test_copy_callbacks │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── test_copy_callbacks.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_copy_callbacks.sql │ │ ├── test_copy_callbacks--1.0.sql │ │ ├── test_copy_callbacks.c │ │ └── test_copy_callbacks.control │ ├── test_custom_rmgrs │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── meson.build │ │ ├── t │ │ │ └── 001_basic.pl │ │ ├── test_custom_rmgrs--1.0.sql │ │ ├── test_custom_rmgrs.c │ │ └── test_custom_rmgrs.control │ ├── test_ddl_deparse │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ ├── alter_extension.out │ │ │ ├── alter_function.out │ │ │ ├── alter_sequence.out │ │ │ ├── alter_table.out │ │ │ ├── alter_ts_config.out │ │ │ ├── alter_type_enum.out │ │ │ ├── comment_on.out │ │ │ ├── create_conversion.out │ │ │ ├── create_domain.out │ │ │ ├── create_extension.out │ │ │ ├── create_function.out │ │ │ ├── create_operator.out │ │ │ ├── create_rule.out │ │ │ ├── create_schema.out │ │ │ ├── create_sequence_1.out │ │ │ ├── create_table.out │ │ │ ├── create_transform.out │ │ │ ├── create_trigger.out │ │ │ ├── create_type.out │ │ │ ├── create_view.out │ │ │ ├── defprivs.out │ │ │ ├── matviews.out │ │ │ ├── opfamily.out │ │ │ └── test_ddl_deparse.out │ │ ├── meson.build │ │ ├── sql │ │ │ ├── alter_function.sql │ │ │ ├── alter_sequence.sql │ │ │ ├── alter_table.sql │ │ │ ├── alter_ts_config.sql │ │ │ ├── alter_type_enum.sql │ │ │ ├── comment_on.sql │ │ │ ├── create_conversion.sql │ │ │ ├── create_domain.sql │ │ │ ├── create_extension.sql │ │ │ ├── create_rule.sql │ │ │ ├── create_schema.sql │ │ │ ├── create_sequence_1.sql │ │ │ ├── create_table.sql │ │ │ ├── create_transform.sql │ │ │ ├── create_trigger.sql │ │ │ ├── create_type.sql │ │ │ ├── create_view.sql │ │ │ ├── defprivs.sql │ │ │ ├── matviews.sql │ │ │ ├── opfamily.sql │ │ │ └── test_ddl_deparse.sql │ │ ├── test_ddl_deparse--1.0.sql │ │ ├── test_ddl_deparse.c │ │ └── test_ddl_deparse.control │ ├── test_dsa │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── test_dsa.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_dsa.sql │ │ ├── test_dsa--1.0.sql │ │ ├── test_dsa.c │ │ └── test_dsa.control │ ├── test_dsm_registry │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── test_dsm_registry.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_dsm_registry.sql │ │ ├── test_dsm_registry--1.0.sql │ │ ├── test_dsm_registry.c │ │ └── test_dsm_registry.control │ ├── test_escape │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── meson.build │ │ ├── t │ │ │ └── 001_test_escape.pl │ │ └── test_escape.c │ ├── test_extensions │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ ├── test_extdepend.out │ │ │ └── test_extensions.out │ │ ├── meson.build │ │ ├── sql │ │ │ ├── test_extdepend.sql │ │ │ └── test_extensions.sql │ │ ├── test_ext1--1.0.sql │ │ ├── test_ext1.control │ │ ├── test_ext2--1.0.sql │ │ ├── test_ext2.control │ │ ├── test_ext3--1.0.sql │ │ ├── test_ext3.control │ │ ├── test_ext4--1.0.sql │ │ ├── test_ext4.control │ │ ├── test_ext5--1.0.sql │ │ ├── test_ext5.control │ │ ├── test_ext6--1.0.sql │ │ ├── test_ext6.control │ │ ├── test_ext7--1.0--2.0.sql │ │ ├── test_ext7--1.0.sql │ │ ├── test_ext7.control │ │ ├── test_ext8--1.0.sql │ │ ├── test_ext8.control │ │ ├── test_ext9--1.0.sql │ │ ├── test_ext9.control │ │ ├── test_ext_cine--1.0--1.1.sql │ │ ├── test_ext_cine--1.0.sql │ │ ├── test_ext_cine.control │ │ ├── test_ext_cor--1.0.sql │ │ ├── test_ext_cor.control │ │ ├── test_ext_cyclic1--1.0.sql │ │ ├── test_ext_cyclic1.control │ │ ├── test_ext_cyclic2--1.0.sql │ │ ├── test_ext_cyclic2.control │ │ ├── test_ext_evttrig--1.0--2.0.sql │ │ ├── test_ext_evttrig--1.0.sql │ │ ├── test_ext_evttrig.control │ │ ├── test_ext_extschema--1.0.sql │ │ ├── test_ext_extschema.control │ │ ├── test_ext_req_schema1--1.0.sql │ │ ├── test_ext_req_schema1.control │ │ ├── test_ext_req_schema2--1.0.sql │ │ ├── test_ext_req_schema2.control │ │ ├── test_ext_req_schema3--1.0.sql │ │ ├── test_ext_req_schema3.control │ │ ├── test_ext_set_schema--1.0.sql │ │ └── test_ext_set_schema.control │ ├── test_ginpostinglist │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── test_ginpostinglist.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_ginpostinglist.sql │ │ ├── test_ginpostinglist--1.0.sql │ │ ├── test_ginpostinglist.c │ │ └── test_ginpostinglist.control │ ├── test_integerset │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── test_integerset.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_integerset.sql │ │ ├── test_integerset--1.0.sql │ │ ├── test_integerset.c │ │ └── test_integerset.control │ ├── test_json_parser │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── meson.build │ │ ├── t │ │ │ ├── 001_test_json_parser_incremental.pl │ │ │ ├── 002_inline.pl │ │ │ ├── 003_test_semantic.pl │ │ │ └── 004_test_parser_perf.pl │ │ ├── test_json_parser_incremental.c │ │ ├── test_json_parser_perf.c │ │ ├── tiny.json │ │ └── tiny.out │ ├── test_lfind │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── test_lfind.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_lfind.sql │ │ ├── test_lfind--1.0.sql │ │ ├── test_lfind.c │ │ └── test_lfind.control │ ├── test_misc │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── meson.build │ │ └── t │ │ │ ├── 001_constraint_validation.pl │ │ │ ├── 002_tablespace.pl │ │ │ ├── 003_check_guc.pl │ │ │ ├── 004_io_direct.pl │ │ │ ├── 005_timeouts.pl │ │ │ └── 007_catcache_inval.pl │ ├── test_oat_hooks │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ ├── alter_table.out │ │ │ └── test_oat_hooks.out │ │ ├── meson.build │ │ ├── sql │ │ │ ├── alter_table.sql │ │ │ └── test_oat_hooks.sql │ │ └── test_oat_hooks.c │ ├── test_parser │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── test_parser.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_parser.sql │ │ ├── test_parser--1.0.sql │ │ ├── test_parser.c │ │ └── test_parser.control │ ├── test_pg_dump │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── test_pg_dump.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_pg_dump.sql │ │ ├── t │ │ │ └── 001_base.pl │ │ ├── test_pg_dump--1.0.sql │ │ └── test_pg_dump.control │ ├── test_predtest │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── test_predtest.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_predtest.sql │ │ ├── test_predtest--1.0.sql │ │ ├── test_predtest.c │ │ └── test_predtest.control │ ├── test_radixtree │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── test_radixtree.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_radixtree.sql │ │ ├── test_radixtree--1.0.sql │ │ ├── test_radixtree.c │ │ └── test_radixtree.control │ ├── test_rbtree │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── test_rbtree.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_rbtree.sql │ │ ├── test_rbtree--1.0.sql │ │ ├── test_rbtree.c │ │ └── test_rbtree.control │ ├── test_regex │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ ├── test_regex.out │ │ │ ├── test_regex_utf8.out │ │ │ └── test_regex_utf8_1.out │ │ ├── meson.build │ │ ├── sql │ │ │ ├── test_regex.sql │ │ │ └── test_regex_utf8.sql │ │ ├── test_regex--1.0.sql │ │ ├── test_regex.c │ │ └── test_regex.control │ ├── test_resowner │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── test_resowner.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_resowner.sql │ │ ├── test_resowner--1.0.sql │ │ ├── test_resowner.control │ │ ├── test_resowner_basic.c │ │ └── test_resowner_many.c │ ├── test_rls_hooks │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── test_rls_hooks.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_rls_hooks.sql │ │ ├── test_rls_hooks.c │ │ └── test_rls_hooks.h │ ├── test_shm_mq │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ └── test_shm_mq.out │ │ ├── meson.build │ │ ├── setup.c │ │ ├── sql │ │ │ └── test_shm_mq.sql │ │ ├── test.c │ │ ├── test_shm_mq--1.0.sql │ │ ├── test_shm_mq.control │ │ ├── test_shm_mq.h │ │ └── worker.c │ ├── test_slru │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── test_slru.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_slru.sql │ │ ├── test_slru--1.0.sql │ │ ├── test_slru.c │ │ ├── test_slru.conf │ │ └── test_slru.control │ ├── test_tidstore │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── expected │ │ │ └── test_tidstore.out │ │ ├── meson.build │ │ ├── sql │ │ │ └── test_tidstore.sql │ │ ├── test_tidstore--1.0.sql │ │ ├── test_tidstore.c │ │ └── test_tidstore.control │ ├── unsafe_tests │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── expected │ │ │ ├── alter_system_table.out │ │ │ ├── guc_privs.out │ │ │ ├── rolenames.out │ │ │ └── setconfig.out │ │ ├── meson.build │ │ └── sql │ │ │ ├── alter_system_table.sql │ │ │ ├── guc_privs.sql │ │ │ ├── rolenames.sql │ │ │ └── setconfig.sql │ ├── worker_spi │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── meson.build │ │ ├── t │ │ │ └── 001_worker_spi.pl │ │ ├── worker_spi--1.0.sql │ │ ├── worker_spi.c │ │ └── worker_spi.control │ └── xid_wraparound │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── meson.build │ │ ├── t │ │ ├── 001_emergency_vacuum.pl │ │ ├── 002_limits.pl │ │ └── 003_wraparounds.pl │ │ ├── xid_wraparound--1.0.sql │ │ ├── xid_wraparound.c │ │ └── xid_wraparound.control ├── perl │ ├── Makefile │ ├── PostgreSQL │ │ ├── Test │ │ │ ├── AdjustUpgrade.pm │ │ │ ├── BackgroundPsql.pm │ │ │ ├── Cluster.pm │ │ │ ├── Kerberos.pm │ │ │ ├── RecursiveCopy.pm │ │ │ ├── SimpleTee.pm │ │ │ └── Utils.pm │ │ └── Version.pm │ ├── README │ └── meson.build ├── recovery │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── meson.build │ └── t │ │ ├── 001_stream_rep.pl │ │ ├── 002_archiving.pl │ │ ├── 003_recovery_targets.pl │ │ ├── 004_timeline_switch.pl │ │ ├── 005_replay_delay.pl │ │ ├── 006_logical_decoding.pl │ │ ├── 007_sync_rep.pl │ │ ├── 008_fsm_truncation.pl │ │ ├── 009_twophase.pl │ │ ├── 010_logical_decoding_timelines.pl │ │ ├── 012_subtransactions.pl │ │ ├── 013_crash_restart.pl │ │ ├── 014_unlogged_reinit.pl │ │ ├── 015_promotion_pages.pl │ │ ├── 016_min_consistency.pl │ │ ├── 017_shm.pl │ │ ├── 018_wal_optimize.pl │ │ ├── 019_replslot_limit.pl │ │ ├── 020_archive_status.pl │ │ ├── 021_row_visibility.pl │ │ ├── 022_crash_temp_files.pl │ │ ├── 023_pitr_prepared_xact.pl │ │ ├── 024_archive_recovery.pl │ │ ├── 025_stuck_on_old_timeline.pl │ │ ├── 026_overwrite_contrecord.pl │ │ ├── 027_stream_regress.pl │ │ ├── 028_pitr_timelines.pl │ │ ├── 029_stats_restart.pl │ │ ├── 030_stats_cleanup_replica.pl │ │ ├── 031_recovery_conflict.pl │ │ ├── 032_relfilenode_reuse.pl │ │ ├── 033_replay_tsp_drops.pl │ │ ├── 034_create_database.pl │ │ ├── 035_standby_logical_decoding.pl │ │ ├── 036_truncated_dropped.pl │ │ ├── 037_invalid_database.pl │ │ ├── 038_save_logical_slots_shutdown.pl │ │ ├── 039_end_of_wal.pl │ │ ├── 040_standby_failover_slots_sync.pl │ │ ├── 041_checkpoint_at_promote.pl │ │ ├── 042_low_level_backup.pl │ │ ├── 043_no_contrecord_switch.pl │ │ ├── 045_archive_restartpoint.pl │ │ ├── 046_checkpoint_logical_slot.pl │ │ ├── 047_checkpoint_physical_slot.pl │ │ ├── 048_vacuum_horizon_floor.pl │ │ └── cp_history_files ├── regress │ ├── .gitignore │ ├── GNUmakefile │ ├── Makefile │ ├── README │ ├── data │ │ ├── agg.data │ │ ├── array.data │ │ ├── constrf.data │ │ ├── constro.data │ │ ├── dept.data │ │ ├── desc.data │ │ ├── emp.data │ │ ├── hash.data │ │ ├── jsonb.data │ │ ├── onek.data │ │ ├── person.data │ │ ├── real_city.data │ │ ├── rect.data │ │ ├── streets.data │ │ ├── stud_emp.data │ │ ├── student.data │ │ ├── tenk.data │ │ └── tsearch.data │ ├── expected │ │ ├── advisory_lock.out │ │ ├── aggregates.out │ │ ├── alter_generic.out │ │ ├── alter_operator.out │ │ ├── alter_table.out │ │ ├── amutils.out │ │ ├── arrays.out │ │ ├── async.out │ │ ├── babel_5343_returning.out │ │ ├── bit.out │ │ ├── bitmapops.out │ │ ├── boolean.out │ │ ├── box.out │ │ ├── brin.out │ │ ├── brin_bloom.out │ │ ├── brin_multi.out │ │ ├── btree_index.out │ │ ├── case.out │ │ ├── char.out │ │ ├── char_1.out │ │ ├── char_2.out │ │ ├── circle.out │ │ ├── cluster.out │ │ ├── collate.icu.utf8.out │ │ ├── collate.icu.utf8_1.out │ │ ├── collate.linux.utf8.out │ │ ├── collate.linux.utf8_1.out │ │ ├── collate.out │ │ ├── collate.utf8.out │ │ ├── collate.utf8_1.out │ │ ├── collate.windows.win1252.out │ │ ├── collate.windows.win1252_1.out │ │ ├── combocid.out │ │ ├── comments.out │ │ ├── compression.out │ │ ├── compression_1.out │ │ ├── constraints.out │ │ ├── conversion.out │ │ ├── copy.out │ │ ├── copy2.out │ │ ├── copydml.out │ │ ├── copyselect.out │ │ ├── create_aggregate.out │ │ ├── create_am.out │ │ ├── create_cast.out │ │ ├── create_function_c.out │ │ ├── create_function_sql.out │ │ ├── create_index.out │ │ ├── create_index_spgist.out │ │ ├── create_misc.out │ │ ├── create_operator.out │ │ ├── create_procedure.out │ │ ├── create_role.out │ │ ├── create_schema.out │ │ ├── create_table.out │ │ ├── create_table_like.out │ │ ├── create_type.out │ │ ├── create_view.out │ │ ├── database.out │ │ ├── date.out │ │ ├── dbsize.out │ │ ├── delete.out │ │ ├── dependency.out │ │ ├── domain.out │ │ ├── drop_if_exists.out │ │ ├── drop_operator.out │ │ ├── enum.out │ │ ├── equivclass.out │ │ ├── errors.out │ │ ├── event_trigger.out │ │ ├── event_trigger_login.out │ │ ├── explain.out │ │ ├── expressions.out │ │ ├── fast_default.out │ │ ├── float4-misrounded-input.out │ │ ├── float4.out │ │ ├── float8.out │ │ ├── foreign_data.out │ │ ├── foreign_key.out │ │ ├── functional_deps.out │ │ ├── generated.out │ │ ├── geometry.out │ │ ├── gin.out │ │ ├── gist.out │ │ ├── groupingsets.out │ │ ├── guc.out │ │ ├── hash_func.out │ │ ├── hash_index.out │ │ ├── hash_part.out │ │ ├── horology.out │ │ ├── identity.out │ │ ├── incremental_sort.out │ │ ├── index_including.out │ │ ├── index_including_gist.out │ │ ├── indexing.out │ │ ├── indirect_toast.out │ │ ├── inet.out │ │ ├── infinite_recurse.out │ │ ├── infinite_recurse_1.out │ │ ├── inherit.out │ │ ├── init_privs.out │ │ ├── insert.out │ │ ├── insert_conflict.out │ │ ├── int2.out │ │ ├── int4.out │ │ ├── int8.out │ │ ├── interval.out │ │ ├── join.out │ │ ├── join_hash.out │ │ ├── json.out │ │ ├── json_encoding.out │ │ ├── json_encoding_1.out │ │ ├── json_encoding_2.out │ │ ├── jsonb.out │ │ ├── jsonb_jsonpath.out │ │ ├── jsonpath.out │ │ ├── jsonpath_encoding.out │ │ ├── jsonpath_encoding_1.out │ │ ├── jsonpath_encoding_2.out │ │ ├── largeobject.out │ │ ├── largeobject_1.out │ │ ├── limit.out │ │ ├── line.out │ │ ├── lock.out │ │ ├── lseg.out │ │ ├── macaddr.out │ │ ├── macaddr8.out │ │ ├── maintain_every.out │ │ ├── matview.out │ │ ├── md5.out │ │ ├── md5_1.out │ │ ├── memoize.out │ │ ├── merge.out │ │ ├── misc.out │ │ ├── misc_functions.out │ │ ├── misc_sanity.out │ │ ├── money.out │ │ ├── multirangetypes.out │ │ ├── mvcc.out │ │ ├── name.out │ │ ├── namespace.out │ │ ├── numeric.out │ │ ├── numeric_big.out │ │ ├── numerology.out │ │ ├── object_address.out │ │ ├── oid.out │ │ ├── oidjoins.out │ │ ├── opr_sanity.out │ │ ├── partition_aggregate.out │ │ ├── partition_info.out │ │ ├── partition_join.out │ │ ├── partition_prune.out │ │ ├── password.out │ │ ├── password_1.out │ │ ├── path.out │ │ ├── pg_lsn.out │ │ ├── plancache.out │ │ ├── plpgsql.out │ │ ├── point.out │ │ ├── polygon.out │ │ ├── polymorphism.out │ │ ├── portals.out │ │ ├── portals_p2.out │ │ ├── predicate.out │ │ ├── prepare.out │ │ ├── prepared_xacts.out │ │ ├── prepared_xacts_1.out │ │ ├── privileges.out │ │ ├── psql.out │ │ ├── psql_crosstab.out │ │ ├── publication.out │ │ ├── random.out │ │ ├── rangefuncs.out │ │ ├── rangetypes.out │ │ ├── regex.out │ │ ├── regproc.out │ │ ├── reindex_catalog.out │ │ ├── reloptions.out │ │ ├── replica_identity.out │ │ ├── returning.out │ │ ├── roleattributes.out │ │ ├── rowsecurity.out │ │ ├── rowtypes.out │ │ ├── rules.out │ │ ├── sanity_check.out │ │ ├── security_label.out │ │ ├── select.out │ │ ├── select_distinct.out │ │ ├── select_distinct_on.out │ │ ├── select_having.out │ │ ├── select_having_1.out │ │ ├── select_having_2.out │ │ ├── select_implicit.out │ │ ├── select_implicit_1.out │ │ ├── select_implicit_2.out │ │ ├── select_into.out │ │ ├── select_parallel.out │ │ ├── select_views.out │ │ ├── sequence.out │ │ ├── serializable.out │ │ ├── spgist.out │ │ ├── sqljson.out │ │ ├── sqljson_jsontable.out │ │ ├── sqljson_queryfuncs.out │ │ ├── stats.out │ │ ├── stats_ext.out │ │ ├── strings.out │ │ ├── subscription.out │ │ ├── subselect.out │ │ ├── sysviews.out │ │ ├── tablesample.out │ │ ├── tablespace.out │ │ ├── temp.out │ │ ├── test_setup.out │ │ ├── text.out │ │ ├── tid.out │ │ ├── tidrangescan.out │ │ ├── tidscan.out │ │ ├── time.out │ │ ├── timestamp.out │ │ ├── timestamptz.out │ │ ├── timetz.out │ │ ├── transactions.out │ │ ├── triggers.out │ │ ├── truncate.out │ │ ├── tsdicts.out │ │ ├── tsearch.out │ │ ├── tsrf.out │ │ ├── tstypes.out │ │ ├── tuplesort.out │ │ ├── txid.out │ │ ├── type_sanity.out │ │ ├── typed_table.out │ │ ├── unicode.out │ │ ├── unicode_1.out │ │ ├── union.out │ │ ├── updatable_views.out │ │ ├── update.out │ │ ├── uuid.out │ │ ├── vacuum.out │ │ ├── vacuum_parallel.out │ │ ├── varchar.out │ │ ├── varchar_1.out │ │ ├── varchar_2.out │ │ ├── window.out │ │ ├── with.out │ │ ├── write_parallel.out │ │ ├── xid.out │ │ ├── xml.out │ │ ├── xml_1.out │ │ ├── xml_2.out │ │ ├── xmlmap.out │ │ └── xmlmap_1.out │ ├── meson.build │ ├── parallel_schedule │ ├── pg_regress.c │ ├── pg_regress.h │ ├── pg_regress_main.c │ ├── regress.c │ ├── regressplans.sh │ ├── resultmap │ └── sql │ │ ├── advisory_lock.sql │ │ ├── aggregates.sql │ │ ├── alter_generic.sql │ │ ├── alter_operator.sql │ │ ├── alter_table.sql │ │ ├── amutils.sql │ │ ├── arrays.sql │ │ ├── async.sql │ │ ├── babel_5343_returning.sql │ │ ├── bit.sql │ │ ├── bitmapops.sql │ │ ├── boolean.sql │ │ ├── box.sql │ │ ├── brin.sql │ │ ├── brin_bloom.sql │ │ ├── brin_multi.sql │ │ ├── btree_index.sql │ │ ├── case.sql │ │ ├── char.sql │ │ ├── circle.sql │ │ ├── cluster.sql │ │ ├── collate.icu.utf8.sql │ │ ├── collate.linux.utf8.sql │ │ ├── collate.sql │ │ ├── collate.utf8.sql │ │ ├── collate.windows.win1252.sql │ │ ├── combocid.sql │ │ ├── comments.sql │ │ ├── compression.sql │ │ ├── constraints.sql │ │ ├── conversion.sql │ │ ├── copy.sql │ │ ├── copy2.sql │ │ ├── copydml.sql │ │ ├── copyselect.sql │ │ ├── create_aggregate.sql │ │ ├── create_am.sql │ │ ├── create_cast.sql │ │ ├── create_function_c.sql │ │ ├── create_function_sql.sql │ │ ├── create_index.sql │ │ ├── create_index_spgist.sql │ │ ├── create_misc.sql │ │ ├── create_operator.sql │ │ ├── create_procedure.sql │ │ ├── create_role.sql │ │ ├── create_schema.sql │ │ ├── create_table.sql │ │ ├── create_table_like.sql │ │ ├── create_type.sql │ │ ├── create_view.sql │ │ ├── database.sql │ │ ├── date.sql │ │ ├── dbsize.sql │ │ ├── delete.sql │ │ ├── dependency.sql │ │ ├── domain.sql │ │ ├── drop_if_exists.sql │ │ ├── drop_operator.sql │ │ ├── enum.sql │ │ ├── equivclass.sql │ │ ├── errors.sql │ │ ├── event_trigger.sql │ │ ├── event_trigger_login.sql │ │ ├── explain.sql │ │ ├── expressions.sql │ │ ├── fast_default.sql │ │ ├── float4.sql │ │ ├── float8.sql │ │ ├── foreign_data.sql │ │ ├── foreign_key.sql │ │ ├── functional_deps.sql │ │ ├── generated.sql │ │ ├── geometry.sql │ │ ├── gin.sql │ │ ├── gist.sql │ │ ├── groupingsets.sql │ │ ├── guc.sql │ │ ├── hash_func.sql │ │ ├── hash_index.sql │ │ ├── hash_part.sql │ │ ├── horology.sql │ │ ├── identity.sql │ │ ├── incremental_sort.sql │ │ ├── index_including.sql │ │ ├── index_including_gist.sql │ │ ├── indexing.sql │ │ ├── indirect_toast.sql │ │ ├── inet.sql │ │ ├── infinite_recurse.sql │ │ ├── inherit.sql │ │ ├── init_privs.sql │ │ ├── insert.sql │ │ ├── insert_conflict.sql │ │ ├── int2.sql │ │ ├── int4.sql │ │ ├── int8.sql │ │ ├── interval.sql │ │ ├── join.sql │ │ ├── join_hash.sql │ │ ├── json.sql │ │ ├── json_encoding.sql │ │ ├── jsonb.sql │ │ ├── jsonb_jsonpath.sql │ │ ├── jsonpath.sql │ │ ├── jsonpath_encoding.sql │ │ ├── largeobject.sql │ │ ├── limit.sql │ │ ├── line.sql │ │ ├── lock.sql │ │ ├── lseg.sql │ │ ├── macaddr.sql │ │ ├── macaddr8.sql │ │ ├── maintain_every.sql │ │ ├── matview.sql │ │ ├── md5.sql │ │ ├── memoize.sql │ │ ├── merge.sql │ │ ├── misc.sql │ │ ├── misc_functions.sql │ │ ├── misc_sanity.sql │ │ ├── money.sql │ │ ├── multirangetypes.sql │ │ ├── mvcc.sql │ │ ├── name.sql │ │ ├── namespace.sql │ │ ├── numeric.sql │ │ ├── numeric_big.sql │ │ ├── numerology.sql │ │ ├── object_address.sql │ │ ├── oid.sql │ │ ├── oidjoins.sql │ │ ├── opr_sanity.sql │ │ ├── partition_aggregate.sql │ │ ├── partition_info.sql │ │ ├── partition_join.sql │ │ ├── partition_prune.sql │ │ ├── password.sql │ │ ├── path.sql │ │ ├── pg_lsn.sql │ │ ├── plancache.sql │ │ ├── plpgsql.sql │ │ ├── point.sql │ │ ├── polygon.sql │ │ ├── polymorphism.sql │ │ ├── portals.sql │ │ ├── portals_p2.sql │ │ ├── predicate.sql │ │ ├── prepare.sql │ │ ├── prepared_xacts.sql │ │ ├── privileges.sql │ │ ├── psql.sql │ │ ├── psql_crosstab.sql │ │ ├── publication.sql │ │ ├── random.sql │ │ ├── rangefuncs.sql │ │ ├── rangetypes.sql │ │ ├── regex.sql │ │ ├── regproc.sql │ │ ├── reindex_catalog.sql │ │ ├── reloptions.sql │ │ ├── replica_identity.sql │ │ ├── returning.sql │ │ ├── roleattributes.sql │ │ ├── rowsecurity.sql │ │ ├── rowtypes.sql │ │ ├── rules.sql │ │ ├── sanity_check.sql │ │ ├── security_label.sql │ │ ├── select.sql │ │ ├── select_distinct.sql │ │ ├── select_distinct_on.sql │ │ ├── select_having.sql │ │ ├── select_implicit.sql │ │ ├── select_into.sql │ │ ├── select_parallel.sql │ │ ├── select_views.sql │ │ ├── sequence.sql │ │ ├── serializable.sql │ │ ├── spgist.sql │ │ ├── sqljson.sql │ │ ├── sqljson_jsontable.sql │ │ ├── sqljson_queryfuncs.sql │ │ ├── stats.sql │ │ ├── stats_ext.sql │ │ ├── strings.sql │ │ ├── subscription.sql │ │ ├── subselect.sql │ │ ├── sysviews.sql │ │ ├── tablesample.sql │ │ ├── tablespace.sql │ │ ├── temp.sql │ │ ├── test_setup.sql │ │ ├── text.sql │ │ ├── tid.sql │ │ ├── tidrangescan.sql │ │ ├── tidscan.sql │ │ ├── time.sql │ │ ├── timestamp.sql │ │ ├── timestamptz.sql │ │ ├── timetz.sql │ │ ├── transactions.sql │ │ ├── triggers.sql │ │ ├── truncate.sql │ │ ├── tsdicts.sql │ │ ├── tsearch.sql │ │ ├── tsrf.sql │ │ ├── tstypes.sql │ │ ├── tuplesort.sql │ │ ├── txid.sql │ │ ├── type_sanity.sql │ │ ├── typed_table.sql │ │ ├── unicode.sql │ │ ├── union.sql │ │ ├── updatable_views.sql │ │ ├── update.sql │ │ ├── uuid.sql │ │ ├── vacuum.sql │ │ ├── vacuum_parallel.sql │ │ ├── varchar.sql │ │ ├── window.sql │ │ ├── with.sql │ │ ├── write_parallel.sql │ │ ├── xid.sql │ │ ├── xml.sql │ │ └── xmlmap.sql ├── ssl │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── conf │ │ ├── cas.config │ │ ├── client-dn.config │ │ ├── client-long.config │ │ ├── client-revoked-utf8.config │ │ ├── client-revoked.config │ │ ├── client.config │ │ ├── client_ca.config │ │ ├── client_ext.config │ │ ├── root_ca.config │ │ ├── server-cn-and-alt-names.config │ │ ├── server-cn-and-ip-alt-names.config │ │ ├── server-cn-only.config │ │ ├── server-ip-alt-names.config │ │ ├── server-ip-cn-and-alt-names.config │ │ ├── server-ip-cn-and-dns-alt-names.config │ │ ├── server-ip-cn-only.config │ │ ├── server-ip-in-dnsname.config │ │ ├── server-multiple-alt-names.config │ │ ├── server-no-names.config │ │ ├── server-revoked.config │ │ ├── server-rsapss.config │ │ ├── server-single-alt-name.config │ │ └── server_ca.config │ ├── meson.build │ ├── ssl │ │ ├── .gitignore │ │ ├── both-cas-1.crt │ │ ├── both-cas-2.crt │ │ ├── client+client_ca.crt │ │ ├── client-crldir │ │ │ └── 9bb9e3c3.r0 │ │ ├── client-der.key │ │ ├── client-dn.crt │ │ ├── client-dn.key │ │ ├── client-encrypted-der.key │ │ ├── client-encrypted-pem.key │ │ ├── client-long.crt │ │ ├── client-long.key │ │ ├── client-revoked-utf8.crt │ │ ├── client-revoked-utf8.key │ │ ├── client-revoked.crt │ │ ├── client-revoked.key │ │ ├── client.crl │ │ ├── client.crt │ │ ├── client.key │ │ ├── client_ca.crt │ │ ├── client_ca.key │ │ ├── client_ext.crt │ │ ├── client_ext.key │ │ ├── root+client-crldir │ │ │ ├── 9bb9e3c3.r0 │ │ │ └── a3d11bff.r0 │ │ ├── root+client.crl │ │ ├── root+client_ca.crt │ │ ├── root+server-crldir │ │ │ ├── a3d11bff.r0 │ │ │ └── a836cc2d.r0 │ │ ├── root+server.crl │ │ ├── root+server_ca.crt │ │ ├── root.crl │ │ ├── root_ca.crt │ │ ├── root_ca.key │ │ ├── server-cn-and-alt-names.crt │ │ ├── server-cn-and-alt-names.key │ │ ├── server-cn-and-ip-alt-names.crt │ │ ├── server-cn-and-ip-alt-names.key │ │ ├── server-cn-only+server_ca.crt │ │ ├── server-cn-only.crt │ │ ├── server-cn-only.key │ │ ├── server-crldir │ │ │ └── a836cc2d.r0 │ │ ├── server-ip-alt-names.crt │ │ ├── server-ip-alt-names.key │ │ ├── server-ip-cn-and-alt-names.crt │ │ ├── server-ip-cn-and-alt-names.key │ │ ├── server-ip-cn-and-dns-alt-names.crt │ │ ├── server-ip-cn-and-dns-alt-names.key │ │ ├── server-ip-cn-only.crt │ │ ├── server-ip-cn-only.key │ │ ├── server-ip-in-dnsname.crt │ │ ├── server-ip-in-dnsname.key │ │ ├── server-multiple-alt-names.crt │ │ ├── server-multiple-alt-names.key │ │ ├── server-no-names.crt │ │ ├── server-no-names.key │ │ ├── server-password.key │ │ ├── server-revoked.crt │ │ ├── server-revoked.key │ │ ├── server-rsapss.crt │ │ ├── server-rsapss.key │ │ ├── server-single-alt-name.crt │ │ ├── server-single-alt-name.key │ │ ├── server.crl │ │ ├── server_ca.crt │ │ └── server_ca.key │ ├── sslfiles.mk │ └── t │ │ ├── 001_ssltests.pl │ │ ├── 002_scram.pl │ │ ├── 003_sslinfo.pl │ │ └── SSL │ │ ├── Backend │ │ └── OpenSSL.pm │ │ └── Server.pm └── subscription │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── meson.build │ └── t │ ├── 001_rep_changes.pl │ ├── 002_types.pl │ ├── 003_constraints.pl │ ├── 004_sync.pl │ ├── 005_encoding.pl │ ├── 006_rewrite.pl │ ├── 007_ddl.pl │ ├── 008_diff_schema.pl │ ├── 009_matviews.pl │ ├── 010_truncate.pl │ ├── 011_generated.pl │ ├── 012_collation.pl │ ├── 013_partition.pl │ ├── 014_binary.pl │ ├── 015_stream.pl │ ├── 016_stream_subxact.pl │ ├── 017_stream_ddl.pl │ ├── 018_stream_subxact_abort.pl │ ├── 019_stream_subxact_ddl_abort.pl │ ├── 020_messages.pl │ ├── 021_twophase.pl │ ├── 022_twophase_cascade.pl │ ├── 023_twophase_stream.pl │ ├── 024_add_drop_pub.pl │ ├── 025_rep_changes_for_schema.pl │ ├── 026_stats.pl │ ├── 027_nosuperuser.pl │ ├── 028_row_filter.pl │ ├── 029_on_error.pl │ ├── 030_origin.pl │ ├── 031_column_list.pl │ ├── 032_subscribe_use_index.pl │ ├── 033_run_as_table_owner.pl │ └── 100_bugs.pl ├── timezone ├── .gitignore ├── Makefile ├── README ├── data │ └── tzdata.zi ├── known_abbrevs.txt ├── localtime.c ├── meson.build ├── pgtz.c ├── pgtz.h ├── private.h ├── strftime.c ├── tzfile.h ├── tznames │ ├── Africa.txt │ ├── America.txt │ ├── Antarctica.txt │ ├── Asia.txt │ ├── Atlantic.txt │ ├── Australia │ ├── Australia.txt │ ├── Default │ ├── Etc.txt │ ├── Europe.txt │ ├── India │ ├── Indian.txt │ ├── Makefile │ ├── Pacific.txt │ ├── README │ └── meson.build └── zic.c ├── tools ├── PerfectHash.pm ├── RELEASE_CHANGES ├── add_commit_links.pl ├── ccsym ├── check_bison_recursion.pl ├── ci │ ├── README │ ├── ci_macports_packages.sh │ ├── cores_backtrace.sh │ ├── gcp_freebsd_repartition.sh │ └── pg_ci_base.conf ├── codelines ├── copyright.pl ├── darwin_sysroot ├── editors │ ├── emacs.samples │ └── vim.samples ├── find_badmacros ├── find_meson ├── find_static ├── find_typedef ├── fix-old-flex-code.pl ├── gen_export.pl ├── gen_keywordlist.pl ├── git-external-diff ├── git_changelog ├── ifaddrs │ ├── .gitignore │ ├── Makefile │ ├── README │ └── test_ifaddrs.c ├── install_files ├── make_ctags ├── make_etags ├── make_mkid ├── mark_pgdllimport.pl ├── msvc_gendef.pl ├── perlcheck │ ├── find_perl_files │ ├── perlcriticrc │ ├── pgperlcritic │ └── pgperlsyncheck ├── pg_bsd_indent │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── args.c │ ├── err.c │ ├── err.h │ ├── indent.1 │ ├── indent.c │ ├── indent.h │ ├── indent_codes.h │ ├── indent_globs.h │ ├── io.c │ ├── lexi.c │ ├── meson.build │ ├── parse.c │ ├── pr_comment.c │ ├── t │ │ └── 001_pg_bsd_indent.pl │ └── tests │ │ ├── binary.0 │ │ ├── binary.0.stdout │ │ ├── comments.0 │ │ ├── comments.0.stdout │ │ ├── comments.pro │ │ ├── cppelsecom.0 │ │ ├── cppelsecom.0.stdout │ │ ├── declarations.0 │ │ ├── declarations.0.stdout │ │ ├── elsecomment.0 │ │ ├── elsecomment.0.stdout │ │ ├── elsecomment.pro │ │ ├── enum.0 │ │ ├── enum.0.stdout │ │ ├── f_decls.0 │ │ ├── f_decls.0.stdout │ │ ├── float.0 │ │ ├── float.0.stdout │ │ ├── label.0 │ │ ├── label.0.stdout │ │ ├── label.pro │ │ ├── list_head.0 │ │ ├── list_head.0.stdout │ │ ├── nsac.0 │ │ ├── nsac.0.stdout │ │ ├── nsac.pro │ │ ├── offsetof.0 │ │ ├── offsetof.0.stdout │ │ ├── parens.0 │ │ ├── parens.0.stdout │ │ ├── parens.pro │ │ ├── sac.0 │ │ ├── sac.0.stdout │ │ ├── sac.pro │ │ ├── struct.0 │ │ ├── struct.0.stdout │ │ ├── surplusbad.0 │ │ ├── surplusbad.0.stdout │ │ ├── surplusbad.pro │ │ ├── types_from_file.0 │ │ ├── types_from_file.0.stdout │ │ ├── types_from_file.list │ │ ├── types_from_file.pro │ │ ├── wchar.0 │ │ └── wchar.0.stdout ├── pgflex ├── pginclude │ ├── README │ ├── headerscheck │ ├── pgcheckdefines │ ├── pgcompinclude │ ├── pgdefine │ ├── pgfixinclude │ └── pgrminclude ├── pgindent │ ├── README │ ├── exclude_file_patterns │ ├── perltidyrc │ ├── pgindent │ ├── pgindent.man │ ├── pgperltidy │ └── typedefs.list ├── pgtest ├── rcgen ├── testint128.c ├── testwrap ├── valgrind.supp ├── version_stamp.pl └── win32tzlist.pl └── tutorial ├── .gitignore ├── Makefile ├── README ├── advanced.source ├── basics.source ├── complex.c ├── complex.source ├── funcs.c ├── funcs.source └── syscat.source /.cirrus.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/.cirrus.star -------------------------------------------------------------------------------- /.cirrus.tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/.cirrus.tasks.yml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/.gitignore -------------------------------------------------------------------------------- /BabelfishDump.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/BabelfishDump.spec -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/GNUmakefile.in -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/HISTORY -------------------------------------------------------------------------------- /LICENSE.PostgreSQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/LICENSE.PostgreSQL -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/SECURITY.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/Makefile -------------------------------------------------------------------------------- /config/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/ax_pthread.m4 -------------------------------------------------------------------------------- /config/c-compiler.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/c-compiler.m4 -------------------------------------------------------------------------------- /config/c-library.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/c-library.m4 -------------------------------------------------------------------------------- /config/check_decls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/check_decls.m4 -------------------------------------------------------------------------------- /config/check_modules.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/check_modules.pl -------------------------------------------------------------------------------- /config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/config.guess -------------------------------------------------------------------------------- /config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/config.sub -------------------------------------------------------------------------------- /config/general.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/general.m4 -------------------------------------------------------------------------------- /config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/install-sh -------------------------------------------------------------------------------- /config/llvm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/llvm.m4 -------------------------------------------------------------------------------- /config/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/meson.build -------------------------------------------------------------------------------- /config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/missing -------------------------------------------------------------------------------- /config/perl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/perl.m4 -------------------------------------------------------------------------------- /config/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/pkg.m4 -------------------------------------------------------------------------------- /config/prep_buildtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/prep_buildtree -------------------------------------------------------------------------------- /config/programs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/programs.m4 -------------------------------------------------------------------------------- /config/python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/python.m4 -------------------------------------------------------------------------------- /config/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/config/tcl.m4 -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/Makefile -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/amcheck/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/amcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/amcheck/Makefile -------------------------------------------------------------------------------- /contrib/amcheck/expected/check.out: -------------------------------------------------------------------------------- 1 | CREATE EXTENSION amcheck; 2 | -------------------------------------------------------------------------------- /contrib/amcheck/sql/check.sql: -------------------------------------------------------------------------------- 1 | CREATE EXTENSION amcheck; 2 | -------------------------------------------------------------------------------- /contrib/auto_explain/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/basebackup_to_shell/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/basic_archive/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/bloom/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/bloom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/bloom/Makefile -------------------------------------------------------------------------------- /contrib/bloom/blcost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/bloom/blcost.c -------------------------------------------------------------------------------- /contrib/bloom/blinsert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/bloom/blinsert.c -------------------------------------------------------------------------------- /contrib/bloom/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/bloom/bloom.h -------------------------------------------------------------------------------- /contrib/bloom/blscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/bloom/blscan.c -------------------------------------------------------------------------------- /contrib/bloom/blutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/bloom/blutils.c -------------------------------------------------------------------------------- /contrib/bloom/blvacuum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/bloom/blvacuum.c -------------------------------------------------------------------------------- /contrib/bool_plperl/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/btree_gin/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/btree_gist/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/citext/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/citext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/citext/Makefile -------------------------------------------------------------------------------- /contrib/citext/citext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/citext/citext.c -------------------------------------------------------------------------------- /contrib/cube/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/cube/.gitignore -------------------------------------------------------------------------------- /contrib/cube/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/cube/CHANGES -------------------------------------------------------------------------------- /contrib/cube/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/cube/Makefile -------------------------------------------------------------------------------- /contrib/cube/cube.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/cube/cube.c -------------------------------------------------------------------------------- /contrib/cube/cubedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/cube/cubedata.h -------------------------------------------------------------------------------- /contrib/cube/cubeparse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/cube/cubeparse.y -------------------------------------------------------------------------------- /contrib/cube/cubescan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/cube/cubescan.l -------------------------------------------------------------------------------- /contrib/cube/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/cube/meson.build -------------------------------------------------------------------------------- /contrib/dblink/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/dblink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/dblink/Makefile -------------------------------------------------------------------------------- /contrib/dblink/dblink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/dblink/dblink.c -------------------------------------------------------------------------------- /contrib/dict_int/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/dict_xsyn/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/earthdistance/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/file_fdw/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/file_fdw/data/agg.data: -------------------------------------------------------------------------------- 1 | 56 7.8 2 | 100 99.097 3 | 0 0.09561 4 | 42 324.78 5 | -------------------------------------------------------------------------------- /contrib/file_fdw/data/list1.csv: -------------------------------------------------------------------------------- 1 | 1,foo 2 | 1,bar 3 | -------------------------------------------------------------------------------- /contrib/file_fdw/data/list2.bad: -------------------------------------------------------------------------------- 1 | 2,baz 2 | 1,qux 3 | -------------------------------------------------------------------------------- /contrib/file_fdw/data/list2.csv: -------------------------------------------------------------------------------- 1 | 2,baz 2 | 2,qux 3 | -------------------------------------------------------------------------------- /contrib/hstore/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/hstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/hstore/Makefile -------------------------------------------------------------------------------- /contrib/hstore/hstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/hstore/hstore.h -------------------------------------------------------------------------------- /contrib/hstore_plperl/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/hstore_plpython/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/intagg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/intagg/Makefile -------------------------------------------------------------------------------- /contrib/intarray/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/intarray/_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/intarray/_int.h -------------------------------------------------------------------------------- /contrib/isn/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/isn/EAN13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/EAN13.h -------------------------------------------------------------------------------- /contrib/isn/ISBN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/ISBN.h -------------------------------------------------------------------------------- /contrib/isn/ISMN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/ISMN.h -------------------------------------------------------------------------------- /contrib/isn/ISSN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/ISSN.h -------------------------------------------------------------------------------- /contrib/isn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/Makefile -------------------------------------------------------------------------------- /contrib/isn/UPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/UPC.h -------------------------------------------------------------------------------- /contrib/isn/isn--1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/isn--1.1.sql -------------------------------------------------------------------------------- /contrib/isn/isn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/isn.c -------------------------------------------------------------------------------- /contrib/isn/isn.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/isn.control -------------------------------------------------------------------------------- /contrib/isn/isn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/isn.h -------------------------------------------------------------------------------- /contrib/isn/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/meson.build -------------------------------------------------------------------------------- /contrib/isn/sql/isn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/isn/sql/isn.sql -------------------------------------------------------------------------------- /contrib/jsonb_plperl/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/jsonb_plpython/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/lo/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/lo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/lo/Makefile -------------------------------------------------------------------------------- /contrib/lo/lo--1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/lo/lo--1.1.sql -------------------------------------------------------------------------------- /contrib/lo/lo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/lo/lo.c -------------------------------------------------------------------------------- /contrib/lo/lo.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/lo/lo.control -------------------------------------------------------------------------------- /contrib/lo/lo_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/lo/lo_test.sql -------------------------------------------------------------------------------- /contrib/lo/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/lo/meson.build -------------------------------------------------------------------------------- /contrib/lo/sql/lo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/lo/sql/lo.sql -------------------------------------------------------------------------------- /contrib/ltree/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/ltree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/ltree/Makefile -------------------------------------------------------------------------------- /contrib/ltree/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/ltree/crc32.c -------------------------------------------------------------------------------- /contrib/ltree/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/ltree/crc32.h -------------------------------------------------------------------------------- /contrib/ltree/ltree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/ltree/ltree.h -------------------------------------------------------------------------------- /contrib/ltree/ltree_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/ltree/ltree_io.c -------------------------------------------------------------------------------- /contrib/ltree/ltree_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/ltree/ltree_op.c -------------------------------------------------------------------------------- /contrib/ltree_plpython/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/meson.build -------------------------------------------------------------------------------- /contrib/oid2name/.gitignore: -------------------------------------------------------------------------------- 1 | /oid2name 2 | 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /contrib/pageinspect/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/passwordcheck/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pg_buffercache/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pg_freespacemap/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pg_freespacemap/pg_freespacemap.conf: -------------------------------------------------------------------------------- 1 | autovacuum = off 2 | -------------------------------------------------------------------------------- /contrib/pg_prewarm/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pg_stat_statements/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pg_surgery/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pg_trgm/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pg_trgm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/pg_trgm/Makefile -------------------------------------------------------------------------------- /contrib/pg_trgm/trgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/pg_trgm/trgm.h -------------------------------------------------------------------------------- /contrib/pg_visibility/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pg_walinspect/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pgcrypto/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/pgcrypto/expected/pgp-zlib-DISABLED.out: -------------------------------------------------------------------------------- 1 | -- zlib is disabled 2 | -------------------------------------------------------------------------------- /contrib/pgcrypto/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/pgcrypto/mbuf.c -------------------------------------------------------------------------------- /contrib/pgcrypto/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/pgcrypto/mbuf.h -------------------------------------------------------------------------------- /contrib/pgcrypto/pgp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/pgcrypto/pgp.c -------------------------------------------------------------------------------- /contrib/pgcrypto/pgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/pgcrypto/pgp.h -------------------------------------------------------------------------------- /contrib/pgcrypto/px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/pgcrypto/px.c -------------------------------------------------------------------------------- /contrib/pgcrypto/px.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/pgcrypto/px.h -------------------------------------------------------------------------------- /contrib/pgcrypto/sql/pgp-zlib-DISABLED.sql: -------------------------------------------------------------------------------- 1 | -- zlib is disabled 2 | -------------------------------------------------------------------------------- /contrib/pgstattuple/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/postgres_fdw/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/seg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/.gitignore -------------------------------------------------------------------------------- /contrib/seg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/Makefile -------------------------------------------------------------------------------- /contrib/seg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/meson.build -------------------------------------------------------------------------------- /contrib/seg/seg--1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/seg--1.1.sql -------------------------------------------------------------------------------- /contrib/seg/seg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/seg.c -------------------------------------------------------------------------------- /contrib/seg/seg.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/seg.control -------------------------------------------------------------------------------- /contrib/seg/segdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/segdata.h -------------------------------------------------------------------------------- /contrib/seg/segparse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/segparse.y -------------------------------------------------------------------------------- /contrib/seg/segscan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/segscan.l -------------------------------------------------------------------------------- /contrib/seg/sql/seg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/seg/sql/seg.sql -------------------------------------------------------------------------------- /contrib/sepgsql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/sepgsql/Makefile -------------------------------------------------------------------------------- /contrib/sepgsql/dml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/sepgsql/dml.c -------------------------------------------------------------------------------- /contrib/sepgsql/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/sepgsql/hooks.c -------------------------------------------------------------------------------- /contrib/sepgsql/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/sepgsql/label.c -------------------------------------------------------------------------------- /contrib/sepgsql/launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/sepgsql/launcher -------------------------------------------------------------------------------- /contrib/sepgsql/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/sepgsql/proc.c -------------------------------------------------------------------------------- /contrib/sepgsql/schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/sepgsql/schema.c -------------------------------------------------------------------------------- /contrib/sepgsql/uavc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/sepgsql/uavc.c -------------------------------------------------------------------------------- /contrib/spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/spi/Makefile -------------------------------------------------------------------------------- /contrib/spi/autoinc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/spi/autoinc.c -------------------------------------------------------------------------------- /contrib/spi/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/spi/meson.build -------------------------------------------------------------------------------- /contrib/spi/refint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/spi/refint.c -------------------------------------------------------------------------------- /contrib/sslinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/sslinfo/Makefile -------------------------------------------------------------------------------- /contrib/tablefunc/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/tcn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/tcn/.gitignore -------------------------------------------------------------------------------- /contrib/tcn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/tcn/Makefile -------------------------------------------------------------------------------- /contrib/tcn/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/tcn/meson.build -------------------------------------------------------------------------------- /contrib/tcn/tcn--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/tcn/tcn--1.0.sql -------------------------------------------------------------------------------- /contrib/tcn/tcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/tcn/tcn.c -------------------------------------------------------------------------------- /contrib/tcn/tcn.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/tcn/tcn.control -------------------------------------------------------------------------------- /contrib/tsm_system_rows/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/tsm_system_time/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/uuid-ossp/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/vacuumlo/.gitignore: -------------------------------------------------------------------------------- 1 | /vacuumlo 2 | 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /contrib/xml2/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /contrib/xml2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/xml2/Makefile -------------------------------------------------------------------------------- /contrib/xml2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/xml2/meson.build -------------------------------------------------------------------------------- /contrib/xml2/xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/xml2/xpath.c -------------------------------------------------------------------------------- /contrib/xml2/xslt_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/contrib/xml2/xslt_proc.c -------------------------------------------------------------------------------- /doc/KNOWN_BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/KNOWN_BUGS -------------------------------------------------------------------------------- /doc/MISSING_FEATURES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/MISSING_FEATURES -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/TODO -------------------------------------------------------------------------------- /doc/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/Makefile -------------------------------------------------------------------------------- /doc/src/sgml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/.gitignore -------------------------------------------------------------------------------- /doc/src/sgml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/Makefile -------------------------------------------------------------------------------- /doc/src/sgml/array.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/array.sgml -------------------------------------------------------------------------------- /doc/src/sgml/backup.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/backup.sgml -------------------------------------------------------------------------------- /doc/src/sgml/biblio.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/biblio.sgml -------------------------------------------------------------------------------- /doc/src/sgml/bki.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/bki.sgml -------------------------------------------------------------------------------- /doc/src/sgml/bloom.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/bloom.sgml -------------------------------------------------------------------------------- /doc/src/sgml/brin.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/brin.sgml -------------------------------------------------------------------------------- /doc/src/sgml/btree.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/btree.sgml -------------------------------------------------------------------------------- /doc/src/sgml/citext.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/citext.sgml -------------------------------------------------------------------------------- /doc/src/sgml/color.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/color.sgml -------------------------------------------------------------------------------- /doc/src/sgml/config.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/config.sgml -------------------------------------------------------------------------------- /doc/src/sgml/cube.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/cube.sgml -------------------------------------------------------------------------------- /doc/src/sgml/dblink.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/dblink.sgml -------------------------------------------------------------------------------- /doc/src/sgml/ddl.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/ddl.sgml -------------------------------------------------------------------------------- /doc/src/sgml/dfunc.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/dfunc.sgml -------------------------------------------------------------------------------- /doc/src/sgml/dml.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/dml.sgml -------------------------------------------------------------------------------- /doc/src/sgml/ecpg.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/ecpg.sgml -------------------------------------------------------------------------------- /doc/src/sgml/extend.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/extend.sgml -------------------------------------------------------------------------------- /doc/src/sgml/func.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/func.sgml -------------------------------------------------------------------------------- /doc/src/sgml/geqo.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/geqo.sgml -------------------------------------------------------------------------------- /doc/src/sgml/gin.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/gin.sgml -------------------------------------------------------------------------------- /doc/src/sgml/gist.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/gist.sgml -------------------------------------------------------------------------------- /doc/src/sgml/hash.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/hash.sgml -------------------------------------------------------------------------------- /doc/src/sgml/hstore.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/hstore.sgml -------------------------------------------------------------------------------- /doc/src/sgml/info.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/info.sgml -------------------------------------------------------------------------------- /doc/src/sgml/intagg.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/intagg.sgml -------------------------------------------------------------------------------- /doc/src/sgml/intro.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/intro.sgml -------------------------------------------------------------------------------- /doc/src/sgml/isn.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/isn.sgml -------------------------------------------------------------------------------- /doc/src/sgml/jit.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/jit.sgml -------------------------------------------------------------------------------- /doc/src/sgml/json.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/json.sgml -------------------------------------------------------------------------------- /doc/src/sgml/legal.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/legal.sgml -------------------------------------------------------------------------------- /doc/src/sgml/libpq.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/libpq.sgml -------------------------------------------------------------------------------- /doc/src/sgml/limits.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/limits.sgml -------------------------------------------------------------------------------- /doc/src/sgml/lo.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/lo.sgml -------------------------------------------------------------------------------- /doc/src/sgml/lobj.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/lobj.sgml -------------------------------------------------------------------------------- /doc/src/sgml/ltree.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/ltree.sgml -------------------------------------------------------------------------------- /doc/src/sgml/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/meson.build -------------------------------------------------------------------------------- /doc/src/sgml/mvcc.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/mvcc.sgml -------------------------------------------------------------------------------- /doc/src/sgml/nls.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/nls.sgml -------------------------------------------------------------------------------- /doc/src/sgml/pgtrgm.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/pgtrgm.sgml -------------------------------------------------------------------------------- /doc/src/sgml/plperl.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/plperl.sgml -------------------------------------------------------------------------------- /doc/src/sgml/pltcl.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/pltcl.sgml -------------------------------------------------------------------------------- /doc/src/sgml/query.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/query.sgml -------------------------------------------------------------------------------- /doc/src/sgml/ref/do.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/ref/do.sgml -------------------------------------------------------------------------------- /doc/src/sgml/rules.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/rules.sgml -------------------------------------------------------------------------------- /doc/src/sgml/seg.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/seg.sgml -------------------------------------------------------------------------------- /doc/src/sgml/spgist.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/spgist.sgml -------------------------------------------------------------------------------- /doc/src/sgml/spi.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/spi.sgml -------------------------------------------------------------------------------- /doc/src/sgml/start.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/start.sgml -------------------------------------------------------------------------------- /doc/src/sgml/syntax.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/syntax.sgml -------------------------------------------------------------------------------- /doc/src/sgml/tcn.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/tcn.sgml -------------------------------------------------------------------------------- /doc/src/sgml/wal.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/wal.sgml -------------------------------------------------------------------------------- /doc/src/sgml/xact.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/xact.sgml -------------------------------------------------------------------------------- /doc/src/sgml/xaggr.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/xaggr.sgml -------------------------------------------------------------------------------- /doc/src/sgml/xfunc.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/xfunc.sgml -------------------------------------------------------------------------------- /doc/src/sgml/xindex.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/xindex.sgml -------------------------------------------------------------------------------- /doc/src/sgml/xml2.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/xml2.sgml -------------------------------------------------------------------------------- /doc/src/sgml/xoper.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/xoper.sgml -------------------------------------------------------------------------------- /doc/src/sgml/xplang.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/xplang.sgml -------------------------------------------------------------------------------- /doc/src/sgml/xtypes.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/doc/src/sgml/xtypes.sgml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/meson_options.txt -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/DEVELOPERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/DEVELOPERS -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.global.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/Makefile.global.in -------------------------------------------------------------------------------- /src/Makefile.shlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/Makefile.shlib -------------------------------------------------------------------------------- /src/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/.gitignore -------------------------------------------------------------------------------- /src/backend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/Makefile -------------------------------------------------------------------------------- /src/backend/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/common.mk -------------------------------------------------------------------------------- /src/backend/jit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/jit/Makefile -------------------------------------------------------------------------------- /src/backend/jit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/jit/README -------------------------------------------------------------------------------- /src/backend/jit/jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/jit/jit.c -------------------------------------------------------------------------------- /src/backend/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/lib/Makefile -------------------------------------------------------------------------------- /src/backend/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/lib/README -------------------------------------------------------------------------------- /src/backend/lib/dshash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/lib/dshash.c -------------------------------------------------------------------------------- /src/backend/lib/ilist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/lib/ilist.c -------------------------------------------------------------------------------- /src/backend/lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/lib/rbtree.c -------------------------------------------------------------------------------- /src/backend/libpq/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/libpq/auth.c -------------------------------------------------------------------------------- /src/backend/libpq/hba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/libpq/hba.c -------------------------------------------------------------------------------- /src/backend/libpq/pqmq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/libpq/pqmq.c -------------------------------------------------------------------------------- /src/backend/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/main/main.c -------------------------------------------------------------------------------- /src/backend/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/meson.build -------------------------------------------------------------------------------- /src/backend/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/nls.mk -------------------------------------------------------------------------------- /src/backend/nodes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/nodes/README -------------------------------------------------------------------------------- /src/backend/nodes/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/nodes/list.c -------------------------------------------------------------------------------- /src/backend/nodes/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/nodes/read.c -------------------------------------------------------------------------------- /src/backend/po/LINGUAS: -------------------------------------------------------------------------------- 1 | de es fr id it ja ka ko pl pt_BR ru sv tr uk zh_CN 2 | -------------------------------------------------------------------------------- /src/backend/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/de.po -------------------------------------------------------------------------------- /src/backend/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/es.po -------------------------------------------------------------------------------- /src/backend/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/fr.po -------------------------------------------------------------------------------- /src/backend/po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/id.po -------------------------------------------------------------------------------- /src/backend/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/it.po -------------------------------------------------------------------------------- /src/backend/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/ja.po -------------------------------------------------------------------------------- /src/backend/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/ka.po -------------------------------------------------------------------------------- /src/backend/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/ko.po -------------------------------------------------------------------------------- /src/backend/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/pl.po -------------------------------------------------------------------------------- /src/backend/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/pt_BR.po -------------------------------------------------------------------------------- /src/backend/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/ru.po -------------------------------------------------------------------------------- /src/backend/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/sv.po -------------------------------------------------------------------------------- /src/backend/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/tr.po -------------------------------------------------------------------------------- /src/backend/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/uk.po -------------------------------------------------------------------------------- /src/backend/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/po/zh_CN.po -------------------------------------------------------------------------------- /src/backend/port/tas/dummy.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/regex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/regex/README -------------------------------------------------------------------------------- /src/backend/snowball/.gitignore: -------------------------------------------------------------------------------- 1 | /snowball_create.sql 2 | -------------------------------------------------------------------------------- /src/backend/tcop/dest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/backend/tcop/dest.c -------------------------------------------------------------------------------- /src/backend/utils/misc/.gitignore: -------------------------------------------------------------------------------- 1 | /guc-file.c 2 | -------------------------------------------------------------------------------- /src/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/Makefile -------------------------------------------------------------------------------- /src/bin/initdb/.gitignore: -------------------------------------------------------------------------------- 1 | /localtime.c 2 | 3 | /initdb 4 | 5 | /tmp_check/ 6 | -------------------------------------------------------------------------------- /src/bin/initdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/Makefile -------------------------------------------------------------------------------- /src/bin/initdb/initdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/initdb.c -------------------------------------------------------------------------------- /src/bin/initdb/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/nls.mk -------------------------------------------------------------------------------- /src/bin/initdb/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/cs.po -------------------------------------------------------------------------------- /src/bin/initdb/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/de.po -------------------------------------------------------------------------------- /src/bin/initdb/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/el.po -------------------------------------------------------------------------------- /src/bin/initdb/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/es.po -------------------------------------------------------------------------------- /src/bin/initdb/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/fr.po -------------------------------------------------------------------------------- /src/bin/initdb/po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/he.po -------------------------------------------------------------------------------- /src/bin/initdb/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/it.po -------------------------------------------------------------------------------- /src/bin/initdb/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/ja.po -------------------------------------------------------------------------------- /src/bin/initdb/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/ka.po -------------------------------------------------------------------------------- /src/bin/initdb/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/ko.po -------------------------------------------------------------------------------- /src/bin/initdb/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/pl.po -------------------------------------------------------------------------------- /src/bin/initdb/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/ru.po -------------------------------------------------------------------------------- /src/bin/initdb/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/sv.po -------------------------------------------------------------------------------- /src/bin/initdb/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/tr.po -------------------------------------------------------------------------------- /src/bin/initdb/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/uk.po -------------------------------------------------------------------------------- /src/bin/initdb/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/initdb/po/vi.po -------------------------------------------------------------------------------- /src/bin/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/meson.build -------------------------------------------------------------------------------- /src/bin/pg_archivecleanup/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_archivecleanup 2 | 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /src/bin/pg_archivecleanup/po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs de el es fr it ja ka ko pl pt_BR ru sv tr uk vi zh_CN 2 | -------------------------------------------------------------------------------- /src/bin/pg_basebackup/po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs de el es fr he it ja ka ko pl pt_BR ru sv tr uk vi zh_CN 2 | -------------------------------------------------------------------------------- /src/bin/pg_combinebackup/.gitignore: -------------------------------------------------------------------------------- 1 | pg_combinebackup 2 | 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /src/bin/pg_combinebackup/po/LINGUAS: -------------------------------------------------------------------------------- 1 | de es fr ja ka ko ru sv uk 2 | -------------------------------------------------------------------------------- /src/bin/pg_config/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_config 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/bin/pg_config/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_config/nls.mk -------------------------------------------------------------------------------- /src/bin/pg_controldata/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_controldata 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/bin/pg_ctl/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_ctl 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/bin/pg_ctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/Makefile -------------------------------------------------------------------------------- /src/bin/pg_ctl/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/nls.mk -------------------------------------------------------------------------------- /src/bin/pg_ctl/pg_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/pg_ctl.c -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/cs.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/de.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/el.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/es.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/fr.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/he.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/it.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/ja.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/ka.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/ko.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/pl.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/ru.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/sv.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/tr.po -------------------------------------------------------------------------------- /src/bin/pg_ctl/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_ctl/po/uk.po -------------------------------------------------------------------------------- /src/bin/pg_dump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/Makefile -------------------------------------------------------------------------------- /src/bin/pg_dump/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/common.c -------------------------------------------------------------------------------- /src/bin/pg_dump/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/filter.c -------------------------------------------------------------------------------- /src/bin/pg_dump/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/filter.h -------------------------------------------------------------------------------- /src/bin/pg_dump/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/nls.mk -------------------------------------------------------------------------------- /src/bin/pg_dump/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/cs.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/de.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/el.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/es.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/fr.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/he.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/it.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/ja.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/ka.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/ko.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/pl.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/ru.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/sv.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/tr.po -------------------------------------------------------------------------------- /src/bin/pg_dump/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_dump/po/uk.po -------------------------------------------------------------------------------- /src/bin/pg_resetwal/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_resetwal 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/bin/pg_resetwal/po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs de el es fr it ja ka ko pl pt_BR ru sv tr uk zh_CN 2 | -------------------------------------------------------------------------------- /src/bin/pg_rewind/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pg_rewind/nls.mk -------------------------------------------------------------------------------- /src/bin/pg_test_fsync/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_test_fsync 2 | 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /src/bin/pg_test_timing/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_test_timing 2 | 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /src/bin/pg_upgrade/po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs de es fr ja ka ko ru sv tr uk zh_CN 2 | -------------------------------------------------------------------------------- /src/bin/pg_verifybackup/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_verifybackup 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/bin/pg_walsummary/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_walsummary 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/bin/pg_walsummary/po/LINGUAS: -------------------------------------------------------------------------------- 1 | de es fr ja ka ko ru sv uk 2 | -------------------------------------------------------------------------------- /src/bin/pgbench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pgbench/Makefile -------------------------------------------------------------------------------- /src/bin/pgevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pgevent/Makefile -------------------------------------------------------------------------------- /src/bin/pgevent/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/pgevent/README -------------------------------------------------------------------------------- /src/bin/pgevent/pgmsgevent.mc: -------------------------------------------------------------------------------- 1 | MessageId=0 2 | SymbolicName=PGWIN32_EVENTLOG_MSG 3 | Language=English 4 | %1 5 | . 6 | -------------------------------------------------------------------------------- /src/bin/pgevent/pgmsgevent.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0x9,0x1 2 | 1 11 MSG00001.bin 3 | -------------------------------------------------------------------------------- /src/bin/psql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/.gitignore -------------------------------------------------------------------------------- /src/bin/psql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/Makefile -------------------------------------------------------------------------------- /src/bin/psql/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/command.c -------------------------------------------------------------------------------- /src/bin/psql/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/command.h -------------------------------------------------------------------------------- /src/bin/psql/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/common.c -------------------------------------------------------------------------------- /src/bin/psql/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/common.h -------------------------------------------------------------------------------- /src/bin/psql/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/copy.c -------------------------------------------------------------------------------- /src/bin/psql/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/copy.h -------------------------------------------------------------------------------- /src/bin/psql/describe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/describe.c -------------------------------------------------------------------------------- /src/bin/psql/describe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/describe.h -------------------------------------------------------------------------------- /src/bin/psql/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/help.c -------------------------------------------------------------------------------- /src/bin/psql/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/help.h -------------------------------------------------------------------------------- /src/bin/psql/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/input.c -------------------------------------------------------------------------------- /src/bin/psql/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/input.h -------------------------------------------------------------------------------- /src/bin/psql/large_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/large_obj.c -------------------------------------------------------------------------------- /src/bin/psql/large_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/large_obj.h -------------------------------------------------------------------------------- /src/bin/psql/mainloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/mainloop.c -------------------------------------------------------------------------------- /src/bin/psql/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/mainloop.h -------------------------------------------------------------------------------- /src/bin/psql/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/meson.build -------------------------------------------------------------------------------- /src/bin/psql/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/nls.mk -------------------------------------------------------------------------------- /src/bin/psql/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/LINGUAS -------------------------------------------------------------------------------- /src/bin/psql/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/cs.po -------------------------------------------------------------------------------- /src/bin/psql/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/de.po -------------------------------------------------------------------------------- /src/bin/psql/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/el.po -------------------------------------------------------------------------------- /src/bin/psql/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/es.po -------------------------------------------------------------------------------- /src/bin/psql/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/fr.po -------------------------------------------------------------------------------- /src/bin/psql/po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/he.po -------------------------------------------------------------------------------- /src/bin/psql/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/it.po -------------------------------------------------------------------------------- /src/bin/psql/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/ja.po -------------------------------------------------------------------------------- /src/bin/psql/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/ka.po -------------------------------------------------------------------------------- /src/bin/psql/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/ko.po -------------------------------------------------------------------------------- /src/bin/psql/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/pl.po -------------------------------------------------------------------------------- /src/bin/psql/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/pt_BR.po -------------------------------------------------------------------------------- /src/bin/psql/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/ru.po -------------------------------------------------------------------------------- /src/bin/psql/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/sv.po -------------------------------------------------------------------------------- /src/bin/psql/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/tr.po -------------------------------------------------------------------------------- /src/bin/psql/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/uk.po -------------------------------------------------------------------------------- /src/bin/psql/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/zh_CN.po -------------------------------------------------------------------------------- /src/bin/psql/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/po/zh_TW.po -------------------------------------------------------------------------------- /src/bin/psql/prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/prompt.c -------------------------------------------------------------------------------- /src/bin/psql/prompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/prompt.h -------------------------------------------------------------------------------- /src/bin/psql/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/settings.h -------------------------------------------------------------------------------- /src/bin/psql/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/startup.c -------------------------------------------------------------------------------- /src/bin/psql/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/variables.c -------------------------------------------------------------------------------- /src/bin/psql/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/psql/variables.h -------------------------------------------------------------------------------- /src/bin/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/Makefile -------------------------------------------------------------------------------- /src/bin/scripts/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/common.c -------------------------------------------------------------------------------- /src/bin/scripts/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/common.h -------------------------------------------------------------------------------- /src/bin/scripts/dropdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/dropdb.c -------------------------------------------------------------------------------- /src/bin/scripts/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/nls.mk -------------------------------------------------------------------------------- /src/bin/scripts/po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs de el es fr he it ja ka ko pl pt_BR ru sv tr uk zh_CN 2 | -------------------------------------------------------------------------------- /src/bin/scripts/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/cs.po -------------------------------------------------------------------------------- /src/bin/scripts/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/de.po -------------------------------------------------------------------------------- /src/bin/scripts/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/el.po -------------------------------------------------------------------------------- /src/bin/scripts/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/es.po -------------------------------------------------------------------------------- /src/bin/scripts/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/fr.po -------------------------------------------------------------------------------- /src/bin/scripts/po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/he.po -------------------------------------------------------------------------------- /src/bin/scripts/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/it.po -------------------------------------------------------------------------------- /src/bin/scripts/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/ja.po -------------------------------------------------------------------------------- /src/bin/scripts/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/ka.po -------------------------------------------------------------------------------- /src/bin/scripts/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/ko.po -------------------------------------------------------------------------------- /src/bin/scripts/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/pl.po -------------------------------------------------------------------------------- /src/bin/scripts/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/ru.po -------------------------------------------------------------------------------- /src/bin/scripts/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/sv.po -------------------------------------------------------------------------------- /src/bin/scripts/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/tr.po -------------------------------------------------------------------------------- /src/bin/scripts/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/bin/scripts/po/uk.po -------------------------------------------------------------------------------- /src/common/.gitignore: -------------------------------------------------------------------------------- 1 | /kwlist_d.h 2 | -------------------------------------------------------------------------------- /src/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/Makefile -------------------------------------------------------------------------------- /src/common/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/archive.c -------------------------------------------------------------------------------- /src/common/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/base64.c -------------------------------------------------------------------------------- /src/common/binaryheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/binaryheap.c -------------------------------------------------------------------------------- /src/common/blkreftable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/blkreftable.c -------------------------------------------------------------------------------- /src/common/compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/compression.c -------------------------------------------------------------------------------- /src/common/config_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/config_info.c -------------------------------------------------------------------------------- /src/common/cryptohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/cryptohash.c -------------------------------------------------------------------------------- /src/common/d2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/d2s.c -------------------------------------------------------------------------------- /src/common/digit_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/digit_table.h -------------------------------------------------------------------------------- /src/common/encnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/encnames.c -------------------------------------------------------------------------------- /src/common/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/exec.c -------------------------------------------------------------------------------- /src/common/f2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/f2s.c -------------------------------------------------------------------------------- /src/common/fe_memutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/fe_memutils.c -------------------------------------------------------------------------------- /src/common/file_perm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/file_perm.c -------------------------------------------------------------------------------- /src/common/file_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/file_utils.c -------------------------------------------------------------------------------- /src/common/hashfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/hashfn.c -------------------------------------------------------------------------------- /src/common/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/hmac.c -------------------------------------------------------------------------------- /src/common/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/ip.c -------------------------------------------------------------------------------- /src/common/jsonapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/jsonapi.c -------------------------------------------------------------------------------- /src/common/keywords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/keywords.c -------------------------------------------------------------------------------- /src/common/kwlookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/kwlookup.c -------------------------------------------------------------------------------- /src/common/link-canary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/link-canary.c -------------------------------------------------------------------------------- /src/common/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/logging.c -------------------------------------------------------------------------------- /src/common/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/md5.c -------------------------------------------------------------------------------- /src/common/md5_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/md5_common.c -------------------------------------------------------------------------------- /src/common/md5_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/md5_int.h -------------------------------------------------------------------------------- /src/common/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/meson.build -------------------------------------------------------------------------------- /src/common/percentrepl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/percentrepl.c -------------------------------------------------------------------------------- /src/common/pg_get_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/pg_get_line.c -------------------------------------------------------------------------------- /src/common/pg_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/pg_prng.c -------------------------------------------------------------------------------- /src/common/pgfnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/pgfnames.c -------------------------------------------------------------------------------- /src/common/psprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/psprintf.c -------------------------------------------------------------------------------- /src/common/relpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/relpath.c -------------------------------------------------------------------------------- /src/common/rmtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/rmtree.c -------------------------------------------------------------------------------- /src/common/ryu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/ryu_common.h -------------------------------------------------------------------------------- /src/common/saslprep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/saslprep.c -------------------------------------------------------------------------------- /src/common/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/sha1.c -------------------------------------------------------------------------------- /src/common/sha1_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/sha1_int.h -------------------------------------------------------------------------------- /src/common/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/sha2.c -------------------------------------------------------------------------------- /src/common/sha2_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/sha2_int.h -------------------------------------------------------------------------------- /src/common/sprompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/sprompt.c -------------------------------------------------------------------------------- /src/common/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/string.c -------------------------------------------------------------------------------- /src/common/stringinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/stringinfo.c -------------------------------------------------------------------------------- /src/common/username.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/username.c -------------------------------------------------------------------------------- /src/common/wait_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/wait_error.c -------------------------------------------------------------------------------- /src/common/wchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/common/wchar.c -------------------------------------------------------------------------------- /src/fe_utils/.gitignore: -------------------------------------------------------------------------------- 1 | /psqlscan.c 2 | -------------------------------------------------------------------------------- /src/fe_utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/fe_utils/Makefile -------------------------------------------------------------------------------- /src/fe_utils/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/fe_utils/archive.c -------------------------------------------------------------------------------- /src/fe_utils/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/fe_utils/cancel.c -------------------------------------------------------------------------------- /src/fe_utils/mbprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/fe_utils/mbprint.c -------------------------------------------------------------------------------- /src/fe_utils/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/fe_utils/meson.build -------------------------------------------------------------------------------- /src/fe_utils/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/fe_utils/print.c -------------------------------------------------------------------------------- /src/fe_utils/psqlscan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/fe_utils/psqlscan.l -------------------------------------------------------------------------------- /src/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/.gitignore -------------------------------------------------------------------------------- /src/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/Makefile -------------------------------------------------------------------------------- /src/include/access/gin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/access/gin.h -------------------------------------------------------------------------------- /src/include/access/hio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/access/hio.h -------------------------------------------------------------------------------- /src/include/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/c.h -------------------------------------------------------------------------------- /src/include/common/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/common/int.h -------------------------------------------------------------------------------- /src/include/common/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/common/ip.h -------------------------------------------------------------------------------- /src/include/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/common/md5.h -------------------------------------------------------------------------------- /src/include/fmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/fmgr.h -------------------------------------------------------------------------------- /src/include/funcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/funcapi.h -------------------------------------------------------------------------------- /src/include/jit/jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/jit/jit.h -------------------------------------------------------------------------------- /src/include/lib/dshash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/lib/dshash.h -------------------------------------------------------------------------------- /src/include/lib/ilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/lib/ilist.h -------------------------------------------------------------------------------- /src/include/lib/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/lib/rbtree.h -------------------------------------------------------------------------------- /src/include/libpq/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/libpq/auth.h -------------------------------------------------------------------------------- /src/include/libpq/hba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/libpq/hba.h -------------------------------------------------------------------------------- /src/include/libpq/pqmq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/libpq/pqmq.h -------------------------------------------------------------------------------- /src/include/libpq/sasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/libpq/sasl.h -------------------------------------------------------------------------------- /src/include/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/meson.build -------------------------------------------------------------------------------- /src/include/miscadmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/miscadmin.h -------------------------------------------------------------------------------- /src/include/nodes/.gitignore: -------------------------------------------------------------------------------- 1 | /nodetags.h 2 | /header-stamp 3 | -------------------------------------------------------------------------------- /src/include/pch/c_pch.h: -------------------------------------------------------------------------------- 1 | #include "c.h" 2 | -------------------------------------------------------------------------------- /src/include/pch/postgres_fe_pch.h: -------------------------------------------------------------------------------- 1 | #include "postgres_fe.h" 2 | -------------------------------------------------------------------------------- /src/include/pch/postgres_pch.h: -------------------------------------------------------------------------------- 1 | #include "postgres.h" 2 | -------------------------------------------------------------------------------- /src/include/pg_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/pg_getopt.h -------------------------------------------------------------------------------- /src/include/pg_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/pg_trace.h -------------------------------------------------------------------------------- /src/include/pgstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/pgstat.h -------------------------------------------------------------------------------- /src/include/pgtar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/pgtar.h -------------------------------------------------------------------------------- /src/include/pgtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/pgtime.h -------------------------------------------------------------------------------- /src/include/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/port.h -------------------------------------------------------------------------------- /src/include/port/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/port/linux.h -------------------------------------------------------------------------------- /src/include/port/netbsd.h: -------------------------------------------------------------------------------- 1 | /* src/include/port/netbsd.h */ 2 | -------------------------------------------------------------------------------- /src/include/port/openbsd.h: -------------------------------------------------------------------------------- 1 | /* src/include/port/openbsd.h */ 2 | -------------------------------------------------------------------------------- /src/include/port/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/port/simd.h -------------------------------------------------------------------------------- /src/include/port/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/port/win32.h -------------------------------------------------------------------------------- /src/include/port/win32/dlfcn.h: -------------------------------------------------------------------------------- 1 | /* src/include/port/win32/dlfcn.h */ 2 | -------------------------------------------------------------------------------- /src/include/port/win32/grp.h: -------------------------------------------------------------------------------- 1 | /* src/include/port/win32/grp.h */ 2 | -------------------------------------------------------------------------------- /src/include/port/win32/pwd.h: -------------------------------------------------------------------------------- 1 | /* 2 | * src/include/port/win32/pwd.h 3 | */ 4 | -------------------------------------------------------------------------------- /src/include/port/win32/sys/select.h: -------------------------------------------------------------------------------- 1 | /* 2 | * src/include/port/win32/sys/select.h 3 | */ 4 | -------------------------------------------------------------------------------- /src/include/port/win32/sys/wait.h: -------------------------------------------------------------------------------- 1 | /* 2 | * src/include/port/win32/sys/wait.h 3 | */ 4 | -------------------------------------------------------------------------------- /src/include/port/win32_msvc/sys/file.h: -------------------------------------------------------------------------------- 1 | /* src/include/port/win32_msvc/sys/file.h */ 2 | -------------------------------------------------------------------------------- /src/include/port/win32_msvc/sys/param.h: -------------------------------------------------------------------------------- 1 | /* src/include/port/win32_msvc/sys/param.h */ 2 | -------------------------------------------------------------------------------- /src/include/port/win32_msvc/sys/time.h: -------------------------------------------------------------------------------- 1 | /* src/include/port/win32_msvc/sys/time.h */ 2 | -------------------------------------------------------------------------------- /src/include/postgres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/postgres.h -------------------------------------------------------------------------------- /src/include/storage/.gitignore: -------------------------------------------------------------------------------- 1 | /lwlocknames.h 2 | -------------------------------------------------------------------------------- /src/include/storage/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/storage/fd.h -------------------------------------------------------------------------------- /src/include/storage/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/storage/md.h -------------------------------------------------------------------------------- /src/include/tcop/dest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/tcop/dest.h -------------------------------------------------------------------------------- /src/include/utils/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/acl.h -------------------------------------------------------------------------------- /src/include/utils/cash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/cash.h -------------------------------------------------------------------------------- /src/include/utils/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/date.h -------------------------------------------------------------------------------- /src/include/utils/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/dsa.h -------------------------------------------------------------------------------- /src/include/utils/elog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/elog.h -------------------------------------------------------------------------------- /src/include/utils/guc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/guc.h -------------------------------------------------------------------------------- /src/include/utils/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/inet.h -------------------------------------------------------------------------------- /src/include/utils/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/json.h -------------------------------------------------------------------------------- /src/include/utils/rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/rel.h -------------------------------------------------------------------------------- /src/include/utils/rls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/rls.h -------------------------------------------------------------------------------- /src/include/utils/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/uuid.h -------------------------------------------------------------------------------- /src/include/utils/xid8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/xid8.h -------------------------------------------------------------------------------- /src/include/utils/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/utils/xml.h -------------------------------------------------------------------------------- /src/include/varatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/varatt.h -------------------------------------------------------------------------------- /src/include/windowapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/include/windowapi.h -------------------------------------------------------------------------------- /src/interfaces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/interfaces/Makefile -------------------------------------------------------------------------------- /src/interfaces/ecpg/include/.gitignore: -------------------------------------------------------------------------------- 1 | /ecpg_config.h 2 | /stamp-h 3 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/compat_informix-charfuncs.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/compat_informix-intoasc.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/compat_informix-test_informix2.stdout: -------------------------------------------------------------------------------- 1 | Read in customer 1 2 | All OK! 3 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/connect-test1.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/connect-test2.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/connect-test3.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/connect-test4.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/connect-test5.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/preproc-comment.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/preproc-whenever.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/sql-code100.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/sql-insupd.stdout: -------------------------------------------------------------------------------- 1 | changes 2 | 2 3 4 3 3 | test 4 | a b 5 | 2 1 6 | 4 2 7 | 5 5 8 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/sql-prepareas.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/sql-twophase.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-alloc.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-alloc.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-alloc_2.stdout: -------------------------------------------------------------------------------- 1 | No threading enabled. 2 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-descriptor.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-descriptor.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-prep.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-prep.stdout: -------------------------------------------------------------------------------- 1 | No threading enabled. 2 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-prep_2.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-thread.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-thread.stdout: -------------------------------------------------------------------------------- 1 | No threading enabled. 2 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-thread_2.stdout: -------------------------------------------------------------------------------- 1 | Success. 2 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-thread_implicit.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-thread_implicit.stdout: -------------------------------------------------------------------------------- 1 | No threading enabled. 2 | -------------------------------------------------------------------------------- /src/interfaces/ecpg/test/expected/thread-thread_implicit_2.stdout: -------------------------------------------------------------------------------- 1 | Success. 2 | -------------------------------------------------------------------------------- /src/interfaces/libpq/.gitignore: -------------------------------------------------------------------------------- 1 | /exports.list 2 | /libpq-refs-stamp 3 | /tmp_check/ 4 | -------------------------------------------------------------------------------- /src/makefiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/makefiles/Makefile -------------------------------------------------------------------------------- /src/makefiles/pgxs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/makefiles/pgxs.mk -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/nls-global.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/nls-global.mk -------------------------------------------------------------------------------- /src/pl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/Makefile -------------------------------------------------------------------------------- /src/pl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/meson.build -------------------------------------------------------------------------------- /src/pl/plperl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/.gitignore -------------------------------------------------------------------------------- /src/pl/plperl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/README -------------------------------------------------------------------------------- /src/pl/plperl/SPI.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/SPI.xs -------------------------------------------------------------------------------- /src/pl/plperl/Util.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/Util.xs -------------------------------------------------------------------------------- /src/pl/plperl/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/nls.mk -------------------------------------------------------------------------------- /src/pl/plperl/plperl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/plperl.c -------------------------------------------------------------------------------- /src/pl/plperl/plperl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/plperl.h -------------------------------------------------------------------------------- /src/pl/plperl/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/LINGUAS -------------------------------------------------------------------------------- /src/pl/plperl/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/cs.po -------------------------------------------------------------------------------- /src/pl/plperl/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/de.po -------------------------------------------------------------------------------- /src/pl/plperl/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/el.po -------------------------------------------------------------------------------- /src/pl/plperl/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/es.po -------------------------------------------------------------------------------- /src/pl/plperl/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/fr.po -------------------------------------------------------------------------------- /src/pl/plperl/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/it.po -------------------------------------------------------------------------------- /src/pl/plperl/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/ja.po -------------------------------------------------------------------------------- /src/pl/plperl/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/ka.po -------------------------------------------------------------------------------- /src/pl/plperl/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/ko.po -------------------------------------------------------------------------------- /src/pl/plperl/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/pl.po -------------------------------------------------------------------------------- /src/pl/plperl/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/ro.po -------------------------------------------------------------------------------- /src/pl/plperl/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/ru.po -------------------------------------------------------------------------------- /src/pl/plperl/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/sv.po -------------------------------------------------------------------------------- /src/pl/plperl/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/tr.po -------------------------------------------------------------------------------- /src/pl/plperl/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/uk.po -------------------------------------------------------------------------------- /src/pl/plperl/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/po/vi.po -------------------------------------------------------------------------------- /src/pl/plperl/ppport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plperl/ppport.h -------------------------------------------------------------------------------- /src/pl/plpgsql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpgsql/Makefile -------------------------------------------------------------------------------- /src/pl/plpgsql/meson.build: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2022-2024, PostgreSQL Global Development Group 2 | 3 | subdir('src') 4 | -------------------------------------------------------------------------------- /src/pl/plpgsql/src/data/copy1.data: -------------------------------------------------------------------------------- 1 | 1 1.1 2 | 2 2.2 3 | 3 3.3 4 | -------------------------------------------------------------------------------- /src/pl/plpython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/Makefile -------------------------------------------------------------------------------- /src/pl/plpython/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/nls.mk -------------------------------------------------------------------------------- /src/pl/plpython/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/cs.po -------------------------------------------------------------------------------- /src/pl/plpython/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/de.po -------------------------------------------------------------------------------- /src/pl/plpython/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/el.po -------------------------------------------------------------------------------- /src/pl/plpython/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/es.po -------------------------------------------------------------------------------- /src/pl/plpython/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/fr.po -------------------------------------------------------------------------------- /src/pl/plpython/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/it.po -------------------------------------------------------------------------------- /src/pl/plpython/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/ja.po -------------------------------------------------------------------------------- /src/pl/plpython/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/ka.po -------------------------------------------------------------------------------- /src/pl/plpython/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/ko.po -------------------------------------------------------------------------------- /src/pl/plpython/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/pl.po -------------------------------------------------------------------------------- /src/pl/plpython/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/ru.po -------------------------------------------------------------------------------- /src/pl/plpython/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/sv.po -------------------------------------------------------------------------------- /src/pl/plpython/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/tr.po -------------------------------------------------------------------------------- /src/pl/plpython/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/uk.po -------------------------------------------------------------------------------- /src/pl/plpython/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/plpython/po/vi.po -------------------------------------------------------------------------------- /src/pl/tcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/.gitignore -------------------------------------------------------------------------------- /src/pl/tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/Makefile -------------------------------------------------------------------------------- /src/pl/tcl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/meson.build -------------------------------------------------------------------------------- /src/pl/tcl/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/nls.mk -------------------------------------------------------------------------------- /src/pl/tcl/pltcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/pltcl.c -------------------------------------------------------------------------------- /src/pl/tcl/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/LINGUAS -------------------------------------------------------------------------------- /src/pl/tcl/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/cs.po -------------------------------------------------------------------------------- /src/pl/tcl/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/de.po -------------------------------------------------------------------------------- /src/pl/tcl/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/el.po -------------------------------------------------------------------------------- /src/pl/tcl/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/es.po -------------------------------------------------------------------------------- /src/pl/tcl/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/fr.po -------------------------------------------------------------------------------- /src/pl/tcl/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/it.po -------------------------------------------------------------------------------- /src/pl/tcl/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/ja.po -------------------------------------------------------------------------------- /src/pl/tcl/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/ka.po -------------------------------------------------------------------------------- /src/pl/tcl/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/ko.po -------------------------------------------------------------------------------- /src/pl/tcl/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/pl.po -------------------------------------------------------------------------------- /src/pl/tcl/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/pt_BR.po -------------------------------------------------------------------------------- /src/pl/tcl/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/ro.po -------------------------------------------------------------------------------- /src/pl/tcl/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/ru.po -------------------------------------------------------------------------------- /src/pl/tcl/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/sv.po -------------------------------------------------------------------------------- /src/pl/tcl/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/tr.po -------------------------------------------------------------------------------- /src/pl/tcl/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/uk.po -------------------------------------------------------------------------------- /src/pl/tcl/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/vi.po -------------------------------------------------------------------------------- /src/pl/tcl/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/zh_CN.po -------------------------------------------------------------------------------- /src/pl/tcl/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/pl/tcl/po/zh_TW.po -------------------------------------------------------------------------------- /src/port/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/.gitignore -------------------------------------------------------------------------------- /src/port/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/Makefile -------------------------------------------------------------------------------- /src/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/README -------------------------------------------------------------------------------- /src/port/bsearch_arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/bsearch_arg.c -------------------------------------------------------------------------------- /src/port/chklocale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/chklocale.c -------------------------------------------------------------------------------- /src/port/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/dirent.c -------------------------------------------------------------------------------- /src/port/dirmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/dirmod.c -------------------------------------------------------------------------------- /src/port/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/getopt.c -------------------------------------------------------------------------------- /src/port/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/getopt_long.c -------------------------------------------------------------------------------- /src/port/getpeereid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/getpeereid.c -------------------------------------------------------------------------------- /src/port/inet_aton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/inet_aton.c -------------------------------------------------------------------------------- /src/port/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/kill.c -------------------------------------------------------------------------------- /src/port/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/meson.build -------------------------------------------------------------------------------- /src/port/mkdtemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/mkdtemp.c -------------------------------------------------------------------------------- /src/port/noblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/noblock.c -------------------------------------------------------------------------------- /src/port/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/open.c -------------------------------------------------------------------------------- /src/port/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/path.c -------------------------------------------------------------------------------- /src/port/pg_bitutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/pg_bitutils.c -------------------------------------------------------------------------------- /src/port/pgcheckdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/pgcheckdir.c -------------------------------------------------------------------------------- /src/port/pgmkdirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/pgmkdirp.c -------------------------------------------------------------------------------- /src/port/pgsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/pgsleep.c -------------------------------------------------------------------------------- /src/port/pgstrsignal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/pgstrsignal.c -------------------------------------------------------------------------------- /src/port/pqsignal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/pqsignal.c -------------------------------------------------------------------------------- /src/port/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/qsort.c -------------------------------------------------------------------------------- /src/port/qsort_arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/qsort_arg.c -------------------------------------------------------------------------------- /src/port/quotes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/quotes.c -------------------------------------------------------------------------------- /src/port/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/snprintf.c -------------------------------------------------------------------------------- /src/port/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/strerror.c -------------------------------------------------------------------------------- /src/port/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/strlcat.c -------------------------------------------------------------------------------- /src/port/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/strlcpy.c -------------------------------------------------------------------------------- /src/port/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/strnlen.c -------------------------------------------------------------------------------- /src/port/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/strtof.c -------------------------------------------------------------------------------- /src/port/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/system.c -------------------------------------------------------------------------------- /src/port/tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/tar.c -------------------------------------------------------------------------------- /src/port/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/user.c -------------------------------------------------------------------------------- /src/port/win32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32.ico -------------------------------------------------------------------------------- /src/port/win32common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32common.c -------------------------------------------------------------------------------- /src/port/win32dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32dlopen.c -------------------------------------------------------------------------------- /src/port/win32env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32env.c -------------------------------------------------------------------------------- /src/port/win32error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32error.c -------------------------------------------------------------------------------- /src/port/win32fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32fseek.c -------------------------------------------------------------------------------- /src/port/win32link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32link.c -------------------------------------------------------------------------------- /src/port/win32ntdll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32ntdll.c -------------------------------------------------------------------------------- /src/port/win32pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32pread.c -------------------------------------------------------------------------------- /src/port/win32pwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32pwrite.c -------------------------------------------------------------------------------- /src/port/win32stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32stat.c -------------------------------------------------------------------------------- /src/port/win32ver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/port/win32ver.rc -------------------------------------------------------------------------------- /src/template/cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/template/cygwin -------------------------------------------------------------------------------- /src/template/darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/template/darwin -------------------------------------------------------------------------------- /src/template/freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/template/freebsd -------------------------------------------------------------------------------- /src/template/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/template/linux -------------------------------------------------------------------------------- /src/template/netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/template/netbsd -------------------------------------------------------------------------------- /src/template/openbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/template/openbsd -------------------------------------------------------------------------------- /src/template/solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/template/solaris -------------------------------------------------------------------------------- /src/template/win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/template/win32 -------------------------------------------------------------------------------- /src/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/Makefile -------------------------------------------------------------------------------- /src/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/README -------------------------------------------------------------------------------- /src/test/authentication/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by test suite 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/test/icu/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by test suite 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/test/icu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/icu/Makefile -------------------------------------------------------------------------------- /src/test/icu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/icu/README -------------------------------------------------------------------------------- /src/test/kerberos/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by test suite 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/test/ldap/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by test suite 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/test/ldap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/ldap/Makefile -------------------------------------------------------------------------------- /src/test/ldap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/ldap/README -------------------------------------------------------------------------------- /src/test/locale/.gitignore: -------------------------------------------------------------------------------- 1 | /test-ctype 2 | -------------------------------------------------------------------------------- /src/test/locale/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/locale/README -------------------------------------------------------------------------------- /src/test/locale/de_DE.ISO8859-1/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | 3 | test: 4 | ./runall 5 | 6 | clean: 7 | rm -f *.out 8 | -------------------------------------------------------------------------------- /src/test/locale/gr_GR.ISO8859-7/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | 3 | test: 4 | ./runall 5 | 6 | clean: 7 | rm -f *.out 8 | -------------------------------------------------------------------------------- /src/test/locale/koi8-r/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | 3 | test: 4 | ./runall 5 | 6 | clean: 7 | rm -f *.out 8 | -------------------------------------------------------------------------------- /src/test/locale/koi8-to-win1251/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | 3 | test: 4 | ./runall 5 | 6 | clean: 7 | rm -f *.out 8 | -------------------------------------------------------------------------------- /src/test/mb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/mb/README -------------------------------------------------------------------------------- /src/test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/meson.build -------------------------------------------------------------------------------- /src/test/modules/commit_ts/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/commit_ts/commit_ts.conf: -------------------------------------------------------------------------------- 1 | track_commit_timestamp = on 2 | -------------------------------------------------------------------------------- /src/test/modules/dummy_index_am/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | -------------------------------------------------------------------------------- /src/test/modules/dummy_seclabel/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/gin/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/ldap_password_func/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/plsample/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | -------------------------------------------------------------------------------- /src/test/modules/spgist_name_ops/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/ssl_passphrase_callback/.gitignore: -------------------------------------------------------------------------------- 1 | tmp_check 2 | -------------------------------------------------------------------------------- /src/test/modules/test_bloomfilter/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_copy_callbacks/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_custom_rmgrs/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_ddl_deparse/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_ddl_deparse/expected/alter_extension.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/modules/test_ddl_deparse/expected/create_function.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/modules/test_ddl_deparse/expected/create_operator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/modules/test_dsa/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_dsm_registry/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_escape/.gitignore: -------------------------------------------------------------------------------- 1 | /tmp_check/ 2 | /test_escape 3 | -------------------------------------------------------------------------------- /src/test/modules/test_extensions/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_ginpostinglist/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_integerset/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_lfind/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_misc/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_oat_hooks/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_parser/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_pg_dump/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_predtest/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_radixtree/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_rbtree/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_regex/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_resowner/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_rls_hooks/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_shm_mq/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_slru/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/test_slru/test_slru.conf: -------------------------------------------------------------------------------- 1 | shared_preload_libraries = 'test_slru' 2 | -------------------------------------------------------------------------------- /src/test/modules/test_tidstore/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/unsafe_tests/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/modules/worker_spi/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/test/modules/xid_wraparound/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated subdirectories 2 | /log/ 3 | /results/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/test/perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/perl/Makefile -------------------------------------------------------------------------------- /src/test/perl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/perl/README -------------------------------------------------------------------------------- /src/test/recovery/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by test suite 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/test/regress/data/agg.data: -------------------------------------------------------------------------------- 1 | 56 7.8 2 | 100 99.097 3 | 0 0.09561 4 | 42 324.78 5 | -------------------------------------------------------------------------------- /src/test/regress/data/constro.data: -------------------------------------------------------------------------------- 1 | 4 !check failed 5 2 | 6 OK 4 3 | -------------------------------------------------------------------------------- /src/test/regress/data/dept.data: -------------------------------------------------------------------------------- 1 | toy sharon 2 | shoe bob 3 | -------------------------------------------------------------------------------- /src/test/ssl/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by regression tests 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/test/ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/ssl/Makefile -------------------------------------------------------------------------------- /src/test/ssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/test/ssl/README -------------------------------------------------------------------------------- /src/test/ssl/ssl/.gitignore: -------------------------------------------------------------------------------- 1 | /*.old 2 | /new_certs_dir/ 3 | -------------------------------------------------------------------------------- /src/test/subscription/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by test suite 2 | /tmp_check/ 3 | -------------------------------------------------------------------------------- /src/timezone/.gitignore: -------------------------------------------------------------------------------- 1 | /zic 2 | /abbrevs.txt 3 | -------------------------------------------------------------------------------- /src/timezone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/timezone/Makefile -------------------------------------------------------------------------------- /src/timezone/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/timezone/README -------------------------------------------------------------------------------- /src/timezone/pgtz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/timezone/pgtz.c -------------------------------------------------------------------------------- /src/timezone/pgtz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/timezone/pgtz.h -------------------------------------------------------------------------------- /src/timezone/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/timezone/private.h -------------------------------------------------------------------------------- /src/timezone/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/timezone/tzfile.h -------------------------------------------------------------------------------- /src/timezone/zic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/timezone/zic.c -------------------------------------------------------------------------------- /src/tools/ccsym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/ccsym -------------------------------------------------------------------------------- /src/tools/ci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/ci/README -------------------------------------------------------------------------------- /src/tools/codelines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/codelines -------------------------------------------------------------------------------- /src/tools/copyright.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/copyright.pl -------------------------------------------------------------------------------- /src/tools/find_meson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/find_meson -------------------------------------------------------------------------------- /src/tools/find_static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/find_static -------------------------------------------------------------------------------- /src/tools/find_typedef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/find_typedef -------------------------------------------------------------------------------- /src/tools/ifaddrs/.gitignore: -------------------------------------------------------------------------------- 1 | /test_ifaddrs 2 | -------------------------------------------------------------------------------- /src/tools/make_ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/make_ctags -------------------------------------------------------------------------------- /src/tools/make_etags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/make_etags -------------------------------------------------------------------------------- /src/tools/make_mkid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/make_mkid -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/.gitignore: -------------------------------------------------------------------------------- 1 | /pg_bsd_indent 2 | # Generated by test suite 3 | /log/ 4 | /tmp_check/ 5 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/comments.pro: -------------------------------------------------------------------------------- 1 | -bbb 2 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/elsecomment.pro: -------------------------------------------------------------------------------- 1 | -bl 2 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/label.pro: -------------------------------------------------------------------------------- 1 | -nut 2 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/nsac.pro: -------------------------------------------------------------------------------- 1 | -nsac 2 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/parens.pro: -------------------------------------------------------------------------------- 1 | -ts4 -i4 -di12 -Tallocfunc 2 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/sac.pro: -------------------------------------------------------------------------------- 1 | -sac 2 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/surplusbad.pro: -------------------------------------------------------------------------------- 1 | -bad 2 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/types_from_file.0: -------------------------------------------------------------------------------- 1 | /* $FreeBSD$ */ 2 | /* See r303735 */ 3 | void t(a *x, b *y, c *z); 4 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/types_from_file.0.stdout: -------------------------------------------------------------------------------- 1 | /* $FreeBSD$ */ 2 | /* See r303735 */ 3 | void t(a *x, b *y, c * z); 4 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/types_from_file.list: -------------------------------------------------------------------------------- 1 | b 2 | a 3 | -------------------------------------------------------------------------------- /src/tools/pg_bsd_indent/tests/types_from_file.pro: -------------------------------------------------------------------------------- 1 | -Utypes_from_file.list 2 | -------------------------------------------------------------------------------- /src/tools/pgflex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/pgflex -------------------------------------------------------------------------------- /src/tools/pgtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/pgtest -------------------------------------------------------------------------------- /src/tools/rcgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/rcgen -------------------------------------------------------------------------------- /src/tools/testint128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/testint128.c -------------------------------------------------------------------------------- /src/tools/testwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tools/testwrap -------------------------------------------------------------------------------- /src/tutorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tutorial/Makefile -------------------------------------------------------------------------------- /src/tutorial/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tutorial/README -------------------------------------------------------------------------------- /src/tutorial/complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tutorial/complex.c -------------------------------------------------------------------------------- /src/tutorial/funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babelfish-for-postgresql/postgresql_modified_for_babelfish/HEAD/src/tutorial/funcs.c --------------------------------------------------------------------------------