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
when spec has a type: Date, it should check to make sure that the column contains dates
spec
type: Date
the mode() function reads dates as numeric, so the test fails if type: Date is specified
mode()
use class() instead of mode() for dates
class()
The text was updated successfully, but these errors were encountered:
7186c83
lauramaxwell
Successfully merging a pull request may close this issue.
Expected Behavior
when
spec
has atype: Date
, it should check to make sure that the column contains datesCurrent Behavior
the
mode()
function reads dates as numeric, so the test fails iftype: Date
is specifiedPossible Solution
use
class()
instead ofmode()
for datesSteps to Reproduce
Context (Environment)
Possible Implementation
Additional Comments
The text was updated successfully, but these errors were encountered: