Currently there seems to be an issue with passing the test command line to the shell in the container, though.
5 lines
160 B
SQL
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;
|