Skip to content

Commit

Permalink
fix data types educacao_especial
Browse files Browse the repository at this point in the history
  • Loading branch information
vilelaluiza committed Oct 24, 2024
1 parent 3b7ce9a commit 783efab
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ select
safe_cast(ano as int64) ano,
safe_cast(sigla_uf as string) sigla_uf,
safe_cast(etapa_ensino as string) etapa_ensino,
safe_cast(tdi as numeric) tdi,
safe_cast(tdi as float64) tdi,
from `basedosdados-staging.br_inep_educacao_especial_staging.distorcao_idade_serie` as t
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ select
safe_cast(ano as int64) ano,
safe_cast(sigla_uf as string) sigla_uf,
safe_cast(id_municipio as string) id_municipio,
safe_cast(quantidade_docente_regente as int64) quantidade_docente_regente,
safe_cast(quantidade_docente_aee as int64) quantidade_docente_aee,
safe_cast(quantidade_docente_regente as numeric) quantidade_docente_regente,
safe_cast(quantidade_docente_aee as numeric) quantidade_docente_aee,
safe_cast(
quantidade_docente_regente_formacao_continuada as int64
) quantidade_docente_regente_formacao_continuada,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ select
safe_cast(id_municipio as string) id_municipio,
safe_cast(rede as string) rede,
safe_cast(
quantidade_docente_formacao_continuada as int64
quantidade_docente_formacao_continuada as numeric
) quantidade_docente_formacao_continuada,

from `basedosdados-staging.br_inep_educacao_especial_staging.docente_formacao` as t
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ select
safe_cast(ano as int64) ano,
safe_cast(sigla_uf as string) sigla_uf,
safe_cast(rede as string) rede,
safe_cast(quantidade_matricula as int64) quantidade_matricula,
safe_cast(quantidade_matricula_aee as int64) quantidade_matricula_aee,
safe_cast(quantidade_matricula as numeric) quantidade_matricula,
safe_cast(quantidade_matricula_aee as numeric) quantidade_matricula_aee,

from `basedosdados-staging.br_inep_educacao_especial_staging.matricula_aee` as t
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ select
safe_cast(ano as int64) ano,
safe_cast(sigla_uf as string) sigla_uf,
safe_cast(etapa_ensino as string) etapa_ensino,
safe_cast(taxa_aprovacao as numeric) taxa_aprovacao,
safe_cast(taxa_reprovacao as numeric) taxa_reprovacao,
safe_cast(taxa_abandono as numeric) taxa_abandono,
safe_cast(taxa_aprovacao as float64) taxa_aprovacao,
safe_cast(taxa_reprovacao as float64) taxa_reprovacao,
safe_cast(taxa_abandono as float64) taxa_abandono,
from `basedosdados-staging.br_inep_educacao_especial_staging.taxa_rendimento` as t

0 comments on commit 783efab

Please sign in to comment.