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
DateTime representation typed "Date" is validated using regular expression. This implementation accepts non-valid date as 30th of February 2020.
Would it be interesting to add a cast to identify these cases at runtime. For instance:
cast
rule_date_report : match_characters(cast(date_report, date), "^\d{4}-(((0)[0-9])|((1)[0-2]))-([0-2][0-9]|(3)[0-1])$") errorcode "Date format YYYY-MM-DD not valid";
The text was updated successfully, but these errors were encountered:
No branches or pull requests
DateTime representation typed "Date" is validated using regular expression. This implementation accepts non-valid date as 30th of February 2020.
Would it be interesting to add a
cast
to identify these cases at runtime. For instance:The text was updated successfully, but these errors were encountered: