Skip to content

Commit

Permalink
Bump blue.strategic.parquet:parquet-floor from 1.41 to 1.43 (#894)
Browse files Browse the repository at this point in the history
* Bump blue.strategic.parquet:parquet-floor from 1.41 to 1.43

Bumps [blue.strategic.parquet:parquet-floor](https://github.com/strategicblue/parquet-floor) from 1.41 to 1.43.
- [Commits](https://github.com/strategicblue/parquet-floor/commits)

---
updated-dependencies:
- dependency-name: blue.strategic.parquet:parquet-floor
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fixes

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mike Barry <[email protected]>
  • Loading branch information
dependabot[bot] and msbarry authored May 24, 2024
1 parent 1cd8c98 commit df19ecf
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion planetiler-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
<dependency>
<groupId>blue.strategic.parquet</groupId>
<artifactId>parquet-floor</artifactId>
<version>1.41</version>
<version>1.43</version>
</dependency>

</dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package org.apache.hadoop.io.compress;

/** Add missing interface from compression libraries in hadoop common. */
public interface DirectDecompressionCodec extends CompressionCodec {
DirectDecompressor createDirectDecompressor();
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package org.apache.hadoop.io.compress;

import java.io.IOException;
import java.nio.ByteBuffer;

/** Add missing interface from compression libraries in hadoop common. */
public interface DirectDecompressor {
void decompress(ByteBuffer src, ByteBuffer dst) throws IOException;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
* compression.
*/
public class GzipCodec extends JdkGzipCodec {}

0 comments on commit df19ecf

Please sign in to comment.