I am running Trino with a docker container and I want to edit the catalogs or more specific the tables.
When I run
docker run --name trino -d -p 8080:8080 trinodb/trino
and then docker exec -it trino trino
I can do select statements and so on, but I want to be able to create a custom table.
When I try to do so, I get this:
trino> create table tpch.sf1.test (id int);
Query 20240711_100824_00000_y8ghb failed: This connector does not support creating tables
Is there a different way to start Trino?