Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,9 @@ private void loadRevision(Connection conn) throws SQLException {
int old_text_length = h_textLength.nextValue();
char[] old_text = TextGenerator.randomChars(rng(), old_text_length);

// FIXME: Need to break up the num_revised into multiple batches to avoid
// packet size limits in loader.
// See Also: #405
for (int i = 0; i < num_revised; i++) {
// Generate the User who's doing the revision and the Page revised
// Makes sure that we always update their counter
Expand Down