// 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);
}