Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Change null string placeholder from dollar to hash
Browse files Browse the repository at this point in the history
  • Loading branch information
bsura authored Mar 30, 2017
1 parent 6955377 commit e4dd739
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class AsyncHbaseSchemaService extends DefaultService implements SchemaSer
private static final byte[] COLUMN_QUALIFIER = "c".getBytes(Charset.forName("UTF-8"));
private static final byte[] CELL_VALUE = new byte[1];
private static final char ROWKEY_SEPARATOR = '\u0000';
private static final char PLACEHOLDER_FOR_NULL_STRINGS = '\u0024';
private static final char PLACEHOLDER_FOR_NULL_STRINGS = '\u0023';

private static final long TIMEOUT_MS = 30 * 1000;
private static final long SCAN_TIMEOUT_MS = 2 * 60 * 1000;
Expand Down

0 comments on commit e4dd739

Please sign in to comment.