├── .gitignore ├── Makefile ├── README.md ├── emailaddr--0.sql ├── emailaddr.c ├── emailaddr.control └── test ├── expected ├── init.out └── test.out └── sql ├── init.sql └── test.sql /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | /results/ 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petere/pgemailaddr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petere/pgemailaddr/HEAD/README.md -------------------------------------------------------------------------------- /emailaddr--0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petere/pgemailaddr/HEAD/emailaddr--0.sql -------------------------------------------------------------------------------- /emailaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petere/pgemailaddr/HEAD/emailaddr.c -------------------------------------------------------------------------------- /emailaddr.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petere/pgemailaddr/HEAD/emailaddr.control -------------------------------------------------------------------------------- /test/expected/init.out: -------------------------------------------------------------------------------- 1 | CREATE EXTENSION emailaddr; 2 | -------------------------------------------------------------------------------- /test/expected/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petere/pgemailaddr/HEAD/test/expected/test.out -------------------------------------------------------------------------------- /test/sql/init.sql: -------------------------------------------------------------------------------- 1 | CREATE EXTENSION emailaddr; 2 | -------------------------------------------------------------------------------- /test/sql/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petere/pgemailaddr/HEAD/test/sql/test.sql --------------------------------------------------------------------------------