Skip to content
Merged
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 @@ -30,7 +30,8 @@

import static org.junit.jupiter.api.Assertions.*;

public class SPARQLManagerTest {
class SPARQLManagerTest {
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The class visibility change from public to package-private appears unrelated to re-enabling the test. This change should be documented in the PR description or separated into a different commit as it's a distinct modification from the main purpose of fixing MLE-12708.

Suggested change
class SPARQLManagerTest {
public class SPARQLManagerTest {

Copilot uses AI. Check for mistakes.


private static String graphUri = "http://marklogic.com/java/SPARQLManagerTest";
private static String triple1 = "<http://example.org/s1> <http://example.org/p1> <http://example.org/o1>.";
private static String triple2 = "<http://example.org/s2> <http://example.org/p2> <http://example.org/o2>.";
Expand Down Expand Up @@ -362,10 +363,6 @@ public void testSPARQLWithBindings() throws Exception {

@Test
public void testPagination() {
if (Common.getMarkLogicVersion().getMajor() >= 12) {
// Disabled until MLE-12708 is fixed.
return;
}
SPARQLQueryDefinition qdef1 = smgr.newQueryDefinition(
"SELECT ?s ?p ?o FROM <" + graphUri + "> { ?s ?p ?o }");
qdef1.setIncludeDefaultRulesets(false);
Expand Down