Skip to content

Commit

Permalink
Add version as configuration parameter on GeoParquet target type
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Ceni <[email protected]>
  • Loading branch information
lceni committed Feb 10, 2025
1 parent 9b329e3 commit 5a931ec
Showing 1 changed file with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,22 @@
package com.here.xyz.jobs.datasets.files;

public class GeoParquet extends FileFormat {
//TODO: Implement
private Version version = Version.V1;

public Version getVersion() {
return version;
}

public void setVersion(Version version) {
this.version = version;
}

public GeoParquet withVersion(Version version) {
setVersion(version);
return this;
}

public enum Version {
V1, V2
}
}

0 comments on commit 5a931ec

Please sign in to comment.