Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jprakash-db committed Sep 4, 2024
1 parent cf2f4a0 commit d796304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/databricks/sqlalchemy/test_local/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ class DatabricksDataType(enum.Enum):
sqlalchemy.types.Unicode: DatabricksDataType.STRING,
sqlalchemy.types.UnicodeText: DatabricksDataType.STRING,
sqlalchemy.types.Uuid: DatabricksDataType.STRING,
sqlalchemy.types.JSON: DatabricksDataType.STRING
}


Expand Down Expand Up @@ -129,6 +128,7 @@ def test_numeric_renders_as_decimal_with_precision_and_scale(self):
sqlalchemy.types.INT: DatabricksDataType.INT,
sqlalchemy.types.SMALLINT: DatabricksDataType.SMALLINT,
sqlalchemy.types.TIMESTAMP: DatabricksDataType.TIMESTAMP,
sqlalchemy.types.JSON: DatabricksDataType.STRING,
TINYINT: DatabricksDataType.TINYINT,
TIMESTAMP: DatabricksDataType.TIMESTAMP,
TIMESTAMP_NTZ: DatabricksDataType.TIMESTAMP_NTZ,
Expand Down

0 comments on commit d796304

Please sign in to comment.