Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ config-version: 2
# These configurations specify where dbt should look for different types of files.
# The `source-paths` config, for example, states that models in this project can be
# found in the "models/" directory. You probably won't need to change these!
source-paths: ["models"]
model-paths: ["models"]
analysis-paths: ["analysis"]
test-paths: ["tests"]
data-paths: ["data"]
seed-paths: ["data"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]

Expand All @@ -22,8 +22,8 @@ clean-targets: # directories to be removed by `dbt clean`
# Configuring models
# Full documentation: https://docs.getdbt.com/docs/configuring-models
models:
materialized: "{{var('jitsu_model_materialized', 'incremental')}}"
pre-hook:
+materialized: "{{var('jitsu_model_materialized', 'incremental')}}"
+pre-hook:
- "{{ onrunstart() }}" # On clickhouse enables allow_experimental_window_functions flag


Expand Down