Skip to content

Commit

Permalink
Fix invalid lineitem column value
Browse files Browse the repository at this point in the history
  • Loading branch information
wendigo committed Mar 22, 2024
1 parent 08ce804 commit b34cdea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/trino/tpch/LineItemColumn.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public long getIdentifier(LineItem lineItem)
@Override
public double getDouble(LineItem lineItem)
{
return lineItem.discountPercent();
return lineItem.discount();
}

@Override
Expand Down

0 comments on commit b34cdea

Please sign in to comment.