Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEVEXP-460 resultRows now honors point-in-time query timestamp #1566

Merged
merged 1 commit into from
May 18, 2023
Merged
Show file tree
Hide file tree
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 @@ -226,7 +226,7 @@ public void execute(Plan plan, Transaction transaction) {

@Override
public <T extends StructureReadHandle> RowSet<T> resultRows(Plan plan, T rowHandle) {
return resultRows(plan, rowHandle, (Transaction) null);
return resultRows(plan, rowHandle, null);
}

@Override
Expand All @@ -236,13 +236,18 @@ public <T extends StructureReadHandle> RowSet<T> resultRows(Plan plan, T rowHand
String rowFormat = getRowFormat(rowHandle);

PlanBuilderBaseImpl.RequestPlan requestPlan = checkPlan(plan);
RequestParameters params = newRowsParamsBuilder(requestPlan)
.withRowFormat(rowFormat)
.withNodeColumns("inline")
.withColumnTypes(datatypeStyle)
.withOutput(rowStructureStyle)
.getRequestParameters();

RowsParamsBuilder rowsParamsBuilder = newRowsParamsBuilder(requestPlan)
.withRowFormat(rowFormat)
.withNodeColumns("inline")
.withColumnTypes(datatypeStyle)
.withOutput(rowStructureStyle);

if (rowHandle instanceof BaseHandle) {
rowsParamsBuilder.withTimestamp(((BaseHandle)rowHandle).getPointInTimeQueryTimestamp());
}

RequestParameters params = rowsParamsBuilder.getRequestParameters();
RESTServiceResultIterator iter = submitPlan(requestPlan, params, transaction);
RowSetHandle<T> rowset = new RowSetHandle<>(rowFormat, datatypeStyle, rowStructureStyle, iter, rowHandle);
rowset.init();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,14 @@ public RowsParamsBuilder withTraceLabel(String label) {
return this;
}

public RowsParamsBuilder withTimestamp(long serverTimestamp) {
if (serverTimestamp > 0) {
params.add("timestamp", serverTimestamp + "");
}
return this;
}

public RequestParameters getRequestParameters() {
return this.params;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
package com.marklogic.client.test.rows;

import com.fasterxml.jackson.databind.JsonNode;
import com.marklogic.client.io.JacksonHandle;
import com.marklogic.client.io.StringHandle;
import com.marklogic.client.row.RawQueryDSLPlan;
import com.marklogic.client.test.Common;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;

import java.util.Iterator;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;

public class ResultRowsWithTimestampTest extends AbstractOpticUpdateTest {

private final static String NEW_MUSICIAN_URI = "/test/newMusician.json";

private final static String NEW_MUSICIAN_JSON = "{\n" +
" \"musician\": {\n" +
" \"lastName\": \"Smith\",\n" +
" \"firstName\": \"Jane\",\n" +
" \"dob\": \"1901-08-04\"\n" +
" }\n" +
"}";

@AfterEach
void deleteNewMusician() {
Common.client.newJSONDocumentManager().delete(NEW_MUSICIAN_URI);
}

@Test
void testResultRowsWithPointInTimeQueryTimestamp() {
final RawQueryDSLPlan plan = rowManager.newRawQueryDSLPlan(new StringHandle("op.fromView('opticUnitTest', 'musician')"));

JacksonHandle result = new JacksonHandle();
JsonNode doc = rowManager.resultDoc(plan, result).get();
assertEquals(4, doc.get("rows").size(), "Expecting the 4 musicians loaded by test-app to exist");

final long serverTimestamp = result.getServerTimestamp();
assertTrue(serverTimestamp > 0, "Unexpected timestamp: " + serverTimestamp);

// Insert a new musician, which will bump up the server timestamp
Common.client.newJSONDocumentManager().write(NEW_MUSICIAN_URI, newDefaultMetadata(), new StringHandle(NEW_MUSICIAN_JSON));

doc = rowManager.resultDoc(plan, new JacksonHandle()).get();
assertEquals(5, doc.get("rows").size(), "Should now get 5 musician rows due to the 5th row being added by " +
"inserting the new musician doc");

// Now verify a point-in-time query works
result = new JacksonHandle();
result.setPointInTimeQueryTimestamp(serverTimestamp);
doc = rowManager.resultDoc(plan, result).get();
assertEquals(4, doc.get("rows").size(), "Only 4 rows should be returned since the query should have been " +
"run at a server timestamp prior to the newMusician doc being inserted.");

// And verify point-in-time works when using resultRows too
result = new JacksonHandle();
result.setPointInTimeQueryTimestamp(serverTimestamp);
Iterator<JacksonHandle> rows = rowManager.resultRows(plan, result).iterator();
int count = 0;
while (rows.hasNext()) {
rows.next();
count++;
}
assertEquals(4, count, "resultRows should honor the point-in-time timestamp, just like resultDoc does");
}
}