Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#3] - Solução para o problema dos múltiplos warnings #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Conradox
Copy link
Collaborator

No description provided.

@@ -35,12 +35,14 @@ end
#TODO: Verificar se tem colunas duplicatas
FilterModifier(columns::Symbol...) = FilterModifier([columns...])

const EasyWarnings = Set()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Problema que esse aviso fica armazenado no módulo. Caso a pessoa crie um novo stream, ela não vai ser avisada. Outra parada, o Set eu acho que é imutável. Dá uma conferida nisso.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Poderíamos tornar esse warn checker um atributo do Stream e em determinados procedimentos limpamos ele pra evitar que isso acabe inibindo o aviso de um futuro erro. Vou pensar mais um pouco nesse problema.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Acho que teria que ser ... Problema que você nunca sabe o que está vindo.

@@ -35,12 +35,14 @@ end
#TODO: Verificar se tem colunas duplicatas
FilterModifier(columns::Symbol...) = FilterModifier([columns...])

const EasyWarnings = Set()
warn(str::String, warnChecker::Set) = str in warnChecker || (@warn str) == nothing && push!(warnChecker, str)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Na verdade seria String ou Symbol. Tem que conferir se no dataframe o nome da coluna sempre vem em Symbol. Se for é symbol aqui.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants