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
With the pattern [^a] (meaning match any character except for 'a'), cuDF does not match newline characters but Java/Spark does, resulting in different behavior as demonstrated by these code snippets.
Describe the bug
With the pattern
[^a]
(meaning match any character except for 'a'), cuDF does not match newline characters but Java/Spark does, resulting in different behavior as demonstrated by these code snippets.Spark/Java behavior
cuDF behavior
Steps/Code to reproduce bug
Add the following integration test to string_test.py
Expected behavior
We either need to document the difference in the compatibility guide or we need to find a way to make the behavior consistent.
Environment details (please complete the following information)
N/A
Additional context
None
The text was updated successfully, but these errors were encountered: