Skip to content

Commit

Permalink
HHH-6519 : Temporarily initialize default column precision, scale, an…
Browse files Browse the repository at this point in the history
…d length in o.h.metamodel.relational.Size
  • Loading branch information
gbadner committed Jul 29, 2011
1 parent 7742811 commit d011313
Showing 1 changed file with 7 additions and 3 deletions.
Expand Up @@ -52,9 +52,13 @@ public long getFactor() {
}
}

private int precision = - 1;
private int scale = -1;
private long length = -1;
public static final int DEFAULT_LENGTH = 255;
public static final int DEFAULT_PRECISION = 19;
public static final int DEFAULT_SCALE = 2;

private long length = DEFAULT_LENGTH;
private int precision = DEFAULT_PRECISION;
private int scale = DEFAULT_SCALE;
private LobMultiplier lobMultiplier = LobMultiplier.NONE;

public Size() {
Expand Down

0 comments on commit d011313

Please sign in to comment.