├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile.tmpl ├── LICENSE ├── Makefile ├── README.md ├── docker-compose.yml ├── expected ├── pg_variables.out ├── pg_variables_any.out ├── pg_variables_atx.out ├── pg_variables_atx_0.out ├── pg_variables_atx_pkg.out ├── pg_variables_atx_pkg_1.out ├── pg_variables_trans.out └── pg_variables_trans_0.out ├── mk_dockerfile.sh ├── pg_variables--1.0--1.1.sql ├── pg_variables--1.0.sql ├── pg_variables--1.1--1.2.sql ├── pg_variables.c ├── pg_variables.control ├── pg_variables.h ├── pg_variables_record.c ├── run_tests.sh ├── sql ├── pg_variables.sql ├── pg_variables_any.sql ├── pg_variables_atx.sql ├── pg_variables_atx_pkg.sql └── pg_variables_trans.sql └── valgrind.supp /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/Dockerfile.tmpl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | tests: 2 | build: . 3 | -------------------------------------------------------------------------------- /expected/pg_variables.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/expected/pg_variables.out -------------------------------------------------------------------------------- /expected/pg_variables_any.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/expected/pg_variables_any.out -------------------------------------------------------------------------------- /expected/pg_variables_atx.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/expected/pg_variables_atx.out -------------------------------------------------------------------------------- /expected/pg_variables_atx_0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/expected/pg_variables_atx_0.out -------------------------------------------------------------------------------- /expected/pg_variables_atx_pkg.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/expected/pg_variables_atx_pkg.out -------------------------------------------------------------------------------- /expected/pg_variables_atx_pkg_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/expected/pg_variables_atx_pkg_1.out -------------------------------------------------------------------------------- /expected/pg_variables_trans.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/expected/pg_variables_trans.out -------------------------------------------------------------------------------- /expected/pg_variables_trans_0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/expected/pg_variables_trans_0.out -------------------------------------------------------------------------------- /mk_dockerfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/mk_dockerfile.sh -------------------------------------------------------------------------------- /pg_variables--1.0--1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/pg_variables--1.0--1.1.sql -------------------------------------------------------------------------------- /pg_variables--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/pg_variables--1.0.sql -------------------------------------------------------------------------------- /pg_variables--1.1--1.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/pg_variables--1.1--1.2.sql -------------------------------------------------------------------------------- /pg_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/pg_variables.c -------------------------------------------------------------------------------- /pg_variables.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/pg_variables.control -------------------------------------------------------------------------------- /pg_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/pg_variables.h -------------------------------------------------------------------------------- /pg_variables_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/pg_variables_record.c -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/run_tests.sh -------------------------------------------------------------------------------- /sql/pg_variables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/sql/pg_variables.sql -------------------------------------------------------------------------------- /sql/pg_variables_any.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/sql/pg_variables_any.sql -------------------------------------------------------------------------------- /sql/pg_variables_atx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/sql/pg_variables_atx.sql -------------------------------------------------------------------------------- /sql/pg_variables_atx_pkg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/sql/pg_variables_atx_pkg.sql -------------------------------------------------------------------------------- /sql/pg_variables_trans.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postgrespro/pg_variables/HEAD/sql/pg_variables_trans.sql -------------------------------------------------------------------------------- /valgrind.supp: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------