Package com.oltpbenchmark.benchmarks.epinions.procedures

Examples of com.oltpbenchmark.benchmarks.epinions.procedures.GetReviewsByUser.run()


    public void reviewsByUser() throws SQLException {
        GetReviewsByUser proc = this.getProcedure(GetReviewsByUser.class);
        assert (proc != null);
        long uid = Long.valueOf(user_ids.get(rand.nextInt(user_ids.size())));
        proc.run(conn, uid);
    }

    public void averageRatingByTrustedUser() throws SQLException {
        GetAverageRatingByTrustedUser proc = this.getProcedure(GetAverageRatingByTrustedUser.class);
        assert (proc != null);
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.