Skip to content

Commit 1437ea0

Browse files
committed
fix: remove TODO comment regarding LZO compression implementation
1 parent af67813 commit 1437ea0

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

python/datafusion/dataframe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ class Compression(Enum):
5757
GZIP = "gzip"
5858
BROTLI = "brotli"
5959
LZ4 = "lz4"
60-
# TODO
6160
# lzo is not implemented yet
6261
# https://github.com/apache/arrow-rs/issues/6970
6362
# LZO = "lzo"

python/tests/test_dataframe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,6 @@ def test_write_compressed_parquet_invalid_compression(df, tmp_path, compression)
11151115
df.write_parquet(str(path), compression=compression)
11161116

11171117

1118-
# TODO
11191118
# not testing lzo because it it not implemented yet
11201119
# https://github.com/apache/arrow-rs/issues/6970
11211120
@pytest.mark.parametrize("compression", ["zstd", "brotli", "gzip"])

0 commit comments

Comments
 (0)