This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BEGIN; | |
-- note: the downside of a DOMAIN type in pg is that the type cannot be modified if it's used in | |
-- a composite-type column as yet (i hope we don't do that) | |
-- pgTAP is a suite of test functions to test SQL scripts on PostgreSQL - see https://pgtap.org/ | |
CREATE EXTENSION IF NOT EXISTS pgtap; | |
-- we will have 4 pgTAP tests | |
SELECT plan(4); |