Skip to content

Commit

Permalink
Merge pull request #1353 from fishtown-analytics/fix/issue-1352
Browse files Browse the repository at this point in the history
possibly reckless fix for #1352
  • Loading branch information
drewbanin committed Mar 18, 2019
2 parents 05b82a2 + f96dedf commit 70262b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/dbt/context/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def do_docs(*args):
def source(db_wrapper, model, config, manifest):
def do_source(source_name, table_name):
model.sources.append([source_name, table_name])
return ''
return db_wrapper.adapter.Relation.create_from_node(config, model)

return do_source

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def _redshift_stats(self):
"diststyle": {
"id": "diststyle",
"label": "Dist Style",
"value": "EVEN",
"value": AnyStringWith(None),
"description": "Distribution style or distribution key column, if key distribution is defined.",
"include": True
},
Expand Down

0 comments on commit 70262b3

Please sign in to comment.