Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
public class CleartextTransformer extends Transformer {
/**
* The version of the {@code CleartextTransformer} for compatability support.
* The version of the {@code CleartextTransformer} for compatibility support.
*/
private static final byte[] FORMAT_VERSION = "01:".getBytes(StandardCharsets.UTF_8);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class FingerprintTransformer extends Transformer {
private static final byte[] ENCRYPTION_DESCRIPTOR = "hmac:".getBytes(StandardCharsets.UTF_8);

/**
* The version of the {@code FingerprintTransformer} for compatability support.
* The version of the {@code FingerprintTransformer} for compatibility support.
*/
private static final byte[] FORMAT_VERSION = "02:".getBytes(StandardCharsets.UTF_8);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*/
public class SealedTransformer extends Transformer {
/**
* The version of the {@code SealedTransformer} for compatability support.
* The version of the {@code SealedTransformer} for compatibility support.
*/
static final byte[] FORMAT_VERSION = "02:".getBytes(StandardCharsets.UTF_8);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public static boolean isSupportedType(final org.apache.parquet.schema.Type type)
}

/**
* Convert a Parquet schema type to a C3R Parquet data type after verifying compatability.
* Convert a Parquet schema type to a C3R Parquet data type after verifying compatibility.
*
* @param type Parquet type associated with a column
* @return Instance of the associated {@code ParquetDataTy[e}
Expand Down