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 b4f9e2d commit 533f74bCopy full SHA for 533f74b
src/databricks/sql/backend/sea/utils/normalize.py
@@ -7,7 +7,11 @@
7
8
from typing import Dict, Any
9
10
-# Mapping of SEA types that need to be translated to Thrift conventions
+# SEA types that need to be translated to Thrift types
11
+# The list of all SEA types is available in the REST reference at:
12
+# https://docs.databricks.com/api/workspace/statementexecution/executestatement
13
+# The list of all Thrift types can be found in the ttypes.TTypeId definition
14
+# The SEA types that do not align with Thrift are explicitly mapped below
15
SEA_TO_THRIFT_TYPE_MAP = {
16
"BYTE": "TINYINT",
17
"SHORT": "SMALLINT",
0 commit comments