Skip to content

Commit

Permalink
lisätty sorttaus pub-tauluihuin
Browse files Browse the repository at this point in the history
  • Loading branch information
Matz Rasmus committed Nov 27, 2024
1 parent 9585c6a commit 1f17c5f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions dbt/models/pub/pub_dim_hakukohde.sql
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,4 @@ final as (
)

select * from final
order by haku_oid
1 change: 1 addition & 0 deletions dbt/models/pub/pub_dim_hakutoive.sql
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@ final as (
)

select * from final
order by haku_oid
6 changes: 5 additions & 1 deletion dbt/models/pub/pub_fct_hakemus.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{{
config(
materialized = 'table'
materialized = 'table',
indexes = [
{'columns':['haku_oid']}
]
)
}}

Expand All @@ -23,3 +26,4 @@ int as (
)

select * from int
order by haku_oid

0 comments on commit 1f17c5f

Please sign in to comment.