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 311e217 commit 2b1442fCopy full SHA for 2b1442f
src/databricks/sql/backend/sea/result_set.py
@@ -24,15 +24,6 @@
24
logger = logging.getLogger(__name__)
25
26
27
-# Column-to-column data mapping for metadata queries
28
-# Maps target column -> source column to get data from
29
-COLUMN_DATA_MAPPING = {
30
- "DATA_TYPE": "TYPE_NAME", # DATA_TYPE calculated from TYPE_NAME
31
- "NULLABLE": "IS_NULLABLE", # NULLABLE calculated from IS_NULLABLE
32
- "BUFFER_LENGTH": "TYPE_NAME", # BUFFER_LENGTH calculated from TYPE_NAME
33
-}
34
-
35
36
class SeaResultSet(ResultSet):
37
"""ResultSet implementation for SEA backend."""
38
0 commit comments