Package com.facebook.presto.util

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

Related Classes of com.facebook.presto.util.InMemoryTpchBlocksProvider

Copyright © 2018 www.massapicom. 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.