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
Running PARQUET_TESTS shows several errors and warnings to stderr. It is unclear if they are expected or not so if it is possible to suppress them when expected, it would make it easier to discern it them from actual errors.
[ RUN ] ParquetChunkedWriterTest.MismatchedTypes
[2025-01-24 16:32:19.641] [CUDF] [error] Parquet writer encountered exception during processing. No data has been written to the sink.
[ OK ] ParquetChunkedWriterTest.MismatchedTypes (0 ms)
[ RUN ] ParquetChunkedWriterTest.MismatchedStructure
[2025-01-24 16:32:19.643] [CUDF] [error] Parquet writer encountered exception during processing. No data has been written to the sink.
[ OK ] ParquetChunkedWriterTest.MismatchedStructure (0 ms)
[ RUN ] ParquetChunkedWriterTest.MismatchedStructureList
[2025-01-24 16:32:19.643] [CUDF] [error] Parquet writer encountered exception during processing. No data has been written to the sink.
[ OK ] ParquetChunkedWriterTest.MismatchedStructureList (0 ms)
[ RUN ] ParquetWriterTest.DecimalWrite
[2025-01-24 16:32:21.694] [CUDF] [error] Parquet writer encountered exception during processing. No data has been written to the sink.
[2025-01-24 16:32:21.694] [CUDF] [warning] Parquet writer: writing a decimal column with precision < 10 as int64
[ OK ] ParquetWriterTest.DecimalWrite (1 ms)
[ RUN ] ParquetWriterTest.UserNullabilityInvalid
[2025-01-24 16:32:22.059] [CUDF] [error] Parquet writer encountered exception during processing. No data has been written to the sink.
[ OK ] ParquetWriterTest.UserNullabilityInvalid (0 ms)
[ RUN ] ParquetWriterTest.UserRequestedDictFallback
[2025-01-24 16:32:22.071] [CUDF] [warning] DICTIONARY encoding was requested, but resource constraints prevent its use
[ OK ] ParquetWriterTest.UserRequestedDictFallback (4 ms)
[ RUN ] ParquetWriterTest.UserRequestedEncodings
[2025-01-24 16:32:22.075] [CUDF] [warning] DELTA_LENGTH_BYTE_ARRAY encoding is only supported for BYTE_ARRAY columns; the requested encoding will be ignored
[2025-01-24 16:32:22.075] [CUDF] [warning] DELTA_BYTE_ARRAY encoding is only supported for BYTE_ARRAY and FIXED_LEN_BYTE_ARRAY columns; the requested encoding will be ignored
[2025-01-24 16:32:22.075] [CUDF] [warning] DELTA_BINARY_PACKED encoding is only supported for INT32 and INT64 columns; the requested encoding will be ignored
[ OK ] ParquetWriterTest.UserRequestedEncodings (2 ms)
[ RUN ] ParquetWriterTest.Decimal128DeltaByteArray
[2025-01-24 16:32:22.076] [CUDF] [warning] Decimal types cannot yet be encoded as DELTA_BYTE_ARRAY; the requested encoding will be ignored
[ OK ] ParquetWriterTest.Decimal128DeltaByteArray (0 ms)
The text was updated successfully, but these errors were encountered:
The first idea that comes to mind is to RAII the logging away in the tests we know are meant to run into invalid/semi-valid cases.
We can discuss whether tests that don't expect warnings/errors should fail if there are any such messages in the log.
Running PARQUET_TESTS shows several errors and warnings to stderr. It is unclear if they are expected or not so if it is possible to suppress them when expected, it would make it easier to discern it them from actual errors.
The text was updated successfully, but these errors were encountered: