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
D:/a/arrow/arrow/cpp/src/parquet/encryption/test_encryption_util.cc:328: Failure
Expected equality of these values:
memcmp(read_col_data.values.data(), expected_column_data.values.data(), read_col_data.values.size() * sizeof(typename DType::c_type))
Which is: 1
0
…tests (#35605)
### Rationale for this change
CI would failed in Decrypt test in Windows MinGW. This is because in some MinGW version, it may generate
truncated stream test data in `GenerateSampleData<FloatType>`, as a fixing, here using `EXPECT_FLOAT_EQ`
to handle that problem
### What changes are included in this PR?
Change comparing float with `_EQ` to `FLOAT_EQ` and `DOUBLE_EQ` in unittest.
### Are these changes tested?
No
### Are there any user-facing changes?
No
* Closes: #35571
Lead-authored-by: mwish <maplewish117@gmail.com>
Co-authored-by: Antoine Pitrou <pitrou@free.fr>
Signed-off-by: Antoine Pitrou <antoine@python.org>
Describe the bug, including details regarding any error messages, version, and platform.
I saw this in the CI output for Windows AMD64 MINGW builds:
I don't have a Windows machine, but I have an idea for a fix that I'm trying to pass through CI.
Component(s)
C++
The text was updated successfully, but these errors were encountered: