Examples of InMemoryTpchBlocksProvider


Examples of com.facebook.presto.util.InMemoryTpchBlocksProvider

    public void smokeTest()
            throws Exception
    {
        ExecutorService executor = newCachedThreadPool(daemonThreadsNamed("test"));
        try {
            for (AbstractBenchmark benchmark : BenchmarkSuite.createBenchmarks(executor, new InMemoryTpchBlocksProvider())) {
                try {
                    benchmark.runOnce();
                }
                catch (RuntimeException e) {
                    throw new AssertionError("Error running " + benchmark.getBenchmarkName(), e);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.