├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── pgext--0.0.1.sql ├── pgext.c └── pgext.control /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | *~ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgext-101/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgext-101/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgext-101/HEAD/README.md -------------------------------------------------------------------------------- /pgext--0.0.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgext-101/HEAD/pgext--0.0.1.sql -------------------------------------------------------------------------------- /pgext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgext-101/HEAD/pgext.c -------------------------------------------------------------------------------- /pgext.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgext-101/HEAD/pgext.control --------------------------------------------------------------------------------