We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91357f4 commit 26c017dCopy full SHA for 26c017d
src/databricks/sql/backend/utils/guid_utils.py
@@ -11,7 +11,8 @@ def guid_to_hex_id(guid: bytes) -> str:
11
IN b'\x01\xee\x1d)\xa4\x19\x1d\xb6\xa9\xc0\x8d\xf1\xfe\xbaB\xdd'
12
OUT '01ee1d29-a419-1db6-a9c0-8df1feba42dd'
13
14
- If conversion to hexadecimal fails, the original bytes are returned
+ If conversion to hexadecimal fails, a string representation of the original
15
+ bytes is returned
16
"""
17
try:
18
this_uuid = uuid.UUID(bytes=guid)
0 commit comments