├── .gitignore ├── .travis.yml ├── Dockerfile.tmpl ├── LICENSE ├── Makefile ├── README.md ├── conf.add ├── docker-compose.yml ├── errlevel.c ├── errlevel.gperf ├── expected ├── basic.out └── basic96.out ├── main.sql ├── pg_logging--0.1--0.2.sql ├── pg_logging.c ├── pg_logging.control ├── pg_logging.h ├── pl_funcs.c ├── run_tests.sh └── sql ├── basic.sql └── basic96.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/Dockerfile.tmpl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/README.md -------------------------------------------------------------------------------- /conf.add: -------------------------------------------------------------------------------- 1 | shared_preload_libraries = 'pg_logging' 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | tests: 2 | build: . 3 | -------------------------------------------------------------------------------- /errlevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/errlevel.c -------------------------------------------------------------------------------- /errlevel.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/errlevel.gperf -------------------------------------------------------------------------------- /expected/basic.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/expected/basic.out -------------------------------------------------------------------------------- /expected/basic96.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/expected/basic96.out -------------------------------------------------------------------------------- /main.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/main.sql -------------------------------------------------------------------------------- /pg_logging--0.1--0.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/pg_logging--0.1--0.2.sql -------------------------------------------------------------------------------- /pg_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/pg_logging.c -------------------------------------------------------------------------------- /pg_logging.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/pg_logging.control -------------------------------------------------------------------------------- /pg_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/pg_logging.h -------------------------------------------------------------------------------- /pl_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/pl_funcs.c -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/run_tests.sh -------------------------------------------------------------------------------- /sql/basic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/sql/basic.sql -------------------------------------------------------------------------------- /sql/basic96.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_logging/HEAD/sql/basic96.sql --------------------------------------------------------------------------------