Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Aug 27, 2024
1 parent 1f9dbb8 commit bb8180d
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,12 @@
*/
public abstract class CharacterType extends PrimitiveType {

private static final int WIDTH = 16;

protected final int len;

// When defining SQL schemas, users often tend to set the length of string
// fields much longer than actually needed for storage.
public static final int DEFAULT_SLOT_SIZE = 20;
private static final int WIDTH = 16;

protected final int len;

public CharacterType(int len) {
this.len = len;
Expand Down

0 comments on commit bb8180d

Please sign in to comment.