Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add timestamp to settableFieldTypes.
  • Loading branch information
viirya committed Jun 17, 2015
commit 0b89698401ecd3e383ddade0cbf956fc44a7c91a
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ public static int calculateBitSetWidthInBytes(int numFields) {
LongType,
FloatType,
DoubleType,
DateType
DateType,
TimestampType
})));

// We support get() on a superset of the types for which we support set():
final Set<DataType> _readableFieldTypes = new HashSet<DataType>(
Arrays.asList(new DataType[]{
StringType,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove the last comma

TimestampType
}));
_readableFieldTypes.addAll(settableFieldTypes);
readableFieldTypes = Collections.unmodifiableSet(_readableFieldTypes);
Expand Down