64 KiB != 64 KB #38730
Labels
customer-reported
Issues that are reported by GitHub users external to the Azure organization.
needs-triage
Workflow: This is a new issue that needs to be triaged to the appropriate team.
question
The issue doesn't require a change to the product in order to be resolved. Most issues start as that
Describe the bug
https://learn.microsoft.com/en-us/rest/api/storageservices/Understanding-the-Table-Service-Data-Model?redirectedfrom=MSDN#property-types states a limit of "64 KiB" for columns, especially for strings and bytes.
But when I try to store
65536
bytes I am answered with64 KiB = 65,536 bytes
64 KB = 64,000 bytes
So apparently the correct answer is 64 KB and the documentation is wrong.
To Reproduce
Steps to reproduce the behavior:
table_client.create_entity(entity=entity)
Expected behavior
As the response comes from the server this rather seems to be a documentation issue than an issue w/ the SDK.
So the docs should be updated.
The text was updated successfully, but these errors were encountered: