String vt_oldText = vt.getString("OLD_TEXT");
int vt_textId = (int) vt.getLong("TEXT_ID");
int vt_revisionId = (int) vt.getLong("REVISION_ID");
assert(vt_pageId == pageId) : String.format("pageId=%d / pageTitle=%d", vt_pageId, vt_pageTitle);
assert(vt.advanceRow() == false) : "This assert should be false, vt has only one row";
// Permute the original text of the article
// Important: We have to make sure that we fill in the entire array
String newText = new String(util.generateRevisionText(vt_oldText.toCharArray()));
int revCommentLen = util.h_commentLength.nextValue().intValue();