You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/provider/foundationdb/keyspace/KeySpacePath.java
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -568,16 +568,14 @@ default List<ResolvedKeySpacePath> listSubdirectory(@Nonnull FDBRecordContext co
568
568
StringtoString(@NonnullTupletuple);
569
569
570
570
/**
571
-
* Export all data stored under this KeySpacePath and return it in a RecordCursor.
572
-
* This method scans all keys that have this path as a prefix and returns the key-value pairs.
573
-
* Supports continuation to resume scanning from a previous position.
571
+
* Exports all data stored under this {@code KeySpacePath} and returns it in a {@link RecordCursor}.
574
572
*
575
573
* @param context the transaction context in which to perform the data export
576
-
* @param continuation optional continuation from a previous export operation, or null to start from the beginning
574
+
* @param continuation continuation from a previous export operation, or null to start from the beginning
577
575
* @param scanProperties properties controlling how the scan should be performed
578
-
* @return a RecordCursor that iterates over all KeyValue pairs under this path
576
+
* @return a {link RecordCursor} that provides all the data under this path
Copy file name to clipboardExpand all lines: fdb-record-layer-core/src/test/java/com/apple/foundationdb/record/provider/foundationdb/keyspace/EnvironmentKeySpace.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -93,12 +93,12 @@ static EnvironmentKeySpace setupSampleData(@Nonnull final FDBDatabase database)
93
93
DataPathdataUser2App1 = app1User2.dataStore();
94
94
95
95
// Store data records with additional tuple elements after the KeySpacePath
Copy file name to clipboardExpand all lines: fdb-record-layer-core/src/test/java/com/apple/foundationdb/record/provider/foundationdb/keyspace/KeySpacePathDataExportTest.java
0 commit comments