Skip to content

Commit d73ecf4

Browse files
committed
moved code around
1 parent 195796c commit d73ecf4

6 files changed

Lines changed: 31 additions & 2 deletions

File tree

core/queryalgebra/evaluation/src/main/java/org/eclipse/rdf4j/query/algebra/evaluation/sketch/JoinCostVector.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
import java.util.Objects;
1515

16+
import org.eclipse.rdf4j.common.annotation.Experimental;
17+
18+
@Experimental
1619
final class JoinCostVector implements Comparable<JoinCostVector> {
1720

1821
private final double totalWorkRows;

core/queryalgebra/evaluation/src/main/java/org/eclipse/rdf4j/query/algebra/evaluation/sketch/JoinPlanningState.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
package org.eclipse.rdf4j.query.algebra.evaluation.sketch;
1414

15+
import org.eclipse.rdf4j.common.annotation.Experimental;
16+
17+
@Experimental
1518
final class JoinPlanningState {
1619

1720
private static final int ORDER_SLOT_BITS = 6;

core/queryalgebra/evaluation/src/main/java/org/eclipse/rdf4j/query/algebra/evaluation/sketch/ParetoFrontier.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
import java.util.Objects;
1818
import java.util.function.BiConsumer;
1919

20+
import org.eclipse.rdf4j.common.annotation.Experimental;
21+
22+
@Experimental
2023
final class ParetoFrontier<T> {
2124

2225
private final int limit;

core/queryalgebra/evaluation/src/main/java/org/eclipse/rdf4j/query/algebra/evaluation/sketch/SketchStatementSourceException.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,17 @@
1212

1313
package org.eclipse.rdf4j.query.algebra.evaluation.sketch;
1414

15+
import java.io.Serial;
16+
17+
import org.eclipse.rdf4j.common.annotation.Experimental;
18+
1519
/**
1620
* Runtime failure while reading statements for sketch estimation.
1721
*/
22+
@Experimental
1823
public class SketchStatementSourceException extends RuntimeException {
1924

25+
@Serial
2026
private static final long serialVersionUID = -4992850717269141299L;
2127

2228
public SketchStatementSourceException(Throwable cause) {

core/sail/lmdb/src/main/java/org/eclipse/rdf4j/sail/lmdb/LmdbStore.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
/**
5656
* A SAIL implementation using LMDB for storing and querying its data.
5757
*
58-
* @implNote the LMDB store is is in an experimental state: its existence, signature or behavior may change without
59-
* warning from one release to the next.
58+
* @implNote the LMDB store is in an experimental state: its existence, signature or behavior may change without warning
59+
* from one release to the next.
6060
*/
6161
@Experimental
6262
public class LmdbStore extends AbstractNotifyingSail implements FederatedServiceResolverClient {
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2026 Eclipse RDF4J contributors.
3+
*
4+
* All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse
5+
* Distribution License v1.0 which accompanies this distribution, and is available at
6+
* http://www.eclipse.org/org/documents/edl-v10.php.
7+
*
8+
* SPDX-License-Identifier: BSD-3-Clause
9+
*******************************************************************************/
10+
11+
@InternalUseOnly
12+
package org.eclipse.rdf4j.sail.lmdb.estimate;
13+
14+
import org.eclipse.rdf4j.common.annotation.InternalUseOnly;

0 commit comments

Comments
 (0)