.put("exchange.http-client.read-timeout", "1h")
.put("datasources", "native,tpch,tpch_sampled")
.build();
TestingPrestoServer server = new TestingPrestoServer(coordinator, properties, ENVIRONMENT, discoveryUri, ImmutableList.<Module>of());
server.installPlugin(new TpchPlugin(), "tpch", "tpch");
server.installPlugin(new SampledTpchPlugin(), "tpch_sampled", "tpch_sampled");
return server;
}