Skip to content

Commit

Permalink
Bq date partitioning (#641)
Browse files Browse the repository at this point in the history
* first cut of date partitioning

* cleanup, implement partitioning in materialization

* update requirements.txt

* wip for date partitioning with range

* log data

* arg handling, logging, cleanup + view compat for new bq version

* add partitioning tests, compatibility with bq 0.29.0 release

* pep8

* fix for strange error in appveyor

* debug appveyor...

* dumb

* debugging weird bq adapter use in pg test

* do not use read_project in bq tests

* cleanup connections, initialize bq tests

* remove debug lines

* fix integration tests (actually)

* warning for view creation which clobbers tables

* add query timeout example for bq

* no need to release connections in the adapter

* partition_date interface change (wip)

* list of dates for bq dp tables

* tiny fixes for crufty dbt_project.yml files

* rm debug line

* fix tests


automatic commit by git-black, original commits:
  4eb75ec
  a37374d
  • Loading branch information
drewbanin authored and iknox-fa committed Feb 8, 2022
1 parent d92a2aa commit cdf9b3b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/dbt/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ def __str__(self, prefix="! "):
else:
split_msg = str(self.msg).split("\n")

lines = ["{}{}".format(self.type + ' Error',
node_string)] + split_msg
lines = ["{}{}".format(self.type + " Error", node_string)] + split_msg

lines += self.process_stack()

Expand Down

0 comments on commit cdf9b3b

Please sign in to comment.