Skip to content

Commit

Permalink
fix: table in pevs
Browse files Browse the repository at this point in the history
  • Loading branch information
tricktx committed Feb 6, 2024
1 parent 8dddd06 commit 4412e1f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,7 @@ SAFE_CAST(produto AS STRING) produto,
SAFE_CAST(unidade AS STRING) unidade,
SAFE_CAST(quantidade AS INT64) quantidade,
ROUND(SAFE_CAST(valor AS FLOAT64), 4) valor,
FROM basedosdados-staging.br_ibge_pevs_staging.producao_extracao_vegetal AS t

FROM basedosdados-staging.br_ibge_pevs_staging.producao_extracao_vegetal
WHERE
produto IS NOT NULL AND -- isso faz categorias de agregação caírem
quantidade IS NOT NULL -- isso faz unidade vazia cair
5 changes: 4 additions & 1 deletion models/br_ibge_pevs/br_ibge_pevs__producao_silvicultura.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ SAFE_CAST(produto AS STRING) produto,
SAFE_CAST(unidade AS STRING) unidade,
SAFE_CAST(quantidade AS INT64) quantidade,
ROUND(SAFE_CAST(valor AS FLOAT64), 4) valor,
FROM basedosdados-staging.br_ibge_pevs_staging.producao_silvicultura AS t
FROM basedosdados-staging.br_ibge_pevs_staging.producao_silvicultura
WHERE
produto IS NOT NULL AND -- isso faz categorias de agregação caírem
quantidade IS NOT NULL -- isso faz unidade vazia cair

0 comments on commit 4412e1f

Please sign in to comment.