Open
Description
- Ensure correct work UUID C++ SDK #10171
- feature: Add support for Guids ydb-dotnet-sdk#187
- Ensure correct work UUID ydb-go-sdk#1501
- Ensure correct work UUID ydb-java-sdk#326
- Ensure correct work UUID ydb-js-sdk#415
- Fix UUID ydb-php-sdk#146
- Ensure correct work UUID ydb-rs-sdk#212
needs to implement test for covnert UUID to string and revert - for ensure work with same format between sdks and the server.
for check uuid format try send and receive uuid 6E73B41C-4EDE-4D08-9CFB-B7462D9E498B
and compare it to string representation.
example:
DECLARE $val AS UUID;
SELECT CAST($val AS Utf8)
and
DECLARE $val AS Utf8;
SELECT CAST($val AS UUID)
and check about binary and string representation are equals.
It is special UUID where all bytes are different for detect any byte misordering