-
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump blue.strategic.parquet:parquet-floor from 1.41 to 1.43 (#894)
* 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
1 parent
1cd8c98
commit df19ecf
Showing
4 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
planetiler-core/src/main/java/org/apache/hadoop/io/compress/DirectDecompressionCodec.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} |
9 changes: 9 additions & 0 deletions
9
planetiler-core/src/main/java/org/apache/hadoop/io/compress/DirectDecompressor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ | |
* compression. | ||
*/ | ||
public class GzipCodec extends JdkGzipCodec {} | ||
|