You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the DateUtil type only tries to convert a string into a date, It might interpret different rows with different formats.
Example:
02/03/04 -> MM/DD/YY
31/03/04 -> DD/MM/YY
This is why we have the Date type but it is very slow because it has to go through different formats. A way to speed it up is to reduce the number of possible formats when using the strict type guessing. Only date formats that are still possible should be used for following rows.
The text was updated successfully, but these errors were encountered:
Since the DateUtil type only tries to convert a string into a date, It might interpret different rows with different formats.
Example:
This is why we have the Date type but it is very slow because it has to go through different formats. A way to speed it up is to reduce the number of possible formats when using the strict type guessing. Only date formats that are still possible should be used for following rows.
The text was updated successfully, but these errors were encountered: