Package com.oltpbenchmark.benchmarks.wikipedia.procedures

Examples of com.oltpbenchmark.benchmarks.wikipedia.procedures.UpdatePage


    // Important: We have to make sure that we fill in the entire array
    char newText[] = b.generateRevisionText(a.oldText.toCharArray());
   
      if (LOG.isTraceEnabled())
          LOG.trace("UPDATING: Page: id:"+a.pageId+" ns:"+nameSpace +" title"+ pageTitle);
    UpdatePage proc = this.getProcedure(UpdatePage.class);
        assert (proc != null);
        proc.run(conn, a.textId, a.pageId, pageTitle, new String(newText),
                       nameSpace, userId, userIp, a.userText,
                       a.revisionId, revComment, revMinorEdit);
  }
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.benchmarks.wikipedia.procedures.UpdatePage

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.