Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Measurements in chartevents where error = 1 #154
Comments
|
The following clause is not good, because it excludes rows where the FROM chartevents
WHERE error != 1Instead we can do: FROM chartevents
WHERE error IS DISTINCT FROM 1 |
tompollard
added a commit
that referenced
this issue
Nov 23, 2016
|
|
tompollard |
401132f
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tompollard commentedNov 21, 2016
Our understanding is that a value of 1 in the
errorcolumn ofcharteventsindicates an erroneous measurement. There are several scripts in the code repo that don't exclude these measurements, but which probably should.