Skip to content

Commit

Permalink
Merge pull request #5 from atlanhq/databricks-bigint
Browse files Browse the repository at this point in the history
Databricks: Profiling support for bigint datatypes
  • Loading branch information
bichitra95 authored Sep 6, 2023
2 parents 848df0b + 6d8e8b0 commit 7a5a4cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soda/spark/soda/data_sources/spark_data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ class SparkDataSource(SparkSQLBase):

def __init__(self, logs: Logs, data_source_name: str, data_source_properties: dict):
super().__init__(logs, data_source_name, data_source_properties)
self.NUMERIC_TYPES_FOR_PROFILING = ["integer", "int", "double", "float", "decimal"]
self.NUMERIC_TYPES_FOR_PROFILING = ["integer", "int", "double", "float", "decimal", "bigint"]

self.method = data_source_properties.get("method", "hive")
self.host = data_source_properties.get("host", "localhost")
Expand Down

0 comments on commit 7a5a4cb

Please sign in to comment.