Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/main/java/com/teradata/tpcds/ScalingInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ScalingInfo
public ScalingInfo(int multiplier, ScalingModel scalingModel, int[] rowCountsPerScale, int updatePercentage)
{
checkArgument(multiplier >= 0, "multiplier is not greater than or equal to 0");
checkArgument(updatePercentage >= 0, "updatePrecentage is not greater than or equal to zero");
checkArgument(updatePercentage >= 0, "updatepercentage is not greater than or equal to zero");
this.multiplier = multiplier;
this.scalingModel = requireNonNull(scalingModel);
this.updatePercentage = updatePercentage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public enum PromotionColumn
P_END_DATE_SK(IDENTIFIER),
P_ITEM_SK(IDENTIFIER),
P_COST(decimal(15, 2)),
P_RESPONSE_TARGE(INTEGER),
P_RESPONSE_TARGET(INTEGER),
P_PROMO_NAME(character(50)),
P_CHANNEL_DMAIL(character(1)),
P_CHANNEL_EMAIL(character(1)),
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/teradata/tpcds/column/StoreColumn.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public enum StoreColumn
S_ZIP(character(10)),
S_COUNTRY(varchar(20)),
S_GMT_OFFSET(decimal(5, 2)),
S_TAX_PRECENTAGE(decimal(5, 2));
S_TAX_percentage(decimal(5, 2));

private final ColumnType type;

Expand Down