Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: prestodb/presto
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6d9a0c5e01307bf9146bc5f5a3bac3cbe2af20e7
Choose a base ref
..
head repository: prestodb/presto
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e69c19dd805655ea26a204d50570698e98c15546
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 presto-tpcds/src/main/java/com/facebook/presto/tpcds/TpcdsRecordSet.java
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ public TpcdsRecordSet(Results results, List<Column> columns)
this.columns = ImmutableList.copyOf(columns);
ImmutableList.Builder<Type> columnTypes = ImmutableList.builder();
for (Column column : columns) {
columnTypes.add(getPrestoType(column.getType(), true));
columnTypes.add(getPrestoType(column.getType(), false));
}
this.columnTypes = columnTypes.build();
}
@@ -103,7 +103,7 @@ public long getReadTimeNanos()
@Override
public Type getType(int field)
{
return getPrestoType(columns.get(field).getType(), true);
return getPrestoType(columns.get(field).getType(), false);
}

@Override