Skip to content

Commit

Permalink
Update fact_flow_daa_txns.sql (#537)
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Kan <[email protected]>
  • Loading branch information
solana-enjoyer and akan72 authored Oct 15, 2024
1 parent d4ac2f7 commit eba1d0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dbt_scripts/show_changed.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Obtain DBT Manifest
wget https://artemis-xyz.github.io/dbt/manifest.json

changed_models=$(dbt ls --select state:modified+1 --resource-type model --state . --quiet)

echo "\nCHANGED MODELS:"
echo $changed_models
echo "$changed_models"
echo "\n"
echo "$changed_models" | while IFS= read -r model; do
echo "SHOWING $model"
Expand Down
1 change: 1 addition & 0 deletions models/staging/flow/fact_flow_daa_txns.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ select
from flow_flipside.core.fact_transactions
where tx_succeeded = 'TRUE'
group by date

0 comments on commit eba1d0f

Please sign in to comment.