Skip to content

Commit

Permalink
#14: Add column with decimal places
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Nov 23, 2021
1 parent f576a0e commit 434b294
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,7 @@ class WithAutomaticParameterDiscovery {
private final List<DataTypeWithExampleValue> dataTypeWithExampleValues = List.of(
new DataTypeWithExampleValue(DataType.createDouble(), 0.5),
new DataTypeWithExampleValue(DataType.createDecimal(18, 0), 2),
new DataTypeWithExampleValue(DataType.createDecimal(18, 3), 3.141),
new DataTypeWithExampleValue(DataType.createBool(), true),
new DataTypeWithExampleValue(DataType.createVarChar(2, DataType.ExaCharset.UTF8), "a"),
new DataTypeWithExampleValue(DataType.createDate(), new Date(1000)),
Expand Down

0 comments on commit 434b294

Please sign in to comment.