[BUG] Possible race condition in regular expression support for octal digits #4409
Labels
bug
Something isn't working
cudf_dependency
An issue or PR with this label depends on a new feature in cudf
P0
Must have for release
Describe the bug
I am seeing odd results with regular expressions containing octal digits. During testing I seem to be able to trigger a race condition where the first call to
containsRe
will producefalse
and subsequent calls will returntrue
. Here is a test that reproduces the issue (to be added toRegularExpressionTranspilerSuite
).For reference, here is the
gpuContains
method. I Added someprintln
statements here.Test output:
If I remove the
println
statements from thegpuContains
method then the result is alwaystrue
.Steps/Code to reproduce bug
See above.
Expected behavior
Result should be the same on every call.
Environment details (please complete the following information)
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: