postgresql/tests/test.sql
Nils Philippsen 9c069c4141 add files for modularity-testing-framework based tests
Currently there seems to be an issue with passing the test command line
to the shell in the container, though.
2017-05-19 19:31:05 +02:00

5 lines
160 B
SQL

CREATE TABLE mtftest (id SERIAL NOT NULL, anything VARCHAR(255) NOT NULL);
INSERT INTO mtftest (anything) VALUES ('something');
SELECT anything FROM mtftest;