Skip to content

Commit

Permalink
Fix hidden flag for Kafka getColumnMetadata
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Sep 25, 2014
1 parent c10fd8e commit daec5cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public boolean isInternal()

ColumnMetadata getColumnMetadata()
{
return new ColumnMetadata(getName(), getType(), getOrdinalPosition(), isHidden());
return new ColumnMetadata(name, type, ordinalPosition, false, null, hidden);
}

@Override
Expand Down

0 comments on commit daec5cd

Please sign in to comment.