We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently ints can't be compared to floats. For instance this will never find a matching span:
{ span.floatAttr = 3 }
This may find a matching span:
{ span.floatAttr = 3. }
Tempo will never fully cast/coerce datatypes. This will never work:
{ span.floatAttr = "3" }
But I do think it would be useful for ints and floats to be comparable. Let's add support for searching float columns with int values and vice versa.
Similar to: #4046
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently ints can't be compared to floats. For instance this will never find a matching span:
This may find a matching span:
Tempo will never fully cast/coerce datatypes. This will never work:
But I do think it would be useful for ints and floats to be comparable. Let's add support for searching float columns with int values and vice versa.
Similar to: #4046
The text was updated successfully, but these errors were encountered: