Skip to content

Commit

Permalink
Use serdeConstants for header/footer skip property keys
Browse files Browse the repository at this point in the history
  • Loading branch information
jirassimok authored and losipiuk committed Jun 18, 2020
1 parent a664773 commit 55da808
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -264,8 +264,8 @@ public class HiveMetadata
private static final String ORC_BLOOM_FILTER_COLUMNS_KEY = "orc.bloom.filter.columns";
private static final String ORC_BLOOM_FILTER_FPP_KEY = "orc.bloom.filter.fpp";

public static final String SKIP_HEADER_COUNT_KEY = "skip.header.line.count";
public static final String SKIP_FOOTER_COUNT_KEY = "skip.footer.line.count";
public static final String SKIP_HEADER_COUNT_KEY = serdeConstants.HEADER_COUNT;
public static final String SKIP_FOOTER_COUNT_KEY = serdeConstants.FOOTER_COUNT;

private static final String TEXT_FIELD_SEPARATOR_KEY = serdeConstants.FIELD_DELIM;
private static final String TEXT_FIELD_SEPARATOR_ESCAPE_KEY = serdeConstants.ESCAPE_CHAR;
Expand Down

0 comments on commit 55da808

Please sign in to comment.