Description
To reproduce:
Insert document into bucket with key "ääåaasdaéö" (contains all the Swedish special characters).
private static readonly Cluster Cluster = new Cluster(config);
|
|
private static void Main(string[] args)
|
{
|
using (var bucket = Cluster.OpenBucket("default"))
|
{
|
var check = bucket.Exists("ääåaasdaéö"); // Returns False
|
}
|
}
|