We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
6E73B41C-4EDE-4D08-9CFB-B7462D9E498B
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
The text was updated successfully, but these errors were encountered:
rekby
No branches or pull requests
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:
and
and check about binary and string representation are equals.
It is special UUID where all bytes are different for detect any byte misordering
The text was updated successfully, but these errors were encountered: