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
- Version of Using(..) and UsingEncoder(...) that took an IKeyEncoding are renamed to AsDynamic() or AsTyped<T...>()
- The encoding is optional, and will use TuPack.Encoding by default
- Changed the KeySubspace.Copy(...) into extension methods
Copy file name to clipboardExpand all lines: FoundationDB.Client/Subspaces/Fdb.Directory.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ public static async Task<IFdbDatabase> OpenNamedPartitionAsync(string clusterFil
85
85
if(Logging.On)Logging.Verbose(typeof(Fdb.Directory),"OpenNamedPartitionAsync",$"Found named partition '{descriptor.FullName}' at prefix {descriptor}");
86
86
87
87
// we have to chroot the database to the new prefix, and create a new DirectoryLayer with a new '/'
88
-
rootSpace=KeySubspace.Copy(descriptor);//note: create a copy of the key
88
+
rootSpace=descriptor.Copy();//note: create a copy of the key
0 commit comments