-
Type: Task
-
Resolution: Done
-
Affects Version/s: None
-
Component/s: None
Setting app_metadata to an encoded string fails in the WiredTiger API, here's the test case:
#!/usr/bin/env python # -*- coding: latin-1 -*- import wiredtiger, wttest class f(wttest.WiredTigerTestCase): def test_f(self): self.session.create('file:xxx', 'key_format=S,value_format=S,' + 'app_metadata={xxx\xc3\xa9yyy}') if __name__ == '__main__': wttest.run()
I'm not sure if this is a bug or not, but it's at least a documentation issue, we need to specify what we expect.