Skip to content

Commit

Permalink
Fix testing MetadataUtil for varchar
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Feb 12, 2016
1 parent edbd265 commit d62f190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static final class TestingTypeDeserializer
{
private final Map<String, Type> types = ImmutableMap.<String, Type>of(
StandardTypes.BIGINT, BIGINT,
VARCHAR.getTypeSignature().toString(), VARCHAR); // for varchar(MAX_INT)
StandardTypes.VARCHAR, VARCHAR);

public TestingTypeDeserializer()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ public static final class TestingTypeDeserializer
StandardTypes.BOOLEAN, BOOLEAN,
StandardTypes.BIGINT, BIGINT,
StandardTypes.DOUBLE, DOUBLE,
StandardTypes.VARCHAR, VARCHAR,
VARCHAR.getTypeSignature().toString(), VARCHAR); // varchar(MAX_INT)
StandardTypes.VARCHAR, VARCHAR);

public TestingTypeDeserializer()
{
Expand Down

0 comments on commit d62f190

Please sign in to comment.