Skip to content

Commit

Permalink
Create a somewhat sane, if huge, configuration object
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Beck committed Sep 14, 2018
1 parent 16fa082 commit 1620a17
Show file tree
Hide file tree
Showing 91 changed files with 3,136 additions and 1,734 deletions.
254 changes: 116 additions & 138 deletions dbt/adapters/bigquery/impl.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dbt/adapters/bigquery/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ def matches(self, project=None, schema=None, identifier=None):
return True

@classmethod
def create_from_node(cls, profile, node, **kwargs):
def create_from_node(cls, config, node, **kwargs):
return cls.create(
project=profile.get('project'),
project=config.credentials.project,
schema=node.get('schema'),
identifier=node.get('alias'),
**kwargs)
Expand Down
Loading

0 comments on commit 1620a17

Please sign in to comment.