Skip to content

Commit

Permalink
issue #7: set default val for 'extensions' to None to suppress error …
Browse files Browse the repository at this point in the history
…about missing field when using dbt 0.19.1
  • Loading branch information
codeforkjeff committed Apr 21, 2021
1 parent 42c6f47 commit 092ddb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/sqlite/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class SQLiteCredentials(Credentials):

schemas_and_paths: str
schema_directory: str
extensions: Optional[str]
extensions: Optional[str] = None

@property
def type(self):
Expand Down

0 comments on commit 092ddb6

Please sign in to comment.