Skip to content

Commit

Permalink
Fix inter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Fran Lozano committed Apr 15, 2021
1 parent 7612fcb commit 36367e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dbt/adapters/spark/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ class SparkAdapter(SQLAdapter):
INFORMATION_COLUMNS_REGEX = re.compile(
r"\|-- (.*): (.*) \(nullable = (.*)\b", re.MULTILINE)
INFORMATION_OWNER_REGEX = re.compile(r"^Owner: (.*)$", re.MULTILINE)
INFORMATION_STATISTICS_REGEX = re.compile(r"^Statistics: (.*)$", re.MULTILINE)
INFORMATION_STATISTICS_REGEX = re.compile(
r"^Statistics: (.*)$", re.MULTILINE)

Relation = SparkRelation
Column = SparkColumn
Expand Down

0 comments on commit 36367e6

Please sign in to comment.